【转载】centOS 安装 rzsz

1.yum自动安装:

yum install lrzsz

2.手动安装方法如下:

2.1. 下载软件 rzsz-3.48.tar.gz

wget http://freeware.sgi.com/source/rzsz/rzsz-3.48.tar.gz下载。

2.2解压 tar zxvf rzsz-3.48.tar.gz

2.3.安装 cd rzsz-3.48

make posix 或者 makeLinux

2.4.如果出现如下提示:

-bash: make: command not found。

2.5.表系统没有安装编译器,SSH下安装一下:

yum -y install gcc automake autoconf libtool make

2.6.再次执行make posix 命令

[root@miao src]#make posix

02 cc   -O -DPOSIX -DMD=2 rz.c -o rz

03 size rz

04  text    data     bss     dec     hex filename

05  25444     648   10464   36556    8ecc rz

06 rm -f rb rx rc

07 ln rz rb

08 ln rz rx

09 ln rz rc

10 cc   -O -DPOSIX sz.c -o sz

11 size sz

12  text    data     bss     dec     hex filename

13  30565     708   43072   74345   12269 sz

14 rm -f sb sx zcommand zcommandi

15 ln sz sb

16 ln sz sx

17 ln sz zcommand

18 ln sz zcommandi

19 [root@miao src]#

3.为了方便使用这个工具,把相关文件复制到目录/usr/bin下面,这里只需要拷贝2个文件rz及sz

cp rz sz /usr/bin

你可能感兴趣的:(【转载】centOS 安装 rzsz)