사용자 이름과 비밀번호 인증 없이는 Samba를 사용하여 Windows에서 Linux 파일에 액세스할 수 없습니다. 항상 사용자 이름과 비밀번호를 묻습니다.
누구나 액세스할 수 있도록 인증 없이(처음이라도) Linux 파일에 액세스할 수 있는 방법이 있습니까?
어떤 제안이 있으십니까?
내 smb.conf
파일에서.
나는 넣었다
security = share
guest account = nobody
[home]
comment = Home Directory
# browseable=no here hides homes,but displays a scetion with username;(refer man
browseable = yes
read only = no
create mask = 0777
directory mask = 0777
path = /
guest ok = yes
# valid users = %S
답변1
다음과 같이 Samba 구성에 게스트 계정을 추가합니다.
https://www.debuntu.org/samba-how-to-share-files-for-your-lan-without-userpassword/
security = share
#...
guest account = nobody
#...
[Guest Share]
comment = Guest access share
path = /path/to/dir/to/share
browseable = yes
read only = yes
guest ok = yes