You are not logged in.
Pages: 1
I am sure this is basic to most everyone but I have been battling this for days. I cant install TOR and am getting this error message: Wrong Architecture? 32-bit vs. 64 bit. I know there was a previous post but I am not able to decipher how the problem was corrected. Please Help.
Offline
Where are you trying to install tor from? You are aware that we have a package for this? https://www.archlinux.org/packages/comm … 86_64/tor/
How did you install Arch Linux? What is the output of
uname -a
Last edited by V1del (2018-03-07 14:26:14)
Offline
Thank you for the very fast response. I have enter both versions shown for 32-bit and 64-bit trying to resolve this and get the same error message. The command used was what was posted here:
temp="$(curl -s https://www.torproject.org/download/download-easy.html.en)"; temp2='https://www.torproject.org'`echo "${temp}" | grep -E -o '[A-Za-z0-9/_.-]+[.]tar.xz' | head -n 1 | sed 's/..//'`; wget -O tor-browser-linux32.tar.xz "$temp2"; tar xvfJ tor-browser-linux32.tar.xz; rm tor-browser-linux32.tar.xz; sudo mv tor-browser*/Browser/ /opt/; rm -rf tor-browser*; sed -i 's/id -u/echo 1/' /opt/Browser/start-tor-browser; chown -hR root /opt/Browser/
I will explain what the script does. It downloads the last version of Tor Browser from the official web site (https://www.torproject.org/projects/torbrowser.html.en), unpacks the archive, moves the result to the proper directory, patches the launcher to make Tor Browser working from root and fixes the issue with permissions.
To start Tor Browser you can issue in Terminal:
1
/opt/Browser/start-tor-browser
Press “Connect” and wait for your system is connected to the Tor network.
Enter any URL you wish to surf with anonymity:
To verify your IP just visit suip.biz:
If you would like to change your current IP, select ‘Onion’ icon and ‘New Tor Circuit for this Site’.
It is not necessary to use command line to start Tor Browser. You can create a shortcut on your desktop. Use a text editor to create new text file:
1
gedit Desktop/Tor_Browser.desktop
Copy-paste to there:
1
2
3
4
5
6
7
8
[Desktop Entry]
Name=Tor Browser
Encoding=UTF-8
Exec=sh -c "/opt/Browser/start-tor-browser"
Icon=/opt/Browser/browser/chrome/icons/default/default48.png
StartupNotify=false
Terminal=false
Type=Application
Save and close the file.
Double click the new shortcut and select ‘Mark as Trusted’:
Now you have the shortcut on your desktop:
Double click it to start Tor Browser.
Related articles:
Free easy way to hide IP in Linux (100%)
Anonymous scanning through Tor with Nmap, sqlmap or WPScan (81.1%)
How to install VeraCrypt on Linux (53.4%)
How to find out all the sites on the same IP and in the same subnet (18.9%)
How to configure Kali Linux to use a static IP address (18.9%)
Alfa AWUS052NH – Kali Linux Compatible USB Adapter (RANDOM - 3.4%)
Also recommended:
Alex August 2, 2017 IP, Kali Linux, Tor Anonymity, data encryption and anti-forensics 2 Comments »
Post navigation
How to install AMD / ATI Catalyst drivers AKA Crimson 15.12 in BlackArch / Arch Linux with kernel 4.7, 4.8, 4.9, 4.10, 4.11
How to install and run VLC, Google Chrome, and Chromium on Kali Linux
2 Comments to How to install and run Tor Browser on Kali Linux
Anonymous says:
December 30, 2017 at 4:26 am
its working////thanks
Reply
Kaliux says:
March 5, 2018 at 3:38 pm
IT is working for me thanks. I tried before from Youtube video but that was a long method. This one is simple and very quick.
Many thanks again .
Reply
Leave a Reply
Your email address will not be published.
Name
Website
Notify me of followup comments via e-mail. You can also subscribe without commenting.
Also recommended
Categories
Anonymity, data encryption and anti-forensics
Exploitation
Hardware
Information Gathering
Kali Linux
Password Attacks
Sniffing & Spoofing
Web Applications
Wireless Attacks
Work Environment
Recent Posts
Open source research with OSRFramework (search by mail, nickname, domain)
Error in Kali Linux ‘The following signatures were invalid’ (SOLVED)
How to use sqlmap for injection in address of a web site page (URI). Arbitrary injection points
Kali Linux web server shows blank pages (SOLVED)
How to install VeraCrypt on Linux
Email *
Recent Comments
JR on Error in Kali Linux ‘The following signatures were invalid’ (SOLVED)
CalvinHobbes on How to install NetBeans 9 for JDK 9 development
Kaliux on How to install and run Tor Browser on Kali Linux
no name on How to install Java 9 (JDK 9, JRE 9) on Linux
George on How to install web server on Windows 10 (Apache 2.4, PHP 7, MySQL 5.7 and phpMyAdmin)
Archives
February 2018
January 2018
December 2017
November 2017
September 2017
August 2017
July 2017
March 2017
January 2017
December 2016
New Penetration Testing Tools
OSRFramework
Source: New Penetration Testing ToolsPublished on 2018-02-07
Pyrit
Source: New Penetration Testing ToolsPublished on 2017-12-28
Besside-ng
Source: New Penetration Testing ToolsPublished on 2017-12-27
Airbase-ng
Source: New Penetration Testing ToolsPublished on 2017-12-27
coWPAtty
Source: New Penetration Testing ToolsPublished on 2017-12-27
AtEar
Source: New Penetration Testing ToolsPublished on 2017-12-16
Offline
Please wrap command output in [ code ] tags.
Is this a Kali Linux installation or are you just following that random blog post for no reason? tor is in the repos and the browser that is usually associated with it is in the AUR you are much better off using these.
Please post the output of the requested command.
Last edited by V1del (2018-03-07 14:49:36)
Offline
Sorry about that. Command was: $(curl -s https://www.torproject.org/download/dow … y.html.en)
Again I pulled this info from a post on this site for Tor installation. Reply’s were done by Karol to another user with a similar problem. I have also followed the YouTube download and install instructions utilizing the Tor website. Thoughts
Offline
Post the uname -a command from your system, don't follow youtube tutorials, follow https://wiki.archlinux.org/index.php/Tor
I saw the thread you refer to, nowhere does karol suggest to randomly install a binary. The thread you refer to also talks about removing a potentially outdated cache from your $HOME directory, is that present on your system?
Offline
I appreciate the help and will try the link suggested
Offline
Pages: 1