linux高级拷贝命令scp怎么使用
时间:2023-05-12 18:34
linux命令scp scp — secure copy (remote file copy program):她是一个安全的远程文件拷贝程序。 synopsis :语法如下 [[user@]host1:]file1 ... [[user@]host2:]file2 看到上面各种参数、选项蒙了吧。不过,没有关系,我们化整为零,一个一个来分析。 scp 最简单的用法就是 scp [[user@]host1:]file1 ... [[user@]host2:]file2 ,能看懂么? 至于该命令的其他参数,平时工作之中基本用不到,所以,不举例了,简单给大家翻译一下吧,以做参考。 description : 描述 the options are as follows: -2 forces scp to use protocol 2. -3 copies between two remote hosts are transferred through the local host.without this option the data is copied -4 forces scp to use ipv4 addresses only. -6 forces scp to use ipv6 addresses only. -b selects batch mode (prevents asking for passwords or passphrases). -c compression enable.passes the -c flag to ssh(1) to enable compression. -c cipher -f ssh_config -l limit -p port -r recursively copy entire directories -s program exit status 以上就是linux高级拷贝命令scp怎么使用的详细内容,更多请关注Gxl网其它相关文章!
scp [-12346bcpqrv] [-c cipher] [-f ssh_config] [-i identity_file] [-l limit] [-o ssh_option] [-p port] [-s program]
其实,这个命令和我们平时使用的cp 十分的相似。
看不懂也没有关系,举个例子吧: 我要从192.168.1.2的linux 主机的/home/oracle/*.tar 文件 拷贝到 192.168.1.3 的linux主机的 /home/siebel下,就可以仿照上面的格式写成:
scp oracle@192.168.1.2:/home/oracle/*.tar siebel@192.168.1.3:/siebel/
输入完了以上命令,回车换行确认,可能会让你输入口令,根据提示输入口令吧。
第一次执行的时候,出现如下错误:ssh: connect to host 192.168.1.99 port 22: connection refused, 于是将 sshd 程序启动,执行脚本: # /etc/init.d/sshd start, 成功解决以上问题。
scp copies files between hosts on a network. it uses ssh(1) for data transfer, and uses the same authentication and provides the same security as ssh(1). unlike rcp(1), scp will ask for passwords or passphrases if they are needed for authentication.
scp 在网络主机之间拷贝数据,她使用ssh(1)来进行数据传输,同时使用相同的安全验证方式。不象 rcp(1), scp 在必要的时候,会询问口令。
具体的选项如下所示:
-1 forces scp to use protocol 1.
强制 scp 使用协议1
强制 scp 使用协议2
directly between the two remote hosts.note that this option disables the progress meter.
通过本机主机在两个远程主机之间传输数据。没有这个选项,数据将直接在远程主机间拷贝数据。 注意:这个选项不支持进度条显示。
强制scp只使用ipv4地址。
强制scp只使用ipv6地址。
使用批量模式(避免询问密钥或者口令)
启用压缩。传递-c参数给ssh以启用压缩
selects the cipher to use for encrypting the data transfer.this option is directly passed to ssh(1).
选择密码加密数据传输,这个选项被直接传递给ssh(1)。
specifies an alternative per-user configuration file for ssh.this option is directly passed to ssh(1).
为ssh指定一个交互的用户配置文件,这个选项被直接传递给ssh(1)。
limits the used bandwidth, specified in kbit/s.
限制使用的带宽,以kb为单位。
specifies the port to connect to on the remote host.
在远程主机上指定链接端口
-q quiet mode
静默模式:
递归拷贝整个目录
name of program to use for the encrypted connection.the program must understand ssh(1) options.
用来加密链接的程序。这个程序需要能够识别ssh(1)的选项。
执行后状态
the scp utility exits 0 on success, and >0 if an error occurs.
scp 工具命令当成功执行后,返回代码为0, 任何错误出现返回代码都大于0