전체 RW 액세스 권한이있는 공용 폴더를 만들고 싶습니다. 내 구성의 문제는 Windows 사용자가 게스트로 문제가 없으며 (RW 및 삭제 가능) 내 Ubuntu 클라이언트가 동일하게 수행 할 수 없다는 것입니다. 쓰기와 읽기만 할 수 있지만 만들거나 삭제할 수는 없습니다.
내 서버의 내 smb.conf는 다음과 같습니다.
[global]
workgroup = WORKGROUP
netbios name = FILESERVER
server string = TurnKey FileServer
os level = 20
security = user
map to guest = Bad Password
passdb backend = tdbsam
null passwords = yes
admin users = root
encrypt passwords = true
obey pam restrictions = yes
pam password change = yes
unix password sync = yes
passwd program = /usr/bin/passwd %u
passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .
add user script = /usr/sbin/useradd -m '%u' -g users -G users
delete user script = /usr/sbin/userdel -r '%u'
add group script = /usr/sbin/groupadd '%g'
delete group script = /usr/sbin/groupdel '%g'
add user to group script = /usr/sbin/usermod -G '%g' '%u'
guest account = nobody
syslog = 0
log file = /var/log/samba/samba.log
max log size = 1000
wins support = yes
dns proxy = no
socket options = TCP_NODELAY
panic action = /usr/share/samba/panic-action %d
[homes]
comment = Home Directory
browseable = no
read only = no
valid users = %S
[storage]
create mask = 0777
directory mask = 0777
browseable = yes
comment = Public Share
writeable = yes
public = yes
path = /srv/storage
다음 FSTAB 항목은 공유에 대한 전체 R / W 액세스를 제공하지 않습니다.
//192.168.0.5/storage /media/myname/TK-Public/ cifs rw 0 0
이것은 작동하지 않습니다
//192.168.0.5/storage /media/myname/TK-Public/ cifs rw,guest,iocharset=utf8,file_mode=0777,dir_mode=0777,noperm 0 0
마운트 된 공유없이 Nemo / Nautilus에서 다음 위치를 사용하면 작동합니다.
smb://192.168.0.5/storage/
추가 정보. 마운트 후 파일을 공유에 복사하면 Ubuntu 클라이언트가 즉시 "nobody"를 소유자로 만들고 "no group"그룹은 다른 사람과 읽기 및 쓰기 권한을가집니다.
내가 무엇을 잘못하고 있지?