简体   繁体   English

默认安装目录whonix?

[英]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" 但是我似乎找不到在whonix中的标准安装目录,我已经用sudo apt-get安装了..安装了一个在“ / path / tofile”中安装了“ name.py”的python程序

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: 而且我真的很想执行该文件,但是我找不到它,不能在海豚中手动查找,不能通过在海豚中搜索而不是通过在whoninx的指定搜索协议中输入文件名来进行搜索来设置文件:

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

Could anyone tell me where the default installation folder is located within whonix? 谁能告诉我默认安装文件夹在whonix中的什么位置?

*analog to eg: C:/program files for windows. *模拟到例如:Windows的C:/程序文件。

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. 当您使用sudo apt-get install <package name>它将文件复制到许多位置,实际上并没有“默认安装文件夹”,它取决于软件包。

To display a list of files a package contains do dpkg -L <package name> . 要显示软件包包含的文件列表,请执行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). 例如,这可能会带回/usr/share中的文件列表,这些文件将是应用程序的支持文件(共享文件,手册,文档,示例)。 And maybe a binary executable in /usr/bin which is used to run the program. 也许是/usr/bin的二进制可执行文件,用于运行程序。

If you're having trouble locating a specific file, you could try searching the file system: 如果找不到特定文件,可以尝试搜索文件系统:
sudo find / -name whatever.py

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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