シンプルで簡単な解決策:不要なパッケージを指定し、-
各パッケージの後に余分なものを追加します。
-
スイッチなしの例:
root@debian:~# apt-get install bsd-mailx
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
exim4-base exim4-config exim4-daemon-light liblockfile-bin liblockfile1
[...]
インストール を回避するためにスイッチを使用する例exim4-base
。-
最後に注意してください:
root@debian:~# apt-get install bsd-mailx exim4-base-
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package 'exim4-base' is not installed, so not removed
The following extra packages will be installed:
liblockfile-bin liblockfile1 ssmtp
[...]
ご覧のとおりapt-get
、exim4-base
パッケージのインストールはもう試みませんexim4-config
。また、さまざまな依存関係(など)のインストールも試みません。
そして、あなたが間違っていて、exim4-base
結局その依存関係が必要な場合はapt-get install
、後でそれを行うことができます!