Skip to content

Instantly share code, notes, and snippets.

@basti
Forked from jterrace/xvfb
Last active October 23, 2017 17:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save basti/2db0b71e893ee4d6d015 to your computer and use it in GitHub Desktop.
Save basti/2db0b71e893ee4d6d015 to your computer and use it in GitHub Desktop.
xvfb init script for Ubuntu
# download and copy xvfb file from this gist to /etc/init.d/

# make it executable
sudo chmod a+x /etc/init.d/xvfb

# start xvfb on display number 10
export DISPLAY=:10
sudo /etc/init.d/xvfb start
XVFB=/usr/bin/Xvfb
XVFBARGS=":10 -screen 0 1024x768x24 -ac +extension GLX +render -noreset"
PIDFILE=/var/run/xvfb.pid
case "$1" in
start)
echo -n "Starting virtual X frame buffer: Xvfb"
start-stop-daemon --start --quiet --pidfile $PIDFILE --make-pidfile --background --exec $XVFB -- $XVFBARGS
echo "."
;;
stop)
echo -n "Stopping virtual X frame buffer: Xvfb"
start-stop-daemon --stop --quiet --pidfile $PIDFILE
echo "."
;;
restart)
$0 stop
$0 start
;;
*)
echo "Usage: /etc/init.d/xvfb {start|stop|restart}"
exit 1
esac
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment