Getting QCAD 2.2.2 Professional Running under 64bit Fedora 15

Written by James McDonald

July 26, 2011

Just attempted to run qcad and got an error as follows

[me@mypc qcad-2.2.2.0-1-prof.linux.x86]$ ./qcad 
./qcad: error while loading shared libraries: libXrandr.so.2: cannot open shared object file: No such file or directory

Found that my 64 bit version of libXrandr on Fedora 15 wouldn’t do it for qcad.

[me@mypc qcad-2.2.2.0-1-prof.linux.x86]$ locate libXrandr
/usr/lib64/libXrandr.so.2
/usr/lib64/libXrandr.so.2.2.0
/usr/share/doc/libXrandr-1.3.1
/usr/share/doc/libXrandr-1.3.1/AUTHORS
/usr/share/doc/libXrandr-1.3.1/COPYING
/usr/share/doc/libXrandr-1.3.1/ChangeLo

So navigated to my local Fedora Mirror and grabbed the 32bit version and installed it

wget http://mirror.optus.net/fedora/linux/releases/15/Fedora/i386/os/Packages/libXrandr-1.3.1-2.fc15.i686.rpm
rpm -ivh libXrandr-1.3.1-2.fc15.i686.rpm

# you have it right when you have libXrandr in /usr/lib as well as lib64.
find /usr -name libXrandr.so.2
/usr/lib64/libXrandr.so.2
/usr/lib/libXrandr.so.2

1 Comment

  1. dan

    Thanks – this worked like a champ

    Reply

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…

Robocopy exclude Directories

Just trying to copy everything except a couple of directories from a drive to my NAS This is the secret incantation of...