zoukankan      html  css  js  c++  java
  • 如何在Ubuntu 12.04 Server 中安装图形用户界面

    root@ubuntu:~# gedit /etc/environment 
    root@ubuntu:~# gedit /etc/profile

    -----------------------------------------------

    使用ubuntu server安装lamp主机非常的方便,只要在安装系统的步骤中选择就是了 。但是很多时候我需要在图形界面下管理主机更加方便。今天的教程就是教大家安装图形界面。

    首先你需要确定你的源文件中 /etc/apt/sources.list 已经使用Universe和Multiverse库。然后使用下面的命令来进行更新源列表和安装图形桌面。

    sudo apt-get update

    sudo apt-get upgrade

    sudo apt-get install ubuntu-desktop

    如果你只想安装必要的桌面管理软件而不想安装一些诸如 Evolution 和 OpenOffice 的不需要的应用软件,可使用下面的命令:

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

    安装轻量级桌面 xfce 使用下面的命令:

    sudo apt-get install xubuntu-desktop

    安装 KDE 桌面,使用下面的命令:

    sudo apt-get install kubuntu-desktop

    ---------------------------------------

  • 相关阅读:
    php system()和exec()差别
    linux目录中 /usr/local/bin 和 /usr/bin和/usr/local/etc
    mac rar命令相关
    php迭代器
    linux下的find文件查找命令与grep文件内容查找命令
    php 类中的静态属性
    mysql 语句执行顺序
    mysl
    MySQL中concat函数
    animation效果
  • 原文地址:https://www.cnblogs.com/fx2008/p/4015559.html
Copyright © 2011-2022 走看看