Problem: You click Network → Places and than on Windows-Network and on your Workgroup. Now you are waiting and nothing happens, so you do not find shares from other hosts. Maybe you get an error, that the mounting failed.
Fire up your bash and type smbtree which will likely display something like this:
guru@guru-desktop:~$ smbtree
Enter guru's password:
WORKGROUP
\\XPMT
cli_start_connection: failed to connect to XPMT<20> (0.0.0.0). Error NT_STATUS_UNSUCCESSFUL
\\GURU-DESKTOP guru-desktop server (Samba, Ubuntu)
\\GURU-DESKTOP\share
\\GURU-DESKTOP\Epson-Stylus-Photo-RX600 Epson Stylus Photo RX600
\\GURU-DESKTOP\IPC$ IPC Service (guru-desktop server (Samba, Ubuntu))
\\GURU-DESKTOP\print$ Printer Drivers
If you get this error (cli_start_connection: failed to connect to XPMT<20> (0.0.0.0). Error NT_STATUS_UNSUCCESSFUL) edit /etc/samba/smb.conf (as root) and change the following line
; name resolve order = lmhosts host wins bcast
into this (delete semicolon and move host to the end)
name resolve order = lmhosts wins bcast host
Now restart your PC (restarting samba and killing nautlius does not work).
Source: Bugs #389909 and #469548 (Duplicate)
Hello, thanks for you post, you saved my life
. I’ll “copy” your post because I haven’t found anything like this in Spanish..
I hope you don’t get angry, if you don’t like you can send me an email and I’ll delete the post immediately. Take care
Thanks a lot! Your post saved me a lot of trouble.
Thank you so much for this. I’ve been asking around everywhere to try and get this sorted!
Just so you know, this bug exists in linux Mint, and the fix works fine there too
Thanks again!
Thanks for the post. I’ve spent days searching the internet looking for this solution. I can now at long last access Windows 7 shares from Linux Mint. yippeee
Looks like it works, thank you!
Thank you! I was about to give up after I got past the error:
Server requested LANMAN password (share-level security) but ‘client lanman auth’ is disabled
I solved that thanks to this post: http://ubuntuforums.org/showthread.php?t=1422857
Thank you very much!
Maybe you should add this to your post to be complete since it’s an other very common samba problem: On some Ubuntu versions there’s a problem with the host resolve order. Make sure the host is on the last place on this line in smb.conf:
name resolve order = lmhosts wins bcast host
In the default smb.conf this line is comented. Don’t forget to uncoment it.