I have created a user called training using the adduser command and user training appears in the login screen. How to not show any particular user in the login screen? I am using Ubuntu 12.04 with the default Unity.
Asked
Active
Viewed 38 times
users.conffile? How about giving the user a UID less than 500? Trysudo usermod -u 499 training. Check that it changed bygrep training /etc/passwd | cut -d: -f3, which should output 499. – Alaa Ali Jun 29 '13 at 07:30