On Thu, Dec 9, 2010 at 21:39, John Jason Jordan <[email protected]> wrote: > The sbin command returned nothing, other than a dozen "no such address > or device" messages. But the lib64 command (in addition to a couple > dozen similar error messages), gave the following: > > /usr/lib64/libcucul.so.0.99.17 > /usr/lib64/libkdeinit4_plasma-desktop.so > /usr/lib64/libkdeinit4_ksmserver.so ...
I'm guessing that when the Nvidia drivers were installed, their own versions of shared libraries (i.e. libGL.so.260.19.21) were installed into the /usr/lib64 directory and some symlinks were updated to point to their version (i.e. libGL.so.1 -> libGL.so.260.19.21). I'm also guessing that distro provided version of each shared library is still in that directory (i.e. libGL.so.1.2). When the Nvidia drivers were uninstalled, the symlinks weren't switched back. We can verify this by running the following: $ ls -l /usr/lib64/libGL*.so* $ for i in $(ls -d /usr/lib64/libGL*.so*); do echo $i...; rpm -qf $i; echo; done Chances are that there's the .so.1 version of the library which is a symlink and two other files. Changing the symlink to point to the version that's being managed by a distro package should fix some of the issues. Rather that doing it manually, reinstalling the RPM might work. To get the name of the RPM that controls the symlink: $ rpm -qf /usr/lib64/libGL.so.1 You can run the above for each of the files you listed and try to reinstall each one: $ rpm -qf /usr/lib64/libcucul.so.0.99.17 /usr/lib64/libkdeinit4_plasma-desktop.so /usr/lib64/libkdeinit4_ksmserver.so /usr/lib64/libGL.so.1 /usr/lib64/libplasmagenericshell.so.4.5.0 /usr/lib64/libkworkspace.so.4.5.0 /usr/lib64/libfltk_gl.so.1.1 /usr/lib64/libcucul.so.0 /usr/lib64/cinepaint/0.22-1/plug-ins/icc_examin_cp /usr/lib64/libglut.so.3.9.0 /usr/lib64/libkwineffects.so.1 /usr/lib64/libclutter-gtk-0.10.so.0.0.0 /usr/lib64/libGLEW.so.1.5 /usr/lib64/libftgl.so.2.1.3 /usr/lib64/libplasma.so.3 /usr/lib64/libcaca.so.0.99.17 /usr/lib64/libcaca.so.0 /usr/lib64/libplasma.so.3.0.0 /usr/lib64/libkdeinit4_kwin.so /usr/lib64/libGLU.so.1 /usr/lib64/libGL.so.260.19.21 /usr/lib64/libkwineffects.so.1.0.0 /usr/lib64/libkdeinit4_ksysguard.so /usr/lib64/libplasmagenericshell.so.4 /usr/lib64/libclutter-gtk-0.10.so.0 /usr/lib64/libftgl.so.2 /usr/lib64/libGLU.so.1.3.070900 /usr/lib64/libkdeinit4_krunner.so /usr/lib64/libglut.so.3 /usr/lib64/libkworkspace.so.4 /usr/lib64/libkdeinit4_plasma-windowed.so /usr/lib64/libGLEW.so.1.5.5 2>/dev/null | sort -u Cheers, Daniel Hedlund [email protected] _______________________________________________ PLUG mailing list [email protected] http://lists.pdxlinux.org/mailman/listinfo/plug
