问题描述
我安装sudo apt-get install
很多的包,但是当我输入sudo apt --help
它给了由sudo apt install [package name]
做安装的直接选择。所以,两者有什么区别?如果我不使用’get’和’apt’,有什么问题。
最佳解决办法
不多。 apt
是一个新命令,它应该将apt-get
和apt-cache
中的多个函数合并为一个命令。它的边仍然有点粗糙,但这里是--help
的命令列表:
Basic commands:
list - list packages based on package names
search - search in package descriptions
show - show package details
update - update list of available packages
install - install packages
remove - remove packages
upgrade - upgrade the system by installing/upgrading packages
full-upgrade - upgrade the system by removing/installing/upgrading packages
edit-sources - edit the source information file
等效函数被设计为以类似的方式工作,但它不是代理命令(它不是调用旧命令 – 它是直接在Apt库上的新接口),因此可能存在一些edge-case更改。
还有一些明显的遗漏(download
,policy
等)power-users将会遗漏,并且有大量未记录的命令(purge
仍然有效,但我找不到任何内容)。
16.04更新:现在已经包含了许多遗漏但尚未记录,也没有Bash-completions。很遗憾,实现代码库中已经存在的功能需要很长时间,但是很好。我的建议是,如果您习惯使用apt-{get,cache}
命令,请在apt
上尝试。它可能会奏效。
在man apt
页面中还有一个有趣的DIFFERENCES TO APT-GET(8)
部分:
The apt command is meant to be pleasant for end users and does
not need to be backward compatible like apt-get(8). Therefore
some options are different:
· The option DPkgPM::Progress-Fancy is enabled.
· The option APT::Color is enabled.
· A new list command is available similar to dpkg --list.
· The option upgrade has --with-new-pkgs enabled by default.
如果你想要Bash-completions,我已经有了它的an attempt as writing a completions file。这些都包含在以后的Ubuntu安装中。