sshfs:檔案類型與安裝點不同

sshfs:檔案類型與安裝點不同
sshfs --version
SSHFS version 2.8
FUSE library version: 2.5.0
fusermount version: 2.5.0
using FUSE kernel interface version 7.5

我正在嘗試將遠端 Windows 檔案系統資料夾安裝到 Linux 伺服器。我在 Windows 電腦上安裝了 openSSH,在我的 Linux 伺服器上安裝了 sshfs。

sshfs  [email protected]:/cygdrive/d/test     /mnt/

錯誤出現如下:

[email protected]:/cygdrive/d/test: type of file differs from mountpoint

如何解決這個問題?

答案1

一方面你指向一個文件:/cygdrive/d/測試

另一方面,到一個資料夾:/mnt/

解決方案:

  • 將資料夾 /mnt 同步到資料夾 /cygdrive/d
  • 直接將 /mnt 中的檔案同步到檔案 /cygdrive/d/test

相關內容