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

  • 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
  • How Check and Fix SELinux Block Things in Fedora Linux
  • How Actually SELinux is Work?
  • How to Install Elementary OS 8 Easy and Make It Good
  • How to Install UniFi OS Server on Ubuntu Linux Without Cloud Key
  • Top DNF5 Tips to Make Your Fedora Linux Super Fast
  • Run Local AI on Fedora 44 CPU Without Expensive GPU
  • Google Gemini Live Redesign: Works with more ‘Connected Apps’ on Android
  • A new LILYGO T3S3 ESP32-S3 with LoRA, WiFi & Bluetooth is Released only $16
  • New ESP32 Project: OpenTrafficMap ESP32-C5 C-ITS With 802.11p V2X communication
  • How to Unlock the Hidden Potential of Your Kindle with Amazing Community Plugins
  • How to Use Waze with Android Auto for the Ultimate Driving Experience
  • How to Transform Your GNOME Desktop with GNOME Prism
  • Why Your Google Maps Wear OS Navigation Fails While Using Android Auto
  • Packagist Attacked! How to Detect Hidden Malware Like This?
  • Claude Mythos Keeps Find High-severity Flaws, What You Should You Do?
  • Inilah Cara Mengatasi Unknown USB Device Descriptor Request Failed yang Paling Ampuh
  • Inilah 20 Kampus Swasta Terbaik di Bandung Versi EduRank 2026 untuk Referensi Kuliah Kalian
  • Inilah Syarat dan Cara Daftar Sekolah Kedinasan STPN 2026, Kuota Terbatas!
  • Inilah Cara Daftar PPKB UI 2026 Lengkap dengan Rincian Uang Pangkal Semua Jurusan S1
  • Inilah Aturan Resmi MPLS 2026 dari Kemendikdasmen, Guru dan Sekolah Wajib Catat Pedoman Lengkap Ini!
  • 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