SCP指令错误解决方法

scp:
指令:scp sourcefile [email protected]:destdir

1、错误:ssh:connect to host 192.168.109.133 port 22:Connection refused lostconnection。
在Ubuntu中,默认安装了openssh-client,但没有安装openssh-server,因此需要安装openssh-server再运行scp sourcefile [email protected]:destdir 。
2、错误出现Permission denied
默认情况下,当user为root,不能够ssh root权限,这样不太安全。但是可以通过修改配置文件/etc/ssh/sshd_config配置(但我修改了里面的文件也没有效果)。
最后还是将user换成了普通用户,并且把destdir换成user可以修改的目录。

你可能感兴趣的:(Linux开发)