Installing Tor -
- Anmelden oder Registrieren um Kommentare zu schreiben
I get this warning message:
sudo apt-get install tor
[sudo] password for yeehi:
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
libreadline5 polipo socat tor-geoipdb tsocks
Suggested packages:
mixmaster mixminion anon-proxy
The following NEW packages will be installed:
libreadline5 polipo socat tor tor-geoipdb tsocks
0 upgraded, 6 newly installed, 0 to remove and 0 not upgraded.
Need to get 3,003 kB of archives.
After this operation, 8,770 kB of additional disk space will be used.
Do you want to continue [Y/n]? y
WARNING: The following packages cannot be authenticated!
libreadline5 polipo tsocks tor socat tor-geoipdb
Install these packages without verification [y/N]? y
What do I need to do to get authentication for these packages?
Thank you!
Have you added any third-party repository? A PPA for instance?
Thanks for looking at this Magic Banana!
In Software Sources, I only have Officially supported Trisquel and Sources ticked. Nothing in other software. In updates, I have security updates and recommended updates ticked. Authentication is empty.
I did download a couple of things from sourceforge. One of them was proxydriver, which I needed to configure my proxy.
I don't believe I have added a 3rd party repository. I have tried to keep this system purely Trisquel software.
You shouldn't be using Trisquel's Tor package. It is out of date. You have to add the Tor project's repository first and then install Tor. The Tor project's repository should be safe.
Thanks, Chris.
I have gone to the Tor website here to add the repository:
https://www.torproject.org/docs/debian.html.en
I have tried to check which version of Ubuntu I have, with lsb_release -c
I am told the release codename is Brigantia.
Brigantia is not listed on the Tor page.
sudo /etc/debian_version gives me command not found.
Which Ubuntu codename do I use for Trisuel 5.5?
>Which Ubuntu codename do I use for Trisuel 5.5?
Just to expand on this laconic URL. Here is how to add the correct line to your /etc/apt/sources.list file (assuming you use Trisquel 5.5 Brigantia):
$ sudo echo 'deb http://deb.torproject.org/torproject.org oneiric main' >> /etc/apt/sources.list
It must be entered in a terminal and it is one long line (it is cut by the forum).
Then, pursue with adding the gpg key as explained on this page.
Thanks Magic Banana. I tried this line:
sudo echo 'deb http://deb.torproject.org/torproject.org oneiric main' >> /etc/apt/sources.list
I received the message permission denied, which surprised me as I used sudo.
That happens because only echo is done as superuser and the redirect isn't. Explained at e.g. http://grox.net/sysadm/unix/sudo_redirect_output.howto
Indeed. I forgot about that. The command would then be:
$ sudo sh -c "echo deb http://deb.torproject.org/torproject.org oneiric main >> /etc/apt/sources.list"
You can also just add the line by hand with a text editor (GEdit in this example):
$ sudo gedit /etc/apt/sources.list
Quick question: How is this different from downloading the all-in-one package from https://www.torproject.org/download/download-easy.html.en#linux?
Are you looking to do more with Tor than web browsing?
- Anmelden oder Registrieren um Kommentare zu schreiben