我最近对 Debian Squeeze 进行了网络安装,在安装过程中我取消了桌面环境,因为我不想将 Gnome 安装为默认 DE。所以我在启动过程中最终得到了一个命令行。现在我想安装 LXDE,我想知道在安装 LXDE 之前要安装哪个:xorg 或 xserver-xorg(或两者)?
是的,我后来意识到我可以在安装过程中选择 LXDE 作为替代 DE,但我不想再次重新安装。
答案1
简短回答:
aptitude install lxde xorg
会做。
更长的答案:
该aptitude show
命令将从命令行显示包及其依赖项的描述,以便您可以使用它来决定是否安装该包。请记住这一点,aptitude
并且apt-get
具有自动依赖性解析,因此包lxde
将安装它所需的 X Window 系统部分。 (如果没有的话,那就是一个需要报告的错误。)
那么,继续检查xorg
:
$ aptitude show xorg
[...]
Provides: x-window-system, x-window-system-core
Description: X.Org X Window System
This metapackage provides the components for a standalone workstation running the X Window System. It provides the X libraries, an X server, a set of fonts,
and a group of basic X clients and utilities.
[...]
xorg
因此,无论您要使用什么桌面系统,您都肯定需要安装。