CentOS6.5 安装VNC并开机自启
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
在Linux下用VNC远程桌面是个很不错的软件。CentOS默认是没有安装VNC的。
一、安装vnc
用下面语句查询,如果出现下面情况说明没有安装vnc
#rpm -q tigervnc tigervnc-server
package tigervnc is not installed
package tigervnc-server is not installed
1、安装vnc:
yum install tigervnc tigervnc-server
2、设置密码:
# vncserver #若出现command not found,就reboot一下
You will require a password to access your desktops.
Password:<输入vnc登录密码>
Verify:<再次输入vnc登录密码>
3、配置vnc
1. 一般我们使用的 Linux 桌面都是 "Gnome" 桌面,故配置成这个桌面。
vi /root/.vnc/xstartup
注释下面两行
#xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#twm &
#twm &
然后再添加下面一行
gnome-session &
gnome-session &
2. 修改用户配置文件:/etc/sysconfig/vncservers
去掉下面这两行前的“#”,并去掉800x600后面的 -nolisten tcp -localhost,不然vnc客户端连不上,改为:
VNCSERVERS="2:root"
VNCSERVERARGS[2]="-geometry 800x600"
VNCSERVERARGS[2]="-geometry 800x600"
3. 改变xstartup的权限
chmod 777 /root/.vnc/xstartup
4.
配置防火墙,允许 VNC 连接
VNC server 监听的端口从 5900 开始,display:1 的监听 5901,display:2 监听 5902,以此类推。CentOS 的防火墙缺省是不允许连接这些端口的,所以需要使用下面的步骤打开防火墙(需要 root 权限):
输入编辑:
# vi /etc/sysconfig/iptables
上面我们只添加了一个 root 帐号和桌面 2,所以这里按照上面的规则,添加一个 "5902" 端口号即可。
-A INPUT -m state --state NEW -m tcp -p tcp --dport 5902 -j ACCEPT
重启防火墙
service iptables restart
4、启动vnc服务器
/etc/init.d/vncserver start
5、关闭vnc服务器
vncserver -kill :2(注意kill后面要有一个空格,2表示display为2)
二、设置开机启动
# chkconfig vncserver on
三、客户端安装
下载 安装vnc viewer
vnc viewer中的配置:
server填写:IP:2 #例如:192.168.1.88:2
Encryption默认。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献6条内容
所有评论(0)