2014-03-04 55 views
2

我有一個與Ubuntu 12.04服務器上更換新wkhtmltopdf問題。更換wkhtmltopdf 0.11rc-1 0.12在Ubuntu 12.04 64

老版本是在這個位置:/usr/local/bin/wkhtmltopdf和它的工作不錯,但與舊的錯誤。我已經從 http://sourceforge.net/projects/wkhtmltopdf/files/0.12.1-dev/下載了x64 linux的新版本。 下載和拆包焦油後,我的所有文件夾/文件複製到/usr/local/

|-- bin 
| |-- wkhtmltoimage 
| `-- wkhtmltopdf 
|-- include 
| `-- wkhtmltox 
|  |-- dllbegin.inc 
|  |-- dllend.inc 
|  |-- image.h 
|  `-- pdf.h 
`-- lib 
    |-- libwkhtmltox.so.0 -> libwkhtmltox.so.0.12.1 
    |-- libwkhtmltox.so.0.12 -> libwkhtmltox.so.0.12.1 
    `-- libwkhtmltox.so.0.12.1 

畢竟,當我運行wkhtmltopdf我得到這個消息:

wkhtmltopdf: error while loading shared libraries: libgstapp-0.10.so.0: cannot open shared object file: No such file or directory 

我在哪裏可以找到LIB?

回答

2

發現解決方案,有丟失這個包:libgstreamer-plugins-base0.10-0。解決方案:

sudo apt-get install libgstreamer-plugins-base0.10-0

+0

apt-get拼寫錯誤。 – luissquall

+0

@luissquall感謝糾正我沒有看到趕時間:) –

+0

太棒了。此外,我不得不安裝軟件包'libxrender1'修復以下錯誤:'wkhtmltopdf:加載共享庫時出錯:libXrender.so.1:無法打開共享對象文件:沒有這樣的文件或目錄。 – luissquall