web-dev-qa-db-ja.com

Samba Shareに突然アクセスできません

数時間探した後、私はここで助けを探しています。

私のセットアップは次のとおりです。

  • サーバー:Ubuntu Server 14.04.3 LTS
  • クライアント:Unixユーザーのログインで勝利7

昨日SMBは完全に正常に機能していましたが、今日帰宅した後、共有への接続はありません。

Sshを使用している現在のユーザーは非常によく接続しており、サーバーはクライアント上にあります。しかし、「root」->「mnt」と入力すると、許可が拒否されます...マルチメディアはもう少し動作しますが、同じドライブに直接接続している場合のみです。動作していない複数のシンボリックリンクがあります。

誰か助けてください:(

My SMB Config(Testparmは良さそうです。)

[global]
workgroup = ZIRP
server string = %h server (Samba, Ubuntu)    
dns proxy = no
;   interfaces = 127.0.0.0/8 eth0
;   bind interfaces only = yes
log file = /var/log/samba/log.%m
max log size = 1000
syslog = 0
panic action = /usr/share/samba/panic-action %d
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* .
map to guest = bad user

[Home]
path = %H
comment = Home Directories
;   browseable = no
;   read only = yes
create mask = 0755
directory mask = 0755
;valid users = %S

[printers]
   comment = All Printers
   browseable = no
   path = /var/spool/samba
   printable = yes
   guest ok = no
   read only = yes
   create mask = 0700

# Windows clients look for this share name as a source of downloadable
# printer drivers
[print$]
   comment = Printer Drivers
   path = /var/lib/samba/printers
   browseable = yes
   read only = yes
   guest ok = no
# Uncomment to allow remote administration of Windows print drivers.
# You may need to replace 'lpadmin' with the name of the group your
# admin users are members of.
# Please note that you also need to set appropriate Unix permissions
# to the drivers directory for these users to have write rights in it
   write list = root, @lpadmin

[Multimedia]
   path = /mnt/Festplatte2/Multimedia
   follow symlinks=yes

[Root]
    path = /
    valid users = benjamin
    write list = benjamin
    writable = yes
    follow symlinks=yes
2
DasBen

http://ubuntuforums.org/showthread.php?t=1600541 で自分で答えを見つけました

Smb.confの[global]セクションに次の行を追加します。コード:symlinksに従う= yesワイドリンク= yes unix extensions = no

次に、sambaサービスを再起動します。コード:Sudo service smbd restart

2
DasBen