VNC 屏幕上没有窗口框架

VNC 屏幕上没有窗口框架

我正在尝试在我的无头 Ubuntu 14.04 服务器上配置良好的虚拟桌面。

不幸的是,当我打开远程屏幕时,我看到以下图片:

在此输入图像描述

即窗口没有框架和标题。

我使用以下命令运行 VNC /etc/init/Xvnc4.conf(新贵脚本?):

description "VNC screen for Dims"

start on (local-filesystems and started dbus and stopped udevtrigger)
stop on runlevel [016]

expect fork

script

     /usr/bin/Xvnc4 :0 -geometry 1280x1024 -PasswordFile /root/.vnc/passwd &
     cd /root
     export HOME=/root
     export DISPLAY=:0
     export LANG=en_US.UTF-8
     export LANGUAGE=en_US:en
     ~/.vnc/xstartup
end script

我有以下内容/root/.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 &
# mwm &
gnome-session &

/etc/vnc/xstartup缺席

/root/.Xresources缺席

这里有什么问题吗?

答案1

尝试gnome-session像这样运行:

if test -z "$DBUS_SESSION_BUS_ADDRESS" ; then
    eval `dbus-launch --sh-syntax –exit-with-session`
fi
gnome-session &

gnome-wm正如评论中指出的,跑步gnome-session可能会产生更好的结果。

相关内容