Linux Mint Debian Edition (LMDE 7 Gigi): Complete Guide

Linux Mint Debian Edition LMDE 7 Gigi installation guide

LMDE 7 "Gigi" — Based on Debian 13 Trixie · Cinnamon desktop · Kernel 6.12 LTS

Linux Mint Debian Edition 7, codenamed "Gigi", is built on Debian 13 Trixie instead of Ubuntu. It provides the familiar Linux Mint Cinnamon desktop experience on a pure Debian base. LMDE exists to ensure Linux Mint can continue independently if Ubuntu's direction ever changes — and it is an excellent choice for users who want Mint's polish without the Ubuntu layer.

Contents
  1. LMDE vs Standard Linux Mint
  2. What is New in LMDE 7
    1. Debian 13 Trixie Base
    2. Cinnamon Desktop
    3. Mint Tools on a Debian Base
  3. System Requirements
  4. Download LMDE 7
  5. Installation Steps
    1. 1. Boot and Try or Install
    2. 2. Language and Keyboard
    3. 3. Multimedia Codecs
    4. 4. Installation Type (Partitioning)
    5. 5. Create User Account
    6. 6. Install and Reboot
  6. Post-Installation Setup
    1. Run Update Manager
    2. Enable Timeshift Snapshots
    3. Install Drivers
    4. Install Essential Software
  7. Install Multimedia Codecs
  8. Essential apt Commands
  9. Troubleshooting FAQ
    1. Wi-Fi not working after installation
    2. No sound
    3. Update Manager shows "unsafe updates"

LMDE vs Standard Linux Mint

LMDE 7Linux Mint 22.3
BaseDebian 13 TrixieUbuntu 26.04 LTS
Kernel6.12 LTS (Debian)6.14 HWE (Ubuntu)
DesktopCinnamon onlyCinnamon, Xfce, MATE
Package sourceDebian reposUbuntu repos
Snap packagesNot includedNot included (Mint blocks Snap)
Release cycleWhen Debian releasesEvery 2 years (LTS-based)
Best forDebian preference, Ubuntu-freeBeginners, widest hardware support

Both ship the same Cinnamon desktop and Linux Mint tools. The difference is entirely the package base — Debian vs Ubuntu. Package availability is similar; most software available for one is available for the other.

What is New in LMDE 7

Debian 13 Trixie Base

LMDE 7 is based on Debian 13 Trixie (released August 2025), bringing:

  • Kernel 6.12 LTS — improved hardware support for recent AMD and Intel generations
  • Updated packages across the board: Python 3.13, GCC 14, updated language runtimes
  • Non-free firmware included in the official installer — Wi-Fi and GPU firmware available from day one
  • 44,000+ updated packages vs LMDE 6 (which was based on Debian 12)

Cinnamon Desktop

LMDE 7 ships the latest Cinnamon desktop — the same version as Linux Mint 22.3. Cinnamon provides a traditional desktop layout (taskbar, system tray, window list) that is immediately familiar to Windows users and highly customizable for power users.

Mint Tools on a Debian Base

All Linux Mint applications are included: Update Manager, Software Manager, Driver Manager, Timeshift (for system snapshots), and the Mint Welcome screen. The experience is identical to standard Linux Mint — the Debian base is invisible to daily use.

System Requirements

MinimumRecommended
CPUx86_64 dual-coreModern quad-core
RAM2 GB8 GB
Disk20 GB50 GB+ SSD
Display1024×7681080p

Download LMDE 7

# Download from linuxmint.com — LMDE section# Available in Cinnamon only (64-bit)wget https://mirrors.kernel.org/linuxmint/stable/lmde-7-gigi-amd64.iso# Verify SHA256 checksum (listed on the download page)sha256sum lmde-7-gigi-amd64.iso

Only one edition is available for LMDE: Cinnamon 64-bit. If you prefer Xfce or MATE, use standard Linux Mint 22.3 instead.

Installation Steps

LMDE uses the Calamares installer — a friendly graphical installer that is simpler than Debian's own text-based installer. If you have installed Linux Mint before, the experience is identical.

1. Boot and Try or Install

Boot from the USB. LMDE 7 starts a live Cinnamon session. Test hardware compatibility (Wi-Fi, audio, display) before installing. Click Install Linux Mint on the desktop when ready.

2. Language and Keyboard

Select your language and keyboard layout. These set the system locale — they can be changed later via System Settings.

3. Multimedia Codecs

Check "Install multimedia codecs" if you want MP3, H.264, and other non-free codec support out of the box. This installs packages from the non-free repository. If you prefer to manage codecs manually, leave it unchecked.

4. Installation Type (Partitioning)

For a clean install on a dedicated disk, choose "Erase disk and install LMDE". For dual boot or custom partition layouts, choose "Something else" to partition manually.

5. Create User Account

Enter your name, computer name, username, and password. Enable automatic login for personal machines — leave it disabled for shared or multi-user systems.

6. Install and Reboot

Installation takes 10–20 minutes. Remove the USB when prompted and reboot. LMDE boots directly to the Cinnamon desktop.

Post-Installation Setup

Run Update Manager

Open Menu → Administration → Update Manager. Apply all available updates before doing anything else. LMDE's Update Manager classifies updates by safety level — "Safe updates" can be applied without review; "Kernel updates" and "Unsafe updates" are shown separately.

Enable Timeshift Snapshots

Timeshift creates system snapshots that let you roll back to a known-good state. Run it from Menu → Administration → Timeshift and create the first snapshot immediately after a fresh install.

Install Drivers

Open Menu → Administration → Driver Manager. LMDE detects proprietary drivers for NVIDIA GPUs, Broadcom Wi-Fi, and other hardware. Select the recommended driver for each device and apply.

Install Essential Software

# Add non-free and contrib repositories if not already enabled
sudo sed -i 's/ main$/ main contrib non-free non-free-firmware/' /etc/apt/sources.list
sudo apt update

# Common tools
sudo apt install -y 
  build-essential git curl wget 
  python3-pip python3-venv 
  vlc gimp htop tmux

# Flatpak (pre-installed in LMDE) — add Flathub
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

Install Multimedia Codecs

If you skipped codecs during installation, install them now:

# Enable non-free repos first (see above), then:sudo apt install -y ffmpeg gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav libavcodec-extra

Essential apt Commands

TaskCommand
Update package listsudo apt update
Upgrade packagessudo apt upgrade
Install a packagesudo apt install package
Remove a packagesudo apt remove package
Searchapt search keyword
Package infoapt show package
Remove unused depssudo apt autoremove
Fix broken installsudo apt install -f

Troubleshooting FAQ

Wi-Fi not working after installation

# Check for missing firmware messages
dmesg | grep -i firmware

# Install Intel Wi-Fi firmware
sudo apt install firmware-iwlwifi

# Install Broadcom firmware
sudo apt install firmware-b43-installer

# Reload the Wi-Fi driver
sudo modprobe -r iwlwifi && sudo modprobe iwlwifi

No sound