“apt edit-sources” 如何工作?

“apt edit-sources” 如何工作?

对于该apt命令,该edit-sources选项存在。

据研究apt --help表明:

edit-sources - edit the source information file

并且根据man apt,表明:

edit-sources (work-in-progress)
    edit-sources lets you edit your sources.list(5) files in your preferred text editor while also providing basic sanity checks.

不过我在网上找不到如何使用此选项的教程。如果能提供一些指导就更好了。

答案1

在我的Ubuntu 22.04中运行结果sudo apt edit-sources如下:

Select an editor. To change later, run 'select-editor'.
  1. /bin/nano        <---- easiest
  2. /usr/bin/vim.tiny
  3. /usr/bin/emacs
  4. /bin/ed  

所有列出的编辑器都是免费软件,因此为 edit-sources 用户提供额外的软件自由是合适的。正如输出所示sudo apt edit-sources,nano 是最简单的,大多数 Ubuntu 用户会更喜欢使用 nano,但高级 Ubuntu 用户可能更喜欢使用功能更齐全的编辑器,例如 Vim 或 Emacs,尤其是如果他们经常使用这些编辑器的话。

相关内容