Changes between Version 117 and Version 118 of FAQ


Ignore:
Timestamp:
Apr 10, 2014, 8:14:29 AM (10 years ago)
Author:
Dimitar Misev
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v117 v118  
    7878./rview: error while loading shared libraries: libXp.so.6: wrong ELF class: ELFCLASS64
    7979}}}
    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 bits 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:
     80then 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):
    8383{{{
    8484$ sudo gedit /etc/apt/sources.list
    8585}}}
    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{{{
     88deb  http://cz.archive.ubuntu.com/ubuntu raring main universe
     89}}}
     90 2. install `ia32-libs`:
    8991{{{
    9092$ sudo apt-get update
    9193$ sudo apt-get install ia32-libs
    9294}}}
    93  (this will install +80MB of 32bit libraries, including libXp.so.6)
     95 (this will install libXp.so.6, among other 32-bit libraries)
    9496
    9597rview works, now, but if not, you can link the 32 bit library (/usr/lib32) to /usr/lib.
    9698
    97 Installing lib32z1, lib32ncurses5 or lib32bz2-1.0 libs DO NOT install /usr/lib32/libXp.so.6.2.0
     99Note: Installing lib32z1, lib32ncurses5 or lib32bz2-1.0 libs DOES NOT install libXp.so.6
    98100
    99101=== I get Java compilation errors. ===