如何讓 sshfs 運作?

如何讓 sshfs 運作?

我想掛載透過 ssh 連接的遠端檔案系統,以便我可以使用編輯器來編輯檔案。我sshfs為此安裝了。

運行命令:

sudo sshfs [email protected]:/ /mnt/ec2-deep/

給我這個錯誤:

讀取:連線被對等方重置

我嘗試通過將我的用戶添加到熔斷器來消除此錯誤(這是建議這裡)但它告訴我,我的系統中沒有名為「fuse」的群組。我該做什麼才能sshfs工作?
我的環境是:
作業系統:Ubuntu 16.04

輸出aptitude show fuse

Package: fuse                     
State: installed
Automatically installed: no
Version: 2.9.4-1ubuntu3.1
Priority: standard
Section: utils
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Uncompressed Size: 106 k
Depends: libc6 (>= 2.14), libfuse2 (= 2.9.4-1ubuntu3.1), adduser, mount (>= 2.19.1), sed (>= 4)
Conflicts: fuse:i386
Description: Filesystem in Userspace
 Filesystem in Userspace (FUSE) is a simple interface for userspace programs to export a virtual filesystem to the Linux kernel. It also aims to
 provide a secure method for non privileged users to create and mount their own filesystem implementations.
Homepage: http://fuse.sourceforge.net/

相關內容