I went through the post you had suggested and it didn't work. ....
You may have read it but you didn't implement any of it based on your output of testparm so we'll go though it step by step.
but the same is not true about XP being able to browse Mint shared folders.
** Aside from firewalls check the host name. Run the following command and count the number of characters:
- Code: Select all
hostname
If it's 16 characters long or longer fix it by adding to /etc/samba/smb.conf a line under the workgroup line in the [global] section:
- Code: Select all
netbios name = something
something must be 15 character or less in length** You also need to add another line right under the previous one:
- Code: Select all
name resolve order = bcast host lmhosts wins
On Xp i get an error message concerning permission
Your shares generically look like this:
[Music]
comment = Music
path = /media/E6B07B83B07B594F/Music
read only = No
guest ok = Yes
E6B07B83B07B594F is the UUID of an NTFS partition and one that is mounting automatically when you either select it in Nautilus or insert it if it's an external usb drive. The problem is that an ntfs partition will mount with owner = your-user-name and permissions of 700 meaning only you can access it and no one else. To fix that add another line to your share definition:
[Music]
comment = Music
path = /media/E6B07B83B07B594F/Music
read only = No
force user = your-user-name
guest ok = Yes
your-user-name is your linux login user name.Then restart samba:
- Code: Select all
sudo service nmbd restart
sudo service smbd restart