web-dev-qa-db-ja.com

Ubuntu Minimal DesktopにUnityをインストールするためのコマンド

Ubuntu 11.10 minimalにUnity DEをインストールするためにターミナルに何を入れるか知りたいです。例えば、Sudo apt-get install (whatever goes here)依存関係を含む。

6
rockr101

これにより、より「最小限の」インストールが可能になります。 apt-getのデフォルトの動作では、すべての推奨パッケージがインストールされます。

Sudo apt-get install --no-install-recommends ubuntu-desktop 
10
Adam
Sudo apt-get install ubuntu-desktop
1
Dalton Miller