是什么 ? | : | Pluggable Authentication Modules for Linux |
开发语言 | : | C |
官方主页 | : | http://www.linux-pam.org |
源码仓库 | : | https://github.com/linux-pam/linux-pam |
操作系统 | 包管理器 | 仓库 | 安装命令 |
---|---|---|---|
apt | official | sudo apt-get install -y pam | |
CentOS | yum | RPMFusion | sudo yum install -y pam |
dnf | RPMFusion | sudo dnf install -y pam | |
openSUSE | zypper | PackMan | sudo zypper install -y pam |
Alpine Linux | apk | official | sudo apk add Linux-PAM pam |
pacman | official | sudo pacman -Syyu --noconfirm | |
Gentoo Linux | Portage | official | sudo emerge pam |
step1、安装依赖
所有时 | Terminal + Shell + GNU CoreUtils |
下载时 | cURL |
解压时 | tar + xz |
编译时 | gmake、gcc / GCC | Clang / LLVM |
运行时 |
|
step2、使用curl命令下载Linux-PAM
源码包 ()
curl -LO https://github.com/linux-pam/linux-pam/releases/download/v1.3.1/Linux-PAM-1.3.1.tar.xz
step3、使用tar解压Linux-PAM
源码包
tar vxf Linux-PAM-1.3.1.tar.xz
step4、进入Linux-PAM-1.3.1
目录
cd Linux-PAM-1.3.1
step5、查看Linux-PAM-1.3.1
目录中的内容
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-static[=yes|no] | 是否生成静态库 | |
--enable-shared[=yes|no] | 是否生成动态库 | |
--enable-rpath[=yes|no] | 是否使用runtime path (硬编码动态库 的搜索路径) | |
--enable-nls[=yes|no] | 是否支持Native Language Support | |
--enable-debug[=yes|no] | 是否开启编译器的-g 调试选项 | |
--enable-pie[=yes|no] | 是否支持position-independent executeables (PIE) | |
--enable-prelude[=yes|no] | 是否使用prelude-siem | |
--enable-audit[=yes|no] | 是否使用LinuxAudit | |
--enable-selinux[=yes|no] | 是否使用SELinux | |
--enable-db[=db|ndbm|yes|no] | 是否使用数据库 | |
--with-PACKAGE[=yes|no] | yes : 使用PACKAGE no: 不使用PACKAGE | |
--with-gnu-ld[=yes|no] | 是否使用GNU ld | |
--with-sysroot[=DIR] | 使用sysroot ,没有指定目录的话,使用编译器的sysroot | |
--with-libiconv-prefix[=DIR] | 是否在DIR/{include,lib} 中搜索libiconv的头文件 和库文件 | |
--with-libintl-prefix[=DIR] | 是否在DIR/{include,lib} 中搜索libintl的头文件 和库文件 | |
--with-libprelude-prefix[=DIR] | 是否在DIR/{include,lib} 中搜索libprelude的头文件 和库文件 | |
--with-xml-catalog[=FILEPATH] | 指定libxml2(xmlcatalog )的路径 |
VAR | VALUE示例 | 说明 |
---|---|---|
CC | gcc | clang | 指定C编译器 |
CFLAGS | -O2 -v | 指定C编译器的参数 |
CPP | cpp | 指定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
/etc/security/*
/etc/pam.d/*