Ubuntu – How to install the Tor Browser Bundle in Ubuntu

software installationtortor-browser

In Ubuntu 13.04 I used to use the ppa:upubuntu-com/tor64 PPA to install the 64-bit Tor Browser Bundle. However, in Ubuntu 13.10 it doesn't work anymore.

How do I install the Tor Browser Bundle in Ubuntu?

Best Answer

Note: This PPA hasn't been updated in YEARS already (since 2015) is several updates behind the official Tor Browser Bundle release.

  1. Run the below commands to install tor browser in Ubuntu 13.10 64-bit version:

    sudo add-apt-repository ppa:upubuntu-com/tor64
    sudo gedit /etc/apt/sources.list.d/upubuntu-com-tor64-saucy.list
    
  2. Change saucy to raring and save that file:

    enter image description here

  3. Update the repositories:

    sudo apt-get update
    
  4. Now you can install the Tor Browser Bundle:

    sudo apt-get install tor-browser 
    
Related Question