Di solito suggerisco un server VNC alternativo, x11vncserver o FreeNX.
FreeNX come e scaricare informazioni
x11 VNC e documenti
Ciò presuppone che VNC sia configurato e funzionante:
Copia il blocco di codice qui sotto in /etc/init.d/vncserver
. Il modo più semplice per farlo è copiarlo negli appunti, eseguirlo sudo -i && cat > /etc/init.d/vncserver && exit
in un terminale, incollarlo e digitare Ctrl- D`. Assicurati di cambiare la variabile USER in qualunque utente tu voglia eseguire il server VNC.
#!/bin/sh -e
### BEGIN INIT INFO
# Provides: vncserver
# Required-Start: networking
# Default-Start: 3 4 5
# Default-Stop: 0 6
### END INIT INFO
PATH="$PATH:/usr/X11R6/bin/"
# The Username:Group that will run VNC
export USER="mythtv"
#${RUNAS}
# The display that VNC will use
DISPLAY="1"
# Color depth (between 8 and 32)
DEPTH="16"
# The Desktop geometry to use.
#GEOMETRY="<WIDTH>x<HEIGHT>"
#GEOMETRY="800x600"
GEOMETRY="1024x768"
#GEOMETRY="1280x1024"
# The name that the VNC Desktop will have.
NAME="my-vnc-server"
OPTIONS="-name ${NAME} -depth ${DEPTH} -geometry ${GEOMETRY} :${DISPLAY}"
. /lib/lsb/init-functions
case "$1" in
start)
log_action_begin_msg "Starting vncserver for user '${USER}' on localhost:${DISPLAY}"
su ${USER} -c "/usr/bin/vncserver ${OPTIONS}"
;;
stop)
log_action_begin_msg "Stoping vncserver for user '${USER}' on localhost:${DISPLAY}"
su ${USER} -c "/usr/bin/vncserver -kill :${DISPLAY}"
;;
restart)
$0 stop
$0 start
;;
esac
exit 0
Rendi eseguibile lo script con sudo chmod +x /etc/init.d/vncserver
.
Quindi, corri sudo update-rc.d vncserver defaults
. Ciò aggiunge i collegamenti simbolici appropriati allo script vncserver in modo che vengano inviati i comandi di avvio e arresto al momento opportuno.
Nota: potrebbe essere necessario utilizzare sudo update-rc.d vncserver 99
invece se il processo è in esecuzione troppo presto nel processo di avvio.
Per avviare il server senza riavviare, eseguire sudo /etc/init.d/vncserver start
Infine, connettiti al tuo server con un client VNC sulla porta 590X, dove X è il valore di "DISPLAY" nello script vncserver
fonte
sudo update-rc.d vncserver defaults 99
, credo.