tor – TecAdmin https://tecadmin.net How to guide for System Administrator's and Developers Fri, 05 Aug 2022 11:23:13 +0000 en-US hourly 1 https://wordpress.org/?v=6.1.1 How to Install Tor Browser on Ubuntu 20.04 https://tecadmin.net/how-to-install-tor-browser-on-ubuntu-20-04/ https://tecadmin.net/how-to-install-tor-browser-on-ubuntu-20-04/#comments Sat, 20 Feb 2021 07:28:01 +0000 https://tecadmin.net/?p=24711 Tor is free and open-source web browser used for anonymous browsing. It routes the network traffic through the tor network to hide user identity. Tor network is available worldwide, through the volunteer overlay network consisting of more than seven thousand relays. Tor browser provides some of the best solutions to protect your privacy from spying [...]

The post How to Install Tor Browser on Ubuntu 20.04 appeared first on TecAdmin.

]]>
Tor is free and open-source web browser used for anonymous browsing. It routes the network traffic through the tor network to hide user identity. Tor network is available worldwide, through the volunteer overlay network consisting of more than seven thousand relays. Tor browser provides some of the best solutions to protect your privacy from spying agencies on your network.

In some countries tor is illegal to use or blocked. So before using Tor browser, be sure its allowed to use in your country. As of today, Tor is not illegal to use in United States and India.

This article will help you to install Tor browser on Ubuntu 20.04 Linux system.

Installing Tor Browser on Ubuntu

Tor browser launcher makes easier to install and use Tor Browser on GNU/Linux users. You can install torbrowser-launcher directly from the default repositories on Ubuntu 20.04 systems.

Login to your system with sudo privileged account and open a terminal (CTRL+ALT+T) and type:

sudo apt update 
sudo apt install torbrowser-launcher 

Press ‘y’ for any confirmation asked by the installer.

This will install Tor Browser launcher on your system (not Tor browser). The Tor browser will be installed in next step.

Using Tor Browser

Search for torbrowser-launcher in all applications un Activities from Ubuntu desktop systems. You can also launch application by executing command torbrowser-launcher on terminal.

At the first time, this will install Tor Browser or ask you to install as below screenshot.

Installing tor browser Ubuntu

Keep all settings as default and click on “Install Tor Browser” button.

Connect to tor network

Once the installation finished, it will launch Tor browser on your system. Click the “Connect” button to connect Tor Browser to the Tor network for secure browsing.

Installing Tor browser on Ubuntu 20.04

That’s it. You have successfully installed Tor Browser on your system.

Uninstall Tor Browser

When you found tor browser is no more in use, you can remove it from your system. To remove Tor browser, just type following command from system terminal:

sudo apt purge torbrowser-launcher 

Conclusion

This tutorial helped you to install Tor browser on Ubuntu 20.04 desktop system. Now, Tor browser will hide your identity and allow you to browser web securely.

The post How to Install Tor Browser on Ubuntu 20.04 appeared first on TecAdmin.

]]>
https://tecadmin.net/how-to-install-tor-browser-on-ubuntu-20-04/feed/ 1
How to Install Tor Browser in CentOS and Fedora https://tecadmin.net/install-tor-browser-in-centos-rhel-and-fedora/ https://tecadmin.net/install-tor-browser-in-centos-rhel-and-fedora/#comments Sun, 26 Jan 2014 11:28:11 +0000 https://tecadmin.net/?p=4053 Have you heard of Tor Browser? It’s a Browser. But, it’s not just like any other browser out there. The way it works is pretty interesting. Tor Browser is a modified version of Mozilla Firefox that helps you browse the internet anonymously and privately. This way, no one can track your online activity and see [...]

The post How to Install Tor Browser in CentOS and Fedora appeared first on TecAdmin.

]]>
Have you heard of Tor Browser? It’s a Browser. But, it’s not just like any other browser out there. The way it works is pretty interesting. Tor Browser is a modified version of Mozilla Firefox that helps you browse the internet anonymously and privately. This way, no one can track your online activity and see what sites you visit.
Moreover, by using Tor Browser, your ISP cannot monitor your internet usage or see which websites you visit. So, if you are worried about privacy or accessing blocked websites in your country then this article is for you.

In this guide, we will show you how to install Tor Browser on CentOS and Fedora with step-by-step instructions. Let’s get started…

This article will help you to install the Tor browser in your CentOS/RHEL and Fedora systems.

Step 1 – Configure Yum Repository

The Tor development team provides an official yum repository for the Tor browser installation. You can find the latest available packages by visiting rpm.torproject.org.

First, configure the EPEL repository on your system.

sudo dnf install epel-release -y 

Now, create a new file /etc/yum.repos.d/tor.repo and edit in a text editor:

sudo nano /etc/yum.repos.d/tor-browser.repo 

Add one of the below configurations as per your Linux distribution.

  • On CentOS and RHEL systems:
    [Tor]
    name=Tor for Enterprise Linux $releasever - $basearch
    baseurl=https://rpm.torproject.org/centos/$releasever/$basearch
    enabled=1
    gpgcheck=1
    gpgkey=https://rpm.torproject.org/centos/public_gpg.key
    cost=100
    
  • On Fedora systems:
    [Tor]
    name=Tor for Fedora $releasever - $basearch
    baseurl=https://rpm.torproject.org/fedora/$releasever/$basearch
    enabled=1
    gpgcheck=1
    gpgkey=https://rpm.torproject.org/fedora/public_gpg.key
    cost=100
    

Save the file and close it.

Step 2 – Installing Tor Browser

You have successfully added the Tor browser repository to your system. Next use the DNF command to install Tor Browser on your CentOS, RHEL, or Fedora system:

sudo dnf install tor 

Press ‘y’ for any confirmation prompted by the installer.

On successful command execution, you will have installed the Tor browser on CentOS and Fedora systems. Now launch the application on your Desktop system.

Installing Tor on CentOS and Fedora

Conclusion

This tutorial helped you to install the Tor browser on CentOS, RHEL, and Fedora systems. Now you can access the internet anonymousaly.

The post How to Install Tor Browser in CentOS and Fedora appeared first on TecAdmin.

]]>
https://tecadmin.net/install-tor-browser-in-centos-rhel-and-fedora/feed/ 10