连接到 AWS EC2 上的 Ubuntu 服务器 - 桌面灰屏

连接到 AWS EC2 上的 Ubuntu 服务器 - 桌面灰屏

我已经在 AWS EC2 上启动了 Ubuntu 实例。

结果lsb_release -a是:

No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.04.3 LTS
Release:    14.04
Codename:   trusty

我提到如何让 vnc 服务器在没有 xfce 的情况下与 Ubuntu 桌面协同工作这样我就可以通过 VNC 客户端登录到我的 Ubuntu 桌面。我仍然只能看到灰色屏幕。

vnc/xstartup我的文件如下所示。

#!/bin/sh

# Uncomment the following two lines for normal desktop:
  unset SESSION_MANAGER
# exec sh /etc/X11/xinit/xinitrc

  export XKL_XMODMAP_DISABLE=1
  unset DBUS_SESSION_BUS_ADDRESS

  [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
  [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
  xsetroot -solid grey
  vncconfig -iconic &

  metacity &
  gnome-settings-daemon
  gnome-session &
  gnome-panel &

  nautilus &
  gnome-terminal &

# x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
# x-window-manager &

有什么建议么?

如果我将这个问题作为新问题发布而不是作为之前帖子的后续内容,从而违反了社区规则,我提前表示歉意。如果您认为合适,我会将其移到那里。

相关内容