Created
November 21, 2025 22:10
-
-
Save tartley/b76785daf4383cdeb0bc3d24b7f2202d to your computer and use it in GitHub Desktop.
Replace Firefox snap with apt on Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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