超快速搞定linux的vnc

发布于 2022-09-08 01:31:10 字数 1491 浏览 9 评论 0

在linux下使用vnc的机会也不多,也就是几个数据库的安装,自从学会了在命令行下安装Oracle之后,更是将之忘记得一干二净,近来搞DB2又不得不把它捣鼓起vnc了。

[root@test01 db2]# vncserver

You will require a password to access your desktops.

Password:
Verify:
xauth:  creating new authority file /root/.Xauthority

New 'test01:1 (root)' desktop is test01:1

Creating default startup script /root/.vnc/xstartup
Starting applications specified in /root/.vnc/xstartup
Log file is /root/.vnc/test01:1.log

[root@test01 db2]# cd ~/.vnc/
[root@test01 .vnc]# ls
passwd  test01:1.log  test01:1.pid  xstartup
[root@test01 .vnc]# vim xstartup
[root@test01 .vnc]# pwd
/root/.vnc
[root@test01 .vnc]# vim xstartup
# 修改 xstartup
[root@test01 .vnc]# cat 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 &          # 注释这一行
gnome-session&   # 添加这一行

[root@test01 db2]# vncserver -kill :1
[root@test01 db2]# vncserver

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文