APT /etc/apt/apt.conf.d/docker-autoremove-suggests

原始 📋 Debian 10 (Buster) 16 行

适用于

当前查看:
Debian 10 (Buster)
相同于:
Debian 11 (Bullseye) Debian 12 (Bookworm) Debian 13 (Trixie) Debian 9 (Stretch)
其他版本:

详情

大小
16 行
MD5
e99ea2a4a8db4dd2b5b90a60670d4fe0
SHA256
84cb100b000873f25f677cf23ab51f841eb490264fa496361591d6071aebf0f4
/etc/apt/apt.conf.d/docker-autoremove-suggests
# Since Docker users are looking for the smallest possible final images, the
# following emerges as a very common pattern:

#   RUN apt-get update \
#       && apt-get install -y <packages> \
#       && <do some compilation work> \
#       && apt-get purge -y --auto-remove <packages>

# By default, APT will actually _keep_ packages installed via Recommends or
# Depends if another package Suggests them, even and including if the package
# that originally caused them to be installed is removed.  Setting this to
# "false" ensures that APT is appropriately aggressive about removing the
# packages it added.

# https://aptitude.alioth.debian.org/doc/en/ch02s05s05.html#configApt-AutoRemove-SuggestsImportant
Apt::AutoRemove::SuggestsImportant "false";

复制粘贴

curl:
curl https://exampleconfig.com/api/v1/config/original/e99ea2a4a8db4dd2b5b90a60670d4fe0?hint=docker-autoremove-suggests
wget:
wget -O docker-autoremove-suggests https://exampleconfig.com/api/v1/config/original/e99ea2a4a8db4dd2b5b90a60670d4fe0?hint=docker-autoremove-suggests

给 AI Agent 用

<prompt><role>DevOps agent</role><source url='https://exampleconfig.com/api/v1/config/original/e99ea2a4a8db4dd2b5b90a60670d4fe0?hint=docker-autoremove-suggests' /><config><app>APT</app><os>Debian 10 (Buster)</os><location>/etc/apt/apt.conf.d/docker-autoremove-suggests</location><lines>16</lines><md5>e99ea2a4a8db4dd2b5b90a60670d4fe0</md5><sha256>84cb100b000873f25f677cf23ab51f841eb490264fa496361591d6071aebf0f4</sha256></config></prompt>

粘贴到 Claude、ChatGPT 或任何 AI 助手里。

安装 APT

Debian

sudo apt update && sudo apt install apt

Ubuntu

sudo apt update && sudo apt install apt

文件位置

文件路径
/etc/apt/apt.conf.d/docker-autoremove-suggests
目录
/etc/apt/apt.conf.d/
用途
系统级配置目录
说明
/etc/ 里的文件是系统级配置,影响所有用户。

FAQ

什么时候该用这个 docker-autoremove-suggests?

用来恢复缺失的默认文件、确认发行版本带了什么,或拿你的 APT config 做 diff。

怎么恢复 APT 的默认配置?

下载文件,把 /etc/apt/apt.conf.d/docker-autoremove-suggests 里的当前配置备份好,替换掉,然后 reload 或 restart APT。

docker-autoremove-suggests 适合直接上生产吗?

这是 Debian 10 (Buster) 的厂商默认配置,只能当基线。上生产前请检查安全和性能设置。

和其他 OS 版本有什么不同?

默认值会随发行版和版本变化,这份对应 Debian 10 (Buster)。

我可以用它来排查 APT 吗?

可以。和你的配置做 diff 找出漂移,然后只恢复需要的段落。