CentOS6.5安装图形用户界面】的更多相关文章

CentOS 6.5 安装图形界面 安装的时候没有安装图像界面.安装步骤如下: 1.yum -y groupinstall Desktop 2.yum -y groupinstall "X Window System" 3.init 5 由字符界面切换到图形界面可用两种简单方法实现: 在字符界面输入startx或init 5 . 通过编辑/etc/inittab文件实现默认进入图形界面. 把其中的id:3:initdefault中的3改为5,这样以后系统启动后将直接进入文本模式. 以下…
1. 查询是否已安装图形界面 yum grouplist |more 在grouplist的输出结果中的“Installed Groups:”部分中,如果你能找到“X Window System”和GNOME Desktop或KDE 或XFCE-4.4的话,证明你安装了桌面环境. 2.安装 #yum groupinstall "X Window System"#yum groupinstall "GNOME Desktop Environment"或#yum gro…
root@ubuntu:~# gedit /etc/environment root@ubuntu:~# gedit /etc/profile ----------------------------------------------- 使用ubuntu server安装lamp主机非常的方便,只要在安装系统的步骤中选择就是了 .但是很多时候我需要在图形界面下管理主机更加方便.今天的教程就是教大家安装图形界面. 首先你需要确定你的源文件中 /etc/apt/sources.list 已经使用U…
使用ubuntu server安装lamp主机非常的方便,只要在安装系统的步骤中选择就是了 .但是很多时候我需要在图形界面下管理主机更加方便.今天的教程就是教大家安装图形界面. 首先你需要确定你的源文件中 /etc/apt/sources.list 已经使用Universe和Multiverse库.然后使用下面的命令来进行更新源列表和安装图形桌面. sudo apt-get update sudo apt-get upgrade sudo apt-get install ubuntu-deskt…
1.安装图形界面sudo yum groupinstall basic-desktop desktop-platform x11 fonts 2.安装vnc服务sudo yum -y install vnc-server tigervnc-server 3.配置vnc用户vim /etc/sysconfig/vncservers添加VNCSERVERS="1:zhangsm 2:vnctest"VNCSERVERARGS[1]="-geometry 1440x900"…
转载自http://www.cnblogs.com/zydev/p/5128788.html 一.使用网络安装(如果网络比较快,这个方法简单) yum groupinstall "Desktop"yum groupinstall "X Window System"yum groupinstall "Chinese Support"  (这一步可能有问题,可以忽略) yum groupinstall "Font" startx…
因为是以最小化安装的Linux,无法使用图形界面,从网上看到资料,我使用yum安装果然很简单 ------------------------------------------------------------------------------------------------------ 一.使用网络安装(如果网络比较快,这个方法简单) yum groupinstall "Desktop" yum groupinstall "X Window System"…
yum -y install xorg-x11-fonts-Type1 #安装Xwindow yum -y groupinstall "X Window System" #安装GNOME桌面 yum -y groupinstall "Desktop" #安装KDE桌面 yum -y install @kde-desktop #安装火狐浏览器(若安装的是GNOME桌面) yum -y install firefox #鼠标右键菜单“在终端中打开”(仅GNOME桌面)…
CentOS6 yum安装图形界面yum groupinstall -y "Desktop" "Desktop Platform" "Desktop Platform Development" "Fonts" "General Purpose Desktop" "Graphical Administration Tools" "Graphics Creation Tools&q…
系统版本:这里我使用的系统是CentOS6.9 安装方式:安装方式为yum源安装 1.配置yum源仓库 # 在配置之前最好把我们自己的yum仓库文件备份一下: cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.bak # 下载阿里云的镜像yum配置文件 wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Cent…