编译安装rsync,按照如下步骤进行的:
wget https://download.samba.org/pub/rsync/src/rsync-3.1.2.tar.gz
tar -zxvf rsync-3.1.2.tar.gz
cd rsync-3.1.2
./configure
make
make install
在进行./configure
这一步时,出现如下信息:yodl2man was not found表示什么意思?需要做点什么吗?
rsync 3.1.2 configuration successful
Note that yodl2man was not found, so pre-existing manpage files will be
used w/o change (if available) -- no .yo file changes will be used.
yold2man 提供了產生 man 的一種方式,估計有沒有它影響不大。如果不報錯就不用管,報錯就把
./configure
後面加上去掉 doc 的參數,不產生幫助文件。