Sunday, April 28, 2024
 Popular · Latest · Hot · Upcoming
8
rated 0 times [  8] [ 0]  / answers: 1 / hits: 14105  / 2 Years ago, mon, december 20, 2021, 10:13:17

It is known that Chromium browser is now shipped as deb "Transitional package - chromium-browser -> chromium snap".


But this maybe not expected for some users and they want to get normal deb-based version. How does this possible?


More From » apt

 Answers
7

It is possible by using a third-party repository (PPA) from LaunchPad, named
Chromium Beta branch
.


To install, one needs to add this repository to the system by:


sudo add-apt-repository ppa:saiarcot895/chromium-beta

Then remove the snapped Chromium by:


snap remove chromium

and install the package with:


sudo apt-get install chromium-browser

To avoid the installation of the snap package in the future, one should do the following:


cat <<EOF | sudo tee /etc/apt/preferences.d/pin-chromium-deb
Package: *
Pin: release o=LP-PPA-saiarcot895-chromium-beta
Pin-Priority: 1337
EOF

To revert to the snap version, use:


sudo rm /etc/apt/preferences.d/pin-chromium-deb; sudo apt-get autopurge chromium-browser; snap install chromium

[#3085] Tuesday, December 21, 2021, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
inglehare

Total Points: 330
Total Questions: 111
Total Answers: 95

Location: Sint Maarten
Member since Tue, Mar 29, 2022
2 Years ago
;