Jump to content

Tor Browser:Installasi di Debian: Difference between revisions

From Wiki
Created page with "Use the wget command once you have the latest .tar link as follows: wget https://www.torproject.org/dist/torbrowser/10.5.4/tor-browser-linux64-10.5.4_en-US.tar.xz Note, the above command is an example only. Make sure to check for the latest version. Once you have downloaded the installation archive, extract it using: tar -xvJf tor-browser-linux64-10.5.4_en-US.tar.xz Launch Tor Browser Installation on Debian 11 Now, CD into the directory with: cd tor-browser_en-US..."
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
Use the wget command once you have the latest .tar link as follows:
Use the wget command once you have the latest .tar link as follows:


wget https://www.torproject.org/dist/torbrowser/10.5.4/tor-browser-linux64-10.5.4_en-US.tar.xz
<syntaxhighlight lang="bash">
wget https://www.torproject.org/dist/torbrowser/10.5.4/tor-browser-linux64-10.5.4_en-US.tar.xz
</syntaxhighlight>


Note, the above command is an example only. Make sure to check for the latest version.
Note, the above command is an example only. Make sure to check for the latest version.


Once you have downloaded the installation archive, extract it using:
Once you have downloaded the installation archive, extract it using:
tar -xvJf tor-browser-linux64-10.5.4_en-US.tar.xz
 
<syntaxhighlight lang="bash">
tar -xvJf tor-browser-linux64-10.5.4_en-US.tar.xz
</syntaxhighlight>


Launch Tor Browser Installation on Debian 11
Launch Tor Browser Installation on Debian 11


Now, CD into the directory with:
Now, CD into the directory with:
cd tor-browser_en-US
 
<syntaxhighlight lang="bash">
cd tor-browser_en-US
</syntaxhighlight>


To start Tor Browser and set up configuration installation, use the following command:
To start Tor Browser and set up configuration installation, use the following command:
./start-tor-browser.desktop
 
<syntaxhighlight lang="bash">
./start-tor-browser.desktop
</syntaxhighlight>


Note, this will launch Tor Browser. However, you will not see it in your Show Applications menu. To install the Tor Browser icon, you will need to add –register-app to the end of the command as follows:
Note, this will launch Tor Browser. However, you will not see it in your Show Applications menu. To install the Tor Browser icon, you will need to add –register-app to the end of the command as follows:
./start-tor-browser.desktop --register-app
 
<syntaxhighlight lang="bash">
./start-tor-browser.desktop --register-app
</syntaxhighlight>


Example output:
Example output:


[joshua@localhost tor-browser_en-US]$ ./start-tor-browser.desktop --register-app
<syntaxhighlight lang="bash">
Launching './Browser/start-tor-browser --detach --register-app'...
[joshua@localhost tor-browser_en-US]$ ./start-tor-browser.desktop --register-app  
Tor Browser has been registered as a desktop app for this user in ~/.local/share/applications/
Launching './Browser/start-tor-browser --detach --register-app'...  
Tor Browser has been registered as a desktop app for this user in ~/.local/share/applications/
</syntaxhighlight>


==Source==
==Source==

Latest revision as of 17:15, 13 November 2022

Use the wget command once you have the latest .tar link as follows:

wget https://www.torproject.org/dist/torbrowser/10.5.4/tor-browser-linux64-10.5.4_en-US.tar.xz

Note, the above command is an example only. Make sure to check for the latest version.

Once you have downloaded the installation archive, extract it using:

tar -xvJf tor-browser-linux64-10.5.4_en-US.tar.xz

Launch Tor Browser Installation on Debian 11

Now, CD into the directory with:

cd tor-browser_en-US

To start Tor Browser and set up configuration installation, use the following command:

./start-tor-browser.desktop

Note, this will launch Tor Browser. However, you will not see it in your Show Applications menu. To install the Tor Browser icon, you will need to add –register-app to the end of the command as follows:

./start-tor-browser.desktop --register-app

Example output:

[joshua@localhost tor-browser_en-US]$ ./start-tor-browser.desktop --register-app 
Launching './Browser/start-tor-browser --detach --register-app'... 
Tor Browser has been registered as a desktop app for this user in ~/.local/share/applications/

Source