Changes between Version 117 and Version 118 of FAQ
- Timestamp:
- Apr 10, 2014, 8:14:29 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FAQ
v117 v118 78 78 ./rview: error while loading shared libraries: libXp.so.6: wrong ELF class: ELFCLASS64 79 79 }}} 80 then you are trying to run rview with libXp.so.6 64 bit version, and rview doesn't work with it. rview is a deprecated application and, as such, one should not expect any future workaround for this problem. You can, however, run rview in 64 bits system, if you install the libXp.so.6 32 bit s version. The following text will showcase how to do that in Ubuntu 64 bits (13.10) (previous versions should be even easier, as you shall already have the repository pointing to the library).81 82 1. install ia32-libs from an outdated repository:80 then you are trying to run rview with libXp.so.6 64 bit version, and rview doesn't work with it. rview is a deprecated application and, as such, one should not expect any future workaround for this problem. You can, however, run rview in 64 bits system, if you install the libXp.so.6 32 bit version. To do this: 81 82 1. add repository for 32-bit systems (optional, only necessary in more recent OS where ia32-libs is not available by default, e.g. Ubuntu 64 bits 13.10 or higher): 83 83 {{{ 84 84 $ sudo gedit /etc/apt/sources.list 85 85 }}} 86 add following line in the end of file: deb http://cz.archive.ubuntu.com/ubuntu raring main universe 87 88 2. install ia32-libs from an outdated repository: 86 add following line in the end of file: 87 {{{ 88 deb http://cz.archive.ubuntu.com/ubuntu raring main universe 89 }}} 90 2. install `ia32-libs`: 89 91 {{{ 90 92 $ sudo apt-get update 91 93 $ sudo apt-get install ia32-libs 92 94 }}} 93 (this will install +80MB of 32bit libraries, including libXp.so.6)95 (this will install libXp.so.6, among other 32-bit libraries) 94 96 95 97 rview works, now, but if not, you can link the 32 bit library (/usr/lib32) to /usr/lib. 96 98 97 Installing lib32z1, lib32ncurses5 or lib32bz2-1.0 libs DO NOT install /usr/lib32/libXp.so.6.2.0 99 Note: Installing lib32z1, lib32ncurses5 or lib32bz2-1.0 libs DOES NOT install libXp.so.6 98 100 99 101 === I get Java compilation errors. ===