↧
Answer by yanokwa for Feedback when typing password at a sudo prompt
On some UNIX-based systems, sudo can show an asterisk (*) when you type a letter. In the terminal, enter... sudo visudo; Type your root password in (you won't see any visual feedback yet) and hit...
View ArticleAnswer by iglvzx for Feedback when typing password at a sudo prompt
You can enable visual feedback when typing passwords by editing your /etc/sudoers file and changing the Defaults line to read: Defaults env_reset,pwfeedback Example:
View ArticleFeedback when typing password at a sudo prompt
When I type in my password at a sudo command line prompt, I would like to see a "*" for each keystroke. How do I do this?
View ArticleAnswer by Philipp Claßen for Feedback when typing password at a sudo prompt
In /etc/sudoers (edit with sudo visudo), add the following line:Defaults pwfeedbackNote: the other answer all mention env_reset, which is an unrelated option. Depending on your config, you might not...
View Article