Desktop não mostrando bem usando o vncserver no Ubuntu 15.10

1

Atualmente usando o ubuntu 15.10 no azure e instalei o gnome e a última versão do vnc4server no ubuntu. Por favor, encontrar o arquivo de log abaixo:

Tela atual do cliente VNC:

$ cat .vnc/myhost1\:1.log   
--cut--
VNCSConnST:  Server default pixel format depth 16 (16bpp) little-endian rgb565
VNCSConnST:  Client pixel format depth 8 (8bpp) colour-map
Window manager warning: Invalid WM_TRANSIENT_FOR window 0x20000c specified for    0x20000b (I        nitialization error).
Error org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name    'org.gnome.ze        itgeist.Engine': no such name
amdxdg-su: no graphical method available for invoking '/usr/bin/amdcccle' as 'root'

$ cat .vnc/xstartup
unset SESSION_MANAGER

[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources

vncconfig -iconic &

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

Como obter cores de 24 bits com tela widescreen (agora eu obtendo tela quadrada no cliente vnc)

    
por Nullpointer 22.12.2015 / 10:41

1 resposta

1

Basta iniciar o vncserver com o comando:

/usr/bin/vncserver -geometry 1024x768 -depth 24 :0
  • geometria: defina a resolução
  • profundidade: defina a profundidade da cor

Se você quiser iniciá-lo automaticamente na inicialização, adicione-o em /etc/rc.local

sudo cat "/usr/bin/vncserver -geometry 1024x768 -depth 24 :0" >> /etc/rc.local
    
por Tung Tran 22.12.2015 / 10:57