包,是Gentoo有用命令的Ubuntu对应物

时间:2010-08-23 19:06:41

标签: linux ubuntu apt-get gentoo aptitude

尝试学习如何在Ubuntu中使用包(并具有Gentoo经验)。这个命令已经知道了:

(1) sudo apt-get install pkgname 

寻找这些的对应物:

(2) emerge -s pkgname
(3) equery files pkgname
(4) equery belongs filename
(5) cat /var/lib/portage world

您在Ubuntu中使用哪些有用的(控制台)包命令?以Gentoo手册的风格链接到Ubuntu包教程?

3 个答案:

答案 0 :(得分:2)

这将是Ubuntu中的等效命令:

  • apt-cache search package
  • dpkg -L package
  • dpkg -S filename
  • aptitude search ~n.*

答案 1 :(得分:0)

此问题更适合superuser.com或https://askubuntu.com/

无论如何,我还没有使用过Gentoo的工具,但我认为this Debian guide关于包管理已经非常完整了,你会找到相应的。

关于apt-get的一些例子:

apt-cache search package查询回购package

apt-cache show package显示某个包的信息(依赖关系等)。

答案 2 :(得分:0)

Ubuntu Hacks/Package Management - 从命令行管理包

Debian Reference - 基本软件包管理工具:apt-get / apt-cache和aptitude。