aws ubuntu安装vnc

  在网上搜了许多教程,还是不能解决问题,最后发现是配置文件太古老的原因,大体步骤可以遵循https://kuyur.info/blog/archives/2593  只是将原文中 '将#去掉‘ 这一步改为

#!/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 &
x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
x-window-manager &

gnome-panel &
gnome-settings-daemon &
metacity &
nautilus &

大功告成

猜你喜欢

转载自blog.csdn.net/weixin_42383873/article/details/84938056
AWS