Inetutils
1.1、Inetutils简介
是什么 ?:a collection of common network programs.
开发语言:C
开发组织:GNU
官方主页:https://www.gnu.org/software/inetutils
1.2、通过包管理器安装Inetutils
操作系统包管理器安装命令
macOSHomeBrewbrew install inetutils
GNU/LinuxHomeBrewbrew install inetutils
aptsudo apt-get install -y inetutils
CentOSyumsudo yum install -y inetutils
dnfsudo dnf install -y inetutils
openSUSEzyppersudo zypper install -y inetutils
Alpine Linuxapksudo apk add inetutils

Arch Linux

ArcoLinux

Manjaro Linux

pacmansudo pacman -Syyu --noconfirm
sudo pacman -S    --noconfirm inetutils
Gentoo LinuxPortagesudo emerge inetutils
1.3、通过编译源码安装Inetutils 

step1、安装依赖

所有时Terminal + Shell + GNU CoreUtils
下载时cURL
解压时tar + xz
编译时gmakegcc / GCC | Clang / LLVM
运行时glibc ( libc.solibutil.sold-linux-x86-64.so )

step2、使用curl命令下载Inetutils源码包 (

curl -LO https://mirrors.tuna.tsinghua.edu.cn/gnu/inetutils/inetutils-1.9.4.tar.xz

step3、使用tar解压Inetutils源码包

tar vxf inetutils-1.9.4.tar.xz

step4、进入inetutils-1.9.4目录

cd inetutils-1.9.4

step5、查看inetutils-1.9.4目录中的内容

step6、创建构建目录,并进入该目录

mkdir build && cd build

step7、使用../configure配置编译参数

../configure是一个可执行的POSIX sh脚本,用它 配置后会产生gmake的配置文件Makefile

../configure的使用格式如下:

./configure [option]... [VAR=VALUE]...
option说明
--help    | -h查看../configure的使用帮助
--version | -V查看../configure是哪个版本的autoconf生成的
--quiet   | -q | --silent不输出checking...这些信息
--prefix=DIR指定安装目录。默认是/usr/local/
--host=HOST
设置目标程序运行的CPU平台
一般不需要设置,除非你想要交叉编译
默认与与宿主机一样
--enable-FEATURE[=yes|no]
yes:开启FEATURE
no :关闭FEATURE
--enable-dependency-tracking[=yes|no]是否开启依赖追踪
--enable-option-checking[=yes|no]是否检查有无不认识的--enable-FEATURE--with-PACKAGE参数
--enable-silent-rules[=yes|no]
yes相当于make V=0
no 相当于make V=1
--enable-servers[=yes|no]是否生成服务端可执行程序
--enable-clients[=yes|no]是否生成客户端可执行程序
--enable-libls[=yes|no]是否生成libls
--enable-ftpd[=yes|no]是否生成ftpd
--enable-inetd[=yes|no]是否生成inetd
--enable-rexecd[=yes|no]是否生成rexecd
--enable-rlogind[=yes|no]是否生成rlogind
--enable-rshd[=yes|no]是否生成rshd
--enable-syslogd[=yes|no]是否生成syslogd
--enable-talkd[=yes|no]是否生成talkd
--enable-telnetd[=yes|no]是否生成telnetd
--enable-tftpd[=yes|no]是否生成tftpd
--enable-uucpd[=yes|no]是否生成uucpd
--enable-ftp[=yes|no]是否生成ftp
--enable-dnsdomainname[=yes|no]是否生成dnsdomainname
--enable-hostname[=yes|no]是否生成hostname
--enable-ping[=yes|no]是否生成ping
--enable-ping6[=yes|no]是否生成ping6
--enable-rcp[=yes|no]是否生成rcp
--enable-rexec[=yes|no]是否生成rexec
--enable-rlogin[=yes|no]是否生成rlogin
--enable-rsh[=yes|no]是否生成rsh
--enable-logger[=yes|no]是否生成logger
--enable-talk[=yes|no]是否生成talk
--enable-telnet[=yes|no]是否生成telnet
--enable-tftp[=yes|no]是否生成tftp
--enable-whois[=yes|no]是否生成whois
--enable-ifconfig[=yes|no]是否生成ifconfig
--enable-traceroute[=yes|no]是否生成traceroute
--enable-encryption[=yes|no]是否支持加密
--enable-authentication[=yes|no]是否支持认证
--enable-ipv6[=yes|no]是否支持IPv6
--enable-largefile[=yes|no]是否支持大文件(超过2GB)
--enable-rpath[=yes|no]是否使用runtime path(硬编码动态库的搜索路径)
--enable-threads={posix|solaris|pth|windows}指定使用哪个多线程库
--enable-ncurses[=yes|no]是否使用ncurses
--enable-readline[=yes|no]是否使用readline
--with-PACKAGE[=yes|no]
yes: 使用PACKAGE
no:不使用PACKAGE
--with-gnu-ld[=yes|no]是否使用GNU ld
--with-libidn-prefix[=DIR]是否在DIR/{include,lib}中搜索libidn2头文件库文件
--with-libpth-prefix[=DIR]是否在DIR/{include,lib}中搜索libpth头文件库文件
--with-libreadline-prefix[=DIR]是否在DIR/{include,lib}中搜索readline头文件库文件
--with-libedit-prefix[=DIR]是否在DIR/{include,lib}中搜索libedit头文件库文件
--with-ncurses-include-dir[=DIR]设置ncurses头文件所在路径
--with-krb4[=DIR]是否使用Kerberos 4
--with-krb5[=DIR]是否使用Kerberos 5
--with-Shishi[=DIR]是否使用GNU Shishi
--with-wrap[=yes|no]是否使用TCPWrappers
--with-pam[=DIR]是否使用Linux-PAM

enable-FEATURE对应的选项,还有disable-FEATUREdisable-FEATURE相当于enable-FEATURE=no

与    with-PACKAGE对应的选项,还有without-PACKAGEwithout-PACKAGE相当于    with-PACKAGE=no

VARVALUE示例说明
CCgcc |  clang指定C编译器
CFLAGS-O2 -v指定C编译器的参数
CPPcpp指定C预处理器
CPPFLAGS-I<includeDIR>指定C预处理器的参数
LDFLAGS-L<libDIR>指定C链接器的参数
LIBS-l<libName>指定C链接器要链接的库的名称

示例:

../configure --prefix=/usr CFLAGS='-O2 -v'

step8、使用make进行编译、安装

make && sudo make install
1.4、Inetutils中包含的命令