How to launch the Tor browser?

If you double-click on (allow-executing-file-as-program) start-tor-browser, you should be presented with a dialog of four options: Run, Run-in-Terminal, Display and Cancel. Do you see these options? If so, try Run.

Alternatively, you can set up a custom keyboard shortcut and use something like the following command (depending on where / into which folder you extracted tor):

"/home/user_name/my_tor/bundle/tor-browser_en-US/start-tor-browser"

to launch tor.

(Don't use sudo.)

If you wanted to launch tor via the command line, you could navigate to the folder and just type start-tor-browser. Given that it's just locally downloaded and not formally installed, you'll need to supply the path (or register start-tor-browser manually - but that's a separate question).


Update (mid-May 2015)

The previous command ceased to work for me. The following does work:

sh -c '"/home/user_name/where_i_put_tor/bundle/tor-browser_en-US/Browser/start-tor-browser" --detach || ([ !  -x "/home/user_name/where_i_put_tor/bundle/tor-browser_en-US/Browser/start-tor-browser" ] && "$(dirname "$*")"/Browser/start-tor-browser --detach)' dummy %k

... taken from the official Tor desktop configuration file ...


(I did read that you had already set the file to execute but I'm going to add that procedure for anyone else that stumbles into this thread with the same issue since no one has answered your question properly.)

To fix the problem of the TOR launcher not executing do the following:

  1. Right click on the file named 'start-tor-browser' and select PROPERTIES in the popup menu.
  2. Click on the PERMISSIONS tab.
  3. Click in the box 'Execute: Allow executing file as program' until you have a check mark then click the CLOSE button.

  4. On the left hand side of your Desktop in the Unity Menu list you'll see the picture of a filing cabinet. Click on the filing cabinet to open the file manager.

  5. The menu options in Ubuntu are hidden on screen by default. Press and hold the ALT key on your keyboard to reveal the menu items. In Ubuntu 14.04 you can also move your mouse up to the very top left corner of your desktop and the menu options for the active window will appear. Select EDIT then PREFERENCES.

  6. Click the BEHAVIOR tab then select the radio button next to the option 'Run executable text files when they are opened' then click the CLOSE button.

Problem solved. Your Tor launcher will work now.

Cheers!

PS...

If you wanted to run the application from a terminal you don't need to type the path.

  1. Press CTRL+ALT+T in Ubuntu and it will open a TERMINAL screen.
  2. Drag the 'start-tor-browser' short-cut and drop it in the TERMINAL screen you just opened.
  3. Click inside the terminal screen with your mouse to make it active and then press the ENTER key on your keyboard to execute the short-cut via the terminal.

Your app will launch and you can see all the computer stuff that is going on with the app inside the terminal. Cool! If you close the terminal it will close the app you launched as well.

If you want to launch an app from a terminal and have the ability to close the terminal without closing the app you just launched then here is another method:

  1. Press CTRL+ALT+T in Ubuntu and it will open a TERMINAL screen.
  2. type "nohup" without the quotes in the terminal screen followed with a single space.
  3. Drag the 'start-tor-browser' short-cut and drop it in the TERMINAL screen (the path automatically appears after 'nohup').
  4. Click in the terminal again and add the "&" symbol without the quotes to the end of the path we created in step 3 then press the ENTER key on your keyboard.

Here's what the command line looked like inside the Terminal on my machine:

nohup '/home/darocket/Documents/tor-browser_en-US/start-tor-browser' &

The app launches from the terminal and you can close the terminal without closing the app you launched.