CentOS6利用yum方式安装Gnome桌面

安装图形桌面

yum -y groupinstall desktop

修改/etc/inittab,将init3级别改成init5

sed -i s/id:3:/id:5:/g /etc/inittab

安装中文语言支持

yum -y groupinstall "Chinese support"

判断当前运行级别是否为桌面环境,如果是就更改当前语言为中文。
编辑/etc/profile文件

vim /etc/profile

在末尾加入代码

if [ $(runlevel | awk '{print $2}') -eq 5 ];then
    export LC_ALL=zh_CN.UTF-8
fi

安装火狐浏览器

yum -y install firefox

你可能感兴趣的:(CentOS6利用yum方式安装Gnome桌面)