A Complete Walkthrough of EndeavourOS Triton: Installing and Exploring New Desktop Options
Overview
EndeavourOS has released its monthly ISO refresh, dubbed Triton, alongside the Titan Neo update package. This release packs the latest Linux 7.0 kernel, introduces fresh desktop environment and window manager choices, and streamlines the installation process. Whether you're a first-time user or an existing EndeavourOS enthusiast, this guide walks you through everything you need to know—from downloading the new ISO to customizing your workspace. By the end, you'll have a fully updated system with the newest features at your fingertips.
Prerequisites
- A computer with at least 4 GB RAM (8+ GB recommended) and a 64-bit processor
- Stable internet connection (to download the ~2.4 GB ISO)
- At least 20 GB of free disk space for a minimal install; 40+ GB for a full desktop environment
- A blank USB drive (8 GB or larger) or a VM hypervisor like VirtualBox
- Backup of important data (always wise before any OS installation)
- Existing EndeavourOS users: a working system with internet access for upgrading
Step-by-Step Instructions
1. Download the Triton ISO
The latest EndeavourOS ISO (Triton) is available from the official website. Visit endeavouros.com and navigate to the Download page. Look for the image labeled EndeavourOS_Triton_2024.05 (or similar). You can also use a torrent file for faster speeds. Verify the checksum (SHA256) after download to ensure integrity.
2. Create a Bootable USB Drive
Use any USB imaging tool. On Linux, dd works fine:
sudo dd if=EndeavourOS_Triton_2024.05.iso of=/dev/sdX bs=4M status=progress && sync
Replace /dev/sdX with your USB device (e.g., /dev/sdb). On Windows, use Rufus or Etcher. On macOS, use dd or Etcher. Ensure the USB is unmounted before writing.
3. Boot from USB
Restart your computer and enter the boot menu (usually F12, F2, or Del). Select the USB drive. The EndeavourOS live environment will start. You can test the system before installing.
4. Install EndeavourOS Triton
On the live desktop, double-click the Install EndeavourOS icon. The Calamares installer launches. Follow these steps:
- Welcome: Choose your language and region.
- Location: Set time zone and keyboard layout.
- Partitioning: You can select Erase disk (auto), Manual partitioning, or Alongside an existing OS. For beginners, auto is easiest.
- User: Create a username, password, and hostname.
- Desktop Environment: This is where Triton shines. You'll see a list of available desktops and window managers. Options include:
- Xfce (default, lightweight)
- KDE Plasma
- GNOME
- Budgie
- Cinnamon
- MATE
- LXQt
- i3 (tiling WM)
- bspwm
- Openbox
- Fluxbox
- And more via the community editions
- Graphics Driver: Choose between open-source (Nouveau for NVIDIA, modesetting for Intel/AMD) or proprietary (NVIDIA). EndeavourOS automatically detects your GPU.
- Installation: Click Install and wait. Calamares will copy files, configure the bootloader (GRUB), and finalize.
5. First Boot and Post-Installation Steps
After a successful install, reboot and remove the USB. Log in with your credentials. Open a terminal and run:
sudo pacman -Syu
This synchronizes the package databases and upgrades all packages, including any updates to the Titan Neo set. Titan Neo brings various improvements such as updated AUR helpers (yay, paru), refreshed welcome app, and enhanced hardware support.
6. Upgrading from an Existing EndeavourOS Installation
If you already have EndeavourOS installed, you don't need the ISO. Simply update your system:
sudo pacman -Syu
This pulls in the Linux 7.0 kernel and the Titan Neo updates. To verify, check kernel version with uname -r. If you want to add a new desktop environment that comes with Triton, you can install it manually:
sudo pacman -S budgie-desktop
Or any other package group. EndeavourOS also offers the eos-update helper for easier updates.
7. Exploring Titan Neo Enhancements
Titan Neo isn't a separate release—it's a set of package updates bundled into the Triton ISO. Key changes include:
- Updated welcome app with refined onboarding guides
- Improved AUR helper integration (
yayandparuupdated) - Better NVIDIA driver detection and installation scripts
- New default themes for several desktop environments
- Optimizations for AMD and Intel graphics
These updates ensure your EndeavourOS experience is smoother and more up-to-date.
Common Mistakes
- Skipping checksum verification: Always verify the ISO checksum to avoid a corrupted install.
- Choosing too many desktop environments: Installing multiple DEs can clutter the system and cause conflicts. Stick with one or two.
- Ignoring graphics driver selection: For NVIDIA users, choosing the wrong driver may lead to a black screen. Select the proprietary driver if in doubt.
- Not backing up /home: If you encrypt your home partition and reinstall, you can lose data. Backup first.
- Forgetting to update after install: The ISO can be a few days old; run
sudo pacman -Syuimmediately to get the latest Triton patches. - Using
ddto the wrong device: Double-check the USB device path (/dev/sdX) to avoid wiping your hard drive.
Summary
EndeavourOS Triton delivers the latest Linux 7.0 kernel, an expanded set of desktop and window manager choices, and the Titan Neo update bundle. Whether you're installing fresh or upgrading, this guide has covered every necessary step: downloading the ISO, creating bootable media, selecting your ideal desktop environment, and fine-tuning with post-install updates. Enjoy the stability and cutting-edge features of EndeavourOS Triton!
Related Discussions