Configuration de VNC

Configurer VNC : accès distant à l'interface graphique

Fichier /etc/init.d/vncboot:

#! /bin/sh
# /etc/init.d/vncboot
 
# BEGIN INIT INFO
# Provides: vncboot
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: Start VNC Server at boot time
# Description: Start VNC Server at boot time.
# END INIT INFO
 
USER=pi
HOME=/home/pi
 
export USER HOME
 
case "$1" in
 start)
  echo "Starting VNC Server"
  #Insert your favoured settings for a VNC session
  su - $USER -c "/usr/bin/vncserver :1 -geometry 1280x800 -depth 16 -pixelformat rgb565"
  ;;
 
 stop)
  echo "Stopping VNC Server"
  /usr/bin/vncserver -kill :1
  ;;
 
 *)
  echo "Usage: /etc/init.d/vncboot {start|stop}"
  exit 1
  ;;
esac
 
exit 0