安装了ubuntu,以ubuntu为例,其他linux发行版应该类似,需自行摸索。
2,远程连接配置,以非root用户为例,全部配置均在本地。
ssh-keygen -t rsa #local
ssh-copy-id -i ~/.ssh/id_rsa.pub user@remote_host #root@192.168.110.175 input password
#ssh-copy-id -i ~/.ssh/id_rsa.pub -p port user@remote_host #not default port 22
vim ~/.ssh/config
~/.ssh/config中的配置:
Host test
HostName 192.168.110.175
User root
Port 22
IdentityFile /home/user/.ssh/id_rsa
Port是默认端口22可以不配置,IdentityFile 使用id_rsa绝对路径,查看命令:
cd ~/.ssh && pwd
3,ssh remote_host
ssh test #登录远程主机 本例中的命令
exit #退出
4 sftp remote_host
5,powershell 设置复制粘贴。
windows有wsl开发需求的,通上述配置,适应一段时间操作方式,就可以告别祖传xshell+xftp了。
6,无需安装wsl,原生windows powershell可以直接使用ssh和sftp。