Linux Web Browsers - ryzendew/Linux-Tips-and-Tricks GitHub Wiki
Linux Web Browsers Guide
Complete beginner-friendly guide to web browsers on Linux, covering Arch Linux, CachyOS, and other distributions including Firefox, Chromium, Chrome, and browser configuration.
Table of Contents
Firefox
Install Firefox
Install Firefox:
# Arch/CachyOS
sudo pacman -S firefox
# Firefox Developer Edition
yay -S firefox-developer-edition
# Firefox Nightly
yay -S firefox-nightly
Debian/Ubuntu:
sudo apt install firefox
Fedora:
sudo dnf install firefox
Firefox Configuration
Configure Firefox:
# Open about:config
# Modify settings
# Or edit prefs.js
vim ~/.mozilla/firefox/profile.default/prefs.js
Chromium
Install Chromium
Install Chromium:
# Arch/CachyOS
sudo pacman -S chromium
# Launch
chromium
Debian/Ubuntu:
sudo apt install chromium
Fedora:
sudo dnf install chromium
Chromium Flags
Use flags:
# Launch with flags
chromium --enable-features=VaapiVideoDecoder --enable-gpu-rasterization
🟢 Google Chrome
Install Chrome
Install Chrome:
# Arch/CachyOS
yay -S google-chrome
# Launch
google-chrome-stable
Debian/Ubuntu:
# Download from google.com/chrome
# Install .deb package
Fedora:
# Download from google.com/chrome
# Install .rpm package
Other Browsers
Brave
Install Brave:
# Arch/CachyOS
yay -S brave-bin
# Launch
brave
Vivaldi
Install Vivaldi:
# Arch/CachyOS
yay -S vivaldi
# Launch
vivaldi
Browser Configuration
Hardware Acceleration
Enable acceleration:
# Firefox: about:config
# Set: layers.acceleration.force-enabled = true
# Chromium: Launch with flags
chromium --enable-gpu-rasterization
Troubleshooting
Browser Not Working
Check installation:
# Check packages
pacman -Q | grep firefox
# Reinstall
sudo pacman -S firefox
Summary
This guide covered web browsers for Arch Linux, CachyOS, and other distributions, including Firefox, Chromium, Chrome, and configuration.
Next Steps
- 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.