I have a long list of usernames in /etc/passwd as well as my own user name. It says all of them have no login credentials except my user name and root, what is the purpose of these additional users on my system that I was previously unaware of?
I have a long list of usernames in /etc/passwd as well as my own user name. It says all of them have no login credentials except my user name and root, what is the purpose of these additional users on my system that I was previously unaware of?
These are system ids that are used to run various services. They can be given specific privileges (you will find many of them in
/etc/group
). This is better than running all the services as root, because this limits the damage if something goes wrong (or the service is hacked).