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?
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 http://archive.ubuntu.com/ubuntu/ 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.
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
This is a PPA repository (maintained by me) with official Ubuntu packages released originally for Ubuntu 18.04 LTS (Bionic) and automatically updated as soon as a new version is released in the 18.04 repository.
UPDATE:
Since April 2023 Canonical does no longer provide
Chromium .deb packages for any version of Ubuntu.
Hence THIS REPOSITORY WILL NO LONGER BE UPDATED.
You may want to switch to:
https://freeshell.de/phd/chromium
curl -s 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x790bc7277767219c42c86f933b4fe6acc0b21f32' | sudo apt-key add -
– ulidtko Nov 11 '22 at 15:27sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 3B4FE6ACC0B21F32
– Mike Jan 12 '23 at 18:56