Windows 10 で Samba 共有にアクセスできません。

Windows 10 で Samba 共有にアクセスできません。

Windows 10でCentos 7のフォルダを共有できないようです。

Windows 10でSMB機能(クライアントとサーバー)を有効にし、すべてのユーザーに読み取りおよび書き込み権限を許可するようにcentos 7でsmb.confファイルを構成しました。

構成ファイルに共有、保存、テストという3つの共有オプションを設定しましたが、共有オプションにアクセスできましたが、サーバーのデータベース(アクセス)オプションが破損しています。ファイル権限に問題があり、ユーザーがファイルを編集/保存するとファイルが破損しました。

これは私の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

ベストアンサー1

おすすめ記事