Ok,
Got it to mount with
Code: Select all
sudo mount -t vfat -o defaults,user,exec,uid=1000,gid=100,umask=000,rw /dev/sda1 /home/shares/public/disk1
I can create folders from the raspberry and "cd" into them,
But I cant create folders from connected Samba clients,
think its a problem with my fstab or my smb.conf
Fstab
Code: Select all
//192.168.1.19/public /media/pi cifs uid=calbert,credentials=/home/calbert/.smbcredentials,iocharset=utf8,file_mode=0777,dir_mode=0777 0 0
smb.conf
Code: Select all
####### Authentication #######
security = user
client lanman auth = Yes
lanman auth = Yes
[global]
workgroup = WORKGROUP
netbios name = xbian
server string = xbian
log file = /var/log/samba/log.%m
max log size = 50
map to guest = bad user
socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192
local master = no
dns proxy = no
[public]
path = /home/shares/public
public = yes
only guest = yes
writable = yes
where am I going wrong,