在仅包含系统管理工具的服务器上安装 Ubuntu 桌面?

在仅包含系统管理工具的服务器上安装 Ubuntu 桌面?

我想在 Ubuntu 4.04 LST 的服务器版本上安装 ubuntu-desktop。默认安装很臃肿,里面有太多软件包。所以我尝试了这个:

sudo apt-get install --no-install-recommends ubuntu-desktop

然而,安装的桌面版本什么都没有。甚至没有上方任务栏上的电源按钮,也没有在桌面上配置网络的方法,也没有磁盘使用实用程序。

是否有一个合理的安装选项,适合那些只想要完整桌面安装而不需要额外的像 OpenOffice 或 Thunderbird 这样的软件?

我找不到一种方法来安装一个完整的操作系统,而无需安装所有我不需要的其他东西。

如果没有,那么我怎么知道要安装哪些软件包才能将这些基本功能纳入最小桌面?在仪表盘上搜索,除了在线页面外,什么也没得到。

谢谢!

答案1

我认为这些应该涵盖你想要的:

  • 一些推荐的 ubuntu-desktop 软件包(apt-cache depends ubuntu-desktop查看完整列表):

    sudo apt-get install gnome-disk-utility gnome-terminal libpam-gnome-keyring \
    libproxy1-plugin-gsettingslibproxy1-plugin-networkmanager network-manager-gnome \
    network-manager-pptp network-manager-pptp-gnome ttf-ubuntu-font-family xdg-utils 
    
  • 一些推荐的 Unity 软件包(apt-cache depends unity查看完整列表):

    sudo apt-get install unity-control-center unity-lens-applications unity-lens-files \
    indicator-session indicator-power indicator-keyboard indicator-datetime \
    indicator-sound indicator-application indicator-appmenu hud
    

相关内容