TightVNC 上仅出现终端窗口

TightVNC 上仅出现终端窗口

我使用 amazon ec2 提供的 ubuntu 服务器。我需要 gui,以便在服务器上安装 ubuntu-desktop 并编辑 xstartup。但是当我通过 TightVNC 连接到我的服务器时,它只显示终端窗口。这是 .vnc/xstartup:

            #!/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 &

答案1

解决方案就在文件本身中:

# Uncomment the following TWO (2) lines for normal desktop:

但是,在您的配置中,只有第一行被取消注释。xinitrc 脚本被跳过,因为它仍然被注释。

取消注释此行,一切就绪了。没有它,启动 gnome-session 是徒劳的。

相关内容