Changes between Initial Version and Version 1 of Ticket #6435
- Timestamp:
- Mar 29, 2010 7:16:33 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6435 – Description
initial v1 1 1 After installing SUNWvboxguest version 3.1.6 on an OpenSolaris build 134 guest the gnome-appearance-properties execitable fails as follows: 2 2 {{{ 3 3 indy$ gnome-appearance-properties 4 4 ld.so.1: gnome-appearance-properties: fatal: libXfixes.so.3: open failed: No such file or directory … … 6 6 Killed 7 7 indy$ 8 8 }}} 9 9 I was able to get this to run by adding two symbolic links to the system; however, I don't consider this a proper fix. The links were: 10 10 {{{ 11 11 indy# cd /usr/lib 12 12 indy# ln -s libXfixes.so.1 libXfixes.so.3 13 13 indy# ln -s libXext.so.0 libXext.so.6 14 14 }}} 15 15 Apparently the libraries SUNWvboxguest puts onto the system requires libXfixes.so.3 and libXext.so.6 but these libraries aren't on the system. I faked it by linking in older versions of these libraries and got the application to run; however, the libraries have updated versions for a reason and it isn't clear what the side effects of linking in an older version might be. For this reason, the links aren't a proper fix. 16 16