是什么 ? | : | utilities for managing accounts and shadow password files |
开发语言 | : | C |
源码仓库 | : | https://github.com/shadow-maint/shadow |
操作系统 | 包管理器 | 安装命令 |
---|---|---|
apt | sudo apt-get install -y shadow-utils | |
CentOS | yum | sudo yum install -y shadow-utils |
dnf | sudo dnf install -y shadow-utils | |
openSUSE | zypper | sudo zypper install -y shadow-utils |
Alpine Linux | apk | sudo apk add shadow-utils |
pacman | sudo pacman -Syyu --noconfirm | |
Gentoo Linux | Portage | sudo emerge shadow |
step1、安装依赖
所有时 | Terminal + Shell + GNU CoreUtils |
下载时 | cURL |
解压时 | tar + xz |
编译时 | gmake、gcc / GCC | Clang / LLVM |
运行时 | glibc ( libc.so 、libdl.so 、ld-linux-x86-64.so ) |
step2、使用curl命令下载shadow-utils
源码包 ()
curl -LO https://github.com/shadow-maint/shadow/releases/download/4.7/shadow-4.7.tar.xz
step3、使用tar解压shadow-utils
源码包
tar vxf shadow-4.7.tar.xz
step4、进入shadow-4.7
目录,查看查看该目录中的内容
step5、配置、编译、安装
./configure && make && sudo make install