Google Compute Engine 上适用于 Ubuntu16.04 的 VNC

Google Compute Engine 上适用于 Ubuntu16.04 的 VNC

我已经在 Google 计算引擎平台上将 Ubuntu16.04 LTS 设置为 VM。我正在尝试在此平台上安装 vnc。

我使用以下方式安装了 gnome 桌面

sudo apt-get install gnome-core gnome-shell ubuntu-gnome-desktop metacity nautilus

我的 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 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
x-window-manager &

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

重新启动 VNCserver 后,桌面背景仍为灰色。在前台,有一个窗口,其中显示带有白色背景的主目录。应用程序和位置下拉菜单可见。

我怀疑我可能没有正确安装 gnome 桌面。如能得到任何帮助我将不胜感激。

相关内容