Why can't I access my roommates' Windows computers through samba?

I'm using KDEmod.  I can see our workgroup, MSHOME, by going through system -> remote places -> samba shares.  Sometimes, I can open the workgroup and see my roommates computers but if I try to access them, Konqueror will time out.  As of this very second, I can't even see them.  I'm pretty sure it isn't a problem with the network itself because they can all see each other and share files, and they can get my files as well, I just can't get theirs.  Here is my samba configuration file.  Any idea what the problem could be?  There is a good chance I have it configured wrong, I'm fairly new to Linux.  I followed the directions on the samba wiki entry.
#======================= Global Settings =====================================
[global]
# workgroup = NT-Domain-Name or Workgroup-Name, eg: MIDEARTH
workgroup = MSHOME
# server string is the equivalent of the NT Description field
server string = Samba Server
# Security mode. Defines in which mode Samba will operate. Possible
# values are share, user, server, domain and ads. Most people will want
# user level security. See the Samba-HOWTO-Collection for details.
security = user
# This option is important for security. It allows you to restrict
# connections to machines which are on your local network. The
# following example restricts access to two C class networks and
# the "loopback" interface. For more examples of the syntax see
# the smb.conf man page
; hosts allow = 192.168.1. 192.168.2. 127.
# If you want to automatically load your printer list rather
# than setting them up individually then you'll need this
; load printers = yes
# you may wish to override the location of the printcap file
; printcap name = /etc/printcap
# on SystemV system setting printcap name to lpstat should allow
# you to automatically obtain a printer list from the SystemV spool
# system
; printcap name = lpstat
# It should not be necessary to specify the print system type unless
# it is non-standard. Currently supported print systems include:
# bsd, cups, sysv, plp, lprng, aix, hpux, qnx
; printing = cups
# Uncomment this if you want a guest account, you must add this to /etc/passwd
# otherwise the user "nobody" is used
; guest account = pcguest
# this tells Samba to use a separate log file for each machine
# that connects
log file = /var/log/samba/%m.log
# Put a capping on the size of the log files (in Kb).
max log size = 50
# Use password server option only with security = server
# The argument list may include:
# password server = My_PDC_Name [My_BDC_Name] [My_Next_BDC_Name]
# or to auto-locate the domain controller/s
# password server = *
; password server = <NT-Server-Name>
# Use the realm option only with security = ads
# Specifies the Active Directory realm the host is part of
; realm = MY_REALM
# Backend to store user information in. New installations should
# use either tdbsam or ldapsam. smbpasswd is available for backwards
# compatibility. tdbsam requires no further configuration.
; passdb backend = tdbsam
# Using the following line enables you to customise your configuration
# on a per machine basis. The %m gets replaced with the netbios name
# of the machine that is connecting.
# Note: Consider carefully the location in the configuration file of
# this line. The included file is read at that point.
; include = /usr/local/samba/lib/smb.conf.%m
# Configure Samba to use multiple interfaces
# If you have multiple network interfaces then you must list them
# here. See the man page for details.
; interfaces = 192.168.12.2/24 192.168.13.2/24
# Browser Control Options:
# set local master to no if you don't want Samba to become a master
# browser on your network. Otherwise the normal election rules apply
; local master = no
# OS Level determines the precedence of this server in master browser
# elections. The default value should be reasonable
; os level = 33
# Domain Master specifies Samba to be the Domain Master Browser. This
# allows Samba to collate browse lists between subnets. Don't use this
# if you already have a Windows NT domain controller doing this job
; domain master = yes
# Preferred Master causes Samba to force a local browser election on startup
# and gives it a slightly higher chance of winning the election
; preferred master = yes
# Enable this if you want Samba to be a domain logon server for
# Windows95 workstations.
; domain logons = yes
# if you enable domain logons then you may want a per-machine or
# per user logon script
# run a specific logon batch file per workstation (machine)
; logon script = %m.bat
# run a specific logon batch file per username
; logon script = %U.bat
# Where to store roving profiles (only for Win95 and WinNT)
# %L substitutes for this servers netbios name, %U is username
# You must uncomment the [Profiles] share below
; logon path = \\%L\Profiles\%U
# Windows Internet Name Serving Support Section:
# WINS Support - Tells the NMBD component of Samba to enable it's WINS Server
; wins support = yes
# WINS Server - Tells the NMBD components of Samba to be a WINS Client
# Note: Samba can be either a WINS Server, or a WINS Client, but NOT both
; wins server = w.x.y.z
# WINS Proxy - Tells Samba to answer name resolution queries on
# behalf of a non WINS capable client, for this to work there must be
# at least one WINS Server on the network. The default is NO.
; wins proxy = yes
# DNS Proxy - tells Samba whether or not to try to resolve NetBIOS names
# via DNS nslookups. The default is NO.
dns proxy = no
# These scripts are used on a domain controller or stand-alone
# machine to add or delete corresponding unix accounts
; add user script = /usr/sbin/useradd %u
; add group script = /usr/sbin/groupadd %g
; add machine script = /usr/sbin/adduser -n -g machines -c Machine -d /dev/null -s /bin/false %u
; delete user script = /usr/sbin/userdel %u
; delete user from group script = /usr/sbin/deluser %u %g
; delete group script = /usr/sbin/groupdel %g
#============================ Share Definitions ==============================
#[homes]
# comment = Home Directories
# browseable = no
# writable = no
# Un-comment the following and create the netlogon directory for Domain Logons
; [netlogon]
; comment = Network Logon Service
; path = /usr/local/samba/lib/netlogon
; guest ok = yes
; writable = no
; share modes = no
# Un-comment the following to provide a specific roving profile share
# the default is to use the user's home directory
;[Profiles]
; path = /usr/local/samba/profiles
; browseable = no
; guest ok = yes
# NOTE: If you have a BSD-style print system there is no need to
# specifically define each individual printer
#[printers]
# comment = All Printers
# path = /var/spool/samba
# browseable = no
# Set public = yes to allow user 'guest account' to print
# guest ok = no
# writable = no
# printable = yes
# This one is useful for people to share files
;[tmp]
; comment = Temporary file space
; path = /tmp
; read only = no
; public = yes
# A publicly accessible directory, but read only, except for people in
# the "staff" group
;[public]
; comment = Public Stuff
; path = /home/samba
; public = yes
; writable = yes
; printable = no
; write list = @staff
# Other examples.
# A private printer, usable only by fred. Spool data will be placed in fred's
# home directory. Note that fred must have write access to the spool directory,
# wherever it is.
;[fredsprn]
; comment = Fred's Printer
; valid users = fred
; path = /homes/fred
; printer = freds_printer
; public = no
; writable = no
; printable = yes
# A private directory, usable only by fred. Note that fred requires write
# access to the directory.
;[fredsdir]
; comment = Fred's Service
; path = /usr/somewhere/private
; valid users = fred
; public = no
; writable = yes
; printable = no
# a service which has a different directory for each machine that connects
# this allows you to tailor configurations to incoming machines. You could
# also use the %U option to tailor it by user name.
# The %m gets replaced with the machine name that is connecting.
;[pchome]
; comment = PC Directories
; path = /usr/pc/%m
; public = no
; writable = yes
# A publicly accessible directory, read/write to all users. Note that all files
# created in the directory by users will be owned by the default user, so
# any user with access can delete any other user's files. Obviously this
# directory must be writable by the default user. Another user could of course
# be specified, in which case all files would be owned by that user instead.
;[public]
; path = /usr/somewhere/else/public
; public = yes
; only guest = yes
; writable = yes
; printable = no
# The following two entries demonstrate how to share a directory so that two
# users can place files there that will be owned by the specific users. In this
# setup, the directory should be writable by both users and should have the
# sticky bit set on it to prevent abuse. Obviously this could be extended to
# as many users as required.
;[myshare]
; comment = Mary's and Fred's stuff
; path = /usr/somewhere/shared
; valid users = mary fred
; public = no
; writable = yes
; printable = no
; create mask = 0765
#This is my music
[Music]
path = /media/SEA_DISC/Music
browseable = yes
read only = yes
valid users = nelson
#This is my videos
[Videos]
path = /media/SEA_DISC/Videos
browseable = yes
read only = yes
valid users = nelson

I don't know much about samba, but I have had very similar problems with netbios in windows, I find it to be very unreliable and I think you would be better off with ftp, but that's just my opinion. Apart from that, are you sure you have the necessary ports opened, and so do they? And you might need a line in /etc/hosts.allow
Last edited by calef13 (2008-04-21 10:28:45)

Similar Messages

  • Why can't i access or click on the menu options at the top of ANY web page? Also, Can't close a moddle window using the x in the upper right,?

    Why can't i access or click on the menu options at the top of ANY web page? Also, Can't close a moddle window using the x in the upper right,?

    Problems with buttons and links at the top of the page not working can be caused by an extension like the Yahoo! Toolbar or a Babylon extension that extents too much downwards and covers the top part of the browser window and thus makes links and buttons in that part of the screen not clickable.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode

  • Why can't I access photoshop cs6 on my computer?

    Details: I launch the program and it prompts me to sign into my adobe account. I click "sign in," and then it loads for awhile. It then displays an error message specifying that I am not connected to the internet or that my pc's clock is not properly synched. I reset my internet connection and synched my clock , but to no avail. The same error message is displayed every time. Any ideas?
    Thanks a lot!

    Hey Pete,
    I'm using Windows 7 and I don't think I have any firewalls. But it has recently come to my attention that before my brother gave me this computer, he installed Clock Stopper to extend free trial programs. It's since been uninstalled, but could that program have messed up my clock permanently?
    Thanks
    Date: Thu, 5 Apr 2012 14:28:10 -0600
    From: [email protected]
    To: [email protected]
    Subject: Why can't I access photoshop cs6 on my computer?
        Re: Why can't I access photoshop cs6 on my computer?
        created by Pete.Green in Photoshop CS6 - View the full discussion
    What OS are you using? Do you have any firewalls that you could potentially disable while loading this screen?
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4316290#4316290
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4316290#4316290. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop CS6 by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • TS1702 why can I not access a new document created yesterday in "pages"?

    why can I not access a new document created yesterday in "pages"?

    Hi,
    Based on my understanding, your issue is you cannot create folder in Windows 7, right?
    Did you fix it?
    This issue might be caused by corrupted system file.
    If I am right and you haven't resolve your issue, we could try the following method:
    Run System File Checker Tool to repair your system file:
    Use the System File Checker tool to repair missing or corrupted system files
    http://support.microsoft.com/kb/929833/en-us
    In addition, please refer to this helpful thread:
    http://social.technet.microsoft.com/Forums/windows/en-US/97de8a2a-12f2-4381-a409-a78f4ae551cf/cannot-create-new-folder-in-windows-7?forum=w7itprogeneral
    Karen Hu
    TechNet Community Support

  • Why can't i access Pages on my mac osx Maverics version 10.9.5. Do i need to upgrade to Yosemite?

    Why can't i access Pages on my mac osx Maverics version 10.9.5. Do i need to upgrade to Yosemite? I was using it yesterday just fine.

    Go step by step and test.
    1. System Preference > Sound > Output > Internal Speakers
        Highlight  Internal Speakers / Headphones
        Make sure that Mute is not enabled.
    2.Plug in and  remove the headphone.
        If you see red light in the headphone port, plug the headphone
        in and out of the port 5 or 6 times to flip the microswitch inside.
        Sound output may be stuck in the digital mode.
        Try this even if you don’t see the red light.
    3. Reset PRAM.  http://support.apple.com/kb/PH14222
        Do this twice
    4. Reset SMC.     http://support.apple.com/kb/HT3964
        Choose the appropriate method.
        Choose the method for:
        "Resetting SMC on portables with a battery you should not remove on your own".
    5. Applications > Utilities > Audio MIDI Setup
        Audio Devices window
        Side Bar
        Click the Built-in Output.
         Make sure that no box is checked under “Mute”.

  • Why can't I access my transitions?

    Why can't I access my transitions? When I open the transitions menu, it is blank with just one whited-out selection for each category name. When I originally installed the program, the transition menu had lots of transitions to choose from in each category. They normally appear as black boxes. So somehow I lost my transitions. I tried uninstall & reinstall but it made no difference. Is there a specific folder where I can look to see if the transitions are downloaded? I believe these are .png files. I tried a windows search using the keyword 'dip to black' but did not find anything.

    missing transitions
    What version of Premiere Elements are you using and on what computer operating system is it running?
    Wherever you are, I suspect that you are in the Quick workspace and not the Expert workspace of Premiere Elements 11, 12, or
    13. Go to the Expert workspace. It is normal for the Quick workspace not to have the complete set of transitions that the Expert workspace has.
    The answers are in the details.
    We will be looking forward to your results.
    Thank you.
    ATR

  • Why can't i access my iPhoto library from my epson application

    why can't I access my iphoto library fron my epson aplication

    There are many, many ways to access your files in iPhoto:   You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Command-Click for selecting multiple pics.
    (Note the above illustration is not a Finder Window. It's the dialogue you get when you go File -> Open)
    You can access the Library from the New Message Window in Mail:
    There's a similar option in Outlook and many, many other apps.  If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    If you want to access the files with iPhoto not running:
    For users of 10.6 and later:  You can download a free Services component from MacOSXAutomation  which will give you access to the iPhoto Library from your Services Menu.
    Using the Services Preference Pane you can even create a keyboard shortcut for it.
    For Users of 10.4 and 10.5 Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    Drag and Drop: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    File -> Export: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    Show File:  a. On iPhoto 09 and earlier:  Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.    3.b.
    b: On iPhoto 11 and later: Select one of the affected photos in the iPhoto Window and go File -> Reveal in Finder -> Original. A Finder window will pop open with the file already selected.

  • Why can't I access Photoshop CS4 online help?

    Why can't I access Photoshop CS4 online help?

    Yes, you are right. The web-based online help is available only for the current version of Photoshop. I also discovered how to access the online help that originally came on my CS4 disk. You turn on the offline option (Windows>Extensions>Connections). With the online help from the disk and the PDFs you pointed out, I am happy. Thank you very much. (I hope I have replied to everyone correctly. I am new to this.) My thanks to everyone.

  • Why can't i access my itunes anymore? whenever i click on it, it makes my laptop freeze/slow down to the point where not even ctrl alt delete works properly and i have to turn the laptop off and then back on to get anything done.

    why can't i access my itunes anymore? whenever i click on it, it makes my laptop freeze/slow down to the point where not even ctrl alt delete works properly and i have to turn the laptop off and then back on to get anything done. it has been this way for the last 2/3 days now and i have uninstalled and reinstalled it but it doesnt work

    Hello there, bobbiefromIRL.
    The following Knowledge Base article goes over some great steps for troubleshooting your issue:
    iTunes for Windows Vista, Windows 7, or Windows 8: Fix unexpected quits or launch issues
    http://support.apple.com/kb/ts1717
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • My 9.2.3 iphoto is broke. why can't i access the photos i uploaded to it or them images i downloaded from the internet?

    my iphoto 9.22.3 is broke. why can't i access the images i download from the internet or access the pics i took with my camera? thjey are there when i open iphoto, but not there when i try to use them???

    You already said  that
    the answer us again
    And again exactly are you doing? How are you trying to attach them?  The basic answer is to use the media browser in the lower left hand corner of the attach window under Media ==> photos. ==> iPhoto
    LN

  • Why can't I access Preferences in Edge Code?

    Why can't I access Preferences in Edge Code? I would rather want the HTML and CSS sheets black or very dark grey and then the different HTML and CSS codes in colors rather than this plain black and white input. I cannot even view HTML and CSS side by side in the same window. I have to physically move my hand to switch views. Why isn't that an option that I can access?

    The Preferences menu item is grayed out because there is no preferences dialog box yet.  It sounds like you're asking for a number of different features, though.  Edge Code is based on an open-source editor called Brackets, which is updated more frequently -- so some of the features you're asking about are available already in Brackets even if you're not seeing them in Edge Code.
    More specific responses:
    Dark color scheme -- this is available in the current Brackets release (View > Themes in the menu).
    "HTML and CSS codes in colors rather than plain black and white" -- if you're not seeing color-coded CSS & HTML files in Edge Code, that's a bug.  What is the file extension of your files?  If you look in the status bar in the lower-right corner, does it say "HTML" or "CSS", or just "Text"?  Can you post a screenshot of what you're seeing?
    View two files side by side -- this will be available in Brackets release 0.44, which is probably due out in late September.
    "I have to physically move my hand to switch views" -- you can switch files without taking your hands off the keyboard using Ctrl-Tab / Ctrl-Shift-Tab (next/previous in MRU order) or using Ctrl-Shift-O (to filter on filename or a subset of the filename).
    Hope that helps,
    - Peter

  • Why can I not access the Mac App store?

    why can I not access the Mac App store? I cannot enter the Mac App Store; for updates to featured Apps?

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Why can't I install Itunes on windows vista 64 bit?

    Why can't I install Itunes on windows vista 64 bit? I have removed all apple software and repeated the reinstall many times but it fails.  I get this complicated error mesage and then the installer rolls back and fails.

    I get this complicated error mesage and then the installer rolls back and fails.
    I'd like to have a closer look at that error message please.
    Generate the error message again. While the error message box is open, hold down the Alt key and hit the PrtSc key. Paste the screenshot into an image file (using a program like Paint), and save the file.
    Start a reply here and click the wee camera icon at the top of the reply window. Click "Choose file", browse to the image file, select the file and click "Open". Now click "Insert file" to insert the screenshot into the reply.

  • I have an iTunes account where I have downloaded Digital movies & I am able to see the list on the desktop of the original downloads. When I log on another device with my login I do not see my list to access them. Why can't I access from another device

    I have an iTunes account where I have downloaded Digital movies & I am able to see the list on the desktop of the original downloads. When I log on another device with my login I do not see my list to access them. Why can't I access from another device

    Hey GingCarv,
    Great question. You'll want to download the movies from your purchase history. The following article explains how to do so:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/HT2519
    Note: At this time, movies are not available for automatic downloads.
    Thanks,
    Matt M.

  • I imported some 24P HD videos from my DSLR to Aperture but these videos do not show up in iMovie '09 for editing purposes. Although my previous 24P HD Videos from iPhoto '09 show up. Why can't I access these videos stored in Aperture library?

    I imported some 24P HD videos from my DSLR to Aperture but these videos do not show up in iMovie '09 for editing purposes. Although my previous 24P HD Videos from iPhoto '09 show up. Why can't I access these videos stored in Aperture library? I assumed that like  the videos in iPhoto, I would be able to access the videos in Aperture through iMovie. Come on Apple! I am starting to get frustrated with your products here. And this is saying a lot when I have been using and loving apple products for the last 4 years.

    Hi. My camera is a Canon 600D. And yes my videos are stored in the Aperture library and they are not referenced. Even then I tried to select all the videos in Aperture and clicked 'consolidate masters' and there was a messge that said all 'none of the files are referenced',... so they didn't need consolidating.
    I also tried preferences> export> external video editor > choose > iMovie. And then right click on the video to edit with imovie. Even then the video didn't show up in iMovie. It seems like the only option for me is to import the videos directly to iMovie which means there will be two versions of the same file stored in my computer eating up space.
    APPLE. What are you doing?

Maybe you are looking for

  • Firefox crashes when opening PDF, Word and other files

    Recently, Firefox stopped being able to open PDF files within the Firefox program. It crashes whether one tries to have it open the file or just download it. The same occurs when trying to open a Word doc. It does this in safe mode too. Since I am st

  • 10.4.5 upgrade issue: loginwindow.app won't start

    Hi Folks, I've spent the better part of this weekend troubleshooting my 10.4.5 install as it resulted in the boot process getting stuck at the grey screen with the spinning gear. I've tried all of the simple tricks I can find using google with regard

  • Time Scale Customizing - To Omit Chunks of Time

    Hello, After reading an existing post titled "Time scale during non working time" it's been confirmed the user cannot remove particular periods of time from the gantt chart on 2013, (a shame). I need to do this as the project I'm to continue on had a

  • Validate profit center in complete Project Structure

    Hi PS gurus, I want to validate profit center in (complete Project Structure) Project definition, WBS elements, N/W Header and N/W Activities. •     Presently in the WBS Element there is a possibility to check (Project definition and WBS elements) PR

  • Re:Shortfall of 3 Days against SLED in current item (22.01.2010)

    Dear All, I am recieving this message when I am trying to do a GR against a process order. The order qty.: 150 ist GR was for 50. there was not problem But today when I am tring to do the second GR against this order the system is giving me this mess