Install qtfm, on 12.04 but it would not open.
Opening in a terminal yields this message:
qtfm: error while loading shared libraries: libmagic.so.1: wrong ELF class: ELFCLASS64
How do I fix?
Install qtfm, on 12.04 but it would not open.
Opening in a terminal yields this message:
qtfm: error while loading shared libraries: libmagic.so.1: wrong ELF class: ELFCLASS64
How do I fix?
You are using a 32-bit program on a 64-bit install, and missing the 32-bit libraries needed to run the program. The failure is due to the program needing the 32-bit version, and the 64-bit version being loaded instead.
You can run sudo apt-get install libmagic1:i386
(in 12.10 or newer) to install the 32-bit version, which should hopefully resolve the issue. On 12.04, you will have to be running the 32-bit version to use the 32-bit version of qtfm
. On 64-bit you will have to use a 64-bit build of the application, either pre-built, or installing from source.