RHEL 6 下VNC Server 的安装配置
發(fā)下牢騷:
在安裝rhel 6 64Bit的系統(tǒng)時我有安裝遠(yuǎn)程桌面,本遠(yuǎn)程桌面為系統(tǒng)自帶的,可以通過VNC的客戶端訪問,只不過和VNCServer的訪問方式有點(diǎn)不一樣,rhel6自帶的遠(yuǎn)程桌面訪問方式是:在vnc-client中輸入目標(biāo)主機(jī)地址。如:192.168.1.20 。但是這種方式有一個非常致使的問題就是要使用rhel6自帶的遠(yuǎn)程桌面,用戶必須先行登錄一次系統(tǒng)的桌面以后才能通過vnc-client訪問。因?yàn)檫@樣所以有了下面的配置方式。悲劇啊,人都要瘋
首先:安裝依賴包
系統(tǒng)里面有些rpm包沒有安裝,以下為我的rpm包信息
其中的xorg-x11-fonts-base這個包可以不安裝
安裝好了以后,其它的配置就和在rhle5中的配置沒有區(qū)別了
首先:
[root@rhle ~]#vncserver?? //輸入此命令設(shè)置vncserver 密碼
[root@rhle ~]#vi .vnc/xstartup
?
#!/bin/sh
?
# Uncomment the following two lines for normal desktop:
?unset SESSION_MANAGER???
?exec /etc/X11/xinit/xinitrc
?
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
twm &
取消紅色字符串的注釋,然后保存退出
[root@rhle ~]#vi /etc/sysconfig/vncservers
?
# 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
# <URL:http://www.uk.research.att.com/archive/vnc/sshvnc.html>.
?
# Use "-nolisten tcp" to prevent X connections to your VNC server via TCP.
?
# Use "-nohttpd" to prevent web-based VNC clients connecting.
?
# 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[1]="-geometry 1280x800"
取消紅色字符串的注釋,里面的內(nèi)容怎么修改網(wǎng)上的信息很多,這兒就不說了
[root@rhle ~]#chkconfig vncserver on???????? //設(shè)置vncserver 開機(jī)自啟動
[root@rhle ~]#service vncserver restart????? //重啟vncserver
最后通過vnc-client訪問
輸入訪問地址:192.168.1.20:1
搞定
?
轉(zhuǎn)載于:https://www.cnblogs.com/fengqingtao/archive/2013/04/11/3014786.html
總結(jié)
以上是生活随笔為你收集整理的RHEL 6 下VNC Server 的安装配置的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: IIS下的FTP使用
- 下一篇: python 相关性检验怎么计算p值_不