Debian
如何在 Debian Squeeze 上安裝 LXDE 和 X Window 系統
我最近做了一個 Debian Squeeze 的網路安裝,在安裝過程中我取消了桌面環境,因為我不想將 Gnome 安裝為預設的 DE。所以我在啟動過程中得到了一個命令行。現在我想安裝 LXDE,我想知道在安裝 LXDE 之前要安裝哪個:xorg 或 xserver-xorg(或兩者)?
是的,我後來意識到我可以在安裝過程中選擇 LXDE 作為替代 DE,但我不想再次重新安裝。
簡短的回答:
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
安裝,無論你要使用什麼桌面系統。