Install and Uninstall Chromium Web Browser in Ubuntu 22.04 Terminal

Install and Uninstall Chromium Web Browser in Ubuntu 22.04 Terminal

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.

Recommended Linux Ubuntu Tutorials

AuthorAdmin

Greetings, I'm Devendra Dode, a full-stack developer, entrepreneur, and the proud owner of Tutsmake.com. My passion lies in crafting informative tutorials and offering valuable tips to assist fellow developers on their coding journey. Within my content, I cover a spectrum of technologies, including PHP, Python, JavaScript, jQuery, Laravel, Livewire, CodeIgniter, Node.js, Express.js, Vue.js, Angular.js, React.js, MySQL, MongoDB, REST APIs, Windows, XAMPP, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL, and Bootstrap. Whether you're starting out or looking for advanced examples, I provide step-by-step guides and practical demonstrations to make your learning experience seamless. Let's explore the diverse realms of coding together.

Leave a Reply

Your email address will not be published. Required fields are marked *