Installing Ubuntu 26.04 on an HP EliteDesk 705 G4
#home-lab
Refurbished HP EliteDesk mini PCs are affordable machines with great Linux compatibility. They are suitable for home lab servers running services like Hermes agent, Home Assistant or Coolify.
This guide covers a clean Ubuntu Desktop 26.04 LTS installation on the following system:
- HP EliteDesk 705 G4 DM 35W
- AMD Ryzen 5 PRO 2400GE with integrated Radeon Vega graphics
- 4K monitor connected through DisplayPort
1. Download and verify Ubuntu
Download ubuntu-26.04-desktop-amd64.iso from:
https://releases.ubuntu.com/26.04/
Verify the image on macOS:
shasum -a 256 ~/Desktop/ubuntu-26.04-desktop-amd64.iso
Expected SHA-256:
487f87faaf547ea30e0aba4d5b53346292571256b25333a978db1692bcee9dd2
2. Create the installation USB
Identify the USB device:
diskutil list
Unmount it and write the image, replacing diskN with the correct device:
diskutil unmountDisk /dev/diskN
sudo dd if=~/Desktop/ubuntu-26.04-desktop-amd64.iso of=/dev/rdiskN bs=4m status=progress
sync
diskutil eject /dev/diskN
The rdisk device provides faster raw access on macOS.
[!warning] Writing the image erases the selected USB drive. Verify the device identifier before running
dd.
3. Prepare the firmware
Open the HP firmware setup with F10.
Configure:
- Legacy Support: Disabled
- Secure Boot: Disabled
With Legacy Support disabled, HP automatically uses an All UEFI Option ROM policy. The corresponding setting may therefore be hidden or locked.
The original Q26 firmware on this machine was version 02.08.00, dated 2019-06-25. Update it through Check HP.com for BIOS Updates. HP firmware package 02.24.01 supports the EliteDesk 705 G4 DM:
https://ftp.hp.com/pub/softpaq/sp155501-156000/sp155509.html
Keep the computer connected to power and do not interrupt the update. Recheck the firmware settings afterward because an update may reset them.
4. Boot the installer
- Insert the installation USB.
- Start the computer and press
Esc. - Press
F9to open the boot-device menu. - Select the UEFI USB device.
- Choose Try or Install Ubuntu.
- Follow the installer and select the required disk layout, encryption, user account, and time zone.
Installer freeze
With the original 2019 firmware, the Ubuntu 26.04 live environment consistently hard-froze before displaying the installer. The loading animation stopped, systemd output ceased during startup, and the keyboard became unresponsive. Recovery required holding the power button.
The ISO checksum and USB layout were valid. The appropriate first corrective action is updating the Q26 firmware, confirming UEFI-only boot, and retrying the standard installer entry without temporary kernel parameters.
After installation
Run all available updates and verify:
- Ethernet and Wi-Fi
- Bluetooth
- DisplayPort video and audio
- 4K resolution and scaling
- Suspend and restart
- Firmware updates
Next step: configure remote desktop: remote-desktop-ubuntu-macos