Samba Share Not Working

This is my samba configuration:
Code:
[global]
   server string = Samba Server

[music]
    path = /home/music/Music
    writeable = yes
    browseable = yes
    read only = no
    guest ok = yes
    comment = music
    wins support = yes
   
[nobody]
   browseable = no

I can move downloaded files into the share. But not music files ripped in windows saved to a FAT USB disk. Please, any suggestions?
 
The type of file or where they came from is irrelevant. You either have write access, or not. It's not dependent on the kind of file.
 
Good to hear - because my configs the above. And I can move single files. But not directories containing files. As soon as its a file in a dir. I get a permissions error.
 
Check the permissions of /home/music

Default guest account in smb is
guest account = nobody

So if you change the dir to have nobody as owner with r/w permission it will work.
 
This is my smb.conf
Code:
[global]
   server string = Samba Server

[music]
    path = /home/music/share/music
    writeable = yes
    browseable = yes
    read only = no
    guest ok = yes
    guest account = nobody
 
[nobody]
   browseable = no

Code:
chown nobody:nobody /home/music/share/music
chmod 777 /home/music/share/music
 
Back
Top