Author |
Message |
Cryrogenica
Joined: 06 Dec 2012 Posts: 1
|
Posted: Fri 07 Dec 2012, 00:33 Post subject:
How to make TOR Browser Bundle work as root Subject description: TOR--run the browser bundle as root! |
|
I found a way to make the latest Tor Browser Bundles work with versions of puppy that use root as the default user (I used Precise 5.4.2), that is easy and straightforward:
Download the appropriate (32 or 64 bit) Tor Browser Bundle from the Tor Project website
https://www.torproject.org/download/download-easy.html.en
Extract the files to whatever directory you want.
Open the "tor-browser_en-US" directory, then right click on "start-tor-browser" and select "open as text". Scroll down until you find this piece of error output code:
if [ "`id -u`" -eq 0 ]; then
complain "The Tor Browser Bundle should not be run as root. Exiting."
exit 1
fi
Delete the above code, then save your changes to the file. Now execute the file as root (just left click). For me, this simple change allows Tor to be run as root without any problems. Try it and see if it works for you.
I've been banging my head against the wall for ages trying to figure out how to download and use the most up to date versions of TOR privacy/anonymity software with my various versions of Puppy over the years. It seemed that as soon as someone posted a .pet they'd made of the latest TOR package, TOR issued some dire warning that everyone needed to upgrade NOW to the different version to avoid newly discovered security flaws.
Well, I was invariably disappointed when my newly download GNU/Linux TOR browser bundles (they work with ALL linux distro's....simply unpack and run!) said "you shouldn't be running as root...exiting". My subsequent compilation efforts of the TOR source code using the .devx sfs's on earlier versions of Puppy always ran into a quagmire of dependencies that also needed compiling--a never ending rabbit hole of confusing layers of dependencies.
When that failed, I researched how to create/login as different users in Puppy (Fido, Spot) and tried downloading the TOR browser bundles and running them as Fido or Spot, but there were always errors that prevented Vidalia from communicating with TOR because some files had permissions that were set when the file was download through the root user etc...ad naseum.
Basically, never ending obstacles to what should have been a simple fix. Little did I know, it actually was.
So finally, I just opened up the "start-tor-browser" file inside the "tor-browser_en-US" directory in a text editor and sat down and read all of the error messages and the logic behind them. What I discovered was this:
if [ "`id -u`" -eq 0 ]; then
complain "The Tor Browser Bundle should not be run as root. Exiting."
exit 1
fi
What it's saying is this: "if the user id (id -u) equals 0 (0=root), then send this nasty message and exit the program."
I thought, "well, they say the Tor Browser Bundle SHOULD NOT be run as root, not that it WILL NOT RUN as root...what if I just delete this line of code and try executing the file again?"
WALLAH! Tor initialized, Vidalia opened and the secure firefox browser appeared. It was a seeming miracle.
I understand the desire of the Tor Project people to make Tor more accessible to everyone, but their supposedly user-freindly, no-set-up-required GNU/Linux browser bundle was severely biased against being used by the large community of Puppy linux users. Sure running as root can be dangerous, but if you're concerned about your privacy and booting from a live cd without saved sessions on an HD, running as root is very safe. They should display a warning about running as root, but then allow it to be overridden by simply checking a box that says "I understand the risks".
Try it and post your results!
|
Back to top
|
|
 |
tlchost
Joined: 05 Aug 2007 Posts: 2051 Location: Baltimore, Maryland USA
|
Posted: Fri 07 Dec 2012, 09:58 Post subject:
Re: How to make TOR Browser Bundle work as root Subject description: TOR--run the browser bundle as root! |
|
Cryrogenica wrote: | I found a way to make the latest Tor Browser Bundles work with versions of puppy that use root as the default user (I used Precise 5.4.2), that is easy and straightforward:
Try it and post your results! |
Works great in Slacko 5.4 on a bootable USB drive....and since it's in /mnt/home does not take up space in the save file.
Now, it would be great to be able to do SSH over TOR ....
Thanks
Thom
|
Back to top
|
|
 |
anikin
Joined: 10 May 2012 Posts: 982
|
Posted: Fri 07 Dec 2012, 20:52 Post subject:
|
|
Runs just fine on Dpup Exprimo 5.X.3.4.12.
Not without a warning, though . . .
But the tonality of the warning is amicable and permissive, I should say.
Thank you, Cryrogenica.
Description |
|
Filesize |
92.39 KB |
Viewed |
2753 Time(s) |

|
|
Back to top
|
|
 |
amigo
Joined: 02 Apr 2007 Posts: 2641
|
Posted: Sat 08 Dec 2012, 03:24 Post subject:
|
|
Never trust the advice of someone who says: WALLAH
|
Back to top
|
|
 |
greengeek

Joined: 20 Jul 2010 Posts: 4945 Location: Republic of Novo Zelande
|
Posted: Sat 08 Dec 2012, 05:42 Post subject:
Re: How to make TOR Browser Bundle work as root Subject description: TOR--run the browser bundle as root! |
|
Cryrogenica wrote: | Sure running as root can be dangerous, but if you're concerned about your privacy and booting from a live cd without saved sessions on an HD, running as root is very safe. |
<chuckle>
|
Back to top
|
|
 |
s243a
Joined: 02 Sep 2014 Posts: 848
|
Posted: Thu 16 Oct 2014, 19:15 Post subject:
|
|
I'll do this but the warning is probably there for a reason. Is there a way to launch the process in a non-root session if you are using puppy in root mode?
|
Back to top
|
|
 |
Flash
Official Dog Handler

Joined: 04 May 2005 Posts: 12825 Location: Arizona USA
|
Posted: Thu 16 Oct 2014, 22:48 Post subject:
|
|
Maybe as Spot?
|
Back to top
|
|
 |
s243a
Joined: 02 Sep 2014 Posts: 848
|
Posted: Fri 17 Oct 2014, 18:59 Post subject:
|
|
Flash wrote: | Maybe as Spot? |
I just tried this.
then I typed:
Code: |
sudo ./start-tor-browser
|
In then asks me for a pasword, which I don't know. I am using precise.
Since that failed I exited back to root. I used the command:
passwd
to change the pasword.
I then changed the user back to spot but this new password id not work with sudo.
|
Back to top
|
|
 |
s243a
Joined: 02 Sep 2014 Posts: 848
|
Posted: Fri 17 Oct 2014, 19:47 Post subject:
|
|
I figured out the problem was that I download and decompressed the file as root so spot didn't have permission to enter the director even after I moved it to root/spot
so I exited to root, changed the owner of the directory to spot, changed the user back to spot and it worked.
|
Back to top
|
|
 |
s243a
Joined: 02 Sep 2014 Posts: 848
|
Posted: Sun 19 Oct 2014, 15:45 Post subject:
|
|
For posterity, I think the command that I used to change the directory permission was:
Code: |
chrown -r spot tor-browser_en-US
|
However, once I started tor after using that command I couldn't see what I typed because the terminal was tied up with running tor. I may have forgot to start tor in a new shell instance.
Last edited by s243a on Sun 19 Oct 2014, 19:13; edited 1 time in total
|
Back to top
|
|
 |
disciple
Joined: 20 May 2006 Posts: 6781 Location: Auckland, New Zealand
|
Posted: Sun 19 Oct 2014, 17:39 Post subject:
|
|
I guess that should be chown
_________________ If you have or know of a good gtkdialog application, please post a link here
Classic Puppy quotes
ROOT FOREVER
|
Back to top
|
|
 |
s243a
Joined: 02 Sep 2014 Posts: 848
|
Posted: Sun 19 Oct 2014, 19:14 Post subject:
|
|
disciple wrote: | I guess that should be chown |
Post edited.
thankyou
|
Back to top
|
|
 |
disciple
Joined: 20 May 2006 Posts: 6781 Location: Auckland, New Zealand
|
Posted: Sun 19 Oct 2014, 19:19 Post subject:
|
|
It's still wrong
_________________ If you have or know of a good gtkdialog application, please post a link here
Classic Puppy quotes
ROOT FOREVER
|
Back to top
|
|
 |
mikeb

Joined: 23 Nov 2006 Posts: 11107
|
Posted: Mon 20 Oct 2014, 03:40 Post subject:
|
|
The dumb answer is to use normal firefox and the tor daemon.... just needs the network settings altering....
http://www.proxomitron.ru/proxwiki/anonymity/setup/recommendations
that method may not use enough MB's though
mike
|
Back to top
|
|
 |
slavvo67
Joined: 12 Oct 2012 Posts: 1513 Location: The other Mr. 305
|
Posted: Mon 20 Oct 2014, 20:55 Post subject:
|
|
It should be noted that Mikeb's answer didn't work for me. My cable provider probably has it blocked or something.
|
Back to top
|
|
 |
|