답변:
편집하다 /etc/samba/smb.conf
# command line
sudo -e /etc/samba/smb.conf
# graphical
gksu gedit /etc/samba/smb.conf
에 추가 write list
하여 공유 정의에 있었던 파라미터, 쓰기 권한이 허용 된 사용자 목록에 추가 할 수 있습니다.
write list = user1 user2 user3
당신은 사용할 수 있습니다 read list
뿐만 아니라
read list = guest, nobody
그래서 ...
[share]
comment = Ubuntu Share
path = /your/samba/share
browsable = yes
guest ok = yes
read only = yes
write list = user1 user2 user3
create mask = 0755
보다 세밀한 제어가 필요한 경우 서버에서 acl (액세스 제어 목록)을 사용할 수 있습니다.
read only
만 사용할 수 있으며 값으로 사용자 이름이나 그룹을 가질 수 없습니다. yes
no
read only
을 시도 guest nobody
했지만 모든 것이 마치 마치 내 몫에 대한 손님 액세스를 제거하는 guest ok
것 no
입니다. 사용하여 write list
, 마치 마법처럼 단지 수치를 일을 내가 추가 할 때마다 새 사용자를 업데이트해야합니다.
읽기 전용 매개 변수는 부울 값이므로 다음 중 하나와 유사해야합니다.
[share]
comment = Ubuntu Share
path = /your/samba/share
browsable = yes
guest ok = yes
read only = no
read list = guest nobody
write list = user1 user2 user3
create mask = 0755
[share]
comment = Ubuntu Share
path = /your/samba/share
browsable = yes
guest ok = yes
read only = yes
write list = user1 user2 user3
create mask = 0755
lp_bool(guest nobody): value is not boolean!