Posts

Showing posts from May, 2012

Remove all i386 packages from CentOS 5 x86_64

A quick solution to duplicate packet installation. This tutorial will show you how to remove all i386 packages from CentOS 5 x86_64 server # yum remove \*.i\?86 source is  http://www.how2centos.com/removing-all-i386-packages-from-centos-5-x86_64-server/

Find Large Files on Linux

http://support.foray.com/index.php?_m=knowledgebase&_a=viewarticle&kbarticleid=17 At the command line as root enter: find / -size +102400k This will find all files on the entire system that are bigger than 100 MB. Use  this one to see the sizes: find / -size +103400k | xargs ls -laAh Use "find ." to look only in the current directory. find . -size +103400k | xargs ls -laAh