因為某些情況下,需要使用到Linux的桌面環境,如Oracle的安裝與配置就需要圖形化界面。
預設情況下,我們已經安裝安裝了Gnome桌面環境
1
<code>yum -y </code><code>install</code> <code>vncserver</code>
配置vncserver,在/etc/sysconfig/vncserver新增
2
<code>VNCSERVERS=</code><code>"1:root"</code>
<code>VNCSERVERARGS[1]=</code><code>"-geometry 1024x768 -alwaysshared -depth 24"</code>
配置VNC連接配接密碼
vncpasswd
設定VNC初始化
vncserver
然後配置
vim .vnc/xstartup
#twm & #注釋這樣
gnome-session & #新增這樣
預設情況下twm是一個很小型的圖形界面完全不符合我們的操作需求
然後啟動服務
service vncserver start;chkconfig vncserver on
本文轉自 rong341233 51CTO部落格,原文連結:http://blog.51cto.com/fengwan/1726775