제안 / 권장 패키지를 설치 하시겠습니까? virtualbox-4.0 Reading package

다음 코드를 실행 하고이 패키지에 이러한 패키지가 필요하다는 것을 알았습니다. 이제 패키지가 제안되어 있으며 권장됩니다. 설치하는 방법은 무엇입니까?

myusuf3@purple:/etc$ sudo apt-get install virtualbox-4.0
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
  acroread ia32-libs lib32asound2 lib32bz2-1.0 lib32gcc1 lib32ncurses5 lib32stdc++6 lib32v4l-0 lib32z1 libaudio2
  libc6-i386 libcurl3 libflac8 libhal1 liblcms1 libmng1 libogg0 libpulse0 libqt4-dbus libqt4-network libqt4-opengl
  libqt4-xml libqtcore4 libqtgui4 libsdl-ttf2.0-0 libsdl1.2debian libsdl1.2debian-alsa libsndfile1 libv4l-0
  libvorbis0a libvorbisenc2 libx11-xcb1 nspluginwrapper
Suggested packages:
  libldap2 libgnome-speech7 lib32asound2-plugins nas liblcms-utils pulseaudio qt4-qtconfig
Recommended packages:
  pdf-viewer
The following NEW packages will be installed:
  acroread ia32-libs lib32asound2 lib32bz2-1.0 lib32gcc1 lib32ncurses5 lib32stdc++6 lib32v4l-0 lib32z1 libaudio2
  libc6-i386 libcurl3 libflac8 libhal1 liblcms1 libmng1 libogg0 libpulse0 libqt4-dbus libqt4-network libqt4-opengl
  libqt4-xml libqtcore4 libqtgui4 libsdl-ttf2.0-0 libsdl1.2debian libsdl1.2debian-alsa libsndfile1 libv4l-0
  libvorbis0a libvorbisenc2 libx11-xcb1 nspluginwrapper virtualbox-4.0
0 upgraded, 34 newly installed, 0 to remove and 26 not upgraded.
Need to get 168MB of archives.
After this operation, 460MB of additional disk space will be used.

감사합니다



답변

권장 사항은 기본적으로 설치됩니다 (Lucid 이후). 특정 패키지에 대해이를 무시하려면을 사용하십시오 apt-get --no-install-recommends install pkg. 그러나 제안은 아닙니다. 을 사용하여 단일 패키지 설치를위한 제안을 설치할 수 있습니다 apt-get -o APT::Install-Suggests="true" install pkg.

제안없이 conky 설치 :

laney@iota> sudo apt-get install conky
[...]
Suggested packages:
  apcupsd moc mpd
The following NEW packages will be installed
  conky conky-all

… 또는 제안합니다 :

laney@iota> sudo apt-get -o APT::Install-Suggests="true" install conky
[...]
The following NEW packages will be installed
  apache2 apache2-doc apache2-mpm-worker apache2-suexec apache2-utils apache2.2-bin apache2.2-common apcupsd apcupsd-cgi apcupsd-doc ario ario-common conky
  conky-all icecast2 ices2 libao-common libao4 libaprutil1-dbd-sqlite3 libaprutil1-ldap libcue1 libmpdclient2 libresid-builder0c2a libsidplay2 libsidutils0
  moc moc-ffmpeg-plugin mpd

이것을 넣어서 이것을 기본 동작으로 만들 수 있습니다

APT::Install-Suggests "true"

에있는 파일에서 /etc/apt/apt.conf.d/예를 들어, /etc/apt/apt.conf.d/30install-suggests.


답변

위해 제안 패키지 , 간단히 사용할 수있는 --install-suggests플래그를 :

제안 된 패키지를 설치에 대한 종속성으로 고려하십시오.
구성 항목 : APT :: Install-Suggests.

[당신처럼 ] 옵션을 전달하는 대신-o APT::Install-Suggests="true"
--install-recommends

예:

sudo apt-get --install-suggests install mercurial

답변

--install-recommends명령에 옵션 을 추가하십시오 .

sudo apt-get --install-recommends install virtualbox-4.0