linux day #2
dev.to·3d·
Discuss: DEV
🐧Linux
Preview
Report Post

Linux User Management and Sudo – Foundations

User Types in Linux

In Linux, users are generally divided into three main categories.

Understanding these categories is very important because permissions, security, and system management depend on them.


1. System Accounts

System accounts are used by the operating system itself.

  • They run background services and processes
  • Examples: web servers, databases, system daemons
  • They usually do not have a home directory
  • They are not meant for human login

2. Regular Users

Regular users are normal human users of the system.

  • Each regular user has a home directory (for example: /home/username)

They can:

  • Create files
  • Edit files
  • Browse their own directories

They cannot:

  • Pe…

Similar Posts

Loading similar posts...