- 1、本文档共5页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Linux系统下vnc服务器
1.首先查询是否安装VNC Serverrpm -qa | grep vnc如果有类似于:vnc-server-的值返回说明已经安装了vnc-server如果没有安装采用–ivh vnc-server-4.1.2-9.el5.rpm
2.配置VNC用户以root登录的话,输入[root@www ~]#vncpasswd Password:Verify:设置root用户的VNC登录用户名和密码以登录的话,输入New UNIX password:
Retype new UNIX password:
Passwd: all authentication tokens updated successfully.
[root@www ~]#su - houyongkai
[houyongkai@www ~]$vncpasswd
Password:
Verify:
设置houyongkai用户的VNC登录用户和密码。
3.配置vnc-server的配置文件/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:/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=2:myusername
VNCSERVERS=1:root 2:houyongkai
# VNCSERVERARGS[2]=-geometry 800x600 -nolisten tcp -nohttpd -localhostVNCSERVERARGS[1]=-geometry 800x600 注意:
VNCSERVERS=后面可以支持多用户,以空格隔开。如:VNCSERVERS=1:myusername 15:otheruser
这里的1 和15是端口号,用于连接时的端口VNCSERVERARGS后面的[]里面的数据要与VNCSERVERS后面对应用户的值要一致。好像不一致也没有关系VNCSERVERARGS基本参数有:-geometry 桌面大小,缺省是1024x768-nohttpd 不监听HTTP端口nolisten tcp 不监听X端口-localhost 只允许从本机访问-AlwaysShared 默认的, 同时只能有一个vncviewer连接(跟客户端配置也有关), 一旦第2个连上去, 第1个就被断开了. 此参数允许同时连多个vncviewer-SecurityTypes None登录不需要密码认证 VncAuth默认值,要密码认证启动vncserver/sbin/service nvcserver start如果没有出错的话,就会启动vnc服务了.修改默认桌面设置在root的用户目录下面的.vnc目录下面会产生一些文件,我们现在要修改xstartup#!/bin/sh# Uncomment the following two lines for normal desktop: (去掉以下两行的#就可以允许使用桌面了)unset SESSION_MANAGERexec /etc/X11/xinit/xinitrc[ -x /etc/vnc/xstartup ]
文档评论(0)