Ref. # 5 , and your question in # 6 ...
Quote:
Getting wxWidgets and other packages installed on Linux :
Please use the Package Manager ... or the command line :
|
Yes : anything you get with ' urpmi ', you can get with the
Package Manager .. or vice versa. The search function urpmq
( urpmq -a ) is available in the package manager too > > the
" Find " window.
Command to open the package manager = ' rpmdrake '.
.. Links, urpmi , etc. ..
http://wiki.linuxquestions.org/wiki/URPMI_or_rpmdrake
http://wiki.mandriva.com/en/Tools/urpmi
http://club.mandriva.com/xwiki/bin/view/KB/BasicsBrpm3
.....
Miscellaneous 'rpm' commands : please see 'man rpm'.
.. And here some very useful rpm commands :
rpm -qa | sort > my-installed-packages.txt
.. using two commands and a redirect .. :
'rpm qa' lists packages , in rpm data base order.
The pipe ( | ) pipes the result to 'sort', providing
an alphabetic list. Redirect ( > ) prints a text file
in /home/"user"/.
rpm -qa --last > last-rpm.txt
.. creates a text file with the last installed package
at line 1 , and the date of the install. Very useful
if you forget what you installed, and when.
rpm -qa --last | less
.. see for yourself ..
rpm -ql <package>
.. lists all files in an installed package.
rpm -qf /usr/lib/<file>
Or : rpm -qf /usr/bin/<file>
etc. etc., will tell which package, the file belongs to.
.....
.....
Glib , atk , cairo , pango , gtk :
Doing experiments with versions different from those
already installed,
this is a must :
A non system location, example ...
./configure --prefix=/usr/local/glib2222/
Not all versions of gtk are stable. This LQ thread, post # 3
shows a working combination of the above libraries, and
how to handle the path with "pkg-config"
http://www.linuxquestions.org/questi...7/#post3742595
.....
Installing to a system path like /usr/local/ may trash the "500"
installed applications all depending on the system versions.
.....