How to install ungoogled-chromiun on Ubuntu 20.04

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.

2

2 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 chromium

The 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.list

Then 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-chromium

Using 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:

3

If 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

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like