Situatie
Choose a Garuda Edition
Popular editions include:
- KDE Dr460nized (flagship edition)
- KDE Lite
- GNOME
- XFCE
- Cinnamon
- Hyprland
- Gaming Edition
For most users, KDE Dr460nized is the best choice because it receives the most community attention and includes Garuda’s signature desktop customization.
Download the ISO
Visit:
Download:
- Latest ISO
- Corresponding SHA256 checksum if available
Verify the Download
Linux
sha256sum garuda-linux.iso
Compare the output with the checksum published by Garuda.
Windows
PowerShell:
Get-FileHash .\garuda-linux.iso -Algorithm SHA256
Verifying the ISO helps avoid installation failures caused by corrupted downloads. Community reports frequently trace unexplained installer issues back to damaged ISOs.
Create a Bootable USB
You’ll need:
- 8 GB or larger USB drive
Recommended tools:
- Rufus (Windows)
- Balena Etcher
- Ventoy
Using Rufus
- Insert USB drive
- Open Rufus
- Select Garuda ISO
- Partition Scheme:
- GPT for UEFI systems
- MBR for legacy BIOS
- Click Start.
Configure BIOS/UEFI
Before installation:
Enable
- UEFI mode
Disable
- Secure Boot
- Fast Boot
Several installation problems reported by users are resolved by ensuring UEFI mode is enabled and Secure Boot is disabled.
Boot into the Live Environment
- Insert USB.
- Reboot.
- Open boot menu (usually F12, F10, ESC, or DEL).
- Select USB drive.
You will enter the Garuda live environment.
Launch the Installer
Garuda uses the graphical Calamares installer.
From the desktop:
Install Garuda Linux
or
Garuda Welcome → Install
Installation Walkthrough
Step 1: Language
Choose your preferred language.
Click Next.
Step 2: Time Zone
Select:
- Region
- Time zone
Example:
Europe/Bucharest
Select your layout.
Examples:
- US
- UK
- Romanian Standard
Test keys before continuing.
Step 4: Partitioning
This is the most important step.
Option A: Erase Disk
Use if:
- Garuda will be the only OS
Choose:
Erase Disk
The installer automatically creates:
- EFI partition
- Btrfs root partition
- Swap configuration
Option B: Dual Boot
Use if keeping Windows.
Recommended layout:
| Partition | Size |
|---|---|
| EFI | Existing |
| Root (/) | 50–100 GB |
| Home | Remaining |
| Swap | Optional |
Never delete the Windows EFI partition if dual booting.
Option C: Manual Partitioning
Advanced users may create:
| Mount Point | Filesystem |
|---|---|
| /boot/efi | FAT32 |
| / | Btrfs |
| /home | Btrfs |
| swap | Linux Swap |
Garuda works best with Btrfs because snapshots are integrated into the system.
Step 5: User Account
Create:
- Full name
- Hostname
- Username
- Password
Optional:
- Use same password for administrator account
Step 6: Review
Verify:
- Timezone
- Partitions
- User information
Click:
Install
10. First Boot
After installation:
- Remove USB drive.
- Reboot.
Garuda will boot into its desktop environment.
11. Initial System Setup
Garuda typically launches a setup assistant after the first login.
Use it to:
- Install additional software
- Configure mirrors
- Enable services
- Update the system
12. Perform the First Update
Open Terminal:
garuda-update
This is preferred over using raw pacman commands because it handles mirror updates and package synchronization more safely.
13. Configure Snapshots
One of Garuda’s biggest advantages is automatic snapshot management using Btrfs and Snapper.
Verify snapshots:
sudo snapper list
Snapshots provide rollback points before major updates.
14. Install Essential Software
Development Tools
sudo pacman -S base-devel git
Flatpak Support
sudo pacman -S flatpak
Enable Flathub:
flatpak remote-add --if-not-exists flathub \
https://flathub.org/repo/flathub.flatpakrepo
Browsers
sudo pacman -S firefox
or
sudo pacman -S chromium
15. Configure the AUR
Garuda includes support for Arch’s software ecosystem and commonly integrates GUI package management tools.
Update:
sudo pacman -Syu
Install an AUR helper:
sudo pacman -S yay
Example:
yay -S visual-studio-code-bin
16. Gaming Setup
Garuda is popular among gamers.
Install:
Steam
sudo pacman -S steam
Lutris
sudo pacman -S lutris
MangoHUD
sudo pacman -S mangohud
Garuda Gaming Edition may already include many gaming-related tools.
17. NVIDIA Configuration
Check GPU:
lspci | grep VGA
Install NVIDIA drivers:
sudo pacman -S nvidia
Reboot:
sudo reboot
Verify:
nvidia-smi
18. Configure Backups
Install Timeshift:
sudo pacman -S timeshift
Even with Btrfs snapshots, external backups are strongly recommended.
Suggested backup targets:
- External SSD
- NAS
- Cloud storage
19. Useful Garuda Tools
Garuda includes several management utilities.
System maintenance:
- Clear cache
- Remove orphan packages
- Manage services
Garuda Settings Manager
- Kernel management
- Driver management
- System tweaks
Garuda Gamer
One-click installation of:
- Steam
- Wine
- Proton tools
- Emulators
20. Common Troubleshooting
Common causes:
- Secure Boot enabled
- Small EFI partition
- Corrupted ISO
Verify:
lsblk
EFI partition should generally be at least 300–500 MB for modern systems. Community troubleshooting frequently points to EFI sizing and bootloader configuration as causes of GRUB installation failures.
Boot from:
Advanced Options
Select a snapshot.
Restore:
sudo snapper rollback
Leave A Comment?