tigervnc-server怎么安装

tigervnc-server怎么安装,第1张

一,安装tigervnc-server VNC软件包

[root@localhost ~]# yum install tigervnc-server

[root@localhost ~]# rpm -qc tigervnc-server

/etc/sysconfig/vncservers

[root@localhost ~]# chkconfig --level 35 vncserver on

二.目的:以vistor用户启动第一个端口,即5901,以student用户启动第二个端口,即5902

[root@localhost ~]# vim /etc/sysconfig/vncservers

VNCSERVERS="1:visitor 2:student"

以vnc使用用户登录系统,创建vnc密码,vncpasswd

[root@localhost ~]# su - visitor

[visitor@localhost ~]$ vncpasswd

Password: 输入密码

Password must be at least 6 characters - try again

Password: 再次输入密码

Verify:

启动服务一次,生成 /home/visitor/.vnc/xstartup

[visitor@localhost ~]$ vncserver

New 'localhost.localdomain:1 (visitor)' desktop is localhost.localdomain:1

Starting applications specified in /home/visitor/.vnc/xstartup

Log file is /home/visitor/.vnc/localhost.localdomain:1.log

查看已经打开的vnc服务,关闭服务

[visitor@localhost ~]$ vncserver -list

TigerVNC server sessions:

X DISPLAY # PROCESS ID

:1 5567

[visitor@localhost ~]$ vncserver -kill :1

Killing Xvnc process ID 5567

[visitor@localhost ~]$ exit

logout

[root@localhost ~]# su - student

[student@localhost ~]$ vncpasswd

Password:

Verify:

[student@localhost ~]$ vncserver

xauth: creating new authority file /home/student/.Xauthority

New 'localhost.localdomain:1 (student)' desktop is localhost.localdomain:1

Creating default startup script /home/student/.vnc/xstartup

Starting applications specified in /home/student/.vnc/xstartup

Log file is /home/student/.vnc/localhost.localdomain:1.log

[student@localhost ~]$ vncserver -list

TigerVNC server sessions:

X DISPLAY # PROCESS ID

:1 8764

[student@localhost ~]$ vncserver -kill :1

Killing Xvnc process ID 8764

[student@localhost ~]$ exit

logout

三,启动服务

[root@localhost ~]# /etc/init.d/vncserver start

正在启动 VNC 服务器:1:visitor

New 'localhost.localdomain:1 (visitor)' desktop is localhost.localdomain:1

Starting applications specified in /home/visitor/.vnc/xstartup

Log file is /home/visitor/.vnc/localhost.localdomain:1.log

2:student

New 'localhost.localdomain:2 (student)' desktop is localhost.localdomain:2

Starting applications specified in /home/student/.vnc/xstartup

Log file is /home/student/.vnc/localhost.localdomain:2.log

[确定]

四.添加防火墙配置

[root@localhost ~]# vim /etc/sysconfig/iptables

-A INPUT -m state --state NEW -m tcp -p tcp --dport 5901 -j ACCEPT

-A INPUT -m state --state NEW -m tcp -p tcp --dport 5902 -j ACCEPT

[root@localhost ~]# service iptables restart

iptables: Flushing firewall rules: [ OK ]

iptables: Setting chains to policy ACCEPT: filter [ OK ]

iptables: Unloading modules: [ OK ]

iptables: Applying firewall rules: [ OK ]

Linux 下tightvnc的配置方法如下:

IIS7服务器管理工具能让你轻松控制远程的计算机,它可以通过在另一端电脑上安装配套使用IIS7服务器管理工具来进行与服务器的远程连接,就像坐在自己家的计算机前面一般,让你出门在外无后顾之忧,方便了用户在远程控制操作上进行合理有效的远程协助服务!

这个工具里面的VNC功能可以说是使用感非常棒的。它可以一键导出或导入,还可以一键批量打开VNC,还可以一键批量关闭VNC,还有到期提醒,还有多台VNC 自定义备注,自定义分组。最后还支持win、linux批量管理,这是非常好用的功能了。能省去您一台台记录IP、密码,点下就能瞬间打开。

一、安装tightvnc

将程序安装到已在PATH环境变量中的/root/bin下,manual手册则安装到/usr/share/man下

[root@localhost vnc_unixsrc]./vncinstall /root/bin /usr/share/man

用于Java环境(比如在浏览器中)下的Java字节码放到/root/bin/classes中

[root@localhost vnc_unixsrc]mkdir -p /root/bin/classes

[root@localhost vnc_unixsrc]cp classes/* /root/bin/classes/

二、安装tigervnc

yum install tigervnc-server               这是服务端软件

yum install tigervnc                            这是客户端软件,安装完后,程序在“应用程序”->“Internet”->“TigerVNC Viewer”

三、设置vnc服务端:

1、修改配置文件:vim /etc/sysconfig/vncservers

VNCSERVERS="1:root "

VNCSERVERARGS[1]="-geometry 800x600 -nolisten tcp -localhost"

注意:vnc默认的端口是从5900开始,所以如果以root用户登录的话,端口号就是5901了

2、设置vnc连接密码:

必须先切换到某一用户环境下,才能使用vncpasswd命令来设置该用户的vnc连接密码。

四、启动vnc服务:

1、/etc/init.d/vncserver start (stop reload restart等)

2、service vncserver start (stop restart等)

3、设置开机自动启动:chkconfig  vncserver on

(检查开机自动启动设置:chkconfig --list vncserver)

五、连接vnc远程桌面:

在windows系统中,可使用“TigerVNC Viewer”客户端或者UltraVNC Viewer  客户端来连接远程桌面,两者的windows上的安装方法就不需要再介绍了吧,大家下载到安装文件后都会做的,你懂的!

点击“TigerVNC Viewer”客户端软件后,在"VNC  Server:"栏输入需要连接的远程计算机的IP地址及相应的接口号,然后单击“OK”即可。


欢迎分享,转载请注明来源:夏雨云

原文地址:https://www.xiayuyun.com/zonghe/28101.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-02-18
下一篇2023-02-18

发表评论

登录后才能评论

评论列表(0条)

    保存