VNC 进入 EC2 Ubuntu 实例

VNC 进入 EC2 Ubuntu 实例

我遵循了指南这里,我似乎能够连接,但使用 Chicken VNC 查看器时屏幕空白。为什么?

在此处输入图片描述

答案1

我更改.vnc/xstartup如下:

#!/bin/sh

# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
#exec /etc/X11/xinit/xinitrc
gnome-session --session=gnome-classic &

[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
#x-terminal-emulator -geometry 80×24+10+10 -ls -title “$VNCDESKTOP Desktop” &
#x-window-manager &

相关内容