Originally posted by GUI_XP what distro would u recommend for me setting up a samba test box on our 2k lan
Originally posted by tom dunne I set up Samba yesterday on my brand new Suse 8.2 box. It was disturbingly easy. The biggest problem I had was that I didn't realise you needed four backslashes instead of two (i.e. smbclient \\\\Windows\\C instead of \\windows\c )
Originally posted by Kali smbclient '\\server\share' -u username works for me.. dunno why you'd need those extra slashes.
Originally posted by a_ominous The double backslash is needed in his case coz he didn't use single quotes as you did. Backslash is a special character and has to be quoted using a backslash For example if you want to print a TAB echo \thello echo '\' will give the same result as echo \\ If you had lots of characters to escape, then use single quotes for clarity. -ao-