Linux Kernel 2.6.6 Released 350
maradong writes "The new Linux Kernel 2.6.6 has been released just 2 hours ago. The Patch from version 2.6.5 to 2.6.6, which can be downloaded on kernel.org measures 2.4MiB and the Changelog can be found at the known place."
Breaks Nvidia Module (Score:5, Informative)
Rather annoying since Nvidia knew this issue was coming.
The fix is to back a patch out, but it's a bad idea.
Stay at 2.6.5 if you use Nvidias drivers, for now.
Re:Breaks Nvidia Module (Score:2, Interesting)
Module Size Used by
nvidia 2074600 12
Linux duplo 2.6.6 #1 Mon May 10 11:01:29 CEST 2004 i686 GNU/Linux
Re:Breaks Nvidia Module (Score:4, Informative)
Re:Breaks Nvidia Module (NOT COMPLETELY TRUE!) (Score:5, Informative)
wouldn't it be nice... (Score:2, Insightful)
I would be far more lightly to test betas if I could download driver and filing system updates that relate to me instead of the whole kernel which may have new less stable featuers, my build times would be lower and my system would be more stable.
It would also make it easier to upgrade everything except the broken Nvidia bits....
Oh, I wish i could just patch
Re:wouldn't it be nice... (Score:4, Informative)
FIXES nForce2 apic, finally (Score:5, Informative)
Hours after the information was released, the first patch followed. A little feedback and tweaking, and it's into the mainline kernel in less than a week. Kudos to Ross Dickson, et al, for all the work they'd done trying to fix this problem, prior to the official informatino release.
Does anyone know if the patch for either forceDeth or the 3com 2nd adapter on some nForce2 boards is in the mainline kernel, yet?
Re:FIXES nForce2 apic, finally (Score:2)
I don't know about the 3com one, but I've been using the forceDeth driver since 2.6.4 with absolutely no problems.
Re:FIXES nForce2 apic, finally (Score:2, Informative)
But this doesn't sound like your problem. This problem didn't clutter syslog, it just plain caused the kernel to hang under certain conditions.
Re:FIXES nForce2 apic, finally (Score:3, Informative)
Re:FIXES nForce2 apic, finally (Score:3, Informative)
This is the notorious force2 bug that will lock the computer completely unless apic and lapic are disabled. NVidia sure was slow to release information about this but they finally did a week ago. Read all about it on lkml [lkml.org]
Also note that this patch might lower the temperature of your cpu as experienced by many (really kewl).
Now NVidia should just step up and release the information needed to use the soundstorm apu so we can get real hardwa
Re:Breaks Nvidia Module (Score:5, Informative)
[PATCH] ia32: 4Kb stacks (and irqstacks) patch
From: Arjan van de Ven
Below is a patch to enable 4Kb stacks for x86. The goal of this is to
1) Reduce footprint per thread so that systems can run many more threads (for the java people)
2) Reduce the pressure on the VM for order > 0 allocations. We see real life workloads (granted with 2.4 but the fundamental fragmentation issue isn't solved in 2.6 and isn't solvable in theory) where this can be a problem.
In addition order > 0 allocations can make the VM "stutter" and give more latency due to having to do much much more work trying to defragment
The first 2 bits of the patch actually affect compiler options in a generic way: I propose to disable the -funit-at-a-time feature from gcc. With this enabled (and it's default with -O2), gcc will very agressively inline functions, which is nice and all for userspace, but for the kernel this makes us suffer a gcc deficiency more: gcc is extremely bad at sharing stackslots, for example a situation like this:
if (some_condition)
function_A();
else
function_B();
with -funit-at-a-time, both function_A() and _B() might get inlined, however the stack usage of both functions of the parent function grows the stack usage of both functions COMBINED instead of the maximum of the two. Even with the normal 8Kb stacks this is a danger since we see some functions grow 3Kb to 4Kb of stack use this way. With 4Kb stacks, 4Kb of stack usage growth obviously is deadly
Disabling -funit-at-a-time also exposes another thing in the -mm tree; the attribute always_inline is considered harmful by gcc folks in that when gcc makes a decision to NOT inline a function marked this way, it throws an error. Disabling -funit-at-a-time disables some of the agressive inlining (eg of large functions that come later in the
The 4k stackness of the kernel is included in modversions, so people don't load 4k-stack modules into 8k-stack kernels.
At present 4k stacks are selectable in config. When the feature has settled in we should remove the 8k option. This will break the nvidia modules. But Fedora uses 4k stacks so a new nvidia driver is expected soon.
Re:Breaks Nvidia Module (Score:2)
I tried this on 2.6.6-rc3, and I still had the same issues.
It's okay though, i don't need 2.6.6
Right.... (Score:4, Insightful)
Yeah... because Win2k SP2 didn't break any drivers at all...
If I lived in this strange world that a lot of slashdotters do where hardware apparently works easily and reliably with Windows, I would have never switched to Linux. But, in my world, Windows never loads the right drivers, and loses or breaks the drivers once you install them.
Re:Right.... (Score:2)
Re:Breaks Nvidia Module (Score:2)
Re:Breaks Nvidia Module (Score:3, Insightful)
Of course, I've done Nvidia a bit of a favor, buying six of their video cards. Which would have been another brand if they hadn't released linux drivers.
-MDL
Drivers are modules are drivers ... (Score:3, Interesting)
You are close...
When one person says "folder" and another says "directory" the two people sometimes get confused. It's rare, but I've seen it happen.
With Linux and Windows, there is a similar confusion. Modules under Linux -- serve the same purpose and are largely in the same parts of the OS -- as drivers do under Windows.
As for Nvidia, they have install
How is this different than updating Windows? (Score:3, Interesting)
Keyword: Improvement (Score:5, Informative)
This is not as much bugfixing as it is improving the kernel.
Like writing better code, better memoryhandling, adding new features, improved hardwaresupport and the like.
And unlike Windows Update, you don't have to update the kernel if you don't want to. Very little software do require specific kernel-versions, as opposed to Microsoft where almost everything seems to have kernel tie-ins.
Hope this answers your question.
Re:Keyword: Improvement (Score:2, Informative)
Ahem? Almost everything on windows hooks NTDLL functions that are specific to each ntoskrnl release? I think you need to check your facts again. Only drivers would be hooking kernel functions, which requires the program to execute in ring0. Even then, the NTDLL exports are pretty much iden
Re:Keyword: Improvement (Score:2)
Regarding buxfixes, I didn't say there weren't any, if people read it that way...
And, if I may ask, are any of these bugs that are getting fixed remotely exploitable? *a genuine question*
And to counter some other guy in this thread... Buxfixes are good regardless.
Re:How is this different than updating Windows? (Score:5, Informative)
The big difference is in the development process, so you can see what exactly is changing, you can fix things that break your system (for example, the nvidia problem somebody mentioned already) and you can choose between different kernels (more feature-rich, more stable, or more performance-oriented) maintained by different people. You don't get this freedom with closed-source software.
Re:Uh oh, here come the Linux apologists (Score:5, Insightful)
Linux updates = good
Microsoft updates = good
Whatever keeps those crappy windows worms at bay is great. The problem with windows updates is:
1) They don't happen often enough
2) They break things
3) They change license while you're not looking
If you're still having problems, I can break it down into even simpler terms.
Re:How is this different than updating Windows? (Score:3, Insightful)
to any end user product. Ordinary users need not care, they should update and install a new kernel whenever it's released by their linux distribution vendor. Which isn't all that diffrent from "Windows Update".
The kernel.org releases are not just bugfixes, it's heaps of new features
as well usually.
Re:How is this different than updating Windows? (Score:3, Informative)
When a bug is found in Windows, it can take months for a patch to be released...if ever.
Anybody with an intelligence level higher than a rock will tell you there is no such thing as a bug-free OS. The difference is in how fast those bugs are fixed.
Re:How is this different than updating Windows? (Score:5, Funny)
Re:How is this different than updating Windows? (Score:3, Informative)
this is just the kernel + drivers/modules, distributions (RH/Suse/Mandrake/Debian) use this as part of there distribution just like any other piece of software (GIMP/KDE/whatever).
So if they bring out a new version of there distribution, you could compare that with an update/upgrade from Microsoft (they all package it for the 'end-user').
the Linux kernel is not for most end-users, only for developers (who might need something specific) or system-administrators that need more control over exactl
Re:How is this different than updating Windows? (Score:5, Informative)
Re:How is this different than updating Windows? (Score:2)
Re:How is this different than updating Windows? (Score:2)
Re:How is this different than updating Windows? (Score:2, Insightful)
the code before they release it.'
That's because linux users can fix any faults they find and send them to the developers.
If I have a fault in my linux kernel I tend to fix it, and tell others how to fix it, that's a lot more diligance from the developers than Microsoft(or any closed source software/hardware) provides.
Re:How is this different than updating Windows? (Score:2)
It seems a bit risky (Score:5, Interesting)
Laptop-mode (Score:5, Informative)
A definite must for laptop users that want a little more operating hours from their batteries.
Re:Laptop-mode (Score:2)
Re:Laptop-mode (Score:3, Informative)
-- Bart Samwel
Re:Laptop-mode (Score:2)
Eh? How do the IDE bus and hard drive know they're on a laptop? Are you sure something weird didn't happen with hdparm?
Re:Laptop-mode (Score:3, Informative)
Re:Laptop-mode (Score:4, Informative)
-- Bart Samwel
Re:Laptop-mode (Score:2)
Okay...Luckily, no data lost yet
Re:Laptop-mode (Score:2)
I've updated the webpage with a warning to XFS users. I'll submit a patch for 2.6.7 that removes this incorrect information from the documentation and sets the XFS_HZ value to 100 always.
-- Bart Samwel
BTTV question (Score:4, Interesting)
I'm not lazy asking about this here, it's just that I looked everywhere in the changelogs and I can't see anything about it, yet the problem is known [iu.edu]. Perhaps the problem went away as another was fixed? Anybody has any experience on this?
Re:BTTV question (Score:2)
Re:BTTV question (Score:2)
Although I think I know what you're talking about, I had a machine (running 2.4.18 I think) which crashed regularly with bttv, but ran like a dream without it. Eventually I moved the card into another machine (same kernel, slower but better quality hardware) and there were no problems.
Re:BTTV question (Score:3, Informative)
argh (Score:2, Interesting)
I'm assuming it's entirely a kernel issue as cat /dev/input/mouse0 or whatever produces nothing when I play with the wheel, but it does for everything else.
Re:argh (Score:4, Informative)
I had to set the type as ExplorerPS/2 in XF86Config (was IMPS/2 before).
Although, you should see something when you cat
SIS964 SATA (Score:3, Interesting)
[libata sata_sis] minor cleanups
Anyone using sis964/sata? is it working ok? any major distros you can recommend? (stuck with WinXPPro on my new machine....)
I've just finished installing it on my test server (Score:2, Funny)
Kernel Acceleration (Score:3, Interesting)
Granted, I know that is not the case, but 2.6.x is not even 6 months old ( 2.6.0 released December 18th, 2003) at this rate of release are we looking at 2.8 in September? This just seems crazy to me. I thought that's what the "odd" numbered kernels were for, testing. At this current rate of release it sure feels like the supposed "stable" kernels are the ones being tested on.
This isn't meant to be a troll or a flame just an observation. Many of the distros have finally gotten around 2.6, but it sure seems like the kernel devs have given the distro devs a very rapid moving target to hit. I still see all to often recomendations here and other places telling people to use 2.4x for "mission critical" use. Why?
Why is 2.6 not as reliable as 2.4 was?
Why are people in this thread commenting about all the things 2.6.6 breaks?
Why does an even kernel need to break *ANYTHING* isn't that what dev kernels are for?
I love to see progress as much as anyone, heck, I run Gentoo. I just wonder if the Kernel needs to be treated with a bit more care. Would you buy a car from an auto maker, who every month changed the engine in their car?
Re:Kernel Acceleration (Score:5, Informative)
2.4 is hovering in the low 20's as far as minor rev. number at this point.
Re:Kernel Acceleration (Score:4, Insightful)
3/5 through the lifespan of the 2.6 kernel? WTF?? The kernel after 2.6.9 will be 2.6.10, not 2.7.0. For example, the current 2.4 kernel is 2.4.26...
2.6.0 is not as reliable as 2.4.26 because the latter has had 26 updates to get things "right". This is just the way things work in kernel development.
The 2.6 series has broken a few things, largely because:
Would I run 2.6 on a mission-critical highly-buzzword-enabled enterprise server? Not yet. Do I run it on my desktop? Abso-fucking-lutely.
Re:Kernel Acceleration (Score:2)
I have to say that 2.6.5 seems to be quite okay on my home server already. I wouldn't even think about running it on a colocated server (ie one with an unreachable reset-button and a certain level of importance) though. Just because of my experiences with other early kernels...
Re:Kernel Acceleration (Score:2, Insightful)
Just as with 2.2 -> 2.4, I think people will stick with 2.4:
a) as long as possible (if it isn't broken, don't fix it)
b) until 2.6 is "more stable".
c) as soon as they could be bothered upgradi
Re:Kernel Acceleration (Score:3, Informative)
Version numbers are not usually decimal, they're usually a sequence of arbitrary dot-separated integers - don't think of decimal fractions, think of books with chapter 1, section 1.2, subsection 1.2.34, paragraph 1.2.34.5 (this scheme is common in maths and computer science textbooks).
Linux 2.4 is up to 2.4.26, 2.2 i
Re:Kernel Acceleration (Score:3, Interesting)
2.6 is actually a bit slower in its release cycle. I've also found the 2.5 stuff to be more stable than the 2.3 codebase. I'm guessing I'll be using 2.6 regularly in the coming months, probably around 2.6.8.
omm (Score:4, Funny)
You Bastards!
Mirror. (Score:5, Informative)
Mirror to the rescue!
http://wuarchive.wustl.edu/pub/linux/kernel/v2.6 [wustl.edu]
Re:Mirror. (Score:2)
2.6.6 seems to boot faster. (Score:3, Interesting)
I just downloaded the patch and am successfully running 2.6.6. :-)
Is it me or was the boot time considerably faster than before? Almost blinked and missed it. Anyone else found that?
Now I just have to clean out init.d.
Where are the English release notes? (Score:3, Insightful)
Not everyone who uses Linux is a kernel hacker, especially nowadays. And yes, there are sites out there that give rundowns of what has changed. But wouldn't it be nice to have an *official* release statement that outlines the changes made? It seems logical to me that the people managing the changes would be able to articulate this the best. I think it would go a long way in making Linux seem a bit more mature.
Re:Where are the English release notes? (Score:5, Informative)
Re:Where are the English release notes? (Score:3, Interesting)
Absolutely. But that is essentially a third party who figures out what has been changed and writes it up. Shouldn't the providers of the kernel be able to provide that information more readily? I am not suggesting a whitepaper, or a replacement of the current changelog - just a summary supplement at a higher level. Give me the summary with the
Re:Where are the English release notes? (Score:2)
* Lots of technical stuff fixed, some thingys that get those boxes that hook up to the hard drive to work added, maybe it'll go faster.
Re: (Score:3, Insightful)
So relaxen und watchen das blinkenlights (Score:4, Funny)
[PATCH] USB: usbcore blinkenlights
The per-port LEDs on the most USB 2.0 hubs are programmable. And the USB spec describes some ways to use them, blinking to alert users about hardware (amber) or software (green) problems.
This patch is the infrastructure for that blinking. And if you should happen to "modprobe usbcore blinkenlights", the LEDs will cycle through all the ports ... which is not a USB-standard mode, but it can certainly handy be handy as a system heartbeat visible across the room.
Das ist goot, ja!
Kernel numbering (Score:4, Interesting)
Re:Kernel numbering (Score:4, Informative)
> Just out of curiosity, what's it going to take to get to kernel version 3.0? Honestly, what changes, additions, etc have to be incorporated until they call it Kernel 3.0?
An ABI change.
The main argument against the numbering of the 2.6 kernel as 3.0 as I understand it was that, while the change from major version 1 (1.x) to major version 2 (2.x) of the Linux kernel involved a change in the ABI (Linux 1.x used A.OUT binaries, 2.x uses ELF binaries), the transition between 2.4 and 2.6 did not.
Since 2.4.x and the new kernel version were binary-compatible, they decided not to name it 3.x despite the major architectural changes and improvements that had been made.
Anyone catch this changelog entry? (Score:3, Funny)
Added proprietary Unix System V lines of code
Re:Mebibytes (MiB) ? (Score:2, Insightful)
Re:Mebibytes (MiB) ? (Score:4, Funny)
more info (Score:4, Informative)
Re:Mebibytes (MiB) ? (Score:2, Insightful)
As another poster has already mentioned, MiB is just a made-up atrocity (it's not even a real ISO standard!) which noone needs or wants.
Re:Mebibytes (MiB) ? (Score:3, Informative)
Why are we letting vendors of hard disks re-scale the units of measurement so that their products appear larger by having bigger numbers on the box, its madness.
Personally I think we should redefine an inch as half a centimeter so we can all go out and score bigtime tonite.
NO! (Score:5, Informative)
You should read you own links:
It is important to recognize that the new prefixes for binary multiples are not part of the International System of Units (SI), the modern metric system.
...
Faced with this reality, the IEEE Standards Board decided that IEEE standards will use the conventional, internationally adopted, definitions of the SI prefixes. Mega will mean 1 000 000, except that the base-two definition may be used (if such usage is explicitly pointed out on a case-by-case basis) until such time that prefixes for binary multiples are adopted by an appropriate standards body.
Hopefully, it will remain that no "appropriate standards body" adopts this ridiculous notation!
Re:NO! (Score:3, Funny)
Damn straight! Nothing's truly accepted until Sports Illustrated says it is.
Re:Mebibytes (MiB) ? (Score:3, Informative)
Look it's very simple. Bytes are measured in base-2 units, everything else is base-10.
It's bits (small 'b'), so it's 100 x 10^6 bits per second. Which is also 12.5 Million bytes per second, or roughly 11.9MBps.
It's bytes (capital 'B'), so that's 100 x 2^10 bytes per second.
Getting a little silly now. That's 1 x 10^9 Hz (cycles per
Re:Mebibytes (MiB) ? (Score:2)
Re:Mebibytes (MiB) ? (Score:4, Insightful)
If you wanted an SI unit of information, it would be more sensible to use 10 bits as the basic unit (or even one bit), rather than a byte (which is actually not even a fixed unit, but is usually read as 'octet'). Attempting to graft MB = 10^6 bytes is at least as arbitary (even more so, IMHO) than defining MB = 2^20 bytes.
Re:Mebibytes (MiB) ? (Score:3, Insightful)
Is the SI prefixes are not useful for a speficif purpose, fine, don't use th
Re:Mebibytes (MiB) ? (Score:5, Insightful)
Computer science started by changing the names (the meaning of the names, actually). In order to reduce complexity, we need to undo that change.
KISS is the rule.
Exactly.
What is the simplest:
- k equals 1000, Ki equals 1024
or
- k equals 1000 in all sciences, except in computer science where it means 1024, most of the time. If followed by 'B' it mostly means 1024, when followed by 'b' it means 1024 when talking about memory sizes and 1000 when talking about transmission speeds. It all depends on the context.
Re:Mebibytes (MiB) ? (Score:3, Informative)
BTW, I've seen 56kbps modems working at 44 and even 48 kbps. The speed you get depends on the quality of the phone line. Also remember that those modems work assymetrically: the 56 kbps is only downstream. Upstream is the same sp
Re: (Score:3, Interesting)
All basis belongs to you ? (Score:2)
Except decimal, that is
Foelisted? (Score:5, Funny)
That declaration would carry some weight if your foe list [slashdot.org] wasn't that long.
99 foes, many of them with decent reputations. Did you have an unhappy childhood or something?
Re:Mebibytes (MiB) ? (Score:5, Insightful)
Network speeds have always been done in decimal. 10base{5,2,T} = 10 Mb = 10,000,000 bits per second. And Ethernet (in its 10base5 Thicknet variant) is old, dating from 1972. It's not just greedy hard disk manyfacturers.
I don't have a problem with disambiguating them. I just wish the names weren't as stupid. (MiB is okay, but mebibyte?!)
Re:Mebibytes (MiB) ? (Score:3, Insightful)
Aah. Nail, head. Hit.
It's controversial, it's quite probably needed, yet it's given names that sound so childish that it's simply going to inflame people against adopting them.
Maybe if they'd tried coming up with terms that actually sounded a little more serious then they wouldn't be quite so hotly contested.
TiggsRe:Mebibytes (MiB) ? (Score:5, Informative)
I wouldn't go that far. Not entirely.
I'd say you had a point saying that noone wants these changes. I certinaly don't want or particularly like them. But I can see that if they aren't needed, it's not for much longer.
They aren't "more correct" and they aren't "better". But what they are is clearer. And, like it or not, it's getting to a point where that clarity is needed.
Firstly there's the two types of manufacturer. For whatever reason the HDD manufacturers prefer to use the 10^n meanings. Maybe it's so that they can swipe more money on misleading advertising. Maybe it's some sort of tradition. Maybe it's both - a tradition that just so happens to benefit them. But they're not going to chance.
For memory-manufacturers the reason is clear. When dealing in binary (and unless something happened overnight, memory is still working on digital signals) then you can only really work to the power of two. So they're going to continue using the 2^10n notation.
Secondly you get everyone else. Whether professionals in other disciplines, or merely Joe Average taught in school (or whatever) that kilofoo is always 1000 foo, and megafoo is always 1000000 foo, they're going to have assumptions about what the prefix means that in any other context would be right but in this case would (or may... - damn HDD labels) be wrong.
And even then, if you need to refer to "one thousand bytes" then how else could you shorten it?
Back when computers where still specialist then it wasn't too much of a problem. But now computers are so prevalent that the potential for confusion is too high.
I'd love to get everyone else to change. To me "one megabyte" is "1024 x 1024 bytes" and always will be. But getting every other SI prefix to change to make way for one is unlikely.
Personally I don't "read" KiB/MiB/whatever any differently. My brain still "hears" it as kilo-/mega- or whatever. Probably always will - those "bibibibibi" bits trip me up. But when I see it (or even write it) I know with 100% certainty that the 2^10n is meant (often mentally interpreting it as "binary megabytes" or whatever...). If it's not there, I always wonder. On products it oftenleaves me always searching for the small print to be totally certain of what is meant.
Like it or not, the confusion is there. And something has to be done to reduce it. And, unfortunately, we're the ones in the minority side of the prefix-usage.
Tell that to the hard-drive manufacturers.
TiggsThey don't accept it, or use in in the industry. They may be wrong, but unfortunately they're not exactly helping things any. It means it's a part of the ocmputing industry that's muddying up the waters internally.
Re:Mebibytes (MiB) ? (Score:2)
Re:Mebibytes (MiB) ? (Score:5, Insightful)
I'm still shocked that Mibibabyboobybytes has been accepted as a "standard!"
How many thousands of titles (possibly billions of books) have been written based on the FACT that Megabytes and Kilobytes, et al, have all been BASE-2 from the initial concept?
The ONLY people in the entire industry who considers MB/KB/et al to be in base-10 are the hard drive manufacturers, and that's just so they can claim their 230GB drives are 250GB!
You don't go out and buy a 536.89MB stick of RAM, you buy a 512MB stick!
Your video card doesn't have 134.22MB of video RAM, it has 128MB!
I don't know why, I should be used to it by now, but the "standards bodies" still blow my mind with their utter stupidity.
Re:Mebibytes (MiB) ? (Score:2)
Networking, OTOH, does have valid excuses. Eg. 64kbps for ISDN means 64000bps, which comes from 8kHz 8b width, and 10Mbps ethernet is indeed 10 million bits per second, not roughly 4.9% more than that - again because the electrical engineers didn't think in 2's power when assigning bandwidth, but rather in conventional 10's powers.
Re:Mebibytes (MiB) ? (Score:3, Funny)
Recalleth this olde giokke:
An amateur thinks one kilobyte is 1000 bytes. A computer scientist thinks one kilometre is 1024 metres.
So, the standards bodies are trying to change it to be in line with their prefixes. However, trying to change existing terms to mean something else is not a good idea.
Re:Mebibytes (MiB) ? (Score:3, Interesting)
The thing is, IMO, that we DO have a problem - we dont allways talk about the same units and sometimes it mattes!
When using MiB - NOONE (that knows what they are talking about) is in doubt what you mean - but if you say MB - noone really knows.
How kan a term that clears confusion EVER be a bad thing? The problem is people like you to insist on using terms that confuses - hopefully, in 10 years noone would be confused when you say 2MB an
Take a hint.. (Score:2)
There are 10 kinds of people, those who understand the metric system and thos...
Use the patch (Score:4, Informative)
http://kernel.org/pub/linux/kernel/v2.6/ [kernel.org]
patch-2.6.6.bz2 09-May-2004 20:18 2.4M
Re:Use the patch (Score:2)
Actually, patching the old tree does help with more than only the download. First, it takes a lot less CPU time to unpack a 2.4-megabyte file than a 30-megabyte one. Second, you do know about a program called make, right? The kernel build system uses it. It's got this nice feature... OK, not so much a feature as a defining characteristic of only compiling those files that need to be
Re:SUSE 9.1? (Score:2)
It has 2.6.4-52-default when installed from CD media.
Re:Crap ! It doesn't even boot on Opteron... (Score:2)
Hasn't crashed yet. Dbianizing Samba 3.0.4 and so far it has been building nearly non-stop for the last hour.
Re:Shorter Changelog (Score:3, Informative)
KernelTrap.org [kerneltrap.org] is fairly close to what you're asking.