Linux VNC server 安装配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux VNC server 安装配置相关的知识,希望对你有一定的参考价值。

1.安装vnc server

[[email protected] ~]# yum install tigervnc-server -y

 

2.设置 vnc server 开机启动

[[email protected] ~]# chkconfig vncserver on

 

3.修改vncserver 配置文件

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

在配置文件后添加以下内容

VNCSERVERS="2:root"

VNCSERVERARGS[2]="-geometry 1366x768 -nolisten tcp"

 

设置vncserver 的密码

[[email protected] ~]# vncpasswd 
Password:
Verify:

 

4.启动sncserver 服务

[[email protected] ~]# /etc/init.d/vncserver start

 

5.使用VNC Viewer 远程连接

技术分享

 技术分享

技术分享

 

 

CentOS7配置VNC

技术分享

 

一.安装

以root用户运行以下命令来安装vncserver;

yum install tigervnc-server 

同样运行以下命令来安装vncviewer;

yum install vnc

停止并禁用防火墙;

systemctl stop firewalld.service

systemctl disable firewalld.service

 

二.配置

vncviewer基本上不用配置;

vncserver的配置,创建一个新的配置文件,以开启1号窗口为例(也可以同时开启多个窗口,修改数字即可),方法如下:

cp /lib/systemd/system/[email protected] /lib/systemd/system/[email protected]:1.service

或者再增加一个窗口:

 

cp /lib/systemd/system/[email protected] /lib/systemd/system/[email protected]:2.service

 

编辑/lib/systemd/system/[email protected]:1.service,设置用户root相关参数

[Service]

Type=forking

# Clean any existing files in /tmp/.X11-unix environment

ExecStartPre=/bin/sh -c ‘/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :‘

ExecStart=/sbin/runuser -l root -c "/usr/bin/vncserver %i -geometry 800x600"

PIDFile=/root/.vnc/%H%i.pid

ExecStop=/bin/sh -c ‘/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :‘

 

三.应用

更新systemctl以使其生效;

systemctl daemon-reload 

设置vncserver的密码;

 vncpasswd root

按提示输入密码以及确认密码

启动该服务用来启用vnc的1号窗口;

systemctl start [email protected]:1.service  或者 vncserver :1

关闭1号窗口:

systemctl stop [email protected]:1.service   或者 vncserver -kill :1

设置为开机自动启动;

systemctl enable [email protected]:1.service



以上是关于Linux VNC server 安装配置的主要内容,如果未能解决你的问题,请参考以下文章

linux 上 配置vncserver

Linux centos 安装VNC 服务过程

Linux下配置VNC

CentOS(Linux) 安装VNC server服务 VNC下载

centos 5.5如何配置vnc,开启linux远程桌面教程

Linux上的桌面及VNC的安装和配置