Skip to content
Follow
Ubuntu Linux

How to install the Tor Browser on Ubuntu 24.04

Richard
Written by
Richard
Jul 12, 2024 Updated Jun 20, 2026 3 min read
Tor Browser featured image
Tor Browser featured image

You can install the Tor Browser on Ubuntu 24.04 by downloading the latest bundle directly from the Tor Project’s official website.

Tor Browser is a free, open-source application designed for anonymous web browsing. It works by channeling your internet connection through a distributed network of over 7,000 volunteer-operated relays.

Using the official bundle ensures you get the most current and secure version of Tor Browser for your Ubuntu 24.04 system.

⚡ Quick Answer

Install Tor Browser on Ubuntu 24.04 by opening a terminal and running `sudo apt update && sudo apt upgrade` followed by `sudo apt install tor torbrowser-launcher`. Alternatively, use Flatpak or download the official archive from the Tor Project website.

Install the Tor Browser via APT Command

You can install the Tor Browser on Ubuntu using the APT command, which is a common way to add software to Ubuntu.

Before you install Tor Browser, it’s a good idea to update your system. This makes sure all your existing packages are current and helps prevent any conflicts. Run this command to update Ubuntu 24.04:

Run the command below to update Ubuntu 24.04.

🐧Bash / Shell
sudo apt update && sudo apt upgrade

Once your system is updated, you can install Tor Browser with this command:

🐧Bash / Shell
sudo apt install tor torbrowser-launcher
⚠️Warning
Keep in mind that the version installed this way might not be the absolute latest.

Install the Tor Browser via Flatpak

Installing the Tor Browser on Ubuntu using Flatpak is another simple option, especially if you’re already familiar with Flathub.

📝Good to Know
You must first install Flatpak to use it to install the Tor browser. The command below will install Flatpak on Ubuntu.
🐧Bash / Shell
sudo apt install flatpak

Once installed, run the command below to enable Flatpak.

🐧Bash / Shell
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

Finally, install the Tor Browser using the command below.

💻Code
flatpak install flathub com.github.micahflee.torbrowser-launcher

Download and install the Tor browser manually

Manually installing the Tor Browser on Ubuntu involves downloading its archive package directly from the official Tor Project website.

To do that, run the command below to download the current version. Remember to swap in the version number you find on the download page.

💻Code
wget https://www.torproject.org/dist/torbrowser/13.5.1/tor-browser-linux64-13.5.1_ALL.tar.xz

Once downloaded, run the command below to extract the downloaded file.

💻Code
tar -xvJf tor-browser-linux64-13.5.1_ALL.tar.xz

Next, move the Tor Browser files to the `/usr/local/share/` directory using the command below.

🐧Bash / Shell
sudo mv tor-browser /usr/local/share/

Then, navigate to the Tor browser file and register the desktop application using the command below.

Command Prompt
cd /usr/local/share/tor-browser
./start-tor-browser.desktop --register-app

Launching the Tor Browser

Once installed, you can launch the Tor Browser on Ubuntu using a simple command or by finding it in your application menu.

💻Code
tor-browser

If you installed it via Flatpak, then run the command below.

💻Code
flatpak run com.github.micahflee.torbrowser-launcher

From your desktop, open the Application panel and search for Tor Browser.

Launching Tor browser
Launching Tor browser

Tor Browser should be ready to use.

Tor browser ready to use
Tor browser ready to use

Uninstall Tor Browser

If you need to remove the Tor Browser from your Ubuntu system, you can easily uninstall it using a straightforward command.

🐧Bash / Shell
sudo apt remove tor torbrowser-launcher
flatpak remove --delete-data com.github.micahflee.torbrowser-launcher

That should do it!

Conclusion:

  • The Tor Browser is a valuable tool for anonymous communication and browsing, providing a secure way to browse the internet without revealing identity or location.
  • Users can install the Tor Browser on Ubuntu 24.04 using the APT command, Flatpak package manager with Flathub, or manually download the archive package from the official download page.
  • Launching the Tor Browser is straightforward; users can easily uninstall it if it’s no longer needed.

Was this guide helpful?

0% of readers found this helpful (1 votes)

Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Install KDE Desktop on Ubuntu 24.04
Ubuntu Linux How to Install KDE Desktop on Ubuntu 24.04
How to Install GNOME Desktop on Ubuntu 24.04
Ubuntu Linux How to Install GNOME Desktop on Ubuntu 24.04
How to Install NetData on Ubuntu 24.04
Ubuntu Linux How to Install NetData on Ubuntu 24.04
How to Set System Locale on Ubuntu 24.04
Ubuntu Linux How to Set System Locale on Ubuntu 24.04

No comments yet — be the first to share your thoughts!

Leave a Comment

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