Slashdot Mirror


Linus Says Pre-2.6 is Coming

gomoX writes "As seen on C|Net , Linus has announced that the pre-2.6 series will be starting in early July. Despite not having been able to meet the release goal for 2.6 in June 2003, the next stable version is not as far away as you may think. You can take your guess based on the fact there was a 9 month period between first test version of 2.4 and the official release of 2.4.0 on January 2001."

304 comments

  1. Oh really? by Dead_Smiley · · Score: 0, Insightful
    "You can take your guess based on the fact there was a 9 month period between first test version of 2.4 and the official release of 2.4.0 on January 2001."

    No you can't. Linus has always maintained that a kernel will be released "when it's done". Why would he change now?

    --
    I know what the Internet is, what the hell is this Interweb business?!
    1. Re:Oh really? by stud9920 · · Score: 1, Funny
      Linus has always maintained that a kernel will be released "when it's done".
      (Insert Duke Forever joke)
    2. Re:Oh really? by anshil · · Score: 1

      Well do you know what statics and approxomations are?

      Without knowing the detail of a black box system, you can predict future behaviour of the system due to past observations. Of course not certainly, but likely.

      IMHO also: thats not insightful!

      --

      --
      Karma 50, and all I got was this lousy T-Shirt.
    3. Re:Oh really? by blixel · · Score: 3, Insightful

      "You can take your guess based on ....

      No you can't. Linus has always maintained that a kernel will be released "when it's done". Why would he change now?


      Dude - do you what the word guess means?

      guess - a. To predict (a result or an event) without sufficient information. b. To assume, presume, or assert (a fact) without sufficient information.

      I also agree - NOT insightful.

    4. Re:Oh really? by Berzelius · · Score: 1

      I bet you have never heard of an "estimated guess" then?

    5. Re:Oh really? by Apaturia · · Score: 1

      I think you mean "educated" guess.

    6. Re:Oh really? by Anonymous Coward · · Score: 0

      pwned!

    7. Re:Oh really? by kimmo · · Score: 1

      No, sorry. But usually statistics show that most approximations are way off, and even more so in the software business.

    8. Re:Oh really? by anshil · · Score: 1

      Well I was talking about statistics not approximations.

      So your are talking about statistics regarding statistics.

      Now is there something biting in it's ass?

      --

      --
      Karma 50, and all I got was this lousy T-Shirt.
    9. Re:Oh really? by gtsquirrel · · Score: 0

      Last I heard, the entire tty layer needed to be rewritten and the scsi interface was broken. This was about mid-May. Given those two facts alone, I would be impressed if 2.6 was done in 9 months, to say the least. Like another thread said, Linus has always stuck with a "when it's done" policy that has helped to make the kernel so stable. Why start releasing stable-versioned kernels with potentially bad/highly experimental code now that Linux is a serious competitor in the server market and beginning to encroach on the desktop market?

  2. I'm posting this on top of 2.5.74 by Genyin · · Score: 4, Informative

    In fact, 2.5 isn't that bad right now... certainly, it would be crazy to use it on a production system unless you really know what you're doing[1], but it's quite usable, and the scheduling has really improved.

    [1] in which case you probably wouldn't use it on said production system... ;)

    1. Re:I'm posting this on top of 2.5.74 by tuba_dude · · Score: 4, Informative

      I've been using the various revisions of the 2.5 series for a few months now. You would not believe how much more responsive X is. Well, you might, but that's not the point. ;) It's been great, disk i/o is a bit faster, and the only problems I've had were with binary-only drivers.

      --
      "The government of the United States is not, in any sense, founded on the Christian religion."
    2. Re:I'm posting this on top of 2.5.74 by NitroPye · · Score: 1

      Ive been running 2.5 for awhile now, no problems, no crashes nothing, I love it. Big improvements. Of course I am running it on gentoo which makes life so much easier to run experimental kernels.

    3. Re:I'm posting this on top of 2.5.74 by mpeg4codec · · Score: 1

      I played around with 2.5.73 a bit, and I must say, the future is looking very bright. Make xconfig is looking really nice [new qt-based config], and a lot of features [like headless settings for embedded systems] look very promising. Can't wait for 2.6.0.

  3. Easy integration of new versions? by Jonah+Hex · · Score: 2, Interesting

    So what's the easiest way to use new versions, use something like Gentoo or Linux From Scratch? Jonah Hex

    1. Re:Easy integration of new versions? by Drakonian · · Score: 1

      Good question. I think it should be fairly easy to do on Debian with the kernel package making utility. Anyone agree/disagree?

      --
      Random is the New Order.
    2. Re:Easy integration of new versions? by Anonymous Coward · · Score: 0

      Any distro can use new kernel versions...duh.

    3. Re:Easy integration of new versions? by N8w8 · · Score: 1

      I use 2.5.74 on Debian woody. The only thing I had to install in userspace was module-init-tools, for the new kernel module system. Apart from that I had no "big" problems with migrating to 2.5.

    4. Re:Easy integration of new versions? by thefroatgt · · Score: 1

      I have never had any problems upgrading kernels in Debian Testing at all.

    5. Re:Easy integration of new versions? by shellbeach · · Score: 1
      There's no reason why you can't test it out on your current distro, except the usual caveat of "be careful, this may corrupt all your data", which applies to just about everything. But it's probably safer to use a fresh new partition.

      That said, it's not the easiest thing to do, but it's also not the hardest. Building the kernel is very easy: download the latest source, extract it into /usr/src/ and ...

      make menuconfig

      (Going through all the different options takes a while. Don't forget that almost all of them are extensively documented, and generally tell you when you're likely to need them. You might want to select "Prompt for development and/or incomplete code/drivers" in the "Code maturity level options" section (the first one!), if you want the latest stuff)

      (also, don't forget simple things like enabling PPP - may sound obvious, but it's easy to forget the first time and then you'll wonder why you can't connect to the internet! Save your config to another location at the end, that way you'll be able to easily build new kernels without going through the whole shebang again ...)

      make

      cp arch/i386/boot/bzImage /boot/kernel25bz

      (or whatever else you want to call your new kernel)

      make modules && make modules install

      Now edit /etc/lilo.conf to add your new kernel and run /sbin/lilo to incorporate these changes, then reboot. This is the hard part!! But if things don't work, you've still got your old kernel there to go back to.

      It's also worth noting a few extra things you'll need, such as the latest Module Init tools, and you may also need to edit your /etc/fstab if you're using devfs and include a line such as

      none /dev/pts devpts gid=5,mode=620 0 0

      And you'll need to find a patch if you're using Nvidia's drivers.

      ... But that's about all the problems I've personally found so far ... :)

    6. Re:Easy integration of new versions? by Frodo420024 · · Score: 1
      So what's the easiest way to use new versions, use something like Gentoo or Linux From Scratch? Actually, just download the source from [a mirror of] kernel.org. Then:
      • Unpack
      • make xconfig (takes time to get right!)
      • make
      • make install (must be root to do this)
      • reboot and check the boot messages

      Something might blow up. I tend to do something that makes the kernel unable to remount the root drive in R/W mode, causing all Hell to break loose :) Then reboot with usable kernel, make xconfig again and repeat. I've also had grub.conf be messed up slightly.

      Have fun!

      --
      I'm in a Unix state of mind.
  4. Finally! by Stephen+Samuel · · Score: 1, Funny
    A good escuse to crash my computer!.

    (of course, a beta version of Linux is probably more stable than a release version of Windows, but I can actually do something with Linux if/when it blows up in my face.)

    --
    Free Software: Like love, it grows best when given away.
    1. Re:Finally! by Anonymous Coward · · Score: 0

      The correct spelling of the word is "excuse," Mr. Samuel.

    2. Re:Finally! by Temporal · · Score: 1, Offtopic

      1998 called. They want their joke back.

    3. Re:Finally! by kasperd · · Score: 1

      A good escuse to crash my computer!.

      Why would anybody moderate that a troll? Bad spelling does not qualify as a troll. There is actually a great deal of sense in that posting. Somebody have to try out new kernels and have them crashing before the bugs are found. Even great kernel hackers makes bugs, but bugs are found and fixed. So please say thanks to the great hackers and the brave testers.

      --

      Do you care about the security of your wireless mouse?
    4. Re:Finally! by An+Onerous+Coward · · Score: 1

      My only experience with WinXP has been in the computer labs at school. Explorer crashes constantly, and the whole machine locked up the two times I tried to copy a 70 meg file onto my Zip disk. So I can't say that I'm thrilled with the current stability of the Redmond offering. The joke isn't dead yet.

      On the other hand, my Red Hat 9 install leaks memory like a sieve, and after a few hours of web browsing, it's hitting the swap partition for everything, and I have to reboot.

      In either case, I'm a bit dissatisfied on the stability front.

      What do these two situations have in common? Well... er... me!

      I'm cursed. QED.

      --

      You want the truthiness? You can't handle the truthiness!

  5. Re:hmm by Anonymous Coward · · Score: 0

    Because OS X doesn't run on my PC.

  6. What have I got to look forward to? by Anonymous Coward · · Score: 2, Interesting

    So what hot new features can we expect from the new 2.6 Kernel

    1. Re:What have I got to look forward to? by bethane · · Score: 5, Informative

      Being a LKML lurker, here are a few of the new features.

      In-kernel Module Loader and Unified parameter support: http://www.kernel.org/pub/linux/kernel/people/rust y/patches/Module/

      Nanosecond Time Patch: http://www.ussg.iu.edu/hypermail/linux/kernel/0210 .3/0793.html

      Fbdev Rewrite: http://www.uwsg.iu.edu/hypermail/linux/kernel/0111 .3/1267.html

      Linux Trace Trollkit (LTT): http://www.uwsg.iu.edu/hypermail/linux/kernel/0204 .1/0832.html

      statfs64: http://marc.theaimsgroup.com/?l=linux-kernel&m=103 610918825614&w=2

      POSIX Timer API: http://marc.theaimsgroup.com/?l=linux-kernel&m=103 553654329827&w=2

      Shared Pagetable support: http://marc.theaimsgroup.com/?l=linux-kernel&m=103 498293902006&w=2

      Hotplug CPU Removal Support and Kernel Probes

      --


      Bethanie: Whore...
      Fan Whore
    2. Re:What have I got to look forward to? by mhesseltine · · Score: 5, Funny
      Linux Trace Trollkit (LTT): http://www.uwsg.iu.edu/hypermail/linux/kernel/0204 .1/0832.html

      I know it's a typo, but that would make slashdot much more interesting, wouldn't it?

      --
      Overrated / Underrated : Moderation :: Anonymous Coward : Posting
    3. Re:What have I got to look forward to? by gotem · · Score: 5, Funny

      more lines of code from SCO

    4. Re:What have I got to look forward to? by anshil · · Score: 5, Informative

      I think for me most important the ALSA sound system is finally part of the linus kernel. Meaning you do not need to patch the kernel anymore to get recent sound support.

      --

      --
      Karma 50, and all I got was this lousy T-Shirt.
    5. Re:What have I got to look forward to? by Graspee_Leemoor · · Score: 0

      " So what hot new features can we expect from the new 2.6 Kernel"

      100% accurate spam detection in the kernel

      altered tcp stack so pr0n downloads 50% faster

      DMCA violation built into kernel, just in case you have doubts about whether to be a proper "penguin guerilla" (!) or not

      viruses are introduced, making linux more like Windows /. auto fr0sty pister built into tcp stack

      xvid playback IN THE KERNEL, works on all gfx cards ever produced and all that will every be made

      graspee

    6. Re:What have I got to look forward to? by Anonymous Coward · · Score: 0
    7. Re:What have I got to look forward to? by bartc · · Score: 4, Informative

      Here's a nice overview by Guillaume Boissiere:

      http://www.kernelnewbies.org/status/latest.html

      And a document by Dave Jones:

      http://www.codemonkey.org.uk/post-halloween-2.5.tx t

    8. Re:What have I got to look forward to? by alienw · · Score: 3, Informative

      You never had to patch the Linux kernel to get ALSA. It could easily be compiled separately.

    9. Re:What have I got to look forward to? by Anonymous Coward · · Score: 0

      NFSv4, IPSec, A Decent IPv6 Implementation also

    10. Re:What have I got to look forward to? by zdzichu · · Score: 0, Redundant

      Detailed status and a general overview of incoming kernel's features.

      --
      :wq
    11. Re:What have I got to look forward to? by Anonymous Coward · · Score: 0

      Ever thought they (SCO) may have put their own code into the Linux kernel, themselves, and then rear their ugly heads?

  7. probably, yeah. by pb · · Score: 4, Informative

    Even the regular Gentoo kernel has a lot of extra patches in it, including the O(1) Scheduler, and Low-latency scheduling; works great for me.

    --
    pb Reply or e-mail; don't vaguely moderate.
    1. Re:probably, yeah. by xenocide2 · · Score: 1

      Wasnt Ingo's scheduler integrated into 2.5?

      --
      I Browse at +4 Flamebait

      Open Source Sysadmin

    2. Re:probably, yeah. by tuba_dude · · Score: 1

      Why yes. Yes it was. It's quite tasty too.

      --
      "The government of the United States is not, in any sense, founded on the Christian religion."
    3. Re:probably, yeah. by inode_buddha · · Score: 1

      They also added IPsec and the NSA's SElinux mods intothe kernel. Pretty strong stuff.

      --
      C|N>K
    4. Re:probably, yeah. by inode_buddha · · Score: 1

      Yeah, I know it's BS to reply to my own post, but I forgot to mention that its also got native support for XFS (sgi) and JFS (ibm).

      --
      C|N>K
  8. Long Live Linux by Anonymous Coward · · Score: 1, Interesting

    I truly believe the time for linux has come. It has always been stable and powerful (as all you slashdotters already know), but now it is really as easy to use as Windows....I tried Mandrake 7.2 but gave up after 1 month for various reasons. Now I have Mandrake 9.1, and I was very pleasantly surprised how polished it was... and easy to use! It is now my primary OS at home. MS, eat your heart out!

    1. Re:Long Live Linux by DrSkwid · · Score: 1

      I didn't know the kernel had a GUI built in?

      --
      There are places where the networks are not touching,and there are places where they are-Boeing's Lori Gunter
    2. Re:Long Live Linux by Anonymous Coward · · Score: 0

      Hmm, don't know about you, but that stuff is really easy in KDE3.

    3. Re:Long Live Linux by Anonymous Coward · · Score: 0

      The Grim Reaper agrees with you. Linux's time has indeed come.

    4. Re:Long Live Linux by David+Hartigan · · Score: 1

      I'm in the same situation myself, I am finding that Mandrake 9.1 is far more mature than any of the other distros I have tested before, it's now my primary OS :)

  9. 2.5.x by bazik · · Score: 4, Informative

    I am using a rock solid 2.5.70 since its released and its performs just great! And having Morton and Torvalds at OSDL is a good thing (tm) :)

    --


    --
    One by one the penguins steal my sanity...
    1. Re:2.5.x by Elm+Tree · · Score: 1

      I'll second that.
      It's more stable than some of the 2.4's I've used.

    2. Re:2.5.x by yermama · · Score: 1

      Same here. ROCK SOLID 2.5.72. I haven't had any glitches since 2.5.39. :) The performance boost over 2.4 is quite noticable too.

    3. Re:2.5.x by anshil · · Score: 0, Offtopic

      Moderators can be soo stupid thats not offtopic!

      --

      --
      Karma 50, and all I got was this lousy T-Shirt.
    4. Re:2.5.x by Anonymous Coward · · Score: 0

      It's rather hard to consider anything as new as 2.5.70 as "rock solid". It hasn't been out enough to really be considered stable.

    5. Re:2.5.x by bn557 · · Score: 1

      I just booted into 2.5.74-mm1 and the only problem I've had since .69 was the FREE_TLB_ALL error you run into if you compiled DRI stuff as modules due to somone forgetting to export a symbol. -mm1 fixes that (although I had been hand patching it before) and all is well. also, 2.5.74-mm1 seems to fix the skipping sound in X on heavy disk i/o problem.

      pat

      --
      Humans are slow, innaccurate, and brilliant; computers are fast, acurrate, and dumb; together they are unbeatable
    6. Re:2.5.x by Anonymous Coward · · Score: 0
      How does its performance improve or degrade in XFree86-3.0 DRI/GLX/openGL applications?



      Do you have any Quake3, Return To Castle Wolfenstein/ET, Unreal Tournament 2003, or Doom3 benchmark scores to share?

      Have you or anyone tried using DRI/openGL capabilities of the DirectFB Project's XDirectFB and DirectFBGL modules when using any X applications or openGL or GLX applications?

      Have you or anyone tried using... ok, I'm not interested in anything besides graphics benchmarks.

      Yes, it all runs perfect on an Alpha platform! (Radeon 9000 PCI on a Alpha 'Ruffian' 164UX)

    7. Re:2.5.x by Anonymous Coward · · Score: 0

      Do you actually own that trademark? If not, then stop using it, because it's dumb.

  10. Ridiculous by stud9920 · · Score: 2, Funny

    Your "Overt Sauce" model is clearly breaked ! Windows has been way beyond 2.6 (3.1 to be exact) since what ? 11 years ?

    1. Re:Ridiculous by anshil · · Score: 0, Offtopic

      Too bad "-1 not funny" does not exist ;)

      --

      --
      Karma 50, and all I got was this lousy T-Shirt.
    2. Re:Ridiculous by Quixote · · Score: 1
      "Overt Sauce" ? I thought it was "Open Sores"...

  11. Alan Cox on kernel 2.6 by k-hell · · Score: 4, Informative

    KernelTrap is running a story on an interview Alan Cox gave at LinuxUser & Developer Expo 2003 in Birmingham, U.K. A summary of Alan's talk is also available.

  12. Distro Upgrade? by Irie+Brother · · Score: 1, Insightful

    Will this be simply a kernel upgrade and I'm running 2.6? Or... will I have to wait for a distro to release their 2.6 version?

    --
    "To deny our own impulses, is to deny the very thing that makes us human." - Mouse
    1. Re:Distro Upgrade? by Vanieter · · Score: 4, Informative
      I would tend to say you'd need to modify your apps so that they'll run correctly with the new ALSA interface for sound support - although it supports OSS/lite emulation pretty much perfectly (as far as I know of)

      Also, modules names have (I think) changed, so a change in the init scripts would probably be useful. It depends on your distro though - I'd say distros like Slackware and Debian will have guides or automated tools for migration. Commercial distributions will probably have to release a new version (RedHat 10 ? Gods).

      Although maybe I'm wrong, I never managed to get a working 2.5.x kernel on my Debian box =)

    2. Re:Distro Upgrade? by Genyin · · Score: 1

      Will this be simply a kernel upgrade and I'm running 2.6? Or... will I have to wait for a distro to release their 2.6 version?

      Kinda-sorta. Unless your system is wierd, you should be able to take a 2.5/2.6 kernel, drop it in along with the new modutils (sys-apps/module-init-tools for the gentoo people) and it should work... for the most part, the kernel doesn't break old userspace programs.

      You might need new libraries to take advantage of some new features, of course.

    3. Re:Distro Upgrade? by spencerogden · · Score: 1

      Several of the system packages will need to be updated, notably the modutils. But nothing a good package system shouldn't be able to handle.

    4. Re:Distro Upgrade? by caluml · · Score: 1

      Yes, but install the new modutils first.

    5. Re:Distro Upgrade? by Genyin · · Score: 5, Informative

      Also, the old OSS modules are still in the kernel. I haven't tried them in 2.5, and they are marked with a big DEPRECATED, but they're still there.

      Note, of course, as I've said elsewhere, you do need the new module-init-tools; I'd imagine that would be the most likey reason you'd have trouble getting a 2.5 kernel working, followed closely by an out of date/broken driver.

    6. Re:Distro Upgrade? by Vanieter · · Score: 1

      That's probably it - thanks for the tip !

    7. Re:Distro Upgrade? by djcapelis · · Score: 1

      >(RedHat 10 ? Gods)

      RedHat X!

      --
      I touch computers in naughty places
    8. Re:Distro Upgrade? by kasperd · · Score: 1
      new modutils

      I just read the FAQ (Mostly for developers). One part caught my attention:
      Q: How does the module remove code work?
      A: It stops the machine by scheduling threads for every other CPU,
      then they all disable interrupts. At this stage we know that noone
      is in try_module_get(), so we can reliably read the counter. If
      zero, or the rmmod user specified --wait, we set the live flag to
      false. After this, the reference count should not increase, and
      each module_put() will wake us up, so we can check the counter
      again.
      To me that sounds like a very expensive system call.
      --

      Do you care about the security of your wireless mouse?
    9. Re:Distro Upgrade? by Daniel+Phillips · · Score: 1

      I just read the FAQ (Mostly for developers). One part caught my attention:

      Q: How does the module remove code work?
      A: It stops the machine by scheduling threads for every other CPU,
      then they all disable interrupts. At this stage we know that noone
      is in try_module_get(), so we can reliably read the counter. If
      zero, or the rmmod user specified --wait, we set the live flag to
      false. After this, the reference count should not increase, and
      each module_put() will wake us up, so we can check the counter
      again.

      To me that sounds like a very expensive system call.


      It is, but you don't execute it hundreds of times per second.

      --
      Have you got your LWN subscription yet?
    10. Re:Distro Upgrade? by stor · · Score: 1

      Hey dude,

      You might want to take a look at this:

      Dave Jones' The post-halloween document. (aka, 2.5 - what to expect)

      Cheers
      Stor

      --
      "Yeah well there's a lot of stuff that should be, but isn't"
  13. New Name for New Linux by Anonymous Coward · · Score: 5, Funny

    not to be nitpicky or anything, but technically, shouldn't future versions of linux be referred to as GNU/SCO?

    1. Re:New Name for New Linux by mepr · · Score: 0, Offtopic

      this above should have been modded up :)

    2. Re:New Name for New Linux by mepr · · Score: 1

      thank you

    3. Re:New Name for New Linux by mcgroarty · · Score: 2, Interesting

      Way off topic, but I believe in the current slash code, your karma is still tied to the posting if you post anonymously while still logged in.

    4. Re:New Name for New Linux by Space_Nerd · · Score: 1

      LINUSCO! No more linux!

      --
      Everybody has a purpose in life, maybe mine is to lurk in slashdot.
    5. Re:New Name for New Linux by Chris1319 · · Score: 1

      For those of you using RedHat GNU/SCO 9, you can update your redhat-release rpm and change your text screen login prompt and [God forbid] your telnet prompt. Grab the new redhat-release RPM! Be compliant!

  14. Re:Microsoft leads the way with SP4 for Windows 20 by Kegetys · · Score: 1

    SP4 does nothing else but fix bugs. Kernel 2.6 adds quite alot of new features so its not really that much of a valid comparsion.

  15. Re:Microsoft leads the way with SP4 for Windows 20 by h2oliu · · Score: 1

    Please, Please, Please don't compare the two. Being an Windows administrator (a minor devil in some pantheons?), I wouldn't wish SP4 equivalent instability generating changes/autoupdate problems upon anyone.

    --
    Ok, I give up, why you?
  16. Should I get excited over any of these features? by Anonymous Coward · · Score: 0, Troll

    Mod me down as troll if you like, but none of these sounds like anything I should have been waiting for.

  17. Re:What has happened to Slashdot? by Anonymous Coward · · Score: 2, Funny

    Microsoft deserves to be raked over the coals, and the government IS out to get you.
    That doesn't mean that the editors aren't lazy and slower than sloths, though.

  18. Why 9 months? by Gzip+Christ · · Score: 5, Funny
    You can take your guess based on the fact there was a 9 month period between first test version of 2.4 and the official release of 2.4.0 on January 2001.
    You might think that this was due to the birth of Linus' daughter Patricia. However, Linus actually spent those nine months cutting and pasting our code into the Linux kernel (there's so much of it, which is why it took him so long). Also, I am Patricia's real father.

    -- Darl McBride

    1. Re:Why 9 months? by chef_raekwon · · Score: 3, Funny

      You might think that this was due to the birth of Linus' daughter Patricia. However, Linus actually spent those nine months cutting and pasting our code into the Linux kernel (there's so much of it, which is why it took him so long). Also, I am Patricia's real father.

      -- Darl McBride


      won't you introduce us to your brother Darl, and your other brother Darl?

      (okay, bad joke, but its friday, whhoooohooooo)

      --
      We're like rats, in some experiment! -- George Costanza
    2. Re:Why 9 months? by ChadN · · Score: 1

      Actually, Darl McBride is Larry McVoy's brother. And Darl McBride is Larry McVoy's other brother.

      --
      "It's overkill, of course. But you can never have too much overkill." - Anonymous Slashdot Coward
    3. Re:Why 9 months? by Anonymous Coward · · Score: 0

      Also, I am Patricia's real father.

      -- Darl McBride


      No, you aren't. You don't have a dick, just like your "father" before you....

    4. Re:Why 9 months? by Anonymous Coward · · Score: 0

      While Darl is trying to rape Linux, I doubt that he could even get past thinking about trying to do the same to Tove. Judo chop.

  19. Re:What has happened to Slashdot? by archen · · Score: 2, Funny

    What they don't get in timeliness they make up for in volume (dupes).

  20. Re:Should I get excited over any of these features by Anonymous Coward · · Score: 0

    hotpluggable CPU sounds a hoot! I've always wanted to try that.

  21. Question about 2.6 adoption by distros/maturity by Apostata · · Score: 4, Interesting


    My question is this:

    There was some hesitancy, upon the official release of kernel 2.4, based upon some bugs etc...

    I'm wondering, does the kernel - generally speaking - get more and more stable. For example, will the first release of 2.6 be more stable than the first release of 2.4. I realise that there are new additions to the kernel, and with that new problems will probably emerge. However, comparatively speaking, does it make sense that the kernel's evolution will lean towards stability with each release in the cycle, or will it generally be unnoticable?

    Just curious.

    --

    This wasn't just plain terrible, this was fancy terrible. This was terrible with raisins in it. - Dorothy Parker
    1. Re:Question about 2.6 adoption by distros/maturity by Anonymous Coward · · Score: 0
      For example, will the first release of 2.6 be more stable than the first release of 2.4.

      Well, it can't get much worse, can it?

    2. Re:Question about 2.6 adoption by distros/maturity by XO · · Score: 4, Informative

      2.4 actually had some fairly serious flaws in the middle of it, but the modifications that were done that caused those flaws were, imho, necessary for further evolution.

      Certainly pre-2.6 should squash out most bugs, however !! remember the vast majority of Linux users out there are NOT likely playing with 2.5.x or will be with pre-2.6!

      The stress tests that come from 2.6.0 being announced and suddenly being unleashed upon tens of thousands more users (or hundreds of thousands more machines) than 2.5.x is will shake out all remaining serious flaws.

      --
      "Champagne for my real friends - and real pain for my sham friends!" http://ericblade.postalboard.com/
    3. Re:Question about 2.6 adoption by distros/maturity by Soft · · Score: 1

      In message <fa.n9kl75v.1nugol@ifi.uio.no> , Linus himself admitted to releasing 2.4.0 because he "decided that enough is enough, and that things don't get better from having the same people test it over and over again." (In short, "we know it's still buggy as hell, but we hope more people will help solve that--if we just have them believe it's production-ready", right?)

    4. Re:Question about 2.6 adoption by distros/maturity by Anonymous Coward · · Score: 0

      Yes!.....and NO.

      The old features are improved but new features are added which equals more bugs to hunt.

    5. Re:Question about 2.6 adoption by distros/maturity by iamkrinkle · · Score: 1

      from what i understand the 2.4 kernel was regarded as less stable when it was first released than the 2.2 series kernel. While there are a lot of bug fixes in the kernel, there is also a LOT of new code that goes into the kernel, hence this release being 2.6 and not 2.4.2x. So the old code is "bug free" (less bugs anyways), but the new code in the kernel will still have bugs.

    6. Re:Question about 2.6 adoption by distros/maturity by mAineAc · · Score: 1

      if I remember right 2.4.15 had a serious file system corruption problem. If your worried about what is on your system I believe it is a good idea not to be first to try a new one. But it can be stable anytime. I use 2.5.69 right now and I have no problems with it. That doesn't mean someone else won't. But that goes for stable as well as unstable releases. if the 2.5.x is any indication I think that stability will not be an issue with the 2.6 kernel.

    7. Re:Question about 2.6 adoption by distros/maturity by iabervon · · Score: 3, Informative

      First of all, there are going to be a lot of kernels which start 2.6 before 2.6.0, due to the whole stabilization process. Secondly, I think that distros will have a more substantial role in testing the kernels than they have in the past, relative to individual users, so the big stress tests will come when IBM, Red Hat, and Oracle pick up 2.6-pre1 to test; in the past, the big stress tests came when 2.4.0 got a lot of end users to start testing. Third, Andrew Morton is intending to be a release engineer, which Linus has done badly in the past (that not being what his style is good for), which will mean that 2.6.0 will be carefully tested, unlike previous .0 versions.

      Of course, this is due to evolution is the process of releasing stable series kernels, not evolution in the kernel code itself; through the middle of 2.5, everything got broken, and has now mostly been fixed.

  22. Road trip, here comes memory lane by secondsun · · Score: 3, Interesting

    I have absolutly nothing to add of a technical nature to this story, so I will delude you with a rambling trip down memory lane (comprised completly of anecdotes from 2.2).

    My first taste of linux was phatLinux on my brand new p2-400 (128MB of pc 100 ram I liked). 3 months later I had built a sub 400 dollar computer to play around with and bought (yes paid money for) Linux Mandrake 6.5 from Wal-Mart. From there I began learning about this kernel thing (and my joys when I found make menuconfig and make xconfig, have you ever tried make config? ewww...) Well that went fine and fun, I added options, made modules all the fun stuff you do, but it was still in the same 2.2 vein that came with mandrake. Then 2.4.0 final was relased and I compiled and installed my first new kernel. Everything was new and faster. DevFS was a godsend, the ppp and bsd compression routines made my modem fast (or somthing I went from 2.5 kb/s downloads to 5-6 kb/s after recompiling). Since then I have also come to love dri, premptive and low latency patches, and all these other backported goodies. I am waiting on 2.6 final before I play with any of the new features (I didn't play with 2.3 or 2.5). Ok I am done. And I didn't even mention Gentoo... oh wait... damn. ;)

    --
    There is nothing wrong with being gay. It's getting caught where the trouble lies.
    1. Re:Road trip, here comes memory lane by XO · · Score: 1

      Back in my day, all we -had- was make config. And that was a new thing then! I may be recalling incorrectly, but I think the first ver of Linux that I used actually used a config.h with defines .. I may be wrong, though, that might be other software.

      I'm going back to 0.98 here.

      --
      "Champagne for my real friends - and real pain for my sham friends!" http://ericblade.postalboard.com/
    2. Re:Road trip, here comes memory lane by tuba_dude · · Score: 4, Funny

      Tell us more grandpa! Tell us about the time you wrestled and maintained 8 AIX servers single-handedly from your homebuilt Linux box! Or about the time Linus got lost and asked you for directions and you went on a whirlwind big-city adventure!

      --
      "The government of the United States is not, in any sense, founded on the Christian religion."
    3. Re:Road trip, here comes memory lane by XO · · Score: 1

      lol

      actually, I logged into an AIX box once.. probably in the very early 90's.. it didn't have ANY GNU tools installed, so I was lost as to why nothing worked the way I expected it to, and went back to BSD machines primarily...

      --
      "Champagne for my real friends - and real pain for my sham friends!" http://ericblade.postalboard.com/
    4. Re:Road trip, here comes memory lane by OpCode42 · · Score: 1

      That's because AIX Is uniX ;)

    5. Re:Road trip, here comes memory lane by XO · · Score: 1

      At the time, I don't know if GCC and company even -worked- on HP/UX or AIX (I know they do now, although the last time I used HP/UX, it was still fairly well crippled compared to most other *nixes in the libc area) at the time.. but i was pretty thoroughly disgusted that I couldn't get -any- of the software that i wanted to run on these machines to run, because they were written for gcc.. which I thought was the normal for the world at the time. doh.

      Course, the programs I wanted were IRC and MUDs and other non-professional type applications. I'm sure AIX and HP/UX worked fine for people who needed Unix for their business... but it sure didn't work so good for my personal interests. That's where BSD came in.

      In fact, I only remebmer there really being 4 *nixes that I ever ran into.. BSD(+BSD based systems), Sys V (I also used Sys III), AIX, HP/UX.

      oh, duh, SunOS as well. make that 5 now. SunOS and BSD machines that I frequented regularly had a complete suite (or at least complete enough that I could make it complete) of GNU tools, so those were the machines that those of us building IRC and MUDs and such went for.

      --
      "Champagne for my real friends - and real pain for my sham friends!" http://ericblade.postalboard.com/
    6. Re:Road trip, here comes memory lane by Anonymous Coward · · Score: 0

      GCC worked fine on pretty much all major unixes in the early 90s. But it was something of a bitch to get compiled on HPUX. It worked, but you needed to wrestle with lots of files to get there.

  23. Re:Should I get excited over any of these features by Elm+Tree · · Score: 2, Interesting

    Me neither, but the new scheduler is nice, POSIX ACLs look sweet and ALSA included in the main kernel release, and the cryptoapi. Plus all the incremental upgrades to drivers etc.

  24. Re:Microsoft leads the way with SP4 for Windows 20 by be-fan · · Score: 5, Informative

    The Windows kernel hasn't changed significantly since the NT4 -> Win2K change. The biggest improvement in the XP kernel was pre-faulting the pages of large processes. Meanwhile, in 2.6, the block I/O layer, VM layer, scheduler, and sound system are brand new. And the whole kernel was made preemptible! Shortly after 2.6, ReiserFS 4 (which looks very promising from initial benchmarks) will be released. In all, 2.4 -> 2.6 will be like NT4 -> XP!

    PS> Before anyone bitches about rewrites being a bad thing, look at things this way. Such extensive changes are necessary for the continually growing range of systems Linux is expected to run on. 2.0 and 2.2 were greatfor single CPU servers, or SMP machines with only a few processors. 2.4 is very usable for heavy-duty machines with many more processors. 2.6 (along with the changes that help interactivity) will make an excellent kernel for desktop machines and workstations. In 2.8, the focus will be on optimizing the core algorithms to run on large-scale NUMA machines.

    --
    A deep unwavering belief is a sure sign you're missing something...
  25. Oh yeah? Well, I'm on 2.5.75, buddy! by Anonymous Coward · · Score: 2, Funny

    Kernel is as stable as the rocky mountains. Been compiling Mozilla non-stop in gcc for the last 3 hours with no problems.

  26. not a day too soon by Trepidity · · Score: 5, Funny

    It'll be nice when it finally comes out, because I'll be able to point people doing audio work to Linux. Right now I have to say "well, Linux is better than Windows for this, but only if you apply the low-latency, pre-emptible kernel, and variable HZ (with HZ set to 1000) patches," which is a bit more involved than most people who are just doing audio work want to deal with. Once 2.6.x comes out I can just point them to the stock kernel.

    1. Re:not a day too soon by KidSock · · Score: 1

      2.4 latency also stinks on my laptop regardless of what I'm doing. Once every few days my machine just sits there with the disk grinding for 5-10 seconds (yes I upgraded to the latest kernel for RHL 7.3, same problem, used to happen once a day). It would have been nice if you could just echo something into proc to tell it it's not a server.

  27. Re:What has happened to Slashdot? by Anonymous Coward · · Score: 0

    You know what's even more sad?

    There's NO SUCH WORD AS PREIMMINENT. I wrote that in lettering that you'd be most likely to understand, by the way.

    Here's the definition of "imminent:"

    About to occur; impending: in imminent danger.

    Now..what is preimminent, exactly? Before it's about to occur? Just slightly behind when it..almost happens? And how can -any- site be a "preimminent" Linux news site? Do you expect Slashdot to post news that's just about to possibly happen?

    Maybe you should go back to sniffing glue and crapflooding. Seems to be what you invalids do best.

  28. Re:hmm by usotsuki · · Score: 0, Offtopic

    I don't think an OS X release equates to a Darwin release, and OS X of course doesn't run on Intel hardware.

    "You, sir, are an asshat." - Unknown slashbot

    -uso.

    --
    Dreams, dreams, don't doubt dreams, dreaming children's dreaming dreams. Sailor Moon SS
  29. Lighten up, Francis.. by Anonymous Coward · · Score: 1

    Jesus. The guy offers some historical perspective and you gotta be all surly... Deep breaths, man.

  30. Hell, Windows is already past version 2000! by Anonymous Coward · · Score: 0

    It's so good that they skipped version 4-94 and went straight to version 95! Then another major leap. They skipped with version 96-1999 and went on to version 2000! Whew, you won't see Linus doing that!

    1. Re:Hell, Windows is already past version 2000! by Anonymous Coward · · Score: 1

      Hey moron they are named after the years where they were released. Any self respecting computer user knows that, unless they are too busy with their head up Linus's ass.

    2. Re:Hell, Windows is already past version 2000! by Lazar+Dobrescu · · Score: 0, Offtopic
      Woah, were they really?

      Can't believe I've been a windows user since year 3.1 and never even noticed that!!!

    3. Re:Hell, Windows is already past version 2000! by Zork+the+Almighty · · Score: 1

      You must be the only guy who's never heard of Windows 98.

      --

      In Soviet America the banks rob you!
    4. Re:Hell, Windows is already past version 2000! by Anonymous Coward · · Score: 0

      But were you using 3.1BC or 3.1AD?

    5. Re:Hell, Windows is already past version 2000! by rwise2112 · · Score: 1

      Sorry,

      I just had to say, that's funny!

      I'm amazed how MS added network support in only the 3.61 days between the release of 3.1 and 3.11.

      --

      "For every expert, there is an equal and opposite expert"
    6. Re:Hell, Windows is already past version 2000! by Anonymous Coward · · Score: 0

      Oh man how you need to get a life.

  31. Re:Should I get excited over any of these features by xenocide2 · · Score: 4, Informative

    Well, the nanosecond patch is critical for make on fast computers, since it uses filesystem timestamps. If you're running gentoo on a brand new desktop it might be a good idea.

    The fbdev patch reduces the size of the framebuffer, so if you like framebuffered consoles, it will reduce your kernel size.

    If you have multiple processors, the Shared page table patch will help reduce page table sizes, and thereby improve performance, marginally. More RAM = more file cache / less disk paging; shared data -> higher cache coherency = faster kernel performance in memory mapping.

    Additionally there seems to have been some mucking around with tweaking the adaptive scheduler so X gets more time when it needs it. The performance metrics have been kind of squishy, but the general consensus is that X and related 'interactive' processes are more responsive.

    --
    I Browse at +4 Flamebait

    Open Source Sysadmin

  32. Re:Oh yeah? Well, I'm on 2.5.75, buddy! by Alan · · Score: 2, Informative

    I played around a bit with .71-.73, but the big thing that got me was that my mouse speed in gnome was sped up by about 10x over 2.4. I had to set the accel down to the lowest setting in gnome to make it usable, compared to about the 25-50% setting with 2.4. Of course, there is no similar setting for GDM.

    I'm guessing this is due to the new keyboard/mouse modules, but who knows. Hopefully this is one of the things that will get shaken out when 2.5 and 2.6 become more mainstream and the KDE/GNOME folks set things up to work nicer with the devel kernels.

  33. Re:You sir, have been trolled by usotsuki · · Score: 0, Offtopic

    I know I have been trolled, hence the quote. YFI

    -uso.

    --
    Dreams, dreams, don't doubt dreams, dreaming children's dreaming dreams. Sailor Moon SS
  34. Re: more salient features by Anonymous Coward · · Score: 2, Informative

    Don't forget merger of larger projects into the kernel, namely:

    CryptoAPI
    IPsec
    ALSA
    XFS

    No more patching the kernel/building module packages for those features!

    Also, improved latency with (O)1 Scheduler and other I/O performance tweaks will be native to the kernel.

  35. Woohoo by Realistic_Dragon · · Score: 1

    Finally, 2.6 - and at last support for my Zaurus should make it into the systems at work where 'recompiling the kernel' is a dirty word.

    As long as Red Hat build it in to their stock kernel that is.

    --
    Beep beep.
    1. Re:Woohoo by wizbit · · Score: 1

      where 'recompiling the kernel' is a dirty word.

      you have a very interesting workplace...

      editor for slashdot, you say?

    2. Re:Woohoo by eakerin · · Score: 1

      Try Redhat 9, you just have to add CDCEther to the /etc/hotplug/blacklist file, and it will pick up the right driver after plugging in the USB dock.

      I got it working on my box by doing just that.

      (although I'm using OpenZaurus, not sure if it works with the original ROM, but it's worth a try)

    3. Re:Woohoo by kasperd · · Score: 1

      Try Redhat 9, you just have to add CDCEther to the /etc/hotplug/blacklist file

      Interesting. I'm using RedHat 9 and CDCEther for my cable modem. It works fine except from the need to reboot my cable modem once a day. So what is it with this Zaurus, and what driver does it use instead?

      --

      Do you care about the security of your wireless mouse?
    4. Re:Woohoo by Anonymous Coward · · Score: 0

      Zaurus uses usb networking....usbd? It worked right out of the box on my mandrake 9.1 install

    5. Re:Woohoo by CJ+Hooknose · · Score: 1
      Interesting. I'm using RedHat 9 and CDCEther for my cable modem. It works fine except from the need to reboot my cable modem once a day. So what is it with this Zaurus, and what driver does it use instead?

      The Zaurus uses the "usbdnet" (2.4.18 and below) or "usbnet" (2.4.19 and up) modules. Apparently, the hotplug daemon thinks the Zaurus implements the CDC standard when it doesn't, hence the "blacklist". Remember that once the module is loaded, you have to do "dhcpcd usb0" to request an IP from the Zaurus's DHCP daemon, otherwise the Zaurus won't talk to your machine. Once that's done, you can use the Zaurus's FTP server on port 4242, or use the Qtopia Desktop program.

      Dunno about the cablemodem requiring a reboot once a day. I only have to reboot mine once a week, but then I'm using one with an Ethernet connection.

      --
      Give a monkey a brain and he'll swear he's the center of the universe.
    6. Re:Woohoo by kasperd · · Score: 1

      but then I'm using one with an Ethernet connection.

      My cable modem have both, but my computer only have one ethernet connector which I need for the local net.

      --

      Do you care about the security of your wireless mouse?
  36. 2.6 isn't a production version by ceswiedler · · Score: 5, Insightful

    There's a lot of complaining about code-freezes for the kernel not being code-freezes. People gripe about major changes being introduced in the last days of the development version.

    I think the problem is the standard explanation of 'even kernels are production, odd kernels are development.' Whether he says so or not, it's clear that branching to an even version does not mean that it's a production kernel...branching to an even version begins the code freeze. Up until they call it 2.6, there's going to be large changes to the codebase. Once Linus calls it 2.6, everyone knows they can't put in major changes, but basic bug-fixes only. Therefore, it's never until a few months (or a year) after the even series starts that it's really a production kernel.

    Software development managers would hate this...lots of kernel developers hate this...but love him or leave him, that's how Linus works.

    1. Re:2.6 isn't a production version by anshil · · Score: 2, Interesting

      Nah thats not true, there is a freeze at the end of development kernels.

      However you no matter the less right.
      Why? Because only a few people use uneven series. So they are tested not really well. You can ask people millions of times to test the final 2.5.x releases, they will stay with 2.4.x.

      However as soon 2.6.0 is released all will jump of it, and test in broad enviroenment, so it takes some even releases until most issues are done.

      It's our social behaviour that defines this reality. Not a way the linux kernel development could improve.

      --

      --
      Karma 50, and all I got was this lousy T-Shirt.
    2. Re:2.6 isn't a production version by Anonymous Coward · · Score: 2, Insightful

      Linus has made it clear time and time again that most people simply will not use development kernels, and he releases versions to get people to use them and test them accordingly. Linus lives in what we will call "reality", while everyone else lives in some nice little far away place where the towels are oh so fluffy and the air smells like warm rootbeer.

      That's what I like about Linus. He cuts through the BS and actually does things based on reality, not on some twisted view of how things should be.

    3. Re:2.6 isn't a production version by larryleung · · Score: 1

      I agree. How long did it take to get out all the nasty filesystem corruption problems in 2.4.x? I heard that there were problems up till .14, and new ones in .20. C'mon, we need actual stable kernels to be production quality. Perhaps we should declare a kernel as "production" after it has been used for 3 months at least without any new showstopping bugs.

    4. Re:2.6 isn't a production version by Anonymous Coward · · Score: 0

      It will go in 2.6.1 no doubt :)

    5. Re:2.6 isn't a production version by Anonymous Coward · · Score: 0

      Linus lives in what we will call "reality", while everyone else lives in some nice little far away place where the towels are oh so fluffy and the air smells like warm rootbeer.

      A-l-b-u-querque is nice, but I don't live there...?

    6. Re:2.6 isn't a production version by iabervon · · Score: 4, Insightful

      That's why there's going to be a substantial 2.6-pre series, and why Andrew Morton is going to be the one to release 2.6.0. The goal is for 2.6.0 to be a production release, which means that 2.6.0 can't be the first 2.6 kernel. Fortunately, kernel versioning supports the creation of 2.6 kernels which are before 2.6.0, and Linus understands that his skills are not in release management.

      The real step needed for stability is testing by a wide variety of people. This should actually be easier to get than in the past, since a much larger portion of the front-line testing these days is done by the various distributions, who are not getting into the "enterprise software" business, where they have to do substantial research on whether the software works on different systems before releasing it. And distributions are generally a lot closer to the development process than random individual users are, so they can be more easily convinced to start testing a stable series in advance of the .0 release. Furthermore, there's a lot more testing and verification infrastructure these days than in the past, from the Stanford checker (which catches a lot of unsafe usages in obscure drivers without having the hardware necessary to actually run them) to various test labs.

      There's actually quite a bit more effort put into making sure that end users get a stable kernel these days than in the past, as more business software companies promote Linux more heavily. IBM will make sure that they know at all times the status of 2.6 kernels with respect to any bugs that can be triggered on any of the hardware IBM ships, and they'll make sure that Linus and Andrew know whether a kernel is suitable for 2.6.0, at least from IBM's perspective.

      The real question is whether Linus will manage to hold off starting the 2.7 series until 2.6.0 is released. (Personally, I doubt it; I bet Linus will want to release 2.6.0 before Andrew is willing to, and I bet Linus will decide that the current version may not be good enough for production, but it is good enough to start further development, and Andrew will agree that people who want to work on 2.7 aren't going to do anything more useful for the remaining 2.6 problems at that point)

    7. Re:2.6 isn't a production version by macshit · · Score: 1

      Andrew Morton is going to be the one to release 2.6.0

      I hadn't noticed that, but wow, it's an excellent thing if true -- I think Andrew Morton is one of those rare people who not only has an immense clue, but is careful and thorough enough to release something that really will be stable. Maybe he's even better than Alan Cox in that respect...

      Personally I'm looking forward to the 2.6 release because I'm the proud father of a new architecture in the 2.5 series -- the v850! Of course now I'm continually fretting over whether Linus applies enough of my patches to result in a usable port...

      [Well, OK, so almost nobody actually uses the v850 processor, except maybe in their car's engine controller, but it's there! In the kernel! Hmmm, linux engine control...?]

      --
      We live, as we dream -- alone....
    8. Re:2.6 isn't a production version by Trepalium · · Score: 1

      Given the fact that development series kernels have a long running history for introducing bugs that cause filesystem corruption, it's not all that surprising. Even for those of us with no data of any real value, losing it all still hurts. Those with real valuable data at stake, will wait until 2.6 gets stable. Personally, I might put the 2.6 pre's on my laptop, but the servers at work will wait until at least 2.6.1+, or whatever release I feel comfortable with.

      --
      I used up all my sick days, so I'm calling in dead.
    9. Re:2.6 isn't a production version by jimmy_dean · · Score: 1

      Wow, that's really cool. From which car companies are these processors in engine controllers? My dad used to work on the Tahoe, Suburban and Hummer diesel engine controllers at Delphi Automotive Systems. But I know they weren't using Linux...they were using 80k bytes of assembler up until now. Now they use C because size just doesn't matter a whole lot anymore.

      --
      -> Sometimes, you just gotta break free from the shackles of proprietary code.
  37. Reiserfs by Anonymous Coward · · Score: 4, Interesting

    I'm sure I'm not the only one who's wondering if Reiser 4 will go into the stock 2.6! So: does anyone know?

    1. Re:Reiserfs by Anonymous Coward · · Score: 1, Informative

      No, since Reiser4 hasn't even been released yet, AFAIK, and even when it has, it will require a lot of testing. Reiser4 was one of the things I was looking forward to most in 2.6, so that I could install Gentoo with it, and now I'm going to have to wait much longer since there is no reasonable way to patch the kernel while installing Gentoo and because Reiser4 will not be included in the stable kernel due to significant changes to VFS code.

    2. Re:Reiserfs by bazik · · Score: 1

      Well, I dont know about 2.6, but you can install it on 2.5 tough :)

      --


      --
      One by one the penguins steal my sanity...
    3. Re:Reiserfs by LarryRiedel · · Score: 5, Interesting

      I think it is safe to say nobody knows if Reiser4 will go into the stock 2.6 kernel, but I think the principals would like it to happen, and depending on how well the Reiser4 beta performs this summer, it should be possible, as long as it does not appear that adding the Reiser4 code would disrupt existing code.

      Larry
    4. Re:Reiserfs by bn557 · · Score: 1

      actually, all you need to do is use the host environment (pre-chroot) to DL the patches, and then:

      emerge development-sources
      cd /usr/src/linux-beta
      bzcat /path/to/patch.bz2 | patch -p1 --dry-run
      [check to see if all went well]
      bzcat /path/to/patch.bz2 | patch -p1

      and follow your normal make system.

      and on kernel compiling, I like the new 'make help' or 'make all' and then 'make modules-install' system.

      Pat

      --
      Humans are slow, innaccurate, and brilliant; computers are fast, acurrate, and dumb; together they are unbeatable
    5. Re:Reiserfs by Micah · · Score: 1

      I would suspect that the Gentoo folks will distribute a version of the kernel with Reiser4 ... either gentoo-sources, or maybe reiser4-sources (currently like they distribute xfs-sources -- 2.4 + XFS, which itself will be unnecessary in 2.6).

    6. Re:Reiserfs by Malketh · · Score: 1

      Actually there's something else you have to do, or else the modules won't be loaded:

      emerge module-init-tools

  38. What the heck?! by aashtonk0 · · Score: 1, Offtopic

    I know this is kind of off the topic but could someone tell me if Slashdot has message boards, or just these comments. I'm trying to find some answer for some random question I have regarding a carreer in technology and some question on my network here at home. Maybe I'm blind but I can't seem to find any message boards on the site to ask my questions. If Slashdot doesn't have any message boards then could someone recommend some message boards where true techs hang out? Thanks

    1. Re:What the heck?! by aetherspoon · · Score: 2, Informative

      Basically, Slashdot has a story comment system that sorta resembles boards as well as a story submission system that sorta resembles a moderated topic list.

      It isn't a messageboard site though.

      --
      --- Ãther SPOON!
    2. Re:What the heck?! by aashtonk0 · · Score: 1

      Whats a good site to use then? A site that readers of Slashdot use?

    3. Re:What the heck?! by Brightest+Light · · Score: 1

      I would recommend the Ars Technica OpenForum

    4. Re:What the heck?! by puckhead · · Score: 1

      fc. I'm only half kidding. There are some knowledgeable people there. Even if they do have the smelly butt.

      --
      Watching Cowboy Bebop in my jammies, eating a bowl of Shreddies.
    5. Re:What the heck?! by Anonymous Coward · · Score: 0

      You could always submit an "Ask Slashdot" article, but even if it got posted, this is the last place to look for advice.

    6. Re:What the heck?! by zmedico · · Score: 1

      For Linux related questions you can try www.linuxquestions.org

    7. Re:What the heck?! by BigBadBri · · Score: 1
      We are /. readers!

      We don't need no steenking advice!

      --
      oh brave new world, that has such people in it!
    8. Re:What the heck?! by darc · · Score: 4, Funny

      I recommend "Ask slashdot (http://ask.slashdot.org)", which is sort of a newbie forum for stupid questions that can be solved with google. So, like, post all your issues, such as:

      "How do I mod my xbox"
      "Should I overclock my CPU"
      "How do I make everything more faster"
      and,
      "This question is just begging to have all replies start with IANAL"

      Join the club!

      --
      Tired of legitimate data sources? Try UNCYCLOPEDIA
    9. Re:What the heck?! by Gothmolly · · Score: 0, Troll

      Check here for all the Slashdot info you need.

      --
      I want to delete my account but Slashdot doesn't allow it.
  39. load kernel from kernel? by gTsiros · · Score: 2, Insightful

    What about that? Will we be finaly able to switch kernels without a reboot?

    I could google for it, but hearing peoples' comments about these things is much more interesting... :D

    --
    Looking for people to chat about multicopters, coding, music. skype: gtsiros
    1. Re:load kernel from kernel? by djcapelis · · Score: 2, Informative

      I think it's probably refferring to the User mode Linux patch perhaps? Which allows one kernel to act as a parent for another to allow a sandbox to run a kernel in. Helps with debugging and telling someone you're giving them a dedicated server when you have six kernel instances running on the same box.

      --
      I touch computers in naughty places
    2. Re:load kernel from kernel? by kasperd · · Score: 1

      What about that? Will we be finaly able to switch kernels without a reboot?

      I did that back in the 2.2 days with monte. Later with 2.4 kernels I did a few changes, added a feature I was missing, fixed a bug and such stuff. In case you want to see it. But it was never completely stable and lacked SMP support.

      kexec might be a better alternative. AFAIK it is being maintained and might even have made it into the 2.5 kernel.

      --

      Do you care about the security of your wireless mouse?
    3. Re:load kernel from kernel? by Daniel+Phillips · · Score: 4, Interesting

      "What about that? Will we be finaly able to switch kernels without a reboot?"

      I did that back in the 2.2 days with monte. Later with 2.4 kernels I did a few changes, added a feature I was missing, fixed a bug and such stuff. In case you want to see it. But it was never completely stable and lacked SMP support.

      kexec might be a better alternative. AFAIK it is being maintained and might even have made it into the 2.5 kernel.


      It was only a couple of years ago that knowledgeable people were calling this idea ridiculous, and giving good reasons, however progress has marched on, and we're actually coming within sight of it. The basic challenges are much the same as for hotplug cpus, hotplug memory, process migration in a cluster, and yes, kexec, all of which are being worked on or already working. So I'll go out on a limb and predict that hot-kernel swapping will be demonstrated during the 2.7 timeframe. It won't be perfect, but such things never are in the first cut.

      The thing that makes hot kernel swapping practical is the stable api between userland and the kernel. Big changes there are few and far between, and they can be special-cased.

      --
      Have you got your LWN subscription yet?
    4. Re:load kernel from kernel? by pndiku · · Score: 1

      Kexec is a patch that allows you to reboot a kernel from another kernel that is likely to be a part of later 2.5/2.6 kernels. It's maintained by Eric Biederman and can be downloaded here.

      LWN has a brief article about kexec here

  40. stability by Anonymous Coward · · Score: 1, Informative

    (of course, a beta version of Linux is probably more stable than a release version of Windows

    I'm posting this anonymously because I'd be ashamed to have my name tied to defending Windows. Your comment is definitely true for versions of Windows up through ME. But I've been running XP on a Sony Vaio for the past fourteen months, and I have never had to reboot. In fact, I don't even know if XP has a blue screen of death, cuz if it does I've sure never seen it. Despite its thousand liabilities and the fact that Windows helps fund a scummy corporation, I don't think that XP can be criticized for instability.

    1. Re:stability by Anonymous Coward · · Score: 0

      I second that. I have used every major version of Windows since 3.1, and with XP (I use Professional myself) they finally got it right. Not a single blue screen in the last 16 months on my machine. The only times i've had to reboot were to install new hardware and power outages. And the occasional re-arrangement of my office. Not a single blue screen, period. Now on the other hand, when I tried dual booting XP and Mandrake 8, i'd have to reboot almost daily due to it freezing up or spitting out some "kernel panic" jibberish. You call that an improvement? Damn linux nuts, go back to smoking your bongs in your dad's basement.

    2. Re:stability by AresTheImpaler · · Score: 1
      I don't even know if XP has a blue screen of death

      Yes, it does have one. Damn it, am I the only one that has seen it or what? It was worst than before, it didn't tell me anything except to contact my computer technician... so I send myself an email. And even worst, windows didn't write any error in any of the logs. It really took me a while to fix that machine.

    3. Re:stability by Anonymous Coward · · Score: 0

      what was the problem?

    4. Re:stability by Anonymous Coward · · Score: 0

      XP has been, for me and in the experience of my friends who have used it, on the whole less stable than 2K. I actually don't mind 2K so much, from a stability point of view.

    5. Re:stability by treke · · Score: 1

      First time I saw it was while playing solitaire with nothing else running :)

    6. Re:stability by Maimun · · Score: 1
      Not attempting to imply that XP is unstable, of course, just an experience. I use Linux both at home and at work and haven't touched much 'doze since v3.11. An office mate at the university was showing me XP once, since I had not seen any in action before (just screen shots on www). I asked him whether XP has utility like "su" for *NIX, he said not really, but XP can handle multiple users logged in, though in different sessions (as opposed to "su"). So, without logging out, he went somehow to the log-in prompt, typed another username & pass, and ... the machine rebooted.

      I mean, seriously, one moment he pressed Enter, next moment the screen became black (no BSOD), and then the BIOS initialisation started with the memory test.

    7. Re:stability by Blkdeath · · Score: 1
      I'm posting this anonymously because I'd be ashamed to have my name tied to defending Windows. Your comment is definitely true for versions of Windows up through ME. But I've been running XP on a Sony Vaio for the past fourteen months, and I have never had to reboot. In fact, I don't even know if XP has a blue screen of death, cuz if it does I've sure never seen it.

      Contrary to longstanding contention here on Slashdot, one's personal experience with an operating system on a single computer (especially one tailor-made to be supported correctly by XP) are not indicative of product failure.

      I work with Windows machines on a daily basis. Windows XP does crash. One sure-fire way to make it unstable at one point seemed to be installing differing brands of SDRAM simultaneously. Of course, another great way to make Win2k/XP as useful as a bucket of sand is to replace the motherboard. Sure, you don't have to re-install, per se, but you do have to re-copy the entire operating system and re-apply all service packs and product/security updates.

      Despite its thousand liabilities and the fact that Windows helps fund a scummy corporation, I don't think that XP can be criticized for instability.

      Sure, when you compare it to the house-of-cards operating systems that preceeded it (9x/ME), it's solid as a rock. However, when you get into the server arena and critical use, high load situations and start comparing it to the well-established UNIX, Solaris et al. and even the venerable Linux you start to notice a significant difference in reliability.

      I can tell you emperically that I've seen more "Internal Server Error", "Server too busy to handle your request", etc. messages from IIS than from Apache. donotcall.gov, as a matter of fact, has been having reliability issues right from the outset.

      In short, you were right to post anonymously.

      --
      BD Phone Home!

      Shameless plug. Like you weren't expecting it.

    8. Re:stability by Huogo · · Score: 1

      XP does have su, its called runas. What he showed was "fast user switching" where you can log out and leave a user running, but you can also go to the commandline and use the runas program to run a program as a user with admin abilities.

    9. Re:stability by log2.0 · · Score: 1

      I dont second that :) I have had windowsXP Blue screen and stuff up twice on me now. The same thing has been happening to computers at work (I look after a small (40 comps) windows network). The thing is, when winXP stuffs up, you cant even get into safe mode to copy important files. You used to be able to at least get into "Safe mode command prompt only" with win9X. With winXP, safe mode requires a graphical boot... Also, I must point out that on the exact same computer, im running gentoo and havent had any problems at all (accept taking time to compile...but its worth it). So, Microsoft lost another customer.

      --
      Can your karma go above being Excellent?
    10. Re:stability by MsGeek · · Score: 1
      I can tell you emperically that I've seen more "Internal Server Error", "Server too busy to handle your request", etc. messages from IIS than from Apache. donotcall.gov, as a matter of fact, has been having reliability issues right from the outset.

      Ahahahahahaha! Netcraft.Com has it in black and white. IIS on Windows 2K Server.

      Attention, webmaster@donotcall.gov! We have the way out!

      I'll take the Vegas odds on donotcall.gov being one of the first to fall in the skript kiddie website hax0ring competition on Sunday...just kidding...

      --
      Knowledge is power. Knowledge shared is power multiplied.
    11. Re:stability by Arctic+Dragon · · Score: 1

      I third that. ;)

      I've been using XP Pro since shortly after its release, and stability has been rock-solid. I was strongly considering installing Win2K instead, but decided to give XP a try. It's a decision I never regretted.

    12. Re:stability by jrockway · · Score: 1

      Windows XP is stable, but the process scheduler just isn't very good. I use NetBeans and Mozilla a lot, and the machine just dies every so often (for a while). Pressing CTRL-ALT-DEL doesn't do anything until windows realizes that it needs to stop jacking off or whaterver it's doing in the background. It'd be nice if I could kill processes quickly like I can in Linux.

      All in all, I'll be happy to have my Linux box back from the repair shop. I'm just using my old iMac/233 now. With Linux it's more usuable than that Pentium4 box. *sigh*.

      (And before you ask what happened to my computer, I'll tell you. Somebody at my school managed to steal the ram, video card, and literally fry the DC/DC converter in it, and THEN get the machine stuck inside it's case [ a G4 cube ]. So yeah, it needed professional repairs. Moral of the story: injure your roommate when he doesn't lock the door.)

      --
      My other car is first.
    13. Re:stability by WuphonsReach · · Score: 1

      Blue screen exists... drop a faulty memory module in and watch the fun.

      Biggest problem that I have with XP is that it won't alway recognize a mounted PGPDisk which requires a logout/login.

      --
      Wolde you bothe eate your cake, and have your cake?
  41. Re:IMPLEMENT SPLIT PANE IN NAUTILUS by Anonymous Coward · · Score: 0

    where do you get 20 (!!!) developers donating their free time on nautilus?

  42. Uh, question. by Anonymous Coward · · Score: 2, Funny

    What's the name of the new filtering tool that will "obsolete" iptables?

    1. Re:Uh, question. by Anonymous Coward · · Score: 3, Funny

      Ha ha. Good one. Every f*cking time they do a major release of a kernel they
      change the ip filtering. Let's guess the new name - ipchairs, ipwhips, ipstools, . . . ? ? ?

    2. Re:Uh, question. by Anonymous+DWord · · Score: 2, Funny


      ipspispopd

      --
      "If he thinks he can hide and run from the United States and our allies, he's sorely mistaken." Bush on bin Laden
    3. Re:Uh, question. by Timbo · · Score: 1

      iddqd surely..?

    4. Re:Uh, question. by Anonymous Coward · · Score: 0

      frickin' genius! no walls for you!

    5. Re:Uh, question. by stor · · Score: 3, Informative

      Well not obsolete it but people may be interested in the new bridging firewall code, ebtables

      And yes I got the joke...

      Cheers
      Stor

      --
      "Yeah well there's a lot of stuff that should be, but isn't"
    6. Re:Uh, question. by kliment · · Score: 1

      uhm...ipmatrices?
      or... iphypercubes?
      that might actually work... (idea for 2.8)

    7. Re:Uh, question. by mikefoley · · Score: 1

      ipfreely is my vote..

      --
      What's my Karma Mr. Burns? "Excellent"
  43. Re:What has happened to Slashdot? by Anonymous Coward · · Score: 1, Informative

    preeminent or pre-eminent ( P ) Pronunciation Key (pr-m-nnt) adj. Superior to or notable above all others; outstanding.

    Not gonna comment on parent poster's spelling skills, but you, sir, are in dire need of a dictionary.

  44. For fucks sake by Anonymous Coward · · Score: 0
    random question I have regarding a carreer in technology

    If you don't even know to use Google, I would suggest you avoid a career in technology.

    Or, you could just post your questions anyway...

  45. LINUX IS THE FUTURE! by Anonymous Coward · · Score: 0

    Dig that slogan! Steal that slogan! I'am a HP-UX admin (also know Solaris quite well) and I admit it now - LINUX REALLY IS THE FUTURE OF COMPUTING!!! I have no fear, I think it's actually exciting! Nobody knows where we're going!

  46. Re:Oh yeah? Well, I'm on 2.5.75, buddy! by ghum · · Score: 4, Funny

    t my mouse speed in gnome was sped up by about 10x over 2.4

    great news! 900% speedup from Linux kernel 2.4 to 2.5.75

  47. Er... by Anonymous Coward · · Score: 0

    ...Mac OS X won't run on Intel hardware. That could be one possible reason.

  48. Re:Microsoft leads the way with SP4 for Windows 20 by rekkanoryo · · Score: 1
    With the windows kernel change, there was also a significant change from Win9x to XP. Don't look at me like I'm an idiot; XP Professional is an incremental upgrade to 2000 Professional, but XP Pro and XP Home are both major release upgrades to Win9x platforms. For the home user, Windows version jumped from 4.0.950, 4.1.1998, 4.1.2222, or 4.9.3000 to 5.1.2600, a significant change both in functionality and stability. (Before anyone bitches about this, let me say something. I have worked on 8 different PCs with radically different hardware. XP runs well on all these PCs and I can count on one hand the times I've seen XP crash and it not be because of bad hardware.)

    On my own systems, I noticed a huge improvement in both support and responsiveness when transitioning from 2.2.x to 2.4.0-2.4.10...after 2.4.13, I noticed even further improvement in responsiveness. However, I can deadlock any and all 2.2.x and 2.4.x kernels very easily--run VMWare and try to access a CD-ROM drive. This happens on two wildly different systems and both when using ide-scsi emulation for my cdrecorder and when not using it.

    I hope that 2.6.x will yield further improvements, and I'm keeping optimistic on that one. BTW, my prediction is May 22, 2004 for a definite 2.6.0.

  49. Re:Microsoft leads the way with SP4 for Windows 20 by Jellybob · · Score: 1

    I'll second that, I did a test install on a workstation at work, and it now suffers much more random crashes.

    Guess my work box needed a copy of Linux on it anyway though ;)

  50. Knoppix? by h0mi · · Score: 1

    I've downloaded Knoppix and I've not been able to get the networking working on my Asus A7N8X deluxe MB. If anyone has any ideas please let me know.
    I'm hoping when they upgrade the kernal in the knoppix distro I can finally use mozilla etc. on the net and can see how things work.

    1. Re:Knoppix? by klingens · · Score: 1

      NVidias driver for the intgretated NIC in the nforce2 chipset is closed source only. There just isnt any source available. EIther it works with 2.5 or it doesnt (the driver is for 2.4)

      I can (barely) understand why a videocard driver is binary only, but not a cheap, a dime a dozen, netowrd chip

    2. Re:Knoppix? by Nynaeve · · Score: 1

      It may be that all of the IP is in the software. The network chip could be the NIC equivalent of a software modem (I don't know). As an example, that the SB 16 PCI is just a DSP. The vast majority of Ensoniq's software engineering effort is in the driver.

      This creates a predicament because in order for a driver to be "certified" by Microsoft, they require source code to the driver. A ridiculous request when the source code is 90% of the product! Thus, you can't open-source the driver for the same reason.

      Additionally DirectX 9.0 drivers (perhaps the linux drivers too) from nVidia and ATI include run-time compilers for the shader programs. These are closely guarded trade secrets that will never see the light of day.

    3. Re:Knoppix? by anno1602 · · Score: 1

      It may be that all of the IP is in the software

      Huh? An IP stack in a NIC driver?

      It's a Joke. Laugh (or don't, but don't take me seriously).
  51. Re:Oh yeah? Well, I'm on 2.5.75, buddy! by kasperd · · Score: 1

    Really? Where did you get that kernel? It is not on kernel.org yet.

    --

    Do you care about the security of your wireless mouse?
  52. Re:Should I get excited over any of these features by Anonymous Coward · · Score: 0

    thats insane!

  53. xset! by bahamat · · Score: 2, Informative

    Does nobody even know how their system works anymore? xset people! xset!!

    1. Re:xset! by Alan · · Score: 1

      I know xset, my problem/bitch was that the sensitivity changed that much with simply a kernel change, when nothing like this happened in the 2.2->2.4 changeover.

    2. Re:xset! by shellbeach · · Score: 1
      xset people! xset!!

      Agreed. It always fascinates me why Gnome/KDE feel the need to re-invent the wheel (heh, literally :) for things like mouse settings, keyboard settings, etc, when X already handles these perfectly well.

      I've been playing around with 2.5.73 recently using WindowMaker, and I haven't noticed any problems with X mouse performance/accel ...

      In fact, I'm in the process of changing over to the 2.5 series - in my experience (albeit of about a week) it seems stable and highly usable. (The delay is that I'm switiching distro's as well, from bloated Mandrake to minimalist Crux - and I need to download and compile a lot of software!)

    3. Re:xset! by Feztaa · · Score: 1

      It always fascinates me why Gnome/KDE feel the need to re-invent the wheel (heh, literally :) for things like mouse settings, keyboard settings, etc, when X already handles these perfectly well.

      Because they're trying to develop an easier-to-use interface for that kind of work. Your grandmother doesn't want to use xset to changer her mouse sensitivity, I'm sorry to say it, but it's true :)

    4. Re:xset! by shellbeach · · Score: 1

      But do Gnome and KDE merely provide a frontend to xset, or have they created their own specific managers? I was always of the impression that they'd done the latter, but I could be wrong - in which case ignore my comment. I never meant that everyone should use xset via the command line, merely that Gnome and/or KDE could simply have provided a frontend to xset instead of "re-inventing the wheel" and making a utility that ultimately doesn't work under the new kernel (from what people are saying ...)

    5. Re:xset! by Spy+Hunter · · Score: 1
      The problem with xset is it doesn't provide a way to set the base mouse speed. In fact I don't think there is a way to set the base mouse speed for XFree at all, which really sucks. The only thing you can do is set the acceleration (the multiplier that XFree applies when you move the mouse fast, which makes it easier to jump across the screen while still giving you precise slow-speed control). What really happened in the 2.4.x -> 2.5.x jump (for me at least) was that the kernel got some sort of new mouse driver that reports that the mouse moved a larger distance for the same actual movement than the old driver. This increases the base speed that XFree multiplies. This can't really be compensated for with xset. If the base speed is too fast and you just set your multiplier low, then it becomes harder to control the mouse precisely over short distances.

      If somebody knows the way to control XFree's base mouse speed (the speed that you get without any multiplier at all), I'd love to be proven wrong about this. Don't tell me that xset can do it though, because it can't.

      --
      main(c,r){for(r=32;r;) printf(++c>31?c=!r--,"\n":c<r?" ":~c&r?" `":" #");}
    6. Re:xset! by bahamat · · Score: 1

      Setting the accel to n and the threshhold to 1 will cause the mouse to have a constant speed set at n

    7. Re:xset! by Spy+Hunter · · Score: 1

      Hey, that's a good idea. If there was some way to have more than one acceleration value, that would be perfect.

      --
      main(c,r){for(r=32;r;) printf(++c>31?c=!r--,"\n":c<r?" ":~c&r?" `":" #");}
  54. Re:Microsoft leads the way with SP4 for Windows 20 by FrozedSolid · · Score: 1

    Win9x = 9x kernel
    WinXP = NT kernel
    Almost completely different beast.

    Plus, what's to say this bug isn't simply a problem with vmware?

    --
    When all freedom is outlawed only the outlaws have freedom
  55. I'm suing Linus for this by Sabalon · · Score: 2, Funny

    These vaporware announcements must stop. Already since Linus announced this I have noticed a drop-off in downloads of the 2.4 kernel.

    These anti-competitive practices need to be stopped. A kernel-lead developer such as Linus should have to compete on the same level as everyone else for his kernel to get used. :)

    1. Re:I'm suing Linus for this by zerocool^ · · Score: 1

      Dude, just go with the flow. After Linus finishes work on 2.6.0, mabey he'll finally put the finishing touches on duke nukem: forever.

      --
      sig?
    2. Re:I'm suing Linus for this by Sabalon · · Score: 1

      There are some things in this world, no matter how outrageous they may seem that could turn out to be fact.

      But c'mon - at least be realisitic - using Duke Nukem Forever and finish in the same sentance?

      My four year old pointed to the screen and laughed at that :)

    3. Re:I'm suing Linus for this by zerocool^ · · Score: 1

      bravo =)

      --
      sig?
  56. Re:Microsoft leads the way with SP4 for Windows 20 by damien_kane · · Score: 1

    With the windows kernel change, there was also a significant change from Win9x to XP

    True, but you can't include 9x in your argument.
    The Windows XP kernel is based off of the Windows NT4 kernel.
    The Win98 kernel (also the basis of the ME kernel) is based off of the Win95 kernel.

    Think of it this way, 2.6 is based (very loosely, albeit) on the 2.4 kernel, (2.2 kernel, etc.. to Linux-0.x).

    Your comparison of the W2K kernel to the W98 kernel is like comparing the Linux kernel to the SCO kernel.

    No matter how much FUD SCO publishes toward the contrary, the Linux kernel does not use the same codebase of their Unix(tm) kernel.
    I merely use SCO as a reference because that's all everyone talks about, and almost everyone wanes incessantly about how Linux is not SCO, so I figured you could understand it this way.
    To fend off the flames, s/"SCO"/"AT&T"|"Solaris"/

  57. Re:Oh yeah? Well, I'm on 2.5.75, buddy! by Anonymous Coward · · Score: 0

    I was really impressed by the mouse responsiveness of 2.5.67 for one very specific application: RTCW (Return To Castle Wolfenstein).
    The new scheduler is a killer or at least allowed me to become a better one :-)

  58. Re:Oh yeah? Well, I'm on 2.5.75, buddy! by bn557 · · Score: 1

    nor has it meen mentioned on lkml

    pat

    --
    Humans are slow, innaccurate, and brilliant; computers are fast, acurrate, and dumb; together they are unbeatable
  59. Re:Getting better every day by borgdows · · Score: 1

    do you mean in ten more years Linux might DIE ??!

  60. Silly Fanboy by Anonymous Coward · · Score: 0

    Of course, Apple fanboys like you are the reason why people don't buy Macs. They're turned off by fanboys like you, and those Mac kooks that go on Mac cruises and shit. You're only hurting the cause man.

    Brought to you by the goatse public education center.

  61. Re:Oh yeah? Well, I'm on 2.5.75, buddy! by Anonymous Coward · · Score: 0

    ;-) lol

    So what do you do for a living. Marketing?

  62. Re:Should I get excited over any of these features by Anonymous Coward · · Score: 0

    Well not so insane in a 8 way multiproc machine, where one of the processors dies.

  63. Rant by Anonymous Coward · · Score: 0, Offtopic

    I know this is off-topic, but bite me, I need to get this off my chest.

    The frat boys are starting to piss me off. You know who I'm talking about. The "Linux sucks, MS is the way to go" frat boys. Typical frat boy mentality; anything with an alternative air is for losers and hippies; those that are with it run what everyone else runs.

    Their arguments would have made sense, two or three years ago. But Linux and associated software has matured, and is ready for the desktop. But the frat boys whine, "oh, it's so hard to install a printer." "Oh, my modem wasn't recognized". "Oh, I've got work to do now, I can't wait for Linux to get there." "OS hippies." Bunch of closeted, repressed homos.

    Yeah, Linux can be tough sometimes, but the payoff is great. No more viruses. No more MS. No more BSOD's. No more nancy boy OS. Actual security. A real OS. It's worth it, frat boys, but you won't know that until everyone else runs it, and then you'll get it. Until then, you'll run what everyone else in your idiotic, unthinking clique runs, get viruses and worms, re-install every 6 months, and cast scorn on the open source 'hippies'.

    Fuckwits. They pissed me off when I was in school, and they piss me off now. Go back to your sales reports and your power ties, and let those who get it help change the computing world for the better without your infantile mockery.

    1. Re:Rant by Anonymous Coward · · Score: 0

      For those of us that use our computer's as productivity tools you will find that ease of use and a consistent interface is far more important to us than sticking it to Microsoft for political reasons. Sorry to break the news to you, although Linux as a desktop OS has made great strides in the past 3-4 years it still has a long way to go. Contrary to your statement, things like "oh my printer/modem/some_other_random_device won't work" will continue to be one of the primary barriers to Linux being accepted as a desktop OS. Things like "oh I need this drive for this device so I need to recompile my kernel/modules in order to use it" just won't fly with an end user when they are used to slapping a cd into a drive and having the driver installed for them.

      As far as viruses or BSODs - I run Windows XP as my main OS and I don't get either. It's a tired argument that stopped applying to people that don't run as admin under NT operating systems since oh... the NT3.1 beta was available?

      Strangely enough though, my current debian install (I swap distro often) on the same box occasionally hard freezes... go figure. I'm almost certain that the problem is ACPI related - but I haven't bothered to troubleshoot it.

  64. Ahem Framebuffers? by hughk · · Score: 1

    Is the framebuffer stuff fixed yet? Last time I liked (around 2.5.6x or so) it was very badly broken.

    --
    See my journal, I write things there
    1. Re:Ahem Framebuffers? by foonf · · Score: 1

      As of 2.5.72 I think, the Matrox framebuffer at least compiles again. There is too much screen corruption on my 8mb G200 for it to be really usable yet...but its an improvement over the previous total breakage.

      --

      "(Man) tries to live his own life as if he were telling a story. But you have to choose: live or tell." --Sartre
    2. Re:Ahem Framebuffers? by hughk · · Score: 1

      Thanks, then it looks like it might be in with a chance for 2.6. I am surprised though that it was merged in at at all in that condition.

      --
      See my journal, I write things there
  65. Single proc file system by memmel2 · · Score: 1

    This may sound a bit wacked but here it goes. For a lot of uses I'd like to not mount a file system but instead access the block device from a single user level process via custom syscalls any sugestions on how to do this in 2.6 plus what is the best file system to use. I tend towards ext3 but a simple BSD filesystem may be a better answer. If you don't mount the root file system then a embedded linux is hack proof.

    1. Re:Single proc file system by Anonymous Coward · · Score: 0

      I'm not sure what you mean or why you want to do this. You could probably write a filesystem driver that somehow communicates with a userspace process... I think? But why?

      Or you could write library routines that effectively act as a filesystem driver... Again, why?

      Also... This should possible in HURD, from what I have read about its design. It is actually designed to do things like that.

  66. Oh really Fool? Well, I'm on 7.0 buddy! by Bill,+Shooter+of+Bul · · Score: 1

    Heck, its open source I can put the kernel version number at what ever level I want to.

    --
    Well.. maybe. Or Maybe not. But Definitely not sort of.
  67. Re:Oh yeah? Well, I'm on 2.5.75, buddy! by noda132 · · Score: 1

    Kernel is as stable as the rocky mountains. Been compiling Mozilla non-stop in gcc for the last 3 hours with no problems.

    A whole 3 hours? Wow, must be ready for release!

    Reminds me of Microsoft's crazy uptimes of "three, six months."

  68. Re:Oh yeah? Well, I'm on 2.5.75, buddy! by Anonymous Coward · · Score: 1, Informative

    From what I heard, Linus Torvalds himself didn't initialy enjoy the patch submission of another developer which caused prioritization improvments to X server and Input Devices (Keyboard, Mouse). You are talking about that patch. To my remembrance, Linus said, somewhere along the lines of, "Windows NT did this...bad...verry bad...We are supposed to entreat all applications/devices equaly, not priority in such of others...bend over, Ralph#~Jim#~Miguel, I'm spanking you today...ok, you can have the patch included. No hard feelings?"

    This improvment you speak of is some sort of modification to allow automatic renice(1). In the past, using a Dual Pentium Pro UltraWide SCSI graphics workstation, I had a problem with keyboard and mouse keys becoming stuck in the software state as well as audio playback skipping. Perhaps this patch is what makes the lame determination upon what peice of software needs priority over other software; that still doesn't help the system dig itself out of a whole when every peice of software wants highest priority or whatnot. This code, honestly, is a Bad Thing(TM) != Good Thing(TM).

    (1)renice, give priority to applications. System level application "nice" with numerical parameter and string parameter; -20 being lowest priority, 0 being normal priority, +20 being highest priority; followed by the name of the daemon or thread or application that will have its priority changed.

  69. Re:Microsoft leads the way with SP4 for Windows 20 by noda132 · · Score: 1

    SP4 does nothing else but fix bugs.

    Yup. We fixed a bug by applying it on our SQL server at work. It rebooted randomly 4 times the next day.

    Really.

  70. Overly-pedantic correction by Anonymous Coward · · Score: 0

    In 2.8, the focus will be on optimizing the core algorithms to run on large-scale NUMA machines.

    I am shocked for you to imply that the stable series, 2.8 being an even-numbered codetree, would still need to be optimized for NUMA machines. Beta is for the odd-series codetree. It would be a Silver Herring for the optimizing of NUMA machine algorithms in the 2.7 series, with production-quality releases being placed on the 2.8 series.

    I never!

    Yes you did!

    Spank me, I'm naughty.

    No, you have been forgiven of your spanking.

    That explains why my ass is soar.

    Exactly, you have beforehand-given a spanking. Gosh I love how English words suck.

  71. No by Anonymous Coward · · Score: 0

    Also, I am Patricia's real father.

    You are not Patricia's father. Patricia's father is in heaven. Truth is sovereign.

    Holy Bible, Mathew 23:9,
    King James Version
    And call no man your father upon the earth: for one is your Father, which is in heaven

  72. The bigger reason is that it's based on BSD... by Anonymous Coward · · Score: 0

    Fact : *BSD is dying

    It is official; Netcraft confirms: *BSD is dying One more crippling bombshell hit the already beleaguered *BSD community when IDC confirmed that *BSD market share has dropped yet again, now down to less than a fraction of 1 percent of all servers. Coming on the heels of a recent Netcraft survey which plainly states that *BSD has lost more market share, this news serves to reinforce what we've known all along. *BSD is collapsing in complete disarray, as fittingly exemplified by failing dead last in the recent Sys Admin comprehensive networking test.

    You don't need to be a Kreskin to predict *BSD's future. The hand writing is on the wall: *BSD faces a bleak future. In fact there won't be any future at all for *BSD because *BSD is dying. Things are looking very bad for *BSD. As many of us are already aware, *BSD continues to lose market share. Red ink flows like a river of blood.

    FreeBSD is the most endangered of them all, having lost 93% of its core developers. The sudden and unpleasant departures of long time FreeBSD developers Jordan Hubbard and Mike Smith only serve to underscore the point more clearly. There can no longer be any doubt: FreeBSD is dying.

    Let's keep to the facts and look at the numbers.

    OpenBSD leader Theo De Raadt states that there are 7000 users of OpenBSD. How many users of NetBSD are there? Let's see. The number of OpenBSD versus NetBSD posts on Usenet is roughly in ratio of 5 to 1. Therefore there are about 7000/5 = 1400 NetBSD users. BSD/OS posts on Usenet are about half of the volume of NetBSD posts. Therefore there are about 700 users of BSD/OS. A recent article put FreeBSD at about 80 percent of the *BSD market. Therefore there are (7000+1400+700)*4 = 36400 FreeBSD users. This is consistent with the number of FreeBSD Usenet posts.

    Due to the troubles of Walnut Creek, abysmal sales and so on, FreeBSD went out of business and was taken over by BSDI who sell another troubled OS. Now BSDI is also dead, its corpse turned over to yet another charnel house.

    All major surveys show that *BSD has steadily declined in market share. *BSD is very sick and its long term survival prospects are very dim. If *BSD is to survive at all it will be among OS dilettante dabblers. *BSD continues to decay. Nothing short of a miracle could save it at this point in time. For all practical purposes, *BSD is dead.

    Fact: *BSD is dying

  73. Re:Oh yeah? Well, I'm on 2.5.75, buddy! by shellbeach · · Score: 1

    Yeah, slashdot really should have tags so people can spot the joke ... :)

  74. "Bloated" by Anonymous Coward · · Score: 0

    Oh my god, you elitist baby.
    Oh yes, so bloated. You people obsessed with slimness are the same ones who complain about some superfluous app not being included by said "slim" distro.

    Grow up and learn how to do rpm -e

    1. Re:"Bloated" by Dwonis · · Score: 1

      No true bigot runs an rpm-based distribution. Real Bigots run Debian, Slackware, Gentoo, or Linux From Scratch.

    2. Re:"Bloated" by Anonymous Coward · · Score: 0

      Amen ! Preach on Brother. Slackware it is.

  75. Nifty. by Anonymous Coward · · Score: 0

    Anything like um, release notes for this branch?

  76. Re:Oh yeah? Well, I'm on 2.5.75, buddy! by ColaMan · · Score: 3, Funny

    Been compiling Mozilla non-stop in gcc for the last 3 hours with no problems.....
    on my 486. Oh look - ./configure has just about finished! And who said you needed the latest hardware?

    --

    You are in a twisty maze of processor lines, all alike.
    There is a lot of hype here.
  77. hmm by Trepidity · · Score: 1

    Is that the 'locate' database updating itself? On Debian I think that happens by default every 24 hours, at some time in the middle of the night. Basically builds a list of all the files on your hard drive, so you can do "locate blah" and quickly find where files are without searching the hard drive each time.

    Another possibility might be to check if DMA is on; sometimes the kernel won't turn it on, depending on your config and hardware. Try "hdparm -d /dev/hda" (or whatever your hard drive is). If it says off, do "hdparm -d1 /dev/hda" to turn it on.

  78. Re:Should I get excited over any of these features by Anonymous Coward · · Score: 1, Informative

    Umm, no the nanosecond patch is not critical for make on fast computers. Sometimes a file might get rebuild when it shouldn't. Thats all.

    Shared page tables are not in 2.5, nor are they likely to be in 2.6. It has nothing to do with multiple CPU machines.

  79. Re:Crick instarr? Plofit? by stor · · Score: 1

    I thought SCO told us that Linux was the Commie OS?

    Don't tell me they're lying about that too?

    Cheers
    Stor

    --
    "Yeah well there's a lot of stuff that should be, but isn't"
  80. Anyway what's so special about Linus? by DABANSHEE · · Score: 1

    Afterall Linux is open source, meaning anyone can hack the Linux kernal & create their own Linux 2.6.

    So why doesn't that happen? & what gives Linus & co the authority to determine the next Linux revisions? I'm not saying he shouldn't, I just wondering why it happens this way when AFICS open source should means its a free for all.

    1. Re:Anyway what's so special about Linus? by nich37ways · · Score: 1

      Well mainly because although you could make a patch and release it you couldn't call it Linux 2.6

      Linus holds the trademark on Linux, you could call it myKernel 2.6 but that would not make it Linux 2.6

      --
      37 - what does it stand for really...
    2. Re:Anyway what's so special about Linus? by Cro+Magnon · · Score: 1

      Mainly because nobody WANTS a free for all! It's much better to stick with ONE kernel. Everyone follows Linus partly because he started it in the first place, and partly because of his excellent reputation.

      --
      Slow down, cowboy! It has been 4 hours since you last posted. You must wait another few hours.
  81. Argh! by Eosha · · Score: 2, Funny

    Well crap...just this morning I updated to 2.4. Now I can't feel all cool anymore.

    --
    I have a girlfriend whose name doesn't end in .JPG
  82. Re:Microsoft leads the way with SP4 for Windows 20 by Anonymous Coward · · Score: 0

    Um, I think that his comparion stands because the W2K kernel is somewhat of a hybrid of both the w98 and the NT kernels. It was more of provening ground for before (full) Win9x compatablity could be intergated. This of course does not making very good for server/home use.

  83. devfsd and lvm by Dionysus · · Score: 2, Interesting

    What happened to devfsd and lvm? I know they were talking about replacing lvm, and I was wondering if the new code is in place?
    Also, I read somewhere that the developers were unhappy about devfsd, since 'nobody was using it'. I'm using it, so I'm hoping they don't remove it.

    --
    Je ne parle pas francais.
    1. Re:devfsd and lvm by Pegasus · · Score: 3, Informative

      I don't know if devfs is gone yet, but it's gonna be replaced by sysfs sooner or later. Lvm on the other hand is gone, replaced by device mapper, on which both lvm2 and evms2 are built. Evms2 looks extremely well for a nice gui volume management.

  84. Re:hmm by Sri+Lumpa · · Score: 1


    If updatedb (the program updating the locate database) only makes your hard drive for 5-10 seconds as the grandparent post said then you must have a bloody fast machine or a bloody small hard drive.

    --
    "The obvious mathematical breakthrough would be development of an easy way to factor large prime numbers." Bill Gates,
  85. Re:Oh yeah? Well, I'm on 2.5.75, buddy! by msh104 · · Score: 0

    -20 is the highest priority, 19 the lowest. ( try nice --help next time before posting )

  86. Re:Oh yeah? Well, I'm on 2.5.75, buddy! by kasperd · · Score: 1

    slashdot really should have <humour> tags

    You know... at first I read that as a <rumour> tag.

    --

    Do you care about the security of your wireless mouse?
  87. IDE Layer Rewrite by zoward · · Score: 4, Interesting

    I've been hearing though other channels that the IDE layer rewrite improves the IDE subsystem to the point where SCSI emulation won't be needed to drive an IDE CD burner. Can anyone confirm or deny this? If so, this will probably become my main reason to switch to 2.6 (although there are quite a few secondary ones too). Thanks linux team (and IDE rewrite folks)!

    --
    "Can't you see that everyone is buying station wagons?"
  88. Re:alleged stability by I(rispee_I(reme · · Score: 1

    Win2K and XP do in fact have their own special BSOD's, they're just hidden behind what I've come to call pseudostability. Right click "my computer",properties, Advanced tab, click "startup and recovery..." and note that the default setting for 2K and XP is to reboot on bluescreening, a behavior slightly better than doing nothing, but not nearly as nice as preventing it to begin with.

  89. Nothing to do with IDE rewrite by axboe · · Score: 5, Interesting

    You are correct in assuming you don't need ide-scsi to emulate a SCSI host for burning cdroms in 2.6, but it has nothing at all to do with the IDE rewrite.

    2.6 has support for queueing "generic scsi" commands through the block layer, using the same mechanism and transport as the regular read/write file system requests. So we can overload the sg (scsi generic) SG_IO and provide the same functionality for non-scsi attached devices (such as atapi burners). With a recent cdrecord, you can give the device with -dev=/dev/hdc for instance.

    Additionally, cd burning is now zero copy. The user space data buffer is mapped directly into the kernel for the dma operations. DMA is supported on a 4-byte boundary, where 2.4 and previous has required sector alignment (512 bytes) for any atapi dma operations.

  90. Huh? by Doctor+Crocodile · · Score: 1

    >Hotplug CPU Removal Support.
    I know Linux is wonderful but running without a cpu?

    1. Re:Huh? by Anonymous Coward · · Score: 0

      L1NIX R00cKZ!!

    2. Re:Huh? by ptr2void · · Score: 1

      Well, you should of course leave at least one (1) CPU plugged in :-)

  91. neccessary evil by Doctor+Crocodile · · Score: 1

    SP4 went onto our 2k workstations fine, but wrecked our metaframe box.

  92. So all dissies have to license the trademark by DABANSHEE · · Score: 1

    Off Linus?

  93. Re:Microsoft leads the way with SP4 for Windows 20 by listen · · Score: 1

    Wow, you can deadlock the kernel by inserting random code into the kernel ( vmware binary kernel modules)? Thats amazing!!

    As soon as you mess with binary kernel modules you can not expect Linux to guarantee stability, the modules could do anything they like. Really.

  94. Re:hmm by anno1602 · · Score: 1

    Is that the 'locate' database updating itself?

    Normally, cron updatedb is heavily niced (19 on my box). So performance shouldn't suffer too much, except perhaps for I/O-heavy work. But locking up? No.

  95. Re:Oh yeah? Well, I'm on 2.5.75, buddy! by Anonymous Coward · · Score: 0

    They improved the speed of quake by 10x you wouldn't be complaining would you, eh?

    Talk about Microsoft fanboys. Your old cheap mouse is now 10x better and all you can do is complain.

    I for one will save about $10M a year buying cheaper mice and using linux's new feature to make them quick.

  96. it does if DMA is off by Trepidity · · Score: 1

    When DMA is off, hard drive accesses can block, especially with a stock 2.4.x (non-preemptible, non-low-latency-patched) kernel. In some brief measurements I did, running updatedb could cause blocks of up to 500ms, which leads to some pretty crappy interactive performance until it finishes.

    1. Re:it does if DMA is off by anno1602 · · Score: 1

      blocks of up to 500ms
      But that's still an order of magnitude less than that what the OP is experiencing. Turning DMA on is a Good Idea in any case.

  97. Re:Microsoft leads the way with SP4 for Windows 20 by Anonymous Coward · · Score: 0

    You can't really compare 98 and NT as far as the kernel goes. This is because the Windows 98 is hardly a kernel at all. From a technical standpoint, it's just horrible, and they abandoned it for a reason. NT is thankfully, completely different.

    If any 98 code appears in the Win2k kernel, it must have been rewritten HEAVILY.

  98. Re:hmm by Anonymous Coward · · Score: 0

    That's like saying, "who likes to eat apples when we have oranges?"

  99. Re:Oh yeah? Well, I'm on 2.5.75, buddy! by tigga · · Score: 1
    Your old cheap mouse is now 10x better and all you can do is complain.

    It's like to say:

    Your watch is 10 times faster now - enjoy!

  100. Re:Microsoft leads the way with SP4 for Windows 20 by rekkanoryo · · Score: 1
    The point was that Linux isn't as stable as everyone claims. I should also have noted that I have had problems with DVD drives hanging the IDE interface in Linux but not in Windows (same PC, same drives). I don't complain about this because I discovered later that the DVD drive is rather unusual in several respects. The problem with VMWare appears to be when VMWare reading from the CD attempts to change the DMA mode, whether or not the change is necessary. Yes, I have reported this to VMWare technical support and received very positive responses. In the meantime, I have switched to setting VMWare's virtual CD-ROM drives to use ISO images instead, or done away with CD drives for the VM altogether where possible.

    BTW, if you're willing to break the terms of the VMWare license, you can see the source code for the VMWare kernel modules. This is how VMWare 2.x kernel module patches were made available on the net for those users using kernels newer than 2.4.6.

    There are very, very, very few kernels with which the precompiled "stock" modules that ship in the VMWare RPM work properly. When one of these kernels is not found, vmware-config.pl runs through compiling the modules, and if you care to catch it quick enough, the module source appears in /tmp. The perl script also quite frequently forgets to delete the source. Have at it.

  101. FOR FUCKS SAKE by Anonymous Coward · · Score: 0

    It's teh O(1) secheduler, cnut!!!1!!1!?/??!?/