简体   繁体   中英

default Installation directory whonix?

But I can't seem to find the standard installation directory within whonix, I've installed with sudo apt-get .. install a python program which installed "name.py" in "/path/tofile"

And I'd really like to excecute the file, but I can't find it anywhere, Not in dolphin manually, not by searching in dolphin not by entering the filename in the specified search protocol of whoninx with settings to search in:

"file///"
"/"
"/home"
"/bin"
"/usr"

Could anyone tell me where the default installation folder is located within whonix?

*analog to eg: C:/program files for windows.

When you sudo apt-get install <package name> it copies files to many locations, there isn't really a "default installation folder"- it depends on the package.

To display a list of files a package contains do dpkg -L <package name> . For example, this could bring back a list of files in /usr/share which will be supporting files for the application (shared files, manuals, documentaiton, examples). And maybe a binary executable in /usr/bin which is used to run the program.

If you're having trouble locating a specific file, you could try searching the file system:
sudo find / -name whatever.py

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM