Estou tentando executar o pdftk na minha conta de hospedagem compartilhada (sem acesso root). Eu segui as instruções aqui , principalmente:
$ mkdir -p [my_project]/vendor/pdftk/lib [my_project]vendor/pdftk/bin
$ cd /tmp
$ git clone https://github.com/millie/pdftk-source.git
$ cd pdftk-source
$ tar xzvf pdftk.tar.gz
$ mv bin/pdftk [my_project]/vendor/pdftk/bin/
$ mv lib/libgcj.so.12 [my_project]/vendor/pdftk/lib/
$ cd [my_project]
You can include the binaries in your app, and then set the environment path to the
bin
folder which holds the binaries.
Então, eu executei esses comandos e adicionei a pasta bin ao caminho do meu ambiente. Quando tento executar o comando pdftk, recebo pdftk: error while loading shared libraries: libgcj.so.12: cannot open shared object file: No such file or directory
Eu editei (criei) meu LD_LIBRARY_PATH na pasta vendor / pdftk / lib que tinha a biblioteca. Mas isso não ajudou, ainda não conseguiu encontrá-lo.
Eu só quero poder usar o pdftk! Alguma idéia?
Tags shared-library pdftk path