how to update 64 package only

luckysanj

New member
Joined
Dec 4, 2011
Messages
1
Dear Fren,
How can i configure Centos 5.7 to update only 64 bit package when i will go for update centos.

Help will be appreciated.

Regards,
luckysanj
 
On your own risk run:

Code:
yum remove \*.i?86

or

To prevent any 32 bit packages from being installed by yum, add the line:
Code:
exclude=*.i?86
to the file /etc/yum.conf (this is not recommended unless you know what you are doing).
 
Back
Top