Linux Mint Debian Edition (LMDE 7 Gigi): Complete 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.
LMDE vs Standard Linux Mint
| LMDE 7 | Linux Mint 22.3 | |
|---|---|---|
| Base | Debian 13 Trixie | Ubuntu 26.04 LTS |
| Kernel | 6.12 LTS (Debian) | 6.14 HWE (Ubuntu) |
| Desktop | Cinnamon only | Cinnamon, Xfce, MATE |
| Package source | Debian repos | Ubuntu repos |
| Snap packages | Not included | Not included (Mint blocks Snap) |
| Release cycle | When Debian releases | Every 2 years (LTS-based) |
| Best for | Debian preference, Ubuntu-free | Beginners, 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
| Minimum | Recommended | |
|---|---|---|
| CPU | x86_64 dual-core | Modern quad-core |
| RAM | 2 GB | 8 GB |
| Disk | 20 GB | 50 GB+ SSD |
| Display | 1024×768 | 1080p |
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.isoOnly 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.flatpakrepoInstall 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-extraEssential apt Commands
| Task | Command |
|---|---|
| Update package list | sudo apt update |
| Upgrade packages | sudo apt upgrade |
| Install a package | sudo apt install package |
| Remove a package | sudo apt remove package |
| Search | apt search keyword |
| Package info | apt show package |
| Remove unused deps | sudo apt autoremove |
| Fix broken install | sudo 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