New Tool to Track Kernel Testing Time
mu22le writes "Andrea Arcangeli has created a new tool, 'klive', to automatically track the amount of testing that each kernel gets before release. According to Kernel Traffic "There was some discussion [on making it a kernel config option] that public perception might put this in the "spyware" category", but still the ability to track a kernel usage and reliability would be valuable to both developers and users."
http://www.kerneltraffic.org.nyud.net:8090/kernel- traffic/latest.html#6
http://klive.cpushare.com.nyud.net:8090/
if you download and install it as of 10am PST today, its going to try and install a cron job that begins:
-*/10 * * * * ps x | grep...
which vixie cron (and presumably others) rejects as invalid. i just changed it to run every 10 minutes like:
*/10 * * * * ps x | grep...
hth
about sean dreilinger
Microsoft probably puts their stuff through more testing than anybody. And it's needed -- even with all that testing, things slip through. (I'll skip talking about why there's so many bugs ... others can do that.)
That isn't really much of a statement ("probably"). Given the 'quality' of quite a few Microsoft products, they obviously haven't been tested thoroughly enough.
The Linux kernel is much smaller than Windows. Far less testing is needed, though of course some testing is still a good idea.
Linux is a monolithic kernel with practically all its drivers (apart from VGA drivers) built in, and the WinNT kernel is a microkernel with most drivers made by third parties. You really, really cannot compare the two that easily.