sudo apt update
sudo apt install sshfs
mkdir /home/user/mount
sshfs user@remote_host:/remote_directory /local_mount_point
其中,user是遠程主機的用戶名,remote_host是遠程主機的IP地址或主機名,remote_directory是遠程目錄路徑,local_mount_point是本地掛載點的路徑。
例如,如果要掛載遠程主機上的/home/user/data目錄到本地的/home/user/mount目錄,可以使用以下命令:
sshfs user@remote_host:/home/user/data /home/user/mount
在執行此命令時,系統將提示您輸入遠程主機的密碼。輸入密碼后,將會建立安全的SSH連接,并將遠程文件系統掛載到本地。
fusermount -u /local_mount_point
例如,要卸載先前掛載的遠程文件系統,可以使用以下命令:
fusermount -u /home/user/mount
這樣就成功卸載了遠程文件系統。