Skip to content

Instantly share code, notes, and snippets.

@reinink
Created April 22, 2014 01:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reinink/11162546 to your computer and use it in GitHub Desktop.
Save reinink/11162546 to your computer and use it in GitHub Desktop.
Installing wkhtmltopdf on Ubuntu Server 12.10
apt-get install wkhtmltopdf
apt-get install xvfb
echo 'xvfb-run --server-args="-screen 0, 1024x768x24" /usr/bin/wkhtmltopdf $*' > /usr/bin/wkhtmltopdf.sh
chmod a+x /usr/bin/wkhtmltopdf.sh
ln -s /usr/bin/wkhtmltopdf.sh /usr/local/bin/wkhtmltopdf
wkhtmltopdf http://www.google.com output.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment