LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

pam

pluggable Authentication Modules

TLDR

Check PAM configuration
$ pam-auth-update
copy
Test PAM authentication
$ pamtester [service] [user] authenticate
copy
View PAM config
$ cat /etc/pam.d/[service]
copy
Debug PAM
$ pam-auth-update --package
copy

SYNOPSIS

pam modules configured in /etc/pam.d/

DESCRIPTION

PAM is Pluggable Authentication Modules. Framework for system authentication.The system provides flexible authentication. Configured per-service.

PARAMETERS

Configuration files in /etc/pam.d/:auth

Authentication token verification.
account
Account validation.
password
Password update.
session
Session setup/teardown.

INSTALL

sudo dnf install pam
copy
sudo pacman -S pam
copy
sudo zypper install pam
copy
nix profile install nixpkgs#pam
copy

CAVEATS

Critical system component. Misconfiguration can lock out users. Test carefully.

HISTORY

PAM was developed by Sun Microsystems as a pluggable authentication framework.

SEE ALSO

pam.conf(5), pam.d(5), login(1)

Copied to clipboard
Kai