Slashdot Mirror


Linux Kernel 2.6.0-test10 Released

antrix angler writes "Linus Torvalds released the 2.6.0-test10 Linux kernel today, tentatively calling it the "stoned beaver" release. Linus plans to hand the kernel over to Andrew Morton in a few weeks, and then it will be up to Andrew to decide when we see the final 2.6.0 stable kernel. Download it from a mirror."

13 of 306 comments (clear)

  1. nothing here by twistedcubic · · Score: 2, Insightful

    I think it's better to ignore such messages and let the moderators send it quickly to -1. You're advertising for the nut by respoonding with the same subject.

  2. Re:Stoned Beaver? by samadhi · · Score: 4, Insightful

    Your boss would probably be more interested why you were running a test kernel on his hardware, rather than what code name it had!

  3. Re:Honest Question by crimsun · · Score: 3, Insightful

    I suppose the real answer is "it depends, but generally yes." I don't use kernel preemptibility, and it sure seems "feels" faster -- which is of course such a rambling description that it's difficult to qualify.

    I'll point you to the response I made here:
    http://www.osnews.com/comment.php?news_id=5208&off set=29&rows=30

    (Mine's #29.) Yes, I know it's much more so the combination of XFS and mm than it is just mm. I should amend that comment...

  4. Re:problems in test9 by Anonymous Coward · · Score: 1, Insightful

    I've had intermittent problems since test8, and noapic doesn't seem to have an effect (using VIA chipset). On some of the kernels I compiled, it would work on one, but not the other. The only differences between them usually were usualy which mm patch I was using. Test9-mm5 seems to be working, for now anyway.

  5. Re:Stoned Beaver? by dumeinst · · Score: 3, Insightful

    I thought that since some big corporations like IBM and Novell are picking up Linux, things would get a little more professional.

    Why? so that yet another culture can get swalled into the soulless, humourless, corporate machine? I for one don't want linux to be synonymous with IBM

  6. Re:Honest Question by arth1 · · Score: 3, Insightful
    Is 2.6 really noticably faster than 2.4 for regular desktop use (X responsiveness, etc...)?


    No, it isn't -- it's actually slower, as it spends more time in the core kernel than the older versions. But it *feels* faster, because it is better at giving time to processes when they need it.

    Worst-case scenario: Start two CPU-bound tasks on a single CPU, and measure their performance.
    Best-case scenario: Start a huge amount of small tasks with unpredictable CPU needs, but which all in all saturates the bus. You'll see a gain.

    My guess is that the old kernel scheduler is a little better for games and single-application server-use, while the new one is much better for normal desktop users or overloaded boxes.

    Regards,
    --
    *Art
  7. Re:Honest Question by Richard+W.M.+Jones · · Score: 4, Insightful
    Thanks for that tip about renicing the X server. It made a huge improvement for me (using 2.6.0-test9).

    For reference here's how I fixed this, on my Debian machine: I edited /etc/X11/Xwrapper.config and removed completely the line which sets nice_value.

    If you don't want to restart your X server to make the change have effect, then you can instead do:

    renice 0 PID

    where PID is the process ID of the X server.

    Rich.

  8. Re:Stoned Beaver? by hkmwbz · · Score: 2, Insightful
    Isn't "Stoned Beaver" just the name for this specific test kernel? If so, what is the problem? The kernel is still Linux, it is not changing its name. Just because someone wants to have a bit of fun with the name of a mere test version doesn't mean that it's unprofessional.

    I don't really see how this has got anything to do with Linux or professionalism, since, as I said, the kernel is still "Linux", and this is a test kernel.

    But whatever. IHBT.

    --
    Clever signature text goes here.
  9. Re:devfs by loucura! · · Score: 2, Insightful

    Well, devfs appears to be depreciated in favour of sysfs. So no, you don't need devfs.

    --
    Black and grey are both shades of white.
  10. Re:Works For Me(TM) by Master+Controll+Prog · · Score: 2, Insightful

    for anyone thinking of posting this type of post, perhaps this information would be a little more useful if you indicated the particulars of your system. the fact that this kernel "works" for a particular slashdot reader is not much to go on, by its self.

  11. Why is a test release a /. new event? by mnemotronic · · Score: 0, Insightful
    Perhaps I'm missing something ... is slashdot the Linux Announcement Bulletin of Release Available for Test (LABRAT)? Ok, Linux is important, but it's just an OS, and an announcement of a interim test release is not (IMHO) that newsworthy, unless this is the Final Release that will do flawless speaker-independent voice recognition, fix the perfect cup of expresso, and do my real work so I can play SMAC or Civ III all day.

    #include <sound_of_karma_points_evaporating.ogg>

    --
    The Russians have won. They have made the world a cesspool of distrust, greed, fear and hate.
  12. Re:Udev by iabervon · · Score: 3, Insightful

    The reason that devfs is not yet deprecated in favor of udev yet is that udev depends on the kernel using the new driver model for everything that gets a device. Of course, that's not udev work per se, but it means that, for example, input devices (IIRC) don't yet work quite right with it.

    The kernel having explicit knowledge of what it's doing in a uniform format is a new feature in 2.6, and it's not completely universal yet. Once that all works correctly, udev should work perfectly, and it is a better design than devfs, because it puts device naming in userspace, but device numbering comes from the kernel, and the kernel tells userspace what each device actually is. This is how the division of labor is supposed to be: the kernel has internal information, which it maintains, and an API, which it defines, but userspace can use that API to specify policy.

  13. Re:Framebuffer by Krach42 · · Score: 2, Insightful
    Also note that /. is munging the code; it insists on inserting a "&nbs p;" that shouldn't be in there. I can't seem to get rid of it. Gotta love buggy software.

    That's intentional, and is part of the anti-page-widening-post code. It prevents really long lines causing the page to overflow.


    Exactly what I was going to say. I've submitted this bug at least once, but probably twice, and I keep getting hammered with, "it's not a bug, it's a feature."

    You know, because since the renderer is going to reduce the entire html-character code into a single character, it should obviously be treated as a group of 4 characters by SlashCode.

    You know, not that I'm bitter or anything about them ignoring something that's as easy to fix as adding an alternative in a regular expression. /(\w{N}\w*/ -> /((\w|\&\w+\;){N}\w*/

    There's your half-line fix... well, to some degree... don't blame me entirely, I don't like perl. Fact of the matter is that it's a fairly simple regular expression change, and it will treat &...; as a single character, which it should.
    --

    I am unamerican, and proud of it!