是否可以从源更新 rsync

是否可以从源更新 rsync

现在我想将 rsync 从 3.1.2 升级到 3.2.7,我这样做:

wget -c https://download.samba.org/pub/rsync/src/rsync-3.2.7.tar.gz
tar -zxvf rsync-3.2.7.tar.gz
cd rsync-3.2.7
./configure
make && make install

所有步骤都运行成功,但是当我检查版本时,它仍然是3.1.2:

[root@k8smasterone rsync-3.2.7]# rsync --version
rsync  version 3.1.2  protocol version 31
Copyright (C) 1996-2015 by Andrew Tridgell, Wayne Davison, and others.
Web site: http://rsync.samba.org/
Capabilities:
    64-bit files, 64-bit inums, 64-bit timestamps, 64-bit long ints,
    socketpairs, hardlinks, symlinks, IPv6, batchfiles, inplace,
    append, ACLs, xattrs, iconv, symtimes, prealloc

rsync comes with ABSOLUTELY NO WARRANTY.  This is free software, and you
are welcome to redistribute it under certain conditions.  See the GNU
General Public Licence for details.

我错过了什么吗?这是操作系统信息:

[root@k8smasterone rsync-3.2.7]# uname -a
Linux k8smasterone 3.10.0-1160.31.1.el7.x86_64 #1 SMP Thu Jun 10 13:32:12 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux

我已经尝试过这样配置:

./configure --prefix=/usr/bin/

不工作。

相关内容