There are a few things wrong with your setup.
[1] There are 2 different methods to create samba shares:
This is a Samba Classic share:
[Videos]
path = /media/Home/Videos
valid users = Belle, carl
read only = No
This is a Samba Usershare ( created from Nautilus )
[videos]
path=/media/Home/Videos
comment=
usershare_acl=Everyone:F,
guest_ok=n
Who can access that share is different between the 2 so I'd get rid of the Usershare by going into Nautilus and undoing the share.
[2] Your security level is also discombobulated.
Edit smb.conf as root:
- Code: Select all
gksu gedit /etc/samba/smb.conf
Find and change these 2 lines:
security = SHARE
encrypt passwords = No
To this:
security = user
encrypt passwords = Yes
[3] Linux file permissions need to be modified in order for remote users to write "Music":
- Code: Select all
sudo chmod 0777 /media/Home/Music
After all these changes restart samba:
- Code: Select all
sudo service smbd restart
Wait about 5 minutes for the network to calm itself after a samba restart and see how far that got you.