Debian Netinst-为什么在我安装Gnome时易于下载Libre Office?


12

我有Debian。我从netinst安装它以节省磁盘空间和网络传输(小分区,UMTS连接)。

我决定安装Gnome。当我输入时:

apt-get install gnome

它开始下载诸如Libre Office,Gimp之类的大文件。

我真的不喜欢

  1. 为什么Debian开发人员在安装Gnome时会认为我需要Libre Office或Gimp?还是我错过了什么?
  2. 如何安装Gnome和仅真正需要的软件包?

Answers:



11

那是因为gnome是一个元软件包,它引入了完整的Gnome桌面环境,其中包括很多东西:

$ apt-cache show gnome
[ ... ]
Description-en: Full GNOME Desktop Environment, with extra components
 This is the GNOME Desktop environment, an intuitive and attractive
 desktop, with extra components.
 .
 This meta-package depends on the standard distribution of the GNOME
 desktop environment, plus a complete range of plugins and other
 applications integrating with GNOME and Debian, providing the best
 possible environment to date.

您所追求的可能是gnome-core包裹:

$ apt-cache show gnome-core
[ ... ]
Description-en: GNOME Desktop Environment -- essential components
 These are the core components of the GNOME Desktop environment, an
 intuitive and attractive desktop.
 .
 This meta-package depends on a basic set of programs, including a file
 manager, an image viewer, a web browser, a video player and other
 tools.
 .
 It contains the official “core” modules of the GNOME desktop.

通常,apt-cache show PACKAGENAME在安装前应始终使用以确保您知道软件包是什么。


0

关于最后一个问题,如果使用aptitude软件包管理器,则可以非常小心地控制安装了哪些其他依赖项。这不会阻止GNOME元软件包安装LibreOffice,因为这是必需的依赖项,但是可以帮助您避免添加很多其他依赖项。

在中aptitude,转到“选项”->“首选项”。在“依赖项”下,取消选中“选中包时自动解决程序包的依赖项”,然后取消选中“自动安装推荐的包”。完成这些设置后,当您安装软件包时,它将报告未解决的依赖关系,但也为您提供其他选择。有时,某些选择的软件包可能更少,并且需要的硬盘空间也更少。

如果同时安装了所有软件包,则可以另外减少安装的数量aptitude。如果同时安装它们,该算法将选择更适合您的选择的软件包集合。例如,如果您安装了一个窗口管理器,要求先安装终端仿真器,然后再安装自己喜欢的终端仿真器,则系统上将有两个终端仿真器。如果相反,您在安装自己喜欢的终端仿真器的同时选择了所需的软件和窗口管理器,最终系统上将只有一个终端仿真器。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.