Jarrod Major wrote:
> Kewl, so now I just have to figure out what I need to upgrade. I know that
> there's a pile of them that don't apply. Is there an easy way to tell what
> you have versus what you want or need? I realize this is a nebulous
> question. Forgive my ignorance.
to find out what you need to update, try this:
for i in `rpm -qa`; do
rpm -qr $i | grep -q kde && echo $i
done
this script queries every installed rpm for its dependencies, and prints
all the packages that are dependent on kde.
its likely you'll need to upgrade a good portion of the packages listed,
plus the core ones like kdebase.
Dave