Estou tentando iniciar um VNC session
com o Gnome Desktop
da seguinte forma:
Lado do servidor
Configure o arquivo .vnc/xstartup
para:
#!/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 &
vnc4server
inicia uma sessão no servidor :
selenium@selenium-grid:~$ vnc4server -geometry 1024x768 :1
New 'selenium-grid:1 (selenium)' desktop is selenium-grid:1
Starting applications specified in /home/selenium/.vnc/xstartup
Log file is /home/selenium/.vnc/selenium-grid:1.log
Inicie uma nova seção de xvnc4viewer
no lado do cliente :
$ xvnc4viewer <IP my server>:<Port my server>
Resultado:
Estou tentando iniciar um VNC session
com o Gnome Desktop
com as seguintes configurações e comandos:
Mate a sessão de vnc4server
no lado do servidor :
selenium@selenium-grid:~$ vnc4server -kill :1
Killing Xvnc4 process ID 10747
edite o arquivo .vnc/xstartup
no lado do servidor :
$ sudo nano .vnc/xstartup
Arquivo editado:
#!/bin/sh
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
exec /etc/X11/xinit/xinitrc
/usr/bin/gnome-session &
[ -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 &
Inicie uma nova sessão de vnc4server
no servidor
selenium@selenium-grid:~$ vnc4server -geometry 1024x768 :1
New 'selenium-grid:1 (selenium)' desktop is selenium-grid:1
Starting applications specified in /home/selenium/.vnc/xstartup
Log file is /home/selenium/.vnc/selenium-grid:1.log
Lado do cliente
$ xvnc4viewer <IP my server>:<Port my server>
Porque minha sessão Gnome Desktop
não está aparecendo? O que estou fazendo errado?
Tags unity 14.04 gnome remote-desktop vnc