在终端中,如果您输入apt-
并按下tab
,您将得到以下建议:
我想看到如何使用每个命令的实际例子。
笔记:我已经知道如何使用其中的一些,但是为了完整性,我希望得到它们的所有示例。
答案1
这非常简单:man apt-cdrom
例如,您输入 ,即可获得更多信息和解释。您还可以在此处浏览文档:http://manpages.ubuntu.com/.man
代表手动。该命令也适用于许多其他终端命令。
您通常会得到很好的描述和概要。有时您还会得到实际示例,但这取决于手册页。
因为
apt-add-repository
它指出add-apt-repository is a script which adds an external APT repository to either /etc/apt/sources.list or a file in /etc/apt/sources.list.d/ or removes an already existing repository.
为了
apt-get
apt-get is the command-line tool for handling packages, and may be considered the user's "back-end" to other tools using the APT library. Several "front-end" interfaces exist, such as dselect(1), aptitude(8), synaptic(8) and wajig(1).
为了
apt-key
apt-key is used to manage the list of keys used by apt to authenticate packages. Packages which have been authenticated using these keys will be considered trusted.
其余的由你来学习有关这些命令的信息,请参阅手册页。概要几乎再实用不过了。