安装 'standard' 个软件包
Install 'standard' packages
通常在安装过程中,您可以选择要安装的组包。
但是我是 运行 LXC Debian 容器,所以我缺少很多标准包(例如,甚至 iputils 也丢失了。)
如何安装所有 'Standard' 软件包,而不一一命名?
谢谢。
您可以通过 运行 tasksel 来做到这一点。
Tasksel package provides a simple interface for users who want to configure their system to perform a specific task. This program is used during the installation process, but users can also use tasksel at any time.
=== 更新
标记为必需和重要的包(例如 iptables)通常由 debootstrap 安装。如果缺少它们,您可以通过创建列出这些软件包的文件来安装它们:
aptitude search ~prequired -F"%p" > required.list
aptitude search ~pimportant -F"%p" > important.list
然后您可以根据需要编辑这些列表并安装它们:
cat required.list | xargs sudo apt-get install
cat important.list | xargs sudo apt-get install
通常在安装过程中,您可以选择要安装的组包。 但是我是 运行 LXC Debian 容器,所以我缺少很多标准包(例如,甚至 iputils 也丢失了。)
如何安装所有 'Standard' 软件包,而不一一命名?
谢谢。
您可以通过 运行 tasksel 来做到这一点。
Tasksel package provides a simple interface for users who want to configure their system to perform a specific task. This program is used during the installation process, but users can also use tasksel at any time.
=== 更新
标记为必需和重要的包(例如 iptables)通常由 debootstrap 安装。如果缺少它们,您可以通过创建列出这些软件包的文件来安装它们:
aptitude search ~prequired -F"%p" > required.list
aptitude search ~pimportant -F"%p" > important.list
然后您可以根据需要编辑这些列表并安装它们:
cat required.list | xargs sudo apt-get install
cat important.list | xargs sudo apt-get install