LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 11-19-2023, 08:04 PM   #1
torflix
LQ Newbie
 
Registered: Nov 2023
Posts: 22

Rep: Reputation: 0
help needed installing Tor Onion Browser (terminal command)


Hi
Had several attempts from different web sites all giving out different commands and non of them work!

Anyone installed it on linux with sucsess and know the Terminal command please?

Thanks
 
Old 11-19-2023, 08:35 PM   #2
RandomTroll
Senior Member
 
Registered: Mar 2010
Distribution: Slackware
Posts: 1,973

Rep: Reputation: 271Reputation: 271Reputation: 271
I download the package from torproject.org then use my distribution's install utility.
 
Old 11-19-2023, 08:54 PM   #3
cesarbergara
Member
 
Registered: Feb 2012
Location: Buenos Aires, Argentina
Distribution: Debian, Suse, Mandrake,
Posts: 92

Rep: Reputation: Disabled
Hi.
Sometimes programs need any libraries/compiler wich the OS don't have, or have oldest libraries/compilers. If the problem is a compiler the executable file begin and finish without messages about errors.

You can try to test the program in other OS (newer o more complete).

I wish this will be useful.


Have a nice day.
 
Old 11-20-2023, 03:51 AM   #4
beachboy2
Senior Member
 
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 21 MATE, EndeavourOS, antiX, MX Linux
Posts: 3,987
Blog Entries: 33

Rep: Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471
torflix,

Welcome to LQ forums.

Go to:
https://www.torproject.org/download/

Click on Download for Linux > Save file to Downloads (or Desktop or elsewhere and change the directory name below accordingly).

Verify the file's signature.

Right click on file > Properties > Permissions > Execute > Allow executing file as program > Close.

Open Terminal.

Code:
cd Downloads
Press Enter.

Code:
tar xf tor-browser-linux-x86_64-13.0.1.tar.xz
Press Enter.

Code:
cd tor-browser
Press Enter.

Code:
./start-tor-browser.desktop
Press Enter.

Last edited by beachboy2; 11-20-2023 at 04:09 AM.
 
Old 11-20-2023, 04:18 PM   #5
torflix
LQ Newbie
 
Registered: Nov 2023
Posts: 22

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by beachboy2 View Post
torflix,

Welcome to LQ forums.

Go to:
https://www.torproject.org/download/

Click on Download for Linux > Save file to Downloads (or Desktop or elsewhere and change the directory name below accordingly).

Verify the file's signature.

Right click on file > Properties > Permissions > Execute > Allow executing file as program > Close.

Open Terminal.

Code:
cd Downloads
Press Enter.

Code:
tar xf tor-browser-linux-x86_64-13.0.1.tar.xz
Dose this mean i have to go to there web site first before i go to the terminal (for which my ISP has blocked me)

Is there no "sudo apt install" command hear?

Last edited by torflix; 11-20-2023 at 08:26 PM.
 
Old 11-20-2023, 05:02 PM   #6
boughtonp
Senior Member
 
Registered: Feb 2007
Location: UK
Distribution: Debian
Posts: 3,619

Rep: Reputation: 2555Reputation: 2555Reputation: 2555Reputation: 2555Reputation: 2555Reputation: 2555Reputation: 2555Reputation: 2555Reputation: 2555Reputation: 2555Reputation: 2555

(You don't need to quote entire messages like that; doing so just adds noise.)

You need to specify WHICH DISTRO for anyone to recommend specific packages.

Since you mention apt, that implies Debian-based, and there is a torbrowser-launcher package in Debian's contrib repo, but that just automates the download step, so would probably still get blocked.

If your ISP has blocked the site at the DNS level, you can maybe go via the IP - since the current download appears to be https://dist.torproject.org/torbrowser/13.0.1/tor-browser-linux-x86_64-13.0.1.tar.xz you can try:
Code:
curl -sSOL -H 'Host: dist.torproject.org' 'https://204.8.99.144/torbrowser/13.0.1/tor-browser-linux-x86_64-13.0.1.tar.xz'
Of course, blinding following that advice would be insecure - I'm a random stranger on the Internet, and could be sending you to a different server with malware on - so you should independently verify that the above IP address resolves to the correct server (e.g. by running "dig dist.torproject.org" on a machine without a DNS block, or by entering "dig torproject.org" into DuckDuckGo).

If your ISP has blocked it differently, this still wont work and you'll need a different method to get the file. (Does your mobile device have a data plan on a different network?)

There are official mirrors at //tor.eff.org and //tor.calyxinstitute.org which may work.

Another option might be to use Tails (an OS which uses Tor Browser), because even if your ISP has blocked //tails.net, it is mirrored at //mirrors.wikimedia.org/tails/stable/tails-amd64-5.19.1 (and possibly somewhere on //www.distrowatch.com too, but that site isn't working for me at the moment to check ).


Last edited by boughtonp; 11-20-2023 at 05:19 PM.
 
1 members found this post helpful.
Old 11-20-2023, 08:25 PM   #7
torflix
LQ Newbie
 
Registered: Nov 2023
Posts: 22

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by boughtonp View Post
(You don't need to quote entire messages like that; doing so just adds noise.)

You need to specify WHICH DISTRO for anyone to recommend specific packages.
I am running Penguin terminal if that is of any help
But I think before i follow any more of your instructions we need to first esablish which version i am running
Attached Thumbnails
Click image for larger version

Name:	Screenshot 2023-11-21 02.29.46.png
Views:	13
Size:	229.9 KB
ID:	42094  

Last edited by torflix; 11-20-2023 at 08:34 PM.
 
Old 11-21-2023, 03:29 AM   #8
beachboy2
Senior Member
 
Registered: Jan 2007
Location: Wild West Wales, UK
Distribution: Linux Mint 21 MATE, EndeavourOS, antiX, MX Linux
Posts: 3,987
Blog Entries: 33

Rep: Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471Reputation: 1471
torflix,

It is only on post #5 that you tell us your real reason for wanting help and that is because your ISP is blocking access to the Tor download.

There are ways to get round this, but even with Tor installed, your ISP will still be able to detect its use.
 
1 members found this post helpful.
Old 11-21-2023, 07:29 AM   #9
boughtonp
Senior Member
 
Registered: Feb 2007
Location: UK
Distribution: Debian
Posts: 3,619

Rep: Reputation: 2555Reputation: 2555Reputation: 2555Reputation: 2555Reputation: 2555Reputation: 2555Reputation: 2555Reputation: 2555Reputation: 2555Reputation: 2555Reputation: 2555

Quote:
Originally Posted by torflix View Post
I am running Penguin terminal if that is of any help
Not much. I've never heard of it, and a search for "penguin terminal" brings up references to multiple different things: "Pengwin" (a Linux distro targeted at WSL); Chromebook/ChromeOS; or a tool on iOS/Android.

Also, the terminal generally comes with the desktop, so doesn't necessarily say anything about which package management system or repositories are used.


Quote:
But I think before i follow any more of your instructions we need to first esablish which version i am running
If you have inxi installed (or can install it), "inxi -S" will give basic OS info, and "inxi -Sr" would also confirm the package repositories.

Otherwise, try "uname -a" and "cat /etc/os-release" to confirm the OS.


As for the certificate error shown in the image, click Advanced and view certificate (or whatever it might be labelled), and check the certificate details.

Here it's a Let's Encrypt certificate that expires on 30 Jan 2024 with:
Code:
Serial Number 03:F8:09:F8:C6:7D:BD:89:AC:22:9C:DA:A1:F8:5C:77:C9:E6
SHA1 50:C8:BE:C6:AD:BC:E8:24:31:28:FE:E6:C9:AD:07:7A:4A:11:28:57
SHA256 69:99:6F:88:35:B9:05:04:BF:B8:99:0F:F3:39:92:16:6C:B9:84:29:76:F0:6D:2B:F6:D2:1D:64:4A:18:BA:07
If you seem the same, I guess it's just the browser being stupid, but if it doesn't match then maybe someone is MitM-ing your connection.


beachboy2 is correct that installing Tor Browser doesn't guarantee that you'll be able to connect to the Tor network - again it comes down to what/how/why they have blocked the website - and even if it works, the ISP will still be able to know you're accessing Tor, so if that is against terms of use, you may get in trouble.

 
Old 11-21-2023, 06:27 PM   #10
torflix
LQ Newbie
 
Registered: Nov 2023
Posts: 22

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by beachboy2 View Post
torflix,

It is only on post #5 that you tell us your real reason for wanting help and that is because your ISP is blocking access to the Tor download.

There are ways to get round this, but even with Tor installed, your ISP will still be able to detect its use.
Yes and no!
Yes, I was hoping that it would allow me access to there site but
No, The likely hood is that any link they have on there site will not work as I am not running a linux OS, only the terminal that I downloaded for my chromebook
 
Old 11-21-2023, 06:34 PM   #11
torflix
LQ Newbie
 
Registered: Nov 2023
Posts: 22

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by boughtonp View Post
Not much. I've never heard of it, and a search for "penguin terminal" brings up references to multiple different things: "Pengwin" (a Linux distro targeted at WSL); Chromebook/ChromeOS; or a tool on iOS/Android.
please see this link as a screen shot for further info
https://ibb.co/KKbP9t4
https://ibb.co/XjZ2Vyd
https://ibb.co/09RbZhZ
 
Old 11-21-2023, 06:37 PM   #12
torflix
LQ Newbie
 
Registered: Nov 2023
Posts: 22

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by boughtonp View Post

If you have inxi installed (or can install it), "inxi -S" will give basic OS info, and "inxi -Sr" would also confirm the package repositories.
Those 2 are commands not found! so lets presume that i do not have it installed
 
Old 11-21-2023, 06:43 PM   #13
torflix
LQ Newbie
 
Registered: Nov 2023
Posts: 22

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by boughtonp View Post
Otherwise, try "uname -a" and "cat /etc/os-release" to confirm the OS.

Great! looks like we have a start now

sfffdfddf@penguin:~$ uname -a
Linux penguin 5.15.130-20472-g682e24dd583b #1 SMP PREEMPT Wed Oct 25 18:26:35 PDT 2023 x86_64 GNU/Linux

sfffdfddf@penguin:~$ cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
NAME="Debian GNU/Linux"
VERSION_ID="11"

VERSION="11 (bullseye)"
VERSION_CODENAME=bullseye
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"

Last edited by torflix; 11-21-2023 at 06:44 PM.
 
Old 11-21-2023, 06:52 PM   #14
torflix
LQ Newbie
 
Registered: Nov 2023
Posts: 22

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by boughtonp View Post

As for the certificate error shown in the image, click Advanced and view certificate (or whatever it might be labelled), and check the certificate details.

Here it's a Let's Encrypt certificate that expires on 30 Jan 2024 with:
Code:
Serial Number 03:F8:09:F8:C6:7D:BD:89:AC:22:9C:DA:A1:F8:5C:77:C9:E6
SHA1 50:C8:BE:C6:AD:BC:E8:24:31:28:FE:E6:C9:AD:07:7A:4A:11:28:57
SHA256 69:99:6F:88:35:B9:05:04:BF:B8:99:0F:F3:39:92:16:6C:B9:84:29:76:F0:6D:2B:F6:D2:1D:64:4A:18:BA:07
As far as i was aware on other browsers that it was the server (Voda phone) that was blocking me

https://ibb.co/HxZRhP8
https://ibb.co/h1y26Jy

But hear is what it has said

www.torproject.org normally uses encryption to protect your information. When Chrome tried to connect to www.torproject.org this time, the website sent back unusual and incorrect credentials. This may happen when an attacker is trying to pretend to be www.torproject.org or a Wi-Fi sign-in screen has interrupted the connection. Your information is still secure because Chrome stopped the connection before any data was exchanged.

You cannot visit www.torproject.org right now because the website uses HSTS. Network errors and attacks are usually temporary, so this page will probably work later. (which is utter BS)
 
Old 11-21-2023, 06:55 PM   #15
torflix
LQ Newbie
 
Registered: Nov 2023
Posts: 22

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by boughtonp View Post

As for the certificate error shown in the image, click Advanced and view certificate (or whatever it might be labelled), and check the certificate details.

Here it's a Let's Encrypt certificate that expires on 30 Jan 2024 with:
Code:
Serial Number 03:F8:09:F8:C6:7D:BD:89:AC:22:9C:DA:A1:F8:5C:77:C9:E6
SHA1 50:C8:BE:C6:AD:BC:E8:24:31:28:FE:E6:C9:AD:07:7A:4A:11:28:57
SHA256 69:99:6F:88:35:B9:05:04:BF:B8:99:0F:F3:39:92:16:6C:B9:84:29:76:F0:6D:2B:F6:D2:1D:64:4A:18:BA:07
If you look at the last link in my last post then there is no option for me to Encrypt the cirtificate
https://ibb.co/h1y26Jy


Edit## I have just pressed the link "turn on enhanced protection" and selected "no protection"
https://ibb.co/1QsYqwk
Refreshed the page and still nothing has changed!

Last edited by torflix; 11-21-2023 at 06:59 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
help needed installing tor onion browser martinbot Linux - Newbie 41 02-22-2020 11:37 AM
Tor Browser Bundle/Tor and IPTables: Solution Needed Nonetas Linux - Networking 3 03-01-2018 11:27 PM
LXer: Tor Project Releases Tor (The Onion Router) 0.2.8.8 with Important Bug Fixes LXer Syndicated Linux News 0 09-27-2016 05:13 AM
Tor Onion Router Setup KDE Suse 9.3 botman SUSE / openSUSE 1 08-10-2005 01:42 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 01:31 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration