LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   Is there a utility that checks the stability of a linux install? (https://www.linuxquestions.org/questions/slackware-14/is-there-a-utility-that-checks-the-stability-of-a-linux-install-250267/)

jtp51 11-02-2004 12:15 PM

Is there a utility that checks the stability of a linux install?
 
Question:

Is there a utility that checks the stability of a linux install?

Summary:

I might be asking for too much, but after running swaret or installing a module, is there a utility that checks the stability of a linux install?

I compare this to the likes of Windows TuneUp Utilities...

Just a thought, it would be nice to see a report of your system and your system's performance.

Thank you for reading this post.

eelriver 11-02-2004 12:23 PM

The Linux Test project has software just for that. It can be foundHere

jtp51 11-02-2004 12:49 PM

That's perfect!

Thank you.

Cedrik 11-02-2004 02:42 PM

Test of stability :

Code:

#!/bin/sh

error=0
cd /usr/src/linux
while [ $error -eq 0 ]; do
    make mrproper
    make bzImage
    error=$?
done

Run it for 3 hours, if you have no errors, you should consider your system and in particulary your
processor and RAM work well ;)


All times are GMT -5. The time now is 09:11 AM.