Install chromium web browser on linux ubuntu 22.04 using terminal; Through this tutorial, we will learn how to install chromium web browser on linux ubuntu 22.04 using terminal or command line.
Chromium is an open-source browser project that aims to build a safer, faster, and more stable way for all users to experience the web. This site contains design documents, architecture overviews, testing information, and more to help you learn to build and work with the Chromium source code
How to Install and Uninstall Chromium Web Browser on Ubuntu 22.04 using Terminal
There are following ways to install and uninstall chromium web browser on linux ubuntu 22.04 using terminal or command line:
- Installing Chromium as a Snap Package
- Installing Chromium with
apt
- Uninstall chromium-browser Ubuntu terminal
Installing Chromium as a Snap Package
First of all, open the terminal or command by using the keyboard shortcut CTRL+ALT+T.
Then execute the following command on command line to install chromium web browser on linux ubuntu 22.04 system using snap package:
sudo snap install chromium
That’s it. Chromium has been installed on our Ubuntu desktop, and we can start using it.
Installing Chromium with apt
In this method, first of all, use the following command on command line to update system dependencies:
sudo apt update
Then execute the following command on command line to install chromium web browser on linux ubuntu 22.04 system using apt:
sudo apt install chromium-browser
That’s it. At this point, we have Chromium installed on your Ubuntu system.
Uninstall chromium-browser Ubuntu terminal
Execute the following command to remove the Chromium browser package:
sudo apt remove chromium-browser
You will be prompted to enter your user password. Once you confirm the action, the package manager will proceed to uninstall Chromium.
Configuration files for Chromium might remain even after uninstalling the package. To remove them, execute:
sudo apt purge chromium-browser
Sometimes, there might be residual packages that were installed as dependencies for Chromium. To remove those unused packages, run:
sudo apt autoremove sudo apt clean
Conclusion
Through this tutorial, we have learned how to install and uninstall chromium web browser on linux ubuntu 22.04 using terminal or command line.