天天看点

linux查看vnc进程命令_Linux下开启VNCserver服务(远程链接)

实验环境:centos6.8

可支持 linux连linux linux连Windowslinux

一、检查系统是否安装了vnc 和 vncserver, rpm -qa | grep vnc若是没有安装那就行自行下载安装(我这里用yum安装了,vncserver安装须要安装依赖包xorg-x11-fonts-misc)

(1)安装vnc yum -y install vnc

(2)安装vncserver依赖包 yum -y install xorg-x11-fonts-misc

(3)安装vncserver yum -y install tigervnc-servervim

二、配置vncservers文件

[[email protected] ~]# vim /etc/sysconfig/vncservers

VNCSERVERS="1:root" (本行注释去掉并改成当前格式)

VNCSERVERARGS[1]="-geometry 1024x768"(本行雷同上一个括号)centos

三、配置xstartup文件

编辑配置以前,须要使用vncserver命令建立默认配置文件

[[email protected] ~]# vncserver

输入口令:123456 (密码要求最少六位)

确认口令:123456

linux查看vnc进程命令_Linux下开启VNCserver服务(远程链接)

[[email protected] ~]# vim /root/.vnc/xstartup

gnome-session & set starting GNOME desktop (在最后增长这一行,表使用gnome界面,不然是xfce界面)

而后保存退出:x

linux查看vnc进程命令_Linux下开启VNCserver服务(远程链接)

服务器

四、设置远程登陆口令

[[email protected] ~]# vncpasswd

Password: 123456

Verifu: 123456

linux查看vnc进程命令_Linux下开启VNCserver服务(远程链接)

session

五、启动vncserver服务

(1)主服务器启动 service vncserver start

linux查看vnc进程命令_Linux下开启VNCserver服务(远程链接)

oracle

(2)启动多个界面(若是只要一界面,这步可省略)

[[email protected] ~]# vncserver :2 (启动root登陆的第二个界面)

linux查看vnc进程命令_Linux下开启VNCserver服务(远程链接)

ide

六、中止vncserver服务

service vncserver stop(中止start时候所启动的界面:1,其它另启的界面:2不中止)

vncserver -kill :1 (中止某个界面,要用kill命令来杀掉界面1的进程)

vncserver -kill :2 (中止某个界面,要用kill命令来杀掉界面2的进程)

注:经过 #service vncserver status 命令能够查看出有多少个进程pid号,表示启动了多少个界面。

七、让vncserver服务随机启动

默认状态下,vncserver服务不是开机自动启动,须要手工启动。

chkconfig --list vncserver

linux查看vnc进程命令_Linux下开启VNCserver服务(远程链接)

chkconfig vncserver on

linux查看vnc进程命令_Linux下开启VNCserver服务(远程链接)

保存后,重启测试。测试

八、客户端登陆vncserver服务

(1)先安装vncviewer来远程登陆,

(2)而后在地址栏输入“主机地址:1”(即主机IP加界面号的方式)

肯定后输入登陆口令。server