I have a samba mount setup as follow:
Code:
[mp3_share]
comment = My music share
path = /home/music/
public = yes
guest ok = yes
writable = no
accessing with smbclient have no problem listing the file and reading files (tested with 'more')
I try to mount the share using cifs, with this command:
Code:
$ sudo mount -t cifs //localhost/mp3_share /mnt/smbmnt/mp3/ -o guest,user=guest,iocharset=utf8
mounting gives no error. I can 'ls' the file, but I cannot read the file:
Code:
$ cat /mnt/smbmnt/mp3/list.txt
cat: /mnt/smbmnt/mp3/list.txt: Permission denied
dmesg register the following error:
Code:
CIFS VFS: Send error in read = -13
Please help.