Excluding unwanted dependencies from yum update
If you like to use YUM (Yellow Dog Updater Modified) you may know unwanted bit dependencies always comes with updates and messes up things. To prevent unwanted i386, i586, i686 dependencies you just have to add
exclude=*.i386 *.i586 *.i686
this line to
/etc/yum.conf
so it will never install or update this dependencies. As this configuration above it will only install and update 64 bit dependencies.
exclude=*.i386 *.i586 *.i686
this line to
/etc/yum.conf
so it will never install or update this dependencies. As this configuration above it will only install and update 64 bit dependencies.
Comments
Post a Comment