How to Install Linux Mint 22.3 (Zena): Complete Beginner Guide

How to Install Linux Mint 22: Complete Beginner Guide

✅ Tested on Linux Mint 22.3 "Wilma" (Cinnamon) — Last updated: June 2026

Installing Linux Mint 22.3 is one of the best decisions you can make if you're switching from Windows or looking for a beginner-friendly Linux distribution. Linux Mint 22.3 "Wilma" is based on Ubuntu 24.04 LTS, ships with the Cinnamon desktop environment by default, and offers five years of long-term support until 2029. This guide walks you through every step, from downloading the ISO to setting up your system after the first boot.

Table of Contents

Why Choose Linux Mint 22

Linux Mint has been the go-to recommendation for Windows switchers for over a decade. Here's why it still earns that reputation with version 22:

  • Familiar layout: Taskbar at the bottom, Start menu on the left — if you know Windows, you'll feel at home within minutes
  • Based on Ubuntu 24.04 LTS: Access to one of the largest software ecosystems in Linux, with five years of security updates
  • Cinnamon desktop: Fast, polished, and customizable. Lighter than GNOME and more modern than XFCE
  • Works out of the box: Wi-Fi, Bluetooth, media codecs (including MP3 and H.264), and most hardware just works after installation
  • Update Manager: Unlike Ubuntu, Mint lets you control which updates get installed and when — no forced reboots
  • No Snap: Linux Mint ships without Snap by default and actively discourages it, keeping your system fast and traditional
  • Community: Excellent forums at forums.linuxmint.com and a huge base of beginner-friendly documentation

Available Desktop Environments

Linux Mint 22.3 comes in three editions:

EditionDesktopRAM UsageBest For
CinnamonCinnamon 6.2~700 MBMost users, Windows switchers
MATEMATE 1.28~500 MBOlder hardware, traditionalists
XfceXfce 4.18~400 MBVery old hardware, lightweight fans

This guide uses the Cinnamon edition, which is the flagship and most actively developed version.

System Requirements

ComponentMinimumRecommended
CPUx86_64 dual-core, 1 GHzQuad-core, 2+ GHz
RAM2 GB4 GB or more
Storage20 GB50+ GB SSD
Display1024×7681920×1080
InternetOptional for installBroadband for updates
USB4 GB minimum8 GB USB 3.0

Linux Mint runs comfortably on machines that feel sluggish with Windows 10 or Windows 11. A 10-year-old laptop with 4 GB of RAM and an SSD will run Cinnamon without problems.

Download Linux Mint 22.3 ISO

  1. Go to the official download page: linuxmint.com/download.php
  2. Choose the Cinnamon edition
  3. Click on a mirror near your location to download
  4. Also download the SHA256 checksum file

Verify the download integrity on Linux or Mac:

sha256sum linuxmint-22-cinnamon-64bit.iso

Compare the output with the checksum in the sha256sum.txt file you downloaded. They must match exactly. If they don't, your download is corrupt — try again.

Create a Bootable USB Drive

You'll need a USB drive with at least 4 GB capacity. All data on the USB will be erased.

On Windows — Use Rufus

  1. Download Rufus from rufus.ie
  2. Insert your USB drive
  3. Open Rufus and select the USB drive
  4. Click SELECT and choose the Linux Mint ISO
  5. Partition scheme: choose GPT if your computer is new (UEFI), or MBR for old BIOS systems
  6. Click START and wait for it to finish

On Linux — Use dd or Etcher

# Find your USB drive first:
lsblk

# Write the ISO (replace sdX with your drive, e.g., sdb — NOT sdb1):
sudo dd if=linuxmint-22-cinnamon-64bit.iso of=/dev/sdX bs=4M status=progress oflag=sync

⚠️ Double-check the device name with lsblk. Writing to the wrong disk will destroy its data. Alternatively, use Etcher (balena.io/etcher) for a graphical, safer approach.

Boot from USB

  1. Insert the bootable USB drive into your computer
  2. Restart the computer
  3. Press the boot menu key during startup. Common keys:
    • Dell: F12
    • HP: F9
    • Lenovo: F12
    • ASUS: F8 or Esc
    • Acer: F12
    • MSI: F11
  4. Select your USB drive from the boot menu
  5. If you see the Linux Mint GRUB menu, choose Start Linux Mint

UEFI Secure Boot: If your system shows an error about Secure Boot, go into BIOS settings (usually F2 or Del at startup) and either disable Secure Boot or enable the Trusted Platform Module. Linux Mint 22.3 supports Secure Boot, but some older BIOS firmware needs updating.

Step-by-Step Installation

Linux Mint boots into a live environment first — you can test it without installing anything. When ready, double-click the Install Linux Mint icon on the desktop.

Step 1: Choose Language

Select your language from the list. This affects the installer interface and system language. Click Continue.

Step 2: Keyboard Layout

Select your keyboard layout. Click Detect Keyboard Layout if you're unsure — it will ask you to press a few keys and identify it automatically.

Step 3: Multimedia Codecs

Check the box "Install multimedia codecs". This installs support for MP3, H.264 video, and other proprietary formats you'll need for normal media playback. Requires internet during installation.

Step 4: Installation Type (Partitioning)

This is the most important step. You have two main options:

Option A: Erase disk and install Linux Mint (Easiest)

Wipes everything and installs Mint on the full drive. Choose this if:

  • You're replacing Windows with Linux
  • This is a dedicated Linux machine
  • You don't need the data on the current disk

You'll also be asked about disk encryption (LVM with LUKS). Recommended for laptops — it requires a password on every boot but protects your data if the laptop is stolen.

Option B: Install Linux Mint alongside Windows (Dual Boot)

Keeps your Windows installation and adds Linux Mint. The installer will show you a slider to divide the disk space. Recommended: give Mint at least 50 GB.

Option C: Something else (Manual partitioning)

For advanced users who want control over partition layout. A typical setup:

Mount PointSizeTypeNotes
/boot/efi512 MBFAT32UEFI only, set bootable flag
/30+ GBext4Root filesystem
/homeRest of diskext4User files — easy to keep when reinstalling
swap= RAM sizeswapOptional with enough RAM

Step 5: Location and Time Zone

Click your location on the map or type your city. This sets your time zone.

Step 6: Create Your Account

  • Your name: Full name (can be anything)
  • Username: Login name (lowercase, no spaces)
  • Password: Use a strong password
  • Log in automatically: Convenient for personal laptops; disable for shared machines or better security

Step 7: Installation

The installer copies files to your disk. This takes 10-20 minutes depending on your hardware. Once done, click Restart Now and remove the USB drive when prompted.

Post-Installation Setup

After your first boot into Linux Mint, these are the first things to do.

1. Update Your System

Open the Update Manager (taskbar or Menu → Administration) and install all available updates. Or from the terminal:

sudo apt update && sudo apt upgrade -y

2. Install Language Packs (If Needed)

# Open System Settings → Language Support → Install language packs

3. Enable Firewall

Linux Mint includes ufw (Uncomplicated Firewall). Enable it:

sudo ufw enable
sudo ufw status

Or use the graphical Firewall tool under Menu → Administration → Firewall.

4. Configure Timeshift (System Snapshots)

Timeshift is Linux Mint's system backup tool. It creates snapshots of your system so you can roll back if something goes wrong. Open it from Menu → Administration → Timeshift and set up automatic weekly or monthly snapshots to an external drive or large partition.

# Install if not present:
sudo apt install timeshift

Installing Drivers

Linux Mint's Driver Manager detects and installs proprietary drivers automatically. Open it from Menu → Administration → Driver Manager.

NVIDIA Graphics

The Driver Manager will show available NVIDIA drivers. Select the recommended one (usually the latest non-dev version) and click Apply Changes. After restarting:

nvidia-smi

AMD Graphics

AMD open-source drivers (amdgpu) are included in the kernel and work automatically for most modern AMD GPUs. No extra installation needed.

Wi-Fi Adapters

If your Wi-Fi isn't detected, the Driver Manager often has the right driver. For Broadcom cards:

sudo apt install bcmwl-kernel-source

For Realtek cards, check if dkms modules are available:

sudo apt install rtl8821ce-dkms    # Realtek 8821CE (common in newer laptops)

Essential Software After Installation

Install via Software Manager

Linux Mint's Software Manager (like an App Store) lets you install apps without the terminal. Find it in the Menu or on the taskbar.

Popular Applications

# Productivity
sudo apt install libreoffice           # Office suite (Writer, Calc, Impress)
sudo apt install thunderbird           # Email client

# Web
sudo apt install firefox               # Usually pre-installed
sudo apt install chromium-browser      # Google Chrome alternative

# Media
sudo apt install vlc                   # Video player
sudo apt install audacity              # Audio editor
sudo apt install gimp                  # Image editor

# Development
sudo apt install git curl wget vim     # Essential developer tools
sudo apt install build-essential       # GCC, make, and development libraries
sudo apt install python3-pip           # Python package manager

# System tools
sudo apt install htop neofetch         # System monitor and system info
sudo apt install gparted               # Partition manager
sudo apt install timeshift             # System snapshots (usually pre-installed)

Flatpak — Access to More Apps

Linux Mint 22.3 supports Flatpak natively through the Software Manager. Flatpak apps are sandboxed and available from Flathub, giving you access to thousands of apps including:

flatpak install flathub org.kde.kdenlive        # Video editor
flatpak install flathub com.spotify.Client      # Spotify
flatpak install flathub com.obsproject.Studio   # OBS Studio
flatpak install flathub md.obsidian.Obsidian    # Obsidian notes

Troubleshooting Common Issues

Screen goes black during boot

This is usually an NVIDIA driver issue. At the GRUB menu, press E to edit the boot entry, find the line with quiet splash, and add nomodeset after it. This disables GPU acceleration during boot so you can install the proper driver.

# After booting, install NVIDIA driver:
sudo apt install nvidia-driver-550
sudo reboot

Wi-Fi not detected after installation

# Check if the adapter is detected:
lspci | grep -i wireless
lsusb | grep -i wireless

# Open the Driver Manager and see if there's a proprietary driver available
# If not, find your adapter model and search for the specific driver package

Dual boot not showing Windows

# Repair GRUB to detect Windows:
sudo update-grub

# If os-prober is disabled:
sudo sed -i 's/#GRUB_DISABLE_OS_PROBER/GRUB_DISABLE_OS_PROBER/' /etc/default/grub
sudo update-grub

System is slow after fresh install

# Install CPU microcode updates:
sudo apt install intel-microcode    # for Intel CPUs
sudo apt install amd64-microcode    # for AMD CPUs

# If on HDD (not SSD), disable search indexing:
# System Settings → Search → Toggle off indexing

# Check for swappiness (lower = less swap use):
cat /proc/sys/vm/swappiness         # default is 60, lower for systems with plenty of RAM
sudo sysctl vm.swappiness=10        # set temporarily
echo "vm.swappiness=10" | sudo tee -a /etc/sysctl.conf  # make permanent

Sound not working

# Install pavucontrol for better audio control:
sudo apt install pavucontrol

# Start it and check volume levels and output device:
pavucontrol

# If PipeWire issues:
pulseaudio --kill && pulseaudio --start

Frequently Asked Questions

Is Linux Mint good for beginners?

Yes, it's one of the best Linux distributions for beginners. The interface is familiar to Windows users, most software installs through a graphical Software Manager, hardware support is excellent, and the community forums are helpful and active.

Can I install Linux Mint on a Mac?

Yes, Linux Mint runs on Intel Macs without issues. Apple Silicon (M1/M2/M3) Macs are not yet officially supported — x86_64 Linux doesn't run natively on ARM. You'd need ASAHI Linux or a VM for that.

How do I update Linux Mint to a new version?

Linux Mint major version upgrades (e.g., 21 to 22) are done through the Upgrade tool found in the Update Manager. Minor updates install automatically. You don't need to reinstall from scratch for version upgrades.

Does Linux Mint support gaming?

Yes. Install Steam from the Software Manager, enable Steam Play (Proton) in Steam settings, and most Windows games work. Install Lutris for non-Steam titles. The native gaming support on Linux has improved dramatically over the past few years.

Will my printer work on Linux Mint?

Most modern printers from HP, Epson, Canon, and Brother work automatically or with a simple driver download from the manufacturer's website. HP printers have the best support through the hplip package.

sudo apt install hplip           # HP printers
sudo apt install printer-driver-escpr   # Epson printers

Can I run Windows software on Linux Mint?

Many Windows applications run on Linux through Wine. Install it with sudo apt install wine. For a better experience, use Bottles (available via Flatpak) which manages Wine environments for different applications. Not every Windows app works, but productivity tools, many games, and common utilities often do.

Linux Mint 22.3 is a great choice for anyone making the switch to Linux or looking for a stable, practical desktop OS that stays out of your way and just works. If you're interested in running AI tools locally after your setup, check out our guide on how to install Ollama on Linux — it works perfectly on Linux Mint with just a one-line install command.


Go up