linux运行rs程序,【linux-基础】安装scp,rz,rs命令

在测试中需要在两台虚拟机之间传递文件,首先想到的是scp命令,结果提示:

-bash: scp: command not found

想当然用yum install scp命令安装,结果提示:

No package scp available.

后来发现scp这东西应该属于openssh-clients这个包,

在源主机运行

yum install openssh-clients

再运行scp就可以了,再次运行:

输入密码后又再次提示:

bash: scp: command not found

在目标主机也同样安装一下

openssh-clients,再次尝试,问题解决。

-----------------------------------------------------------------------------------------------------------------------------------------------

$> yum install lrzsz Loaded plugins: fastestmirror  Loading mirror speeds from cached hostfile   * addons: data.nicehosting.co.kr   * base: data.nicehosting.co.kr   * extras: data.nicehosting.co.kr   * updates: data.nicehosting.co.kr  Setting up Install Process  Resolving Dependencies  --> Running transaction check  ---> Package lrzsz.i386 0:0.12.20-22.1 set to be updated  --> Finished Dependency Resolution  Dependencies Resolved  ================================================================================================================================   Package                      Arch                        Version                            Repository                  Size  ================================================================================================================================  Installing:   lrzsz                        i386                        0.12.20-22.1                        base                        81 k  Transaction Summary  ================================================================================================================================  Install      1 Package(s)  Upgrade      0 Package(s)  Total download size: 81 k  Is this ok [y/N]: y  Downloading Packages:  lrzsz-0.12.20-22.1.i386.rpm                                                                              |  81 kB    00:00     Running rpm_check_debug  Running Transaction Test  Finished Transaction Test  Transaction Test Succeeded  Running Transaction    Installing    : lrzsz                                                                                                    1/1  Installed:    lrzsz.i386 0:0.12.20-22.1

你可能感兴趣的:(linux运行rs程序)