当前位置: 技术问答>linux和unix
在linux如何查找安装软件的路径??
来源: 互联网 发布时间:2016-07-18
本文导语: 在linux如何查找安装软件的路径?? | 一般说来都是安装到/usr/share和/usr/local里了 你可以通过whereis 软件名来查找系统里的文件位置 比如你想查找eclipse文件,那么就: [root@localhost ~]# whereis eclipse 会...
在linux如何查找安装软件的路径??
|
一般说来都是安装到/usr/share和/usr/local里了
你可以通过whereis 软件名来查找系统里的文件位置
比如你想查找eclipse文件,那么就:
[root@localhost ~]# whereis eclipse
会显示:
eclipse: /usr/bin/eclipse /usr/lib/eclipse /usr/share/eclipse
方法还有很多,你自己可以都试试
你可以通过whereis 软件名来查找系统里的文件位置
比如你想查找eclipse文件,那么就:
[root@localhost ~]# whereis eclipse
会显示:
eclipse: /usr/bin/eclipse /usr/lib/eclipse /usr/share/eclipse
方法还有很多,你自己可以都试试
|
whereis 学习了