The Linux Weather Forecast 98
kwabbles writes "The Linux Foundation launched the Linux Weather Forecast yesterday. It features 'current conditions' for kernel development, a 'short-term forecast,' and a 'long-term forecast.' Now developers and organizations that want to see when certain implementations/fixes are planned can find answers at this informative and handy site."
Linux Climatologist (Score:5, Funny)
AAPL is heading DOWN ! Sell !! Sell AAPL !! (Score:1, Funny)
Re: (Score:2, Informative)
Re: (Score:2)
Re: (Score:2, Interesting)
Re: (Score:1)
Re: (Score:1)
Re: (Score:2)
Re: (Score:2)
Partly cloudy... (Score:5, Funny)
and for the weekend outlook (Score:3, Funny)
Re: (Score:1)
Re: (Score:2)
Forecast has been updated to include a 50% chance of flaming hail.
In honor... (Score:2)
I don't think it means what you think it does. (Score:4, Insightful)
Re:I don't think it means what you think it does. (Score:5, Funny)
You see, it's like a car with a banana in its radiator...
That's a flawed analogy. (Score:5, Funny)
Imagine, if you will, a perfect state machine with N inputs and G(N) outputs, where each output is a Thorgen-Zeta function of all the inputs bounded by the radial square root of each of its eigenvalues. Clearly, the scope is integrable under N, which is probably what led you to your assumption. But where your car-fruit analogy falls down is in assuming that complete T-Z continuity with respect to time.
So a better analogy would be a car with a fish in its tailpipe, dripping maggots along the highway in the rain. Some of the maggots survive to become features, but some are squashed by schoolbuses full of sweaty cheerleaders.
Re:That's a flawed analogy. (Score:5, Funny)
Ah. (Score:5, Funny)
The OP is correct: the Linux Weather Forecast is like a car with a banana (properly seated) in the radiator.
Not quite. (Score:5, Funny)
Re:That's a flawed analogy. (Score:5, Funny)
Re:That's a flawed analogy. (Score:5, Funny)
Wait... what?
Re:That's a flawed analogy. (Score:4, Funny)
Re: (Score:2)
and clean out that keyboard!
Re: (Score:3, Funny)
I recall a MacGyver episode where they patch the bullet holes in a car radiator with a couple of eggs, as that stuff solidifies easily. That, in turn, reminds me of vegan baking where people often replace eggs with bananas. So, it's a perfect vegan MacGyver analogy!
Re:I don't think it means what you think it does. (Score:5, Insightful)
Re: (Score:3, Insightful)
I think the word "roadmap" would imply some control over the process--this is what we plan to do next and when we're hoping to do it by, etc.
The nature of the Linux community is such that there's not really anybody with the authority to give such a roadmap. Linus can say "no" to people, but he can't make them work on anything they're not interested in. And it's difficult for the various groups implementing new features to guarantee somebody else won't come up with a valid objection that will delay accep
Personally... (Score:2)
Obligatory George Carlin (Score:4, Funny)
UIO: Userspace IO drivers. (Score:5, Interesting)
Having develpoed in both user and kernel space, I know that userspace development is vastly easier: a crash is now only a segfault, debugging can be done easily and the most suitable language for the task can be used. This makes it faster and easier to develop both robust and efficient code.
But, come on and look at Linux: it's slowly becoming a microkernel: everything that can be in userspace is slowly moving there. And that is a good thing.
Re: (Score:1)
Re: (Score:3, Interesting)
Sadly, UIO can be abused to make non GPL drivers. However, since there's now a nice socket, reverse engineering should be easier, and also I expect that the OSS benefits will greatly outweigh the few hardware manufacturers with mis
Re: (Score:3, Interesting)
If that X server hangs is the display just frozen, has X hard-locked the console, or is the whole thing hosed requiring a hard reset? In times like that you're left with crashing the kernel manually using the reset button because there's no other way out. KGI/GGI was supposed to solve that particular problem, but nobody seems to care.
I've had USB devices hang the machine too, but X11 is a really bad offender.
Re: (Score:3, Informative)
But X doesn't always hand the machine. Often you can ssh in and resrart at. Also, that way, you don't loose files which haven't been committed to disk.
But it's true, userspace drives don't magically make software better. X can crash the machine, especially as it's doing funky stuff over the AGP/PCI[X] bus.
However, X is one of many things. In
Re: (Score:2)
Re: (Score:1)
Re: (Score:3, Funny)
In other words, it's slowly getting towards the superior desktop OS design -- the one that Windows uses. And it's really no wonder.
Re: (Score:2)
Windows is like the poster child for failed engineering. Even DirectX requires orders of magnitude more kernel/user switches than OpenGL, and they're trying to hack around it any way they can. It's just humiliating.
Re: (Score:2)
A device driver written for Windows NT4 works on Windows Vista without any modifications, whereas a device driver written for Linux kernel 2.6.18 doesn't work on (nor compile against) kernel 2.6.19.
Re: (Score:2)
The "device driver" written "for" Linux is supposed to be integrated _into_ the main Linux source tree. If they didn't do that, it's their own fault and they deserve breakage.
There is no stable (i.e. standardized) external driver API in the Linux kernel, so any further discussion in that direction is pointless and makes you look like a fool.
Re: (Score:1)
> There is no stable (i.e. standardized) external driver API in the Linux kernel, so any further discussion in that direction is pointless and makes you look like a fool.
You completely ignored his comment, which stated that Linux does not have a stable external driver API by design. It's not necessary given Linux's development model, and it's not a flaw. In fact, it's a good thing. You're the fool for not seeing that, and for not reading the kernel documentation file he referenced.
Re: (Score:2)
Really? Then ask yourself why Hitachi et al asked for it, and why the grand parent poster wrote "Linux is slowly becoming a microkernel" (certainly because monolithic kernel is great, eh?)
Ok, you're yet another ignorant fool and a blind zealot who believes that a legacy system designed in the 60's is suitable for desktop in the year 2007.
Re: (Score:1)
Hitachi et al want a stable driver API so they can write binary drivers. Linux doesn't want or need binary drivers. A stable driver API has nothing to do with the monolithic vs. microkernel debate.
> Ok, you're yet another ignorant fool and a blind zealot who believes that a legacy system designed in the 60's is s
Re: (Score:2)
It's not only closed source drivers. But also open source THIRD PARTY EXTERNAL drivers, such as TrueCrypt. Every MINOR update of the Linux kernel caused the TrueCrypt driver to stop working and it required that the developers REWROTE parts of the driver! Do you get it now? Why a stable API for drivers is needed?
Now go play with your toy designed in the 1960's for mainframes. And don't bother re
Re: (Score:1)
Yup, out-of-tree development tends to do that. They should get it merged. This has been hashed over and over again on LKML.
> Do you get it now? Why a stable API for drivers is needed?
No, what you don't seem to get is that Linux just doesn't work th
Re: (Score:2)
I'm glad you acknowledged that a stable API is needed and that there are problems with the Linux model. What you call "out-of-tree" we in the real world call just regular "software". You know the world where anyone can develop and release any software under any license they wish (not just under the GPL as part of a bloated monolithic kernel that includes every driver ever written).
Re: (Score:1)
> I'm glad you acknowledged that a stable API is needed and that there are problems with the Linux model.
There's no problem with Linux, and it doesn't need a stable API. There are problems with people who for some odd reason think they can do out-of-tree development without having to deal with the versioning conflicts inherent in maintaining a private branch of a software project.
> What you call "out-of-tree" we in the real world ca
Re: (Score:2)
I will continue using binaries of excellent open-source and closed source drivers written for Windows NT4... on Windows XP and Vista.
This was my last post to you. If you post anything in response I won't read it, so don't bother. You're a stupid moron and I dislike communicating
That's great, but... (Score:3, Interesting)
Also, the xml feed is has a slight syntax error:
Re: (Score:2)
I've got to say I really like it. Finally a single location that gives a good, concise, and easy to read summary of things to come for Linux
Re: (Score:2)
http://kernelnewbies.org/LinuxChanges [kernelnewbies.org]
Expect ... (Score:3, Insightful)
Actually, it IS yesterdays forecast... (Score:2)
Re: (Score:2)
Neato (Score:5, Funny)
Re: (Score:2)
Cool.... now we can all shelter whenever there is a SEVERE LINUS WARNING.
The required Tanenbaum front has been too quiet and the Gnome index has been low lately to issue such warnings. All we have is CFS overcast, at worst, so far as I can tell.
Perhaps we should get RMS and ESR to bug him a bit? Or we could lock him in a room with John Dvorak for a few hours and insist they discuss "the problem with current operating systems", until they have an RFC drafted that they both agree on?
Linus will veto it! (Score:1)
Linux Foundation (Score:4, Interesting)
Not flaming, if they provide a good resource more power to them.
Re:Linux Foundation (Score:5, Informative)
Well, they formed from the merger of the OSDL and the Free Standards Group. So they do everything those two thing groups did, including pay Linus to hack on the kernel.
Looking at their about [linux-foundation.org] pahge, they also provide legal services, work to promote standards, and provide a neutral forum for debate. The also run sites like LinuxPrinting.org (as it used to be called).
How much of that is truly useful is perhaps open to question. One of the legal services for instance is protecting the Linux trademark, which hasn't proved the most popular activity in the open source milieu. I've also seen concerns voiced about the joining procedure (you buy your way in) and the fact that the board seemed overly staffed with corporate types, with actual developers being a bit thin on the ground.
I think the big trouble is that everyone knew who the OSDL were. This new entity is going to take a bit of getting used to. That said, they seem to be doing good things, so more power to 'em.
Re: (Score:2)
My Forecast (Score:2, Insightful)
Re: (Score:2)
Darn it (Score:2)
I'd just like to see fewer regressions... (Score:4, Interesting)
Case-in-point: Firewire, and more precisely, multi-LUN support. Sounds esoteric, but it's actually not too uncommon to find hardware that needs it these days. When 2.6 came out, 1394 (as a whole) was just plain broken. They finally got it fixed in 2.6.12 or so, but then, in 2.6.22, they introduced a new Firewire stack - which promptly broke multi-LUN support. Maybe not everyone needs this, but I'm heavily dependent on it. I'm now in a position where I can't do any kernel upgrades until I've confirmed the fix has made it into 2.6.23 final.
I know it's something of a petty gripe, but I'd appreciate it if Linus could do a better job of making sure regressions like that didn't slip back in. I don't need a repeat of the bad weather that we've already had.
Re: (Score:2)
Re: (Score:1)
running release candidate kernels looking for regressions
Re: (Score:1)
In addition to that, multi-lun devices are supported in the firewire git repository already (which I'm currently running). I get a huge performance boost from the new stack too.
Re: (Score:2)
Re: (Score:2)
The new stack is 1/3rd the size of the old and discards a lot of garbage. There're rea
User space covers GNOME and KDE -- but not X? (Score:1, Insightful)
Then again, what about some other projects? GCC, for instances? Improvements to GCC could potentially improve a vast number of Linux programs. Maybe that ought to be included in the forecast?
The list of important projects could really go on for a while...
Re: (Score:2)
And now, the weather (Score:1)
Not complete until... (Score:2)
Weather Forecast? (Score:3)
I'd check that hourly.
Today's LKML Flamewar Threat: "Moderate" (Score:2, Funny)
Moderate: Noobs complaining about nVidia driver crashes
Elevated: Linus just tried GNOME... again
High: Con Kolivas and Ingo Molnar go mano-a-mano over scheduling algorithms
Extreme: Hans Reiser is back, and he's armed, dangerous, and off his meds!
Re: (Score:1)
There's somewhat of a flame war going on right now about filesystems.
Good entertainment.
Meanwhile, on the Linux *developer* forecast... (Score:1, Funny)