As you may know, Chromium is an open-source web browser developed and maintained by Google. It serves as the foundation for many popular browsers, including Google Chrome, Microsoft Edge, Vivaldi, and Brave. While it shares many features with Chrome, Chromium differs by omitting Google’s proprietary components, offering a more transparent and customizable browsing experience.
It is also a Google-free Chrome browser, as it does not contain any of the proprietary Google technology.
Key Features of Chromium:
- High Performance: Chromium is known for its speed and efficient resource usage, providing a smooth browsing experience.
- Security: Frequent updates ensure users receive the latest security patches, protecting against online threats.
- Extensibility: Robust extension support allows users to customize and enhance browser functionality according to their needs.
The latest version available is Chromium 133.0.6943.53. For more, check out the Chromium blog.
In this article I will show you how to install the Chromium browser on Ubuntu 24.10 Ocular Oriole, Ubuntu 24.04 Noble Numbat without using the snap package.
By default, even if you want to install Chromium with APT, you will end up with the Chromium snap package instead.

Method 1: How to install Chromium on Ubuntu 24.10, Ubuntu 24.04 via the Linux Mint deb package:
A way to install Chromium without Snap is by using the Linux Mint package. Linux Mint provides a DEB package of Chromium that can be installed directly on Ubuntu.
Step 1: Download the Chromium Linux Mint Package
To get the Chromium package from Linux Mint’s repository, use the following command:
wget http://packages.linuxmint.com/pool/upstream/c/chromium/chromium_133.0.6943.53~linuxmint1%2Bxia_amd64.deb
This command downloads the Chromium DEB package from Linux Mint’s servers.
Step 2: Install the Package
Once the package is downloaded, install it using:
sudo apt install ./chromium_133.0.6943.53~linuxmint1+xia_amd64.deb
This command installs the Chromium package using Ubuntu’s package manager. The ./
before the package name ensures that the system installs the local DEB file instead of searching for it in repositories.
Step 3: Launch Chromium
After installation, you can launch Chromium from the terminal:
chromium
Or find it in your Applications menu.

(Optional) Remove the Linux Mint Chromium Package
If you want to remove this version of Chromium, run:
sudo apt remove chromium -y
To completely remove all related files:
sudo apt purge chromium -y
This ensures that the Linux Mint version of Chromium is fully removed from your system.
Method 2: How to install Chromium on Ubuntu 24.10, Ubuntu 24.04 via PPA:
(Optional) Step 0: Update Your System
Keeping your system up to date ensures you have the latest security patches and package versions, preventing compatibility issues.
sudo apt update && sudo apt upgrade -y
This command updates your package lists and upgrades installed packages to their latest versions.
Step 1: Add the Chromium Repository
Chromium is not included in Ubuntu’s default repositories as a DEB package. To install it, you need to add a PPA (Personal Package Archive).
sudo add-apt-repository ppa:xtradeb/apps
A PPA is a third-party software repository that provides software updates that may not be available in official Ubuntu repositories. Adding this PPA allows your system to install Chromium as a DEB package.
Press Enter when prompted to confirm the addition of the repository.
Step 2: Update the Package List
After adding the repository, Ubuntu does not automatically recognize the new package. Run the following command to refresh the package index:
sudo apt update
This ensures that Ubuntu fetches the latest package information and recognizes Chromium as an installable application.
Step 3: Install Chromium
Once the package list is updated, you can install Chromium using the following command:
sudo apt install chromium -y
The -y
flag automatically confirms the installation, so the process continues without requiring manual input.
Step 4: Launch Chromium
After installation, you can launch Chromium from the terminal using:
chromium
Alternatively, you can find Chromium in your Applications menu and launch it from there.
This is it, now we have Chromium:

(Optional) Remove Chromium
If you decide to uninstall Chromium, you can remove it using:
sudo apt remove chromium -y
To completely remove Chromium, including configuration files, use:
sudo apt purge chromium -y
Additionally, to remove the repository that was added earlier, run:
sudo add-apt-repository --remove ppa:xtradeb/apps
Finally, clean up any unnecessary packages with:
sudo apt autoremove -y
This ensures that any unused dependencies are removed, keeping your system clean.
Exploring Various Web Browsers Available For Ubuntu And Derivative Systems
There is a wide range of web browsers available, each offering unique features and user experiences. Here’s an overview of some notable alternatives:
- Mozilla Firefox: An open-source browser known for its commitment to user privacy and extensibility through a wide range of add-ons. Firefox receives regular updates and is praised for its robust performance.
- Waterfox: A variant of Firefox, Waterfox focuses on providing a fast browsing experience while maintaining support for legacy Firefox extensions. It is a popular choice for users looking for a balance between performance and compatibility.
- Midori: A lightweight browser known for its speed and simple interface. Midori is ideal for systems with limited resources and for users who prefer a minimalist browsing experience.
- Vivaldi: Offers a high level of customization, allowing users to modify almost every aspect of the interface and functionality. Vivaldi includes built-in features such as an email client, a notes manager, and support for custom keyboard shortcuts.
- Microsoft Edge: Developed by Microsoft, Edge has evolved significantly, offering seamless integration with Microsoft services and features such as Collections, Immersive Reader, and improved performance.
- Brave Browser: Stands out for its focus on privacy, automatically blocking ads and trackers. Brave also offers a cryptocurrency-based rewards system for users who choose to view ads.
- Opera: A feature-rich browser known for its built-in ad blocker, free VPN, and sidebar integrations for messaging apps. Opera also includes a unique battery saver mode and a customizable start page for enhanced user experience.
- Chromium: The open-source project behind Google Chrome, Chromium provides a fast and secure browsing experience without proprietary Google components. Many browsers, including Microsoft Edge, Brave, and Vivaldi, are based on Chromium.
Pingback: 10 Basic APT Commands For Beginners