Quantcast
Channel: Adobe AEM CQ tips » linux
Viewing all articles
Browse latest Browse all 3

How to install wkhtmltopdf on CentOS 6.5

$
0
0

Problem

I need to install wkhtmltopdf on Linux CentOS.

Solution

First of all, we need to download the wkhtmltopdf.

# wget https://wkhtmltopdf.googlecode.com/files/wkhtmltopdf-0.11.0_rc1-static-amd64.tar.bz2

Then we need to extract it

# tar xvjf wkhtmltopdf-0.11.0_rc1-static-amd64.tar.bz2

Move to bin

# mv wkhtmltopdf-amd64 /usr/bin/wkhtmltopdf

Set proper rights

# chmod 777 /usr/bin/wkhtmltopdf

And validate that everything is running properly

$ wkhtmltopdf --version

Viewing all articles
Browse latest Browse all 3

Trending Articles