Ubuntu wikiによると、dpkg
ドキュメントをインストールしないように指示できます。これにより、すべてのドキュメント(著作権情報を除く)がaptによってインストールされなくなります。
/etc/dpkg/dpkg.cfg.d/01_nodoc
目的のフィルターを指定するファイルを作成します。例:
path-exclude /usr/share/doc/*
# we need to keep copyright files for legal reasons
path-include /usr/share/doc/*/copyright
# if you also want to remove the man pages uncomment the next line
#path-exclude /usr/share/man/*
path-exclude /usr/share/groff/*
path-exclude /usr/share/info/*
# lintian stuff is small, but really unnecessary
path-exclude /usr/share/lintian/*
path-exclude /usr/share/linda/*
次に、すでにインストールされているドキュメントを手動で削除できます。
find /usr/share/doc -depth -type f ! -name copyright|xargs rm || true
find /usr/share/doc -empty|xargs rmdir || true
rm -rf /usr/share/groff/* /usr/share/info/*
rm -rf /usr/share/lintian/* /usr/share/linda/* /var/cache/man/*
マニュアルページも削除したい場合:
rm -rf /usr/share/man/*
この例はOEM向けに書かれていますが、私にとっても同様に機能しました。私の取っ/usr/share/doc/
〜20メガバイトにダウン〜150メガバイトからディレクトリを。