TRiG_Ireland
March 31st, 2009, 05:53 PM
I was trying to install a Lexmark X1190 printer. After a little searching, I settled on a simple tutorial I found at http://wiki.trodrigues.net/Lexmarkx1290.
Everything went swimmingly till I got to this point:
trig@TRiG:~$ /usr/lib/cups/backend/z600
/usr/lib/cups/backend/z600: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory
So, back to Google. At http://www.joewein.de/sw/swnotes002.htm is a suggested solution for this problem in Linux 7.
Explanation: libstdc++.so.5 (the library for gcc 3.2.x) is installed in /usr/local/lib However, the system will only seach /usr/lib (where the 2.95.0 and other older libraries are stored).
Solution: Create symbolic links to make the libraries appear in the old folder:
ln -s /usr/local/lib/libstdc++.so.5 /usr/lib/libstdc++.so.5
ln -s /usr/local/lib/libgcc_s.so.1 /usr/lib/libgcc_s.so.1
Well. I can't see libstdc++.so.5 in either location. And nor does the Synaptic Package Manager list it. libstdc++5, yes. libstdc++.so.5, no.
Any suggestions?
TRiG.
Everything went swimmingly till I got to this point:
trig@TRiG:~$ /usr/lib/cups/backend/z600
/usr/lib/cups/backend/z600: error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory
So, back to Google. At http://www.joewein.de/sw/swnotes002.htm is a suggested solution for this problem in Linux 7.
Explanation: libstdc++.so.5 (the library for gcc 3.2.x) is installed in /usr/local/lib However, the system will only seach /usr/lib (where the 2.95.0 and other older libraries are stored).
Solution: Create symbolic links to make the libraries appear in the old folder:
ln -s /usr/local/lib/libstdc++.so.5 /usr/lib/libstdc++.so.5
ln -s /usr/local/lib/libgcc_s.so.1 /usr/lib/libgcc_s.so.1
Well. I can't see libstdc++.so.5 in either location. And nor does the Synaptic Package Manager list it. libstdc++5, yes. libstdc++.so.5, no.
Any suggestions?
TRiG.