如何查看Ubuntu软件安装位置

作者:我就是个世界 发表于:2011-11-03
Ubuntu软件安装位置,一般都在/usr/bin下,个别可能会安装到/usr/share和/usr/local里,

      [b]一、查看软件安装的所有路径:[/b]
要知道文件都安装在哪些地方、放在哪些文件夹里,可以通过whereis 软件名的命令查看所有的文件路径,比如你想查找google-chrome文件,那么就:[separator]
[code]whereis google-chrome[/code]
将会显示诸如:google-chrome: /usr/bin/google-chrome /usr/share/man/man1/google-chrome.1

的结果,可以看到google-chrome安装在这些目录里,如果你没有安装要查找的软件,则不会显示文件路径出来。

当然还有:

find / -name filename,直接找的整个硬盘

locate filename  什么都会找出来

whereis filename   好像能找到以前删除的:)

    [b] 二、查询运行文件所在路径:[/b]

     类似的, 如果只要查询文件的运行文件所在地址,直接用下面的命令就可以了(以google-chrome为例):
which google-chrome

结果会显示:

/usr/bin/google-chrome

     [b]三、删除一些你不系统不再需要的软件[/b]
可以用
[code]sudo apt-get autoremove[/code]



[b]还有以下方法可供参考:[/b]

但是如果你想查找elf二进制可执行文件,

或有些是启动脚本或者软链接 想知道某个软件具体在什么地方,可以尝试使用type

如 type google-chrome

你会得到诸如这样的结果 google-chrome is /usr/bin/google-chrome

相当有趣的一个命令。

       然后你可以继续尝试输入 file /usr/bin/google-chrome  

将得出 /usr/bin/google-chrome: symbolic link to `/opt/google/chrome/google-chrome'

当然,我们再来看看 cat /usr/bin/google-chrome  

分享:

扫一扫在手机阅读、分享本文

请发表您的评论