Finding pam module
I've started to read the documentation on pam and it says that the available modules should be stored in /lib/security or /lib/security64 for the examples they give to be applicable. My problem is that none of those directories contain the security subdirectory. However I do find the configuration file /etc/security/pam.conf and directory /etc/security/pam.d. Is there another place i can look for the modules? Maybe I dont need to be to concerned with them I honestly dont know since I have'nt gotten very far into the documentation yet but I would like to be able to modify my authentications if so just for the fun of it. I'm running kubuntu 18.04.1.
pam
New contributor
add a comment |
I've started to read the documentation on pam and it says that the available modules should be stored in /lib/security or /lib/security64 for the examples they give to be applicable. My problem is that none of those directories contain the security subdirectory. However I do find the configuration file /etc/security/pam.conf and directory /etc/security/pam.d. Is there another place i can look for the modules? Maybe I dont need to be to concerned with them I honestly dont know since I have'nt gotten very far into the documentation yet but I would like to be able to modify my authentications if so just for the fun of it. I'm running kubuntu 18.04.1.
pam
New contributor
add a comment |
I've started to read the documentation on pam and it says that the available modules should be stored in /lib/security or /lib/security64 for the examples they give to be applicable. My problem is that none of those directories contain the security subdirectory. However I do find the configuration file /etc/security/pam.conf and directory /etc/security/pam.d. Is there another place i can look for the modules? Maybe I dont need to be to concerned with them I honestly dont know since I have'nt gotten very far into the documentation yet but I would like to be able to modify my authentications if so just for the fun of it. I'm running kubuntu 18.04.1.
pam
New contributor
I've started to read the documentation on pam and it says that the available modules should be stored in /lib/security or /lib/security64 for the examples they give to be applicable. My problem is that none of those directories contain the security subdirectory. However I do find the configuration file /etc/security/pam.conf and directory /etc/security/pam.d. Is there another place i can look for the modules? Maybe I dont need to be to concerned with them I honestly dont know since I have'nt gotten very far into the documentation yet but I would like to be able to modify my authentications if so just for the fun of it. I'm running kubuntu 18.04.1.
pam
pam
New contributor
New contributor
New contributor
asked 6 hours ago
Billy Larsson LundgrenBilly Larsson Lundgren
1
1
New contributor
New contributor
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The PAM modules themselves are shared object (.so
) files whose location on Multiarch systems follows the same conventions as other libraries, depending on your procesor architecture i.e.
/lib/i386-linux-gnu
/lib/x86_64-linux-gnu
/usr/lib/i386-linux-gnu
/usr/lib/x86_64-linux-gnu
Ex.
$ ls /lib/x86_64-linux-gnu/security/
pam_access.so pam_group.so pam_namespace.so pam_systemd.so
pam_cifscreds.so pam_issue.so pam_nologin.so pam_tally2.so
pam_debug.so pam_keyinit.so pam_permit.so pam_tally.so
pam_deny.so pam_kwallet5.so pam_pwhistory.so pam_time.so
pam_echo.so pam_lastlog.so pam_rhosts.so pam_timestamp.so
pam_env.so pam_limits.so pam_rootok.so pam_tty_audit.so
pam_exec.so pam_listfile.so pam_securetty.so pam_umask.so
pam_extrausers.so pam_localuser.so pam_selinux.so pam_unix.so
pam_faildelay.so pam_loginuid.so pam_sepermit.so pam_userdb.so
pam_filter.so pam_mail.so pam_shells.so pam_warn.so
pam_ftp.so pam_mkhomedir.so pam_stress.so pam_wheel.so
pam_gnome_keyring.so pam_motd.so pam_succeed_if.so pam_xauth.so
See the Ubuntu MultiarchSpec: Filesystem Layout
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Billy Larsson Lundgren is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1125440%2ffinding-pam-module%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The PAM modules themselves are shared object (.so
) files whose location on Multiarch systems follows the same conventions as other libraries, depending on your procesor architecture i.e.
/lib/i386-linux-gnu
/lib/x86_64-linux-gnu
/usr/lib/i386-linux-gnu
/usr/lib/x86_64-linux-gnu
Ex.
$ ls /lib/x86_64-linux-gnu/security/
pam_access.so pam_group.so pam_namespace.so pam_systemd.so
pam_cifscreds.so pam_issue.so pam_nologin.so pam_tally2.so
pam_debug.so pam_keyinit.so pam_permit.so pam_tally.so
pam_deny.so pam_kwallet5.so pam_pwhistory.so pam_time.so
pam_echo.so pam_lastlog.so pam_rhosts.so pam_timestamp.so
pam_env.so pam_limits.so pam_rootok.so pam_tty_audit.so
pam_exec.so pam_listfile.so pam_securetty.so pam_umask.so
pam_extrausers.so pam_localuser.so pam_selinux.so pam_unix.so
pam_faildelay.so pam_loginuid.so pam_sepermit.so pam_userdb.so
pam_filter.so pam_mail.so pam_shells.so pam_warn.so
pam_ftp.so pam_mkhomedir.so pam_stress.so pam_wheel.so
pam_gnome_keyring.so pam_motd.so pam_succeed_if.so pam_xauth.so
See the Ubuntu MultiarchSpec: Filesystem Layout
add a comment |
The PAM modules themselves are shared object (.so
) files whose location on Multiarch systems follows the same conventions as other libraries, depending on your procesor architecture i.e.
/lib/i386-linux-gnu
/lib/x86_64-linux-gnu
/usr/lib/i386-linux-gnu
/usr/lib/x86_64-linux-gnu
Ex.
$ ls /lib/x86_64-linux-gnu/security/
pam_access.so pam_group.so pam_namespace.so pam_systemd.so
pam_cifscreds.so pam_issue.so pam_nologin.so pam_tally2.so
pam_debug.so pam_keyinit.so pam_permit.so pam_tally.so
pam_deny.so pam_kwallet5.so pam_pwhistory.so pam_time.so
pam_echo.so pam_lastlog.so pam_rhosts.so pam_timestamp.so
pam_env.so pam_limits.so pam_rootok.so pam_tty_audit.so
pam_exec.so pam_listfile.so pam_securetty.so pam_umask.so
pam_extrausers.so pam_localuser.so pam_selinux.so pam_unix.so
pam_faildelay.so pam_loginuid.so pam_sepermit.so pam_userdb.so
pam_filter.so pam_mail.so pam_shells.so pam_warn.so
pam_ftp.so pam_mkhomedir.so pam_stress.so pam_wheel.so
pam_gnome_keyring.so pam_motd.so pam_succeed_if.so pam_xauth.so
See the Ubuntu MultiarchSpec: Filesystem Layout
add a comment |
The PAM modules themselves are shared object (.so
) files whose location on Multiarch systems follows the same conventions as other libraries, depending on your procesor architecture i.e.
/lib/i386-linux-gnu
/lib/x86_64-linux-gnu
/usr/lib/i386-linux-gnu
/usr/lib/x86_64-linux-gnu
Ex.
$ ls /lib/x86_64-linux-gnu/security/
pam_access.so pam_group.so pam_namespace.so pam_systemd.so
pam_cifscreds.so pam_issue.so pam_nologin.so pam_tally2.so
pam_debug.so pam_keyinit.so pam_permit.so pam_tally.so
pam_deny.so pam_kwallet5.so pam_pwhistory.so pam_time.so
pam_echo.so pam_lastlog.so pam_rhosts.so pam_timestamp.so
pam_env.so pam_limits.so pam_rootok.so pam_tty_audit.so
pam_exec.so pam_listfile.so pam_securetty.so pam_umask.so
pam_extrausers.so pam_localuser.so pam_selinux.so pam_unix.so
pam_faildelay.so pam_loginuid.so pam_sepermit.so pam_userdb.so
pam_filter.so pam_mail.so pam_shells.so pam_warn.so
pam_ftp.so pam_mkhomedir.so pam_stress.so pam_wheel.so
pam_gnome_keyring.so pam_motd.so pam_succeed_if.so pam_xauth.so
See the Ubuntu MultiarchSpec: Filesystem Layout
The PAM modules themselves are shared object (.so
) files whose location on Multiarch systems follows the same conventions as other libraries, depending on your procesor architecture i.e.
/lib/i386-linux-gnu
/lib/x86_64-linux-gnu
/usr/lib/i386-linux-gnu
/usr/lib/x86_64-linux-gnu
Ex.
$ ls /lib/x86_64-linux-gnu/security/
pam_access.so pam_group.so pam_namespace.so pam_systemd.so
pam_cifscreds.so pam_issue.so pam_nologin.so pam_tally2.so
pam_debug.so pam_keyinit.so pam_permit.so pam_tally.so
pam_deny.so pam_kwallet5.so pam_pwhistory.so pam_time.so
pam_echo.so pam_lastlog.so pam_rhosts.so pam_timestamp.so
pam_env.so pam_limits.so pam_rootok.so pam_tty_audit.so
pam_exec.so pam_listfile.so pam_securetty.so pam_umask.so
pam_extrausers.so pam_localuser.so pam_selinux.so pam_unix.so
pam_faildelay.so pam_loginuid.so pam_sepermit.so pam_userdb.so
pam_filter.so pam_mail.so pam_shells.so pam_warn.so
pam_ftp.so pam_mkhomedir.so pam_stress.so pam_wheel.so
pam_gnome_keyring.so pam_motd.so pam_succeed_if.so pam_xauth.so
See the Ubuntu MultiarchSpec: Filesystem Layout
answered 6 hours ago
steeldriversteeldriver
68.9k11113184
68.9k11113184
add a comment |
add a comment |
Billy Larsson Lundgren is a new contributor. Be nice, and check out our Code of Conduct.
Billy Larsson Lundgren is a new contributor. Be nice, and check out our Code of Conduct.
Billy Larsson Lundgren is a new contributor. Be nice, and check out our Code of Conduct.
Billy Larsson Lundgren is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1125440%2ffinding-pam-module%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown