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?
2 Answers
If you are concerned about security, the most proper way to get updated Chromium without untested third party patches and without snap in Ubuntu 20.04 is to use official builds from 18.04, which will be supported until 2023.
For proper installation and future updates follow the steps.
Enable bionic-updates repo:
cat <<EOF | sudo tee /etc/apt/sources.list.d/bionic-updates.list # for deb-based chromium. Supported only 'til 2023 # see also /etc/apt/preferences.d/chromium-deb-bionic-updates deb bionic-updates universe EOF Pin Chromium packages from this repo:
cat <<EOF | sudo tee /etc/apt/preferences.d/chromium-deb-bionic-updates Package: chromium-browser chromium-browser-l10n chromium-codecs-ffmpeg-extra chromium-codecs-ffmpeg Pin: release a=bionic-updates Pin-Priority: 900 EOF And install packages:
sudo apt update sudo apt install chromium-browser Et voilà! Trusted and automatically updated environment without snap bastards.
1It 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 2