Skip to content

Instantly share code, notes, and snippets.

@tartley
Created November 21, 2025 22:10
Show Gist options
  • Select an option

  • Save tartley/b76785daf4383cdeb0bc3d24b7f2202d to your computer and use it in GitHub Desktop.

Select an option

Save tartley/b76785daf4383cdeb0bc3d24b7f2202d to your computer and use it in GitHub Desktop.
Replace Firefox snap with apt on Ubuntu
# Ubuntu prefers the Firefox snap. Use the apt instead.
sudo snap remove --purge firefox
sudo add-apt-repository ppa:mozillateam/ppa
sudo apt update
sudo apt install firefox
# Also prefer the apt in future updates
sudo tee /etc/apt/preferences.d/firefox <<EOF
Package: firefox*
Pin: release o=LP-PPA-mozillateam
Pin-Priority: 1001
Package: firefox*
Pin: release o=Ubuntu
Pin-Priority: -1
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment