“apt-get install”什么时候会要求我确认是否继续?

“apt-get install”什么时候会要求我确认是否继续?

有时“apt-get install”会问我"Do you want to continue [Y/n]?"

root@T43:~# apt-get install chmsee
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  libchm1
The following NEW packages will be installed:
  chmsee libchm1
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 192 kB of archives.
After this operation, 848 kB of additional disk space will be used.
Do you want to continue [Y/n]? 

我是否正确,只有当"The following NEW packages will be installed:"行列出的其他包(可能是依赖项)比我指定为参数的包时才会发生这种情况"apt-get install"

答案1

这位超级用户的回答, 这你想继续吗?出现以下情况时出现提示:

  • 将安装额外的软件包(除了您要求安装的软件包 - 例如依赖项)
  • 必备套餐将被删除。基本的这里定义为 系统上必须始终可用且可用的最小功能集,即使包处于未配置(但未打包)状态也是如此。使用 Essential 控制字段将软件包标记为系统必需的。
  • 更改保留的包裹

如果您想apt-get自动说是(这不是一个好主意除非你有非常具体的原因),你可以使用--yes --force-yes参数。

相关内容