Yum

Various yum notes


sudo yum clean all
sudo rm -rf /var/lib/rpm/__db*
sudo rpm --rebuilddb
sudo yum check-update


Error: Caching enabled but no local cache bla bla bla ....

yum makecache


Random note. Complex group of commands.

su
yum install yum-utils
yumdownloader kdebase-runtime-libs kdebase-runtime
rpm -e --force kdebase
yum install kdebase-runtime kdebase-runtime-libs -v --enablerepo=u*g
yum update --enablerepo=u*g

Change to root. Install yum-utils. Use yumdownloader (from yum-utils) to download kdebase-runtime-libs and kdebase-runtime. Use rpm for force remove of kdebase. Use yum to install kdebase-runtime and kdebase-runtime-libs. -v for verbose yum output (more than normal), and enable all repositories that start with u and end with g. Run yum update with all repositories that start with u and end with g enabled.


More nonsense.

yum --disableplugin=refresh-packagekit


Return home

Yum (last edited 2009-11-21 10:32:20 by GlennJohnson)