Whenever I look at how to install some software that isn't in the standard repository I see 2 options, create a file in the /sources.lists.d folder or add the apt repository via the PPA. Here are the two different methods to install a tor browser and I'm wondering if there are benefits of one over the other. The second one seems easier but IDK if it might be missing some aspect (like the GPG key issue??)
sudo nano /etc/apt/sources.list.d/tor.list
deb H T T P s deb.torproject.org/torproject.org bionic main deb-src H T T P S deb.torproject.org/torproject.org bionic main
curl H t t p s deb.torproject.org/torproject.org/A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89.asc | sudo gpg --import
gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
sudo apt-get update
sudo apt-get install tor deb.torproject.org-keyring torbrowser-launcher
From the command line:
torbrowser-launcher
vs
sudo add-apt-repository ppa:webupd8team/tor-browser
sudo apt-get update
sudo apt-get install tor-browser
So are there benefits to one over the other? If I want to learn to do it the "right" way (most secure) which would be the best way of doing this? Thanks for any advice!
sudo nano /etc/apt/sources.list.d/tor.list
deb H T T P s deb.torproject.org/torproject.org bionic main deb-src H T T P S deb.torproject.org/torproject.org bionic main
curl H t t p s deb.torproject.org/torproject.org/A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89.asc | sudo gpg --import
gpg --export A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89 | sudo apt-key add -
sudo apt-get update
sudo apt-get install tor deb.torproject.org-keyring torbrowser-launcher
From the command line:
torbrowser-launcher
vs
sudo add-apt-repository ppa:webupd8team/tor-browser
sudo apt-get update
sudo apt-get install tor-browser
So are there benefits to one over the other? If I want to learn to do it the "right" way (most secure) which would be the best way of doing this? Thanks for any advice!
Comment