Skip to content

Linux Web Browsers

Mattscreative edited this page Dec 5, 2025 · 2 revisions

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

  1. Firefox
  2. Chromium
  3. Google Chrome
  4. Other Browsers
  5. Browser Configuration
  6. Troubleshooting

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


This guide covers Arch Linux, CachyOS, and other Linux distributions. For distribution-specific details, refer to your distribution's documentation.

Clone this wiki locally