Last active
June 12, 2021 08:44
-
-
Save AVStarikovich/2b7e115bc876714a1a21a2f53e6db795 to your computer and use it in GitHub Desktop.
Ввод пароля в терминал по отпечатку пальца
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Если вы пользуетесь iterm2 то выключите: | |
Prefs > Advanced > Allow sessions to survive logging out and back in | |
Заходим в репу где хранится sudo: | |
cd /etc/pam.d | |
Далее, нужно разрешить редактировать файл sudo: | |
sudo chmod a+w sudo | |
Потом отрываем его любым редактором, например, с помощью vim: | |
sudo vim sudo | |
и дописываем строчку в самом начале: | |
auth sufficient pam_tid.so | |
сохраняем и не забываем вернуть права на запись, как были: | |
sudo chmod a-w sudo |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment