I have read that the ungoogled-chromium web browser is not only free from Google services and tracking, but unlike other Chromium forks it is essentially a direct replacement for Chromium, featuring tweaks to improve privacy, control and transparency. Is there any procedure to install and keep it updated in Ubuntu 20.04? Thank you very much in advance.
The posts about it do not clarify my doubts.
22 Answers
Ungoogled-chromium can conflict with Chromium, if it is installed, so you should first uninstall it.
To do this, open a terminal and run in it:
sudo apt-get autoremove --purge chromiumThe project is in the openSUSE repositories, to install it from there, you would have to perform a series of instructions:
In principle add the repository to the sources.list file running in terminal:
echo 'deb /' | sudo tee /etc/apt/sources.list.d/home:ungoogled_chromium.listThen we would have to add the public key by executing in the terminal:
sudo wget -nv -O "/etc/apt/trusted.gpg.d/home:ungoogled_chromium.asc"Now it only remains to update the system and install it, running in terminal:
sudo apt update
sudo apt install ungoogled-chromiumUsing this method, you make sure you keep it updated with each new version, that the project team keeps updating.
On this site, you can obtain information about the program, as well as obtain the binaries to install it manually:
3If you go to the ungoogled-chromium github page (here: ), you will see a link to distribution specific instructions (here: ), where it shows how to add the repository and install with apt. These are the instructions for Ubuntu Focal (20.04):
# echo 'deb /' | sudo tee /etc/apt/sources.list.d/home-ungoogled_chromium.list > /dev/null
# curl -s ' | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/home-ungoogled_chromium.gpg > /dev/null
# sudo apt update
# sudo apt install -y ungoogled-chromium