看不到终端或除 aws ec2 vncserver 以外的任何东西

can't see terminal or anything other thing than aws ec2 vncserver

我按照本指南为 ec2 aws 实例设置 GUI:https://youtu.be/9BAoJ7JZHr0

sudo apt-get install ubuntu-desktop vnc4server gnome-panel gnome-settings-daemon metacity nautilus gnome-terminal 

Ubuntu ec2 中的版本

No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 16.04.6 LTS
Release:    16.04
Codename:   xenial

更改:并使用此 ~/.vnc/xstartup 文件:

#!/bin/sh

export XKL_XMODMAP_DISABLE=1
unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS

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

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

但我没有看到任何终端。我只看到 window。无法打开终端

如果您想在基于 Ubuntu 的 AWS EC2 实例上设置 GUI,请尝试按照此处提到的步骤操作:How to Install Graphical Desktop in AWS EC2 Instance ubuntu16.04 (Linux)

如果您想使用已经可用的 AWS EC2 AMI,请尝试以下任一方法:

  1. AWS EC2 AMI - Ubuntu GUI
  2. AWS EC2 AMI - Ubuntu Desktop 16.04 LTS (HVM)
  3. AWS EC2 AMI - Xubuntu GUI AMI

您还可以在此处探索类似问题的答案:Whosebug: How To Set Up GUI On Amazon EC2 Ubuntu server