-
-
Notifications
You must be signed in to change notification settings - Fork 1
Linux Web Browsers
Mattscreative edited this page Dec 5, 2025
·
2 revisions
Complete beginner-friendly guide to web browsers on Linux, covering Arch Linux, CachyOS, and other distributions including Firefox, Chromium, Chrome, and browser configuration.
Install Firefox:
# Arch/CachyOS
sudo pacman -S firefox
# Firefox Developer Edition
yay -S firefox-developer-edition
# Firefox Nightly
yay -S firefox-nightlyDebian/Ubuntu:
sudo apt install firefoxFedora:
sudo dnf install firefoxConfigure Firefox:
# Open about:config
# Modify settings
# Or edit prefs.js
vim ~/.mozilla/firefox/profile.default/prefs.jsInstall Chromium:
# Arch/CachyOS
sudo pacman -S chromium
# Launch
chromiumDebian/Ubuntu:
sudo apt install chromiumFedora:
sudo dnf install chromiumUse flags:
# Launch with flags
chromium --enable-features=VaapiVideoDecoder --enable-gpu-rasterizationInstall Chrome:
# Arch/CachyOS
yay -S google-chrome
# Launch
google-chrome-stableDebian/Ubuntu:
# Download from google.com/chrome
# Install .deb packageFedora:
# Download from google.com/chrome
# Install .rpm packageInstall Brave:
# Arch/CachyOS
yay -S brave-bin
# Launch
braveInstall Vivaldi:
# Arch/CachyOS
yay -S vivaldi
# Launch
vivaldiEnable acceleration:
# Firefox: about:config
# Set: layers.acceleration.force-enabled = true
# Chromium: Launch with flags
chromium --enable-gpu-rasterizationCheck installation:
# Check packages
pacman -Q | grep firefox
# Reinstall
sudo pacman -S firefoxThis guide covered web browsers for Arch Linux, CachyOS, and other distributions, including Firefox, Chromium, Chrome, and configuration.
- Hardware Acceleration - GPU acceleration
- Multimedia - Media playback
- ArchWiki Web Browsers: https://wiki.archlinux.org/title/List_of_applications/Internet#Web_browsers
This guide covers Arch Linux, CachyOS, and other Linux distributions. For distribution-specific details, refer to your distribution's documentation.