如何实现在台式机和笔记本电脑上的文件共享,以台式机为服务器,笔记本远程访问台式机(服务器)上的文件。
1 依赖可视化GUI操作--适合Ubuntu(Linux)初级用户
Boot the desktop to Ubuntu.
On both the desktop and the laptop do the following to make sure ssh-server is intalled:
Open a terminal by pressing Ctrl+Alt+T and enter
首先,打开终端(Ctrl+Alt+T ),安装openssh服务器
sudo apt-get install openssh-server
输入密码,等待安装成功。
打开文件管理器,找到网络/连接到网络服务器,在网络地址栏中输入
sftp://desktop_user_id@desktop_name.local/home/desktop_user_id
如何查看自己的user ID
whoami
如果只想分享硬盘上部分资源的话,可以采用在网络地址栏输入
/path/to/.../drive 是你实际要共享的文件的路径。
如果你知道台式机(服务器)的IP地址的话,可以用IP地址如192.168.1.1代替deaktop_name.local
连接,可以看到一个输入密码的对话框,输入你要连接的服务器的密码,即可进入。
同时可以选择记住密码或不记住密码。
2 依赖scp命令命令行操作--适合进阶Ubuntu(Linux)用户使用
命令:
scp FilePath user@hostAddress:FilePath
如:
scp /home/1.png user@192.168.164.130.:/home/pictures