首页 > 代码库 > Centos6.4最小化安装后使用xfce桌面环境
Centos6.4最小化安装后使用xfce桌面环境
由于我个人使用的Centos是在虚拟机中最小化安装的,gnome实在是不喜欢,所以自己装了个xfce,安装后启动不起来,才发现x window等依赖环境没装,为了少走弯路,在此写下安装过程。
1.yum源配置过程
$ wget http://download.Fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
$ sudo rpm -ivh epel-release-6-5.noarch.rpm
$ sudo yum search xfce
$ sudo yum groupinfo xfce
$ sudo yum groupinstall xfce
注意:6-8这个版本可能会修改,可以打开http://download.Fedoraproject.org/pub/epel/6/x86_64 查看对应版本
2.相关依赖包安装
yum groupinstall "X Window System" #安装X window
yum groupinstall "Desktop" "Desktop Platform" #安装Desktop相关组件
3.启动xfce桌面
startx
到此,xfce应该是可以进入了,完成桌面环境的安装,为了方便管理,可以安装vnc server,配合下Remmina可以远程桌面管理。
4.VNC SERVER的安装及配置
yum install tigervnc tigervnc-server -y #安装vncserver
vim /etc/sysconfig/vncserver #打开vnc配置文件
然后把配置文件中的倒数第一行和倒数第二行的#号去掉,例如:
# The VNCSERVERS variable is a list of display:user pairs.## Uncomment the lines below to start a VNC server on display :2# as my ‘myusername‘ (adjust this to your own). You will also# need to set a VNC password; run ‘man vncpasswd‘ to see how# to do that. ## DO NOT RUN THIS SERVICE if your local area network is# untrusted! For a secure way of using VNC, see this URL:# https://access.redhat.com/knowledge/solutions/7027# Use "-nolisten tcp" to prevent X connections to your VNC server via TCP.# Use "-localhost" to prevent remote VNC clients connecting except when# doing so through a secure tunnel. See the "-via" option in the# `man vncviewer‘ manual page. VNCSERVERS="1:root" VNCSERVERARGS[2]="-geometry 800x600 -nolisten tcp -localhost"~
其中高亮部分为配置内容,vncservers=“实例序号:用户名”,实例的序号在Remmina远程连接的时候需要填写在ip地址的后面。
vncpasswd #配置vnc用户的密码,自行设置
然后就可以启动vnc服务了
service vncserver start
如果看到系统提示启动完毕后,可以开始进行iptables的配置了
5.IPTABLES配置
由于iptables需要配置端口后才可以放行,因此需要配置完5901端口(根据实例序号,序号为1的端口为5901,序号为2的端口为5902,以此类推)
首先打开iptables文件
vim /etc/sysconfig/iptables
在22号端口的放行语句下方加入如下语句:
-A INPUT -m state --state NEW -m tcp -p tcp --dport 5901 -j ACCEPT
然后重启iptables
service iptables restart
到这里,基本上就可以通过Remmina远程管理你的服务器了
Centos6.4最小化安装后使用xfce桌面环境
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。