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
这样就成功卸载了远程文件系统。