0

i have an problem with script DocToText from Silvercoders.com on my 64bit Debian Squeeze. It works properly on another 32bit machine, but on this i have still problem with some .so module.

# file /bin/bash
/bin/bash: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.18, stripped

if i run doctotext.sh it`s return an error:

./doctotext: error while loading shared libraries: libgsf-1.so.114: cannot open shared object file: No such file or directory

please, can you help?

Bryan
  • 7,628
  • 15
  • 69
  • 94

2 Answers2

1

Did you install the libgsf package?

apt-get install libgsf-1-dev
Michael Hampton
  • 244,070
  • 43
  • 506
  • 972
0

First of all try to enter doctotext directory and execute ./doctotext.sh instead of ./doctotext. This will add doctotext directory to LD_LIBRARY_PATH. Your ldd output shows that wv2 library is missing, but it should be in doctotext directory.

In addition you can find 64-bit version here: http://silvercoders.com/download/doctotext-20130406-x86_64-linux.tar.bz2 This is a snapshot, but next stable version (0.15.0) will probably have official 64-bit binary as well.

Adrian
  • 1