We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mkdir /lib/security cp pam_tty.so /lib/security/pam_tty.so chmod 755 /lib/security/pam_tty.so chown root:root /lib/security/pam_tty.so
755 should really be 644 and /lib really /usr/lib, pam_tty.so really libpam_tty.so and security be dropped
so we get:
install -D -s -o root -g root -m 644 pam_tty.so /usr/lib/security/pam_tty.so
The text was updated successfully, but these errors were encountered:
No branches or pull requests
755 should really be 644 and /lib really /usr/lib, pam_tty.so really libpam_tty.so and security be dropped
so we get:
install -D -s -o root -g root -m 644 pam_tty.so /usr/lib/security/pam_tty.so
The text was updated successfully, but these errors were encountered: