- 安装ssh服务。
# 网上说自带的ssh不好用,先卸载再安装
sudo apt-get remove openssh-server
sudo apt-get install openssh-server
- 配置端口,ssh默认是22端口,22端口windows可能会有用,重新配置一个。
sudo vi /etc/ssh/sshd_config # 注意同级目录下可能有ssh_config,不要搞错
# 我就修改Port和PasswordAuthentication
Port 2222
PasswordAuthentication yes
- 启动[或重启]ssh
sudo service ssh start
-
使用ssh工具连接
文件上传
通过sftp或者直接将文件拷贝到对应目录上(更快)。如我的root目录对应的是:d:/Ubuntu16/rootfs,我要把文件拷贝到/opt下,就直接拷贝到d:/Ubuntu16/rootfs/opt。
直接拷贝文件,不用走网卡,更快。