How to Disable FIPS on CentOS
FIPS (the Fully Interactive Partition Splitter) comes pre-installed with all versions of CentOS. It allows splitting hard disk partitions without destroying any of the data. If you do not need FIPS, though, then it is just wasting space on your machine. To disable it, you need to rebuild your CentOS installation without it. This will not affect any of your saved information, but will remove all FIPS components from CentOS.
Instructions
-
-
1
Open your CentOS command window.
-
2
Type the following: [user@host SPECS]$ rpmbuild -bb --without fips --target=`uname -m` kernel-2.6.spec 2> build-err.log | tee build-out.log
-
-
3
Replace "user@host" with your CentOS credentials.
-
4
Hit Enter. Your CentOS will rebuild itself without FIPS. This may take several minutes. You will see an "OK" message when it completes.
-
1