我正在尝试编写一个bash
脚本,自动安装我在任何ubuntu
机器上使用的几个软件包。我经常通过 Amazon AWS 或 Digital Ocean 创建虚拟机,并且希望只运行一个脚本来安装我使用的所有软件包。
我想安装的一些软件包是 Emacs 和 Node.js
我安装这些的正常方式是运行apt-get install Emacs
,在执行此操作时,我总是会收到一条警告提示,提示我该应用程序将占用多少空间,以及我是否确定要继续。
有没有办法通过脚本自动执行此过程,并始终对这些提示说“是”?
答案1
从OPTIONS
man apt-get
-y, --yes, --assume-yes
Automatic yes to prompts; assume "yes" as answer to all prompts and
run non-interactively. If an undesirable situation, such as
changing a held package, trying to install a unauthenticated
package or removing an essential package occurs then apt-get will
abort. Configuration Item: APT::Get::Assume-Yes.
答案2
答案3
你可以添加 -y
到任意库安装回答是
例如:apt-get install -y nodejs
例如:apt-get install -y gnupg