Não há quadros de janelas na tela VNC

2

Estou tentando configurar uma boa área de trabalho virtual no meu servidor Ubuntu 14.04 headless headless.

Infelizmente, vejo a seguinte imagem ao abrir a tela remota:

Ouseja.asjanelasnãotêmframesetítulos.

EuexecutooVNCcomoseguinte/etc/init/Xvnc4.conf(scriptinicial?):

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

Eu tenho o seguinte conteúdo em /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 está ausente

/root/.Xresources está ausente

O que está errado aqui?

    
por Dims 12.10.2015 / 20:15

1 resposta

1

Tente executar gnome-session da seguinte forma:

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

Como apontado nos comentários, a execução de gnome-wm em vez de gnome-session pode gerar melhores resultados.

    
por 12.10.2015 / 23:22