概述
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应用所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复