任何人都可以帮助我逐步了解如何使用 SSH 或 Giver 在两台 ubuntu 笔记本电脑之间连接和共享文件。
答案1
sudo apt-get install ssh sshfs
两者都做。
现在您应该能够通过以下方式登录到其他网站ssh user@ip-address
,例如。ssh [email protected]
scp file user@ip-address:/path/to/destination
如果可行,您可以使用/将文件复制到另一端
对于目录使用scp -r dir
。
您还可以使用 挂载远程文件夹sshfs
。
mkdir otherside
sshfs user@ip-address:/home/heinz/Musik otherside
如果您查看另一侧的文件夹,您将看到另一台机器上的 Musik 中的文件。