修正在 Samba 共用上從 Win 10 進行映像備份時出現錯誤“0x8078015B”

修正在 Samba 共用上從 Win 10 進行映像備份時出現錯誤“0x8078015B”

我正在嘗試在 samba 共享上為我的電腦設定備份,但在 Windows 10 上收到此錯誤:Windows Backup encountered an error when accessing the remote shared folder. Please retry the operation after making sure that the remote shared folder is available and accessible. (0x8078015B) 備份在 Windows 7 上正常運作。

我已經嘗試過以下操作:

  • 清除舊備份中的共用資料夾
  • 使用 chekdsk /f /r 檢查檔案系統是否有錯誤 -> 沒有什麼可修復的
  • 停用防毒軟體
  • 檢查 Windows 服務是否已設定並正在執行
  • 檢查可訪問性
  • 停用無線網路

samba 的設定如下:

  • 帶有加密外部硬碟的 Debian 伺服器透過 USB 連接並透過裝置映射器安裝 -
  • 10TB 硬碟上的每個使用者有 1TB 空間(Windows 10 用戶端有 250GB 硬碟)。

桑巴配置

   workgroup = WORKGROUP
   dns proxy = no
   log file = /var/log/samba/log.%m
   log level = 1 auth:5 winbind:5
   max log size = 1000
   syslog = 0
   panic action = /usr/share/samba/panic-action %d
   server role = standalone server
   passdb backend = tdbsam
   obey pam restrictions = yes
   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* .
   pam password change = yes
   map to guest = bad user
   usershare allow guests = no
   ntlm auth = true
   map untrusted to domain = Yes
[homes]
   comment = Home Directories
   # path = /var/samba/backup_drive/users/%u
   path = %H
   browseable = yes
   read only = no
   create mask = 0700
   directory mask = 0700
   valid users = %S

我嘗試過的連結:

相關內容