Ubuntu scp 命令

  • ubuntu,ssh,命令,scp命令,
  • 2014-08-01 12:53:43

在两台ubuntu(linux)之间,传输文件或者目录。


命令:
scp 
scp [可选参数] file_source file_target

命令格式:
scp local_file remote_username@remote_ip:remote_folder
或者
scp local_file remote_username@remote_ip:remote_file
或者
scp local_file remote_ip:remote_folder
或者
scp local_file remote_ip:remote_file

local_file 可以是相对路径,也可以是绝对路径。

传输目录的话,在scp 后面加一个 -r 例如:
scp -r local_file remote_username@remote_ip:remote_folder

如果在连接的时候出现下面的错误提示,说明目标主机没有安装相应的软件。
ssh: connect to host 192.168.1.118 port 22: Connection refused
lost connection

解决办法:
sudo apt-get install ssh openssh-server



相关文章

- EOF -

本站文章除注明转载外,均为本站原创或编译。欢迎任何形式的转载,但请务必注明出处,尊重他人劳动。
转载请注明:文章转载自 Binkery 技术博客 [https://binkery.com]
本文标题: Ubuntu scp 命令
本文地址: https://binkery.com/archives/235.html