我是靠谱客的博主 能干小松鼠,最近开发中收集的这篇文章主要介绍linux vnc离线安装包,Linux之部署vnc应用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Linux之部署vnc应用

1.1.1安装软件包

[root@localhost ~]# rpm -q vnc-server

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

1.1.2设置用户密码

[root@rhel ~]# vncpasswd

Password:

Verify:

说明:设置密码完毕后会在root目录下建立一个.vnc的隐藏目录

1.1.3编辑服务配置文件

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

VNCSERVERS="2:root" //用户名

VNCSERVERARGS[2]="-geometry 800x600"屏幕分辨率

1.1.4创建xstarup文件

[root@localhost ~]# service vncserver start

[root@localhost ~]# service vncserver stop

[root@localhost ~]# ls .vnc/

localhost:2.log  localhost:2.pid  passwd  xstartup

1.1.5编辑xstarup

[root@localhost ~]# vi .vnc/xstartup

#!/bin/sh

# Uncomment the following two lines for normal desktop:

unset SESSION_MANAGER

exec /etc/X11/xinit/xinitrc将注释去掉

[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup

[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources

xsetroot -solid grey

vncconfig -iconic &

xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &

twm &

1.1.6启动测试VNC

[root@localhost ~]# service vncserver start

最后

以上就是能干小松鼠为你收集整理的linux vnc离线安装包,Linux之部署vnc应用的全部内容,希望文章能够帮你解决linux vnc离线安装包,Linux之部署vnc应用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(59)

评论列表共有 0 条评论

立即
投稿
返回
顶部