Flashing Ubuntu 25 on a Dell Laptop
This guide provides a comprehensive walkthrough for installing Ubuntu 25 on Dell laptop hardware, with a specific focus on the critical BIOS configurations required for a successful installation.
1. Prerequisites
Before starting the process, ensure you have prepared the following:
- A USB flash drive with at least 12GB of capacity.
- The Ubuntu 25 ISO image (available from the official Ubuntu releases page).
- A full backup of your existing data, as this process may involve disk formatting.
2. Creating the Bootable Media
To begin, you must create a bootable USB drive using the ISO file.
2.1 Using BalenaEtcher
- Download and launch BalenaEtcher.
- Select the downloaded Ubuntu 25 ISO.
- Select your USB drive.
- Click Flash! and wait for the process to complete.
2.2 Using Terminal (CLI)
If you prefer the command line, identify your USB drive using lsblk and use the dd utility:
# Replace /dev/sdX with your actual USB device path
sudo dd if=ubuntu-25-desktop-amd64.iso of=/dev/sdX bs=4M status=progress oflag=sync
3. Configuring Dell BIOS Settings
Dell laptops require specific BIOS/UEFI adjustments to recognize the installer and the internal storage correctly.
3.1 Accessing the BIOS
- Restart your laptop.
- Repeatedly tap the F2 key as soon as the Dell logo appears.
3.2 Storage Configuration (SATA/NVMe Mode)
By default, many Dell laptops are set to ‘RAID On’. Ubuntu generally requires AHCI mode to detect internal SSDs.
- Navigate to System Configuration > SATA Operation.
- Change the selection to AHCI.
- Apply the changes.
3.3 Secure Boot
While modern Ubuntu releases support Secure Boot, disabling it during installation can prevent common driver conflicts.
- Navigate to Secure Boot > Secure Boot Enable.
- Select Disabled.
3.4 Fast Boot
- Navigate to POST Behavior > Fastboot.
- Set it to Thorough to ensure all USB ports and hardware are initialized before booting.
4. Booting and Installing
- Insert the USB drive and restart the laptop.
- Tap the F12 key repeatedly to enter the One-Time Boot Menu.
- Select your USB drive under the UEFI Boot section.
- When the GRUB menu appears, select Try or Install Ubuntu.
- Once the desktop loads, open the installer and follow the wizard instructions for partitioning and user setup.
5. Post-Installation Steps
After the first boot, update your system to ensure all hardware drivers are current:
sudo apt update && sudo apt upgrade -y
Source: GitHub Issue #25 | Contributor: @coltonchrane