간단하고 쉬운 솔루션 :-
각 패키지 뒤에 불필요한 패키지를 추가하십시오 .
-
스위치가 없는 예 :
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
나중에 할 수 있습니다 !