> ## Content Index
> Fetch the complete content index at: https://www.techloy.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# How to Install Tor Browser on Linux
- URL: https://www.techloy.com/how-to-install-and-use-tor-browser-on-linux/
- Published: 2025-08-20T14:18:55.000Z
- Updated: 2025-08-20T14:18:55.000Z
- Description: Learn how to install and use Tor on Linux to browse anonymously and protect your privacy in just a few simple steps.
- Author: Oyinebiladou Omemu
- Tags: / Tech Guide, Tor Browser, Ubuntu Linux

Tor (The Onion Router) is a free, open-source browser designed to protect your privacy online by routing your internet traffic through a global network of servers. This makes it extremely difficult for anyone to track your browsing habits or identify your location. 

Whether you're working in a sensitive environment, a privacy-conscious user, or someone who just wants to browse without being tracked, Tor offers a powerful layer of anonymity.

Installing Tor on Linux might seem technical, but it's straightforward when broken down into clear steps. This guide will walk you through downloading, verifying, and installing Tor safely, ensuring you get a genuine, untampered copy. 

[How to install and remove software on LinuxIt can help keep your system up-to-date and running smoothly.![](https://storage.ghost.io/c/c1/a6/c1a6d111-d951-41ad-a392-c1e841210b93/content/images/icon/techloy-avatar-1-3201.png)TechloyOyinebiladou Omemu![](https://storage.ghost.io/c/c1/a6/c1a6d111-d951-41ad-a392-c1e841210b93/content/images/thumbnail/photo-1629654297299-c8506221ca97-9)](https://www.techloy.com/how-to-install-and-remove-software-on-linux/)

## **How to install Tor on Linux**

#### **Step 1: Download the Tor Package**

Visit the official Tor Project download page at <https://www.torproject.org/download/> in your regular browser. Select the Linux option to download the appropriate package for your system.

You're to download two files here: the browser and the signature. 

![](https://storage.ghost.io/c/c1/a6/c1a6d111-d951-41ad-a392-c1e841210b93/content/images/2025/08/image-121-1.png)

#### **Step 2: Verify the Download Signature**

- Open the terminal and run:

```bash
gpg --auto-key-locate nodefault,wkd --locate-keys torbrowser@torproject.org  

```

This command automatically finds and imports Tor's official public signing key from the internet so you can verify that your Tor Browser download is genuine and hasn't been tampered with.

![](https://storage.ghost.io/c/c1/a6/c1a6d111-d951-41ad-a392-c1e841210b93/content/images/2025/08/image-122.png)

- Now, export the key by running the command below:

```bash
gpg --output ./tor.keyring --export 0xEF6E286DDA85EA2A4BA7DE684E2C6E8793298290  

```

This exports the key to a file named "tor.keyring" in your home directory, so you can use it to verify the download signature.

![](https://storage.ghost.io/c/c1/a6/c1a6d111-d951-41ad-a392-c1e841210b93/content/images/2025/08/image-123.png)

- Finally, verify the signature by running the command below:

💡

We need the "tor.keyring" file to verify the signature since it stores the exported key, so ensure you're running the command in the directory the "tor.keyring" was created (ideally, the home directory). 

```bash
gpgv --keyring ./tor.keyring ~/Downloads/tor-browser-linux-x86_64-14.5.6.tar.xz.asc ~/Downloads/tor-browser-linux-x86_64-14.5.6.tar.xz 

```

Your file is in the download folder. Confirm and replace the file name with the one you have in your downloads (based on the release year, as our versions may differ). Copy your file name from your downloads and insert the name where I have \[FILENAME\]; that's the only change you might make based on varying versions.

```bash
gpgv --keyring ./tor.keyring ~/Downloads/[FILENAME].asc ~/Downloads/[FILENAME]
```

💡

**Verification confirms the file hasn’t been altered and comes from a trusted source. If you see "Good signature," you’re safe to proceed.*

![](https://storage.ghost.io/c/c1/a6/c1a6d111-d951-41ad-a392-c1e841210b93/content/images/2025/08/image-124.png)

#### **Step 3: Extract the Files**

Navigate to your Downloads folder and extract the package:

```bash
cd ~/Downloads  
tar -xvJf tor-browser-linux-x86_64-14.5.6.tar.xz 

```

You're essentially doing

```
tar -xvjf [FILENAME]
```

*This unpacks the Tor Browser files into a new folder named* tor-browser*. You can see the directory name in the terminal upon extraction.*

![](https://storage.ghost.io/c/c1/a6/c1a6d111-d951-41ad-a392-c1e841210b93/content/images/2025/08/image-125.png)

#### **Step 4: Launch Tor Browser**

- Move into the extracted directory and run the browser:

```bash
cd tor-browser  
./start-tor-browser.desktop  

```

To launch the Tor browser, you'll keep running this last command only on your terminal, unless you configure the .desktop file, or find a way to move it to the dock. We will cover that later.

![](https://storage.ghost.io/c/c1/a6/c1a6d111-d951-41ad-a392-c1e841210b93/content/images/2025/08/image-126.png)

- Click Connect in the Tor Launcher window to establish a secure connection.

*The browser will automatically route your traffic through the Tor network. For the best privacy, avoid resizing the window or installing additional browser extensions.*

![](https://storage.ghost.io/c/c1/a6/c1a6d111-d951-41ad-a392-c1e841210b93/content/images/2025/08/image-127.png)

[How to Change the Default Text Editor on LinuxEasily change your Linux Text Editor to your preferred editor at any time.![](https://storage.ghost.io/c/c1/a6/c1a6d111-d951-41ad-a392-c1e841210b93/content/images/icon/techloy-avatar-1-3202.png)TechloyOyinebiladou Omemu![](https://storage.ghost.io/c/c1/a6/c1a6d111-d951-41ad-a392-c1e841210b93/content/images/thumbnail/photo-1629654297299-c8506221ca97-10)](https://www.techloy.com/how-to-change-the-default-text-editor-on-linux/)

### **Conclusion**

Installing Tor on Linux is a very simple process if you follow the guide carefully. By following these steps, you’ve ensured that your copy of Tor is genuine and secure, giving you access to a browser designed to protect your identity and data from prying eyes.

While Tor provides strong anonymity, it’s not a silver bullet; avoid logging into personal accounts or sharing identifiable information while using it. For everyday privacy, consider combining Tor with other tools like VPNs or encrypted messaging apps.

*Image Credit: Oyinebiladou Omemu/Techloy.com*

###