Windows 10에서 Samba 공유에 액세스할 수 없습니다.

Windows 10에서 Samba 공유에 액세스할 수 없습니다.

Windows 10에서 Centos 7의 폴더를 공유할 수 없는 것 같습니다.

Windows 10에서 SMB 기능(클라이언트 및 서버)을 활성화하고 모든 사용자에게 읽기 및 쓰기 권한을 허용하도록 centos 7에서 smb.conf 파일을 구성했습니다.

구성 파일에 공유, 저장, 테스트라는 세 가지 공유 옵션을 구성했는데 공유 옵션에 액세스할 수 있었지만 서버의 데이터베이스(액세스) 옵션이 손상되었습니다. 파일 권한에 문제가 있었고 사용자가 파일을 편집/저장할 때 파일이 손상되었습니다.

이것은 내 smb.conf 파일입니다.

# See smb.conf.example for a more detailed config file or
# read the smb.conf manpage.
# Run 'testparm' to verify the config is correct after
# you modified it.

[global]
    workgroup = WORKGROUP
    security = user
    netbios name = files
    idmap config * : backend =tbd

    passdb backend = tdbsam

        printing = cups
        printcap name = cups
        load printers = yes
        cups options = raw

[homes]
    comment = Home Directories
    browseable = No
    inherit acls = Yes
    read only = No
    valid users = %S %D%w%S

[printers]
    comment = All Printers
    path = /var/tmp
    printable = Yes
    create mask = 0600
    browseable = No

[print$]
    comment = Printer Drivers
    path = /var/lib/samba/drivers
    write list = @printadmin root
    force group = @printadmin
    create mask = 0664
    directory mask = 0775

[Share]
    oplocks = no
    writeable = yes
    locking = no
    path = /srv/samba/files/share
    force user = nobody
    comment = Temp file-server
    create mode = 777
    public = yes
    browsable = yes
    directory mode = 777    


[Storage]
    oplocks = no
    writeable = yes
    locking = no
    path = /mnt/b70a0058-040e-4815-8bcf-2b5bc5ce6f03/Share
    force user = nobody
    comment = File Server Share
    create mode = 777
    public = yes
    browsable = yes
    directory mode = 777    

[test]
    guest account = admin
    oplocks = no
    writeable = yes
    locking = no
    path = /mnt/b70a0058-040e-4815-8bcf-2b5bc5ce6f03/test
    force user = admin
    comment = Temp file-server
    public = yes
    browsable = yes
    create mode = 777
    directory mode = 777

관련 정보