Skip to content
Tutorial emka
Menu
  • Home
  • Debian Linux
  • Ubuntu Linux
  • Red Hat Linux
Menu

How to Use User Accounts & System Admin on Linux Mint 23

Posted on February 26, 2026

Managing user accounts and system settings in Linux Mint 23 can feel overwhelming for new users. This guide simplifies the process of creating and managing user accounts, configuring system permissions, and performing essential administration tasks. Whether you’re setting up a home PC or a small office network, understanding these basics ensures smoother operation and better security. Here’s how to navigate Linux Mint 23’s user management and system tools effectively.

Linux Mint 23, part of the Cinnamon desktop family, includes a built-in user account manager in the Settings application. Access it via the menu or by searching for ‘Users.’ This tool lets you create, edit, or delete user accounts. Each account can have unique settings, including desktop preferences, application access, and password requirements. For basic setups, this graphical interface suffices. However, advanced users might prefer the terminal for greater control.

To create a new user, open the terminal and use the command

sudo adduser [username]

Replace [username] with the desired name. The system will prompt for a password, personal information, and confirmation. This method ensures the user is added to the system with default permissions. If you need specific group memberships (like sudo for administrative access), use

sudo usermod -aG [groupname] [username]

after account creation. Group assignments determine access to system resources and commands.

System administration in Linux Mint 23 relies on the sudo command for elevated privileges. When executing tasks that require root access, prefix commands with sudo. For example,

sudo apt update

updates the package list, while sudo apt upgrade installs updates. Always verify commands before running them, as mistakes can disrupt the system.

The sudo configuration is managed via /etc/sudoers, which can be edited using sudo visudo for advanced settings. This file defines which users or groups can execute specific commands with elevated rights.

User authentication in Linux Mint 23 uses the Pluggable Authentication Modules (PAM) framework. PAM allows flexible configuration of login processes, including password policies, session management, and access control. For instance, you can enforce password complexity by editing

/etc/pam.d/common-password

and adding lines like

password requisite pam_pwquality.so minlen=12

to require 12-character passwords. These changes apply globally unless overridden in user-specific configurations.

The passwd command lets users change their passwords, while chage modifies password expiration settings. For example,

sudo chage -E 2025-12-31 [username]

sets an account to expire on December 31, 2025.

System administrators can also use

sudo usermod -L [username]

to lock an account or

sudo usermod -U [username]

to unlock it. These tools help manage user lifecycle and security compliance.

For system-wide configurations, edit files in /etc using a text editor like nano or vim. For example, sudo nano /etc/lightdm/lightdm.conf adjusts display manager settings, while sudo nano /etc/default/grub modifies boot options. After editing, run sudo update-grub to apply changes. The /etc directory contains critical system files, so always back up before making modifications.

Network settings are managed through the Network Manager GUI or terminal commands like nmcli and ip. For instance,

nmcli device status

shows connected devices, and

nmcli connection modify [connection-name] ipv4.method manual

sets a static IP address.

System logs in /var/log provide troubleshooting insights; use

sudo tail -f /var/log/syslog

to monitor real-time activity.

Security is paramount in Linux Mint 23. Enable automatic updates via

sudo apt install unattended-upgrades

and configure firewall rules with ufw. For example,

sudo ufw allow 22/tcp

opens port 22 for SSH access. Regularly audit user accounts and permissions using

sudo auditctl -l

to check for unauthorized access attempts.

The terminal is the most powerful tool for administration. Learn basic commands like ls, cd, cp, and mv to navigate the file system. Use man [command] to access help documentation, such as man sudo for detailed sudo usage. Scripting with Bash allows automation of repetitive tasks, like creating user accounts or backing up files.

Linux Mint 23’s user account system balances simplicity with flexibility. Whether you use the graphical interface or terminal commands, understanding these tools ensures efficient system management. Combine practical examples with theoretical knowledge to build a secure and personalized computing environment.

Recent Posts

  • Deploy Nginx Rootful Container with Podman
  • How to Sandboxing Browser on Linux Desktop with Flatpak
  • How to Hardening Journald on Linux Server (Fedora/AlmaLinux)
  • Block Bad USB on Linux Server with USBGuard
  • How to Secure NetworkManager on Fedora/AlmaLinux
  • How to Secure DNS and NTP in Fedora Linux
  • How to Hardening DNF on Fedora/Almalinux
  • How to Masking & Secure Daemon in Linux Server
  • How to Hardening Mount Option in Linux Server
  • How to Secure Linux Server with AIDE
  • Auditd Custom Rules & Tips
  • Securing SSH Server with fail2ban
  • Fedora Linux Firewalld Drop Zone and Rich Rules
  • How to SSH Hardening 2026
  • How to Add Password Protection to GRUB
  • Linux Kernel Hardening: Command-line Lockdown
  • Make Linux Kernel More Safe and Hardening with Sysctl Easy Way
  • How to Lockdown Root & Wheel Group in Linux
  • How to Secure Sudo in Linux (Secure Sudo Logging & Timeout)
  • Make Fedora Login Safe with Authselect and Faillock
  • How Measure Linux Security Use OpenSCAP Lynis and Systemd
  • SELinux Make Nginx Break and How to Fix It Easy
  • How See Hidden SELinux Errors When Your Server Is Broken
  • How Fix SELinux Port Denied Error With Sealert Easy Guide
  • Read SELinux AVC Denial Log Simple Guide for Noob
  • Inilah Cara Mengatasi OneDrive yang Suka Mengubah atau Menghapus Metadata File Kalian
  • Inilah Cara Menonaktifkan Antivirus Pihak Ketiga di Windows 11 dengan Aman
  • Inilah Cara Mengatur Raspberry Pi 5 dengan Ubuntu Server untuk Python dan Desktop GUI Tanpa Ribet
  • Inilah Alasan Kenapa Galaxy Z Fold 8 Ultra Bisa Jadi Produk yang Mengecewakan
  • Inilah Alasan Intel Merilis Raptor Lake Next di Socket LGA 1700, Masih Setia dengan DDR4!
  • How to Automate Your Entire SEO Strategy Using a Swarm of 100 Free AI Agents Working in Parallel
  • How to create professional presentations easily using NotebookLM’s AI power for school projects and beyond
  • How to Master SEO Automation with Google Gemini 3.1 Flash-Lite in Google AI Studio
  • How to create viral AI video ads and complete brand assets using the Claude and Higgsfield MCP integration
  • How to Transform Your Mac Into a Supercharged AI Assistant with Perplexity Personal Computer
RSS Error: WP HTTP Error: A valid URL was not provided.
©2026 Tutorial emka | Design: Newspaperly WordPress Theme