linux命令解析--ssh 在本地挂载点上挂载远程驱动器

要将位于远程主机上的文件系统挂载到本地挂载点上,可以使用:

sshfd user@remotehost:/home/path /mnt/mountpoint

然后输入密码即可

现在位于远程主机/home/path中的数据就可以通过本地挂载点/mnt/mountpoint来访问了

完成任务后,可用下面的方法卸载:

umount   /mnt/mountpoint

可以远程拷贝

scp user@remotehost:/home/path/filename filename 将远程设备上的文件拷贝到这里

scp filename user@remote:/home/path/filename 将本地文件拷贝到远程设备上


你可能感兴趣的:(ssh,计算机系统,远程拷贝)