0

I've recently downloaded tor by using the command:

sudo apt-get install tor 

I run Linux Mint 17.3 "Rosa" and I have no idea where this file destination is. Could someone please tell me where it could possibly be or how I could open it with the terminal?

3
  • 2
    It seems to me that you might want to spend some time learning about the intricacies of the Linux File System, et al. instead of jumping right into a specific item. Take a look at the Ubuntu Wiki, AskUbuntu and The Linux Documentation Project. Furthermore, this site is a great wealth of knowledge, expertise and tips; therefore, feel free to search for relevant Questions and Answers to get a better understanding. Commented Feb 19, 2016 at 6:40
  • 2
    If you've installed tor successfully, then simply run tor in terminal use man tor for help Commented Feb 19, 2016 at 8:30
  • 1
    To see the files installed by package tor, use dpkg -L tor. Commented Feb 19, 2016 at 9:11

2 Answers 2

1

In general, if you install a package that contains programs that you can usefully run without arguments, the package will add menu entries in the GUI. This isn't a mathematical certainty, but packages in Debian and Mint are supposed to do this.

If you want to list all the executable programs that a package contains, you can use the dpkg command, specifically its -L (--listfiles) option. dpkg is the command that manipulates installed packages; apt commands are about packages that are available in the distribution. To see just executables intended to be used by ordinary users, list files under /bin and /usr/bin. (See the Filesystem Hierarchy Standard for an explanation of the directories where Linux stores files.)

dpkg -L tor | egrep '^(/usr)?/bin/' 

To also see commands that are generally only useful for system administrators (and thus are only in root's PATH), include sbin directories as well:

dpkg -L tor | egrep '^(/usr)?/sbin/' 

In the case of tor, there's a system service, so you probably don't need to run any command. After installation, the next step is to configure your browser or other software to use Tor.

0

According to where are apt-get files stored?, the file is in /var/cache/apt/archives/

For further reading:

In the original question, OP omitted the verb install from the command, which someone added in an edit. However, OP said downloaded, which would be done using

sudo apt-get download tor 

For clarification:

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.