Slashdot Mirror


2.4.9 Kernel Released

Justin writes: "Linus is off to Finland for a week or so and released 2.4.9. " Here is the Changelog for those of you interested. Yeah, it's probably gonna be a little crowded for a bit. Please post mirrors in the comments.

290 comments

  1. Re:Release early, release often by meisenst · · Score: 1
    If a kernel patchlevel (remember v Major.Minor.Patchlevel?) breaks your application, then I am led to believe that your application is very poorly programmed...

    I can't understand how that could possibly be correct. If the kernel changes and your program relies on the kernel, and your program breaks, the program is poorly written?

    If something is tweaked in a patchlevel release that breaks a subtle nuance that you were relying on, it might be because that nuance was never meant to be there in the first place. A great example of this is a patchlevel release of Checkpoint Firewall-1 a short while ago that changed a very subtle behaviour that a friend of mine was relying on. The behaviour was not correct, but that's the way the software worked, so that's how he had things set up. When Checkpoint "fixed" it, his rules were broken.

    With the sheer amount of code present in the kernel, it would strike me as very odd if some of these "features" don't exist.

    meisenst
    --
    Green's Law of Debate: Anything is possible if you don't know what you're talking about.
  2. Re:Please don't get me wrong by CrackElf · · Score: 2

    "I mean is there a Slahdot article when Microsoft gives out a new Windows 2000 SP? Including the changes and fixes (mirrored in the comments)?"

    They might, except knowledge of the SP (let alone the changes) implies a knowledge of proprietary intellectual knowledge, and you must have code ultra-violet m$ clearance to even think about pondering its existence.

    -CrackElf

    --
    "Blake is an idealist, Jenna. He cannot afford to think." - Kerr Avon, Star One, Blakes 7
  3. Re:FreshMeat by Anonymous Coward · · Score: 0

    hehehehhee same here!

  4. Re:wholy crap! by TrentC · · Score: 3, Funny

    Not even Microsoft cooks up that many service packs in this particular timeframe...

    That's because they typically deny a bug's existence for a couple of months before they get around to fixing it. :)

    Jay (=

  5. Re:2 compilation errors already by goonda · · Score: 1

    I have seen this problem too -- I _need_ NTFS fer chissakes, and 2.4.7 seemed
    to work fine. I get the same compilation problem with unistr.c:

    gcc -D__KERNEL__ -I/usr/src/linux-2.4.9/include -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common -pipe -march=i586 -DNTFS_VERSION=\"1.1.16\" -c -o unistr.o unistr.c
    unistr.c: In function `ntfs_collate_names':
    unistr.c:99: warning: implicit declaration of function `min'
    unistr.c:99: parse error before `unsigned'
    unistr.c:99: parse error before `)'
    unistr.c:97: warning: `c1' might be used uninitialized in this function
    unistr.c: At top level:
    unistr.c:118: parse error before `if'
    unistr.c:123: warning: type defaults to `int' in declaration of `c1'
    unistr.c:123: `name1' undeclared here (not in a function)
    unistr.c:123: warning: data definition has no type or storage class
    unistr.c:124: parse error before `if'
    make[3]: *** [unistr.o] Error 1
    make[3]: Leaving directory `/usr/src/linux-2.4.9/fs/ntfs'
    make[2]: *** [first_rule] Error 2
    make[2]: Leaving directory `/usr/src/linux-2.4.9/fs/ntfs'
    make[1]: *** [_subdir_ntfs] Error 2
    make[1]: Leaving directory `/usr/src/linux-2.4.9/fs'
    make: *** [_dir_fs] Error 2

  6. Re:I really hate... by Anonymous Coward · · Score: 0

    I really hate your posts

  7. Re:NTFS problem... by Haggis+Muncher · · Score: 1

    Just edit "/usr/src/linux/fs/ntfs/unistr.h" and insert this at around line 30:

    #include <linux/kernel.h>

    and then recompile.

    --

    --
    Free Dmitry!
    http://www.freesklyarov.org
  8. Re:What will the next 2.4 revision be called? by Anonymous Coward · · Score: 0

    As the 2.4.x kernel series has been headed to higher and higher revision (x) numbers, I've been wondering what will occur when those numbers are exhausted. Seeing as how we're at 2.4.9, will all the next revisions be 2.4.9.x? It's probably way too early for 2.6. It will be 2.4.10.

  9. Re:NTFS problem... by alecks · · Score: 1

    I really don't understand why strong advocates of *nix are so anti MS. Maybe you take a look around and realize that some people don't like, not to mention know how, to edit the friggin source code, before compiling it, to make an upgrade!! this seems ridiculous! If you're gonna release soemthing, make sure it works on all cases. I'm glad I don't have to rewrite MS functions before installing Win2000. jmt

  10. Re:how many kernels realeased a year? by barneyfoo · · Score: 3, Informative

    Duh. 2.0 was really stable and 2.1 was being heavily worked on. Graph 2.1 in there and you'd get probably 50 or more kernels for that year.

  11. Re:What will the next 2.4 revision be called? by aardvarkjoe · · Score: 0, Offtopic
    Personally, I think that negative moderations should get more scrutiny (and harsher penalties) during metamoderation than positive moderations. Far too often you'll see people marked as "offtopic" and "overrated" because the moderators know that those two are more likely to be accepted in metamod than "flamebait".

    When metamodding, I mark all + moderations as "fair" (even if it's a goatse.cx post as insightful. There will always be more people modding it down, and this way there's no grey area.) I take a good look at any - moderations, because there's way too many people that simply mod down the viewpoints they don't like.

    --

    How can we continue to believe in a just universe and freedom to eat crackers if we have no ale?
  12. Re:NTFS filesystem by aussersterne · · Score: 1
    PS. Oh.. ReiserFS is totaly safe for me.. Sometimes I just hit reset out of boredom to see it getting up without fsck-ing and filling up lost+found :)) I should tell those people things are working really fine!


    This is not a bright thing to do... a journaling filesystem of this type does not guarantee against data loss, it only guarantees against internal inconsistency -- meaning that when you reset, you may lose recent data and you may also find some files that are "corrupted" (i.e. seem to contain data from other files). The only thing ReiserFS buys you (relative to ext2) is a guarantee that file or metadata corruption won't spread after the reboot, without needing a time-consuming fsck to get such a guarantee.
    --
    STOP . AMERICA . NOW
  13. Re:What will the next 2.4 revision be called? by L-Wave · · Score: 0

    They should start making aliases for each numbered relases similar to what distribs do...for example kernel 2.5.x should be called "Orville" 2.6 could be "Jiffy"

    --
    I SURVIVED THE GREAT SLASHDOT BLACKOUT OF 2002!
  14. Re:Please don't get me wrong by Syberghost · · Score: 2

    I mean is there a Slahdot article when Microsoft gives out a new Windows 2000 SP? Including the changes and fixes (mirrored in the comments)?

    No, but there should be. That's important information to a large percentage of Slashdot readers.

    In case you hadn't noticed, Linux is pretty popular around here.

  15. Mirror by ecliptik · · Score: 2, Informative

    Here's a mirror ftp://ecliptik.com/pub/linux-2.4.9.tar.gz

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

      Thanks for the tip...

      Karma whore.

    2. Re:Mirror by Roundeye · · Score: 5, Informative
      Note: always check signatures when downloading software from unknown sources.

      This kernel tarball is identical with the ones being distributed from ftp.us.kernel.org (dynamic mirrors), BUT IT DIDN'T HAVE TO BE. A trojaned kernel distributed from a private mirror could compromise any number of systems.

      Always check downloaded files from unknown sources.

      md5sum:
      ftp.us.kernel.org kernel: 8b0f6c18e9c09ca1e5d0bbbed95f7ef2
      ecliptik mirror kernel: 8b0f6c18e9c09ca1e5d0bbbed95f7ef2

      gpg sigs match, using:
      % gpg --verify linux-2.4.9.tar.gz.sign linux-2.4.9.tar.gz

      But -- DON'T TAKE MY WORD FOR IT! CHECK THEM YOURSELF.

      --
      "Cause there's 40 different shades of black, so many fortresses and ways to attack, so why you complainin'?"
    3. Re:Mirror by steelhawk · · Score: 2, Funny

      Important addition:

      Also, never trust people on slashdot saying that this unofficial mirror is ok, the md5sums/gpg sigs are identical.. _ALWAYS_ check for yourself!

      --
      Ner lbh sebz gur HFN? Gura lbh'ir whfg ivbyngrq gur QZPN!
  16. Re:What will the next 2.4 revision be called? by Anonymous Coward · · Score: 0

    I think the early ones should be named 2.4.01, 2.4.02, etc

    That way you may sort all versions in alphanumeric order!

    But, 02.04.10 would perhaps be overkill/roadkill

  17. Re:What will the next 2.4 revision be called? by Anonymous Coward · · Score: 0

    you're such a newbie. 2.4.10 will be next.

  18. Re:This doesn't really matter anyway by Anonymous Coward · · Score: 0

    I really don't care if Linux never meets expected market share. I will still use Linux as my primary operating system, not because I'm an OS hobbyist, but because it is better and more powerful for the work which I do.

    In fact, once my company decides to stop spending money on new operating systems, upgrades and software, I will gladly show them the true power of Linux.

    Mainstream && marketshare != superiority

  19. Re:SB Live! driver fixed by Anonymous Coward · · Score: 0

    >Alan Cox'es

    Never put an e after an apostrophe indicating possesion!!! It would be better as Alan Cox's. You may not understand this, but for me it's like someone telling me they're using the Linux Desktop Environment on a KDE kernel.

    AC #369

  20. Re:how many kernels realeased a year? by RubberDuckie · · Score: 1

    I might also add, that you don't want to fall to far behind the current kernel. A 2.0.36 to 2.4.9 upgrade is apt to be quit a bit more painful than 2.4.6 to 2.4.9. Sometimes, it's easier to bit off a number of small upgrade chunks, raher than one large one. YMMV

  21. Re:2 compilation errors already by Anonymous Coward · · Score: 0
  22. My Mirror by NewbieSpaz · · Score: 2, Informative
    --
    ------
    Random, useless fact: I type in startx entirely with my left hand.
    1. Re:My Mirror by Anonymous Coward · · Score: 0

      is it even worth it to adjust a hotmail address to avoid spam? It isn't like they wouldn't fill your box w/ it anyway.

      _JR

  23. Re:HOLY FUCKING SHIT! by Anonymous Coward · · Score: 0

    Laugh mod me down to -1 but this is funny... I just don't know why.

  24. 2.4.6.0.1 by Godai · · Score: 0, Troll

    I can only lament that this version was never released

    Ah well. Probably out there under a different name ;)

    --
    Wood Shavings!
    - Godai
  25. Re:NTFS filesystem by swright · · Score: 1

    forgive my ignorance, buy how can it trash the partition running in read-only mode? surely that means it doesn't write and therefore doesn't change anything......

  26. Release early, release often by proton · · Score: 3, Insightful

    And ofcourse, a slower release rate would also slow the entire development process.

    Has anyone observed the GCC development? People say that Red Hat did a good thing by releasing a development snapshot as 2.96 (altho I dont agree with the version number, I agree with the release).

    If a kernel patchlevel (remember v Major.Minor.Patchlevel?) breaks your application, then I am led to believe that your application is very poorly programmed...

    1. Re:Release early, release often by Teukels · · Score: 1

      > The behaviour was not correct, but ...

      So the behavior was not supposed to be in the API to begin with.

      The Interface of the kernel, the part that communicates with the userside of the world, is supposed to stay stable! It is supposed to stay stable until hell freezes over.. Only the _implementation_ of the interface, the 'black-box' part, is changed to meet the needs of the kernelhackers.

      The Interface _only_ changes during uneven minor versions 2.3.x or 2.1.x or 2.5.x etc..

      > it would strike me as very odd if some of these "features" don't exist.

      They do exist but it is very wrong to rely on them. They lead to spaghetticode if you do. Best would be to report such inconsitencies to the people who deal with the interface, if you find them.

      "Kantian moral dictates to never see persons as pathways, but always as objectives."

    2. Re:Release early, release often by Anonymous Coward · · Score: 0

      Dude, he's not talking about things like 'symbol __foo_bar_baz() was removed', he's talking about things like 'foo_bar(x) returned 1 if x == 0'. If the correct behavior is to return 1 in this case, then changing it so it returns 1 is a bugfix, not a major deal. If your code depended on it returning 0 when x is 1, then your code breaks.

      If you've never had a program break due to a little glitch like that, then maybe you should stop doing most of your coding in VB.

    3. Re:Release early, release often by Teukels · · Score: 1

      I know that when it is not specified what Foo(x) with x!=0, I should not rely on whatever Foo 'd give me in case x unequals 0. One can spend hours on avoiding such subjectively and intuitively appealing thinking. It sucks, I agree, but pays.

      > then maybe you should stop doing most of your coding in VB.
      No need to become antagonistic.

  27. Re:Righto.... by Pinchy · · Score: 3, Funny

    .stnemmoc eht ni srorrim tsop esaelP

  28. WARNING: GOATSE.CX LINK IN PARENT by Anonymous Coward · · Score: 0

    silly troll, far too obvious.

  29. my mirror contribution by -=Izzy=- · · Score: 2

    ftp://209.203.218.6/pub/kernel/2.4.9 have fun

  30. But glibc-2.2.4 is allergic to gcc-3.0 by Adam+J.+Richter · · Score: 2

    If you run ./configure in the top of the glibc-2.2.4 source tree on a gcc-3.0 system, it ill abort with the following output:
    *** This version of GNU libc cannot be compiled by GCC 3.x.
    *** GCC 3.x will generate a library that is binary incompatible to
    *** older and future releases of GNU libc.
    *** You should compile this GNU libc release by an older GCC version
    *** or wait for the next GNU libc release.
    *** If you really mean to use GCC 3.x, run configure again
    *** using the extra parameter `--disable-sanity-checks'.

  31. Re:Please don't get me wrong by 2dor!2d · · Score: 1

    If you don't like these kind of stories, you can always remove them with your /. preferences.

    --
    A one banana problem.
  32. GN by Anonymous Coward · · Score: 1, Informative
    It would be better as Alan Cox's

    Actually a trailing 'x' should be treated in the same fashion as a trailing 's', so it should be Alan Cox'. Sadly too few people are pedantic enough for you ever to see this.

    :P

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

      You still put the 's even with a trailing s on the name.

    2. Re:GN by Storm+Damage · · Score: 1
      Read Strunk and White before you correct people on their grammar, especially if you go so far as to call them pedantic. It's very impolite to insultingly correct people when they're right.


      Any singular noun can be made posessive by adding an 's, with the exception of ancient proper nouns ending in "s" or "x" (i.e. Jesus' robe, Moses' mountain, Isis' temple)

  33. Re:Help, I can't keep up!!! by orionpi · · Score: 1

    Well the last one was escaped* on the 10th!

  34. Re:Firewire???????? by Spock+the+Vulcan · · Score: 1

    Sure. Just enable CONFIG_IEEE1394 in your kernel config. It is listed under "IEEE 1394 (FireWire) support (EXPERIMENTAL)" in the main "make xconfig" menu. I don't know whether your particular drive would work or not, but you can try.

  35. Powers of 2 by pryan · · Score: 0, Redundant
    Damn, and I was all excited about seeing only powers of two in my kernel version.

    Maybe I'll change the displayed version of 2.4.9 back to 2.4.8 just for my gratification.

    1. Re:Powers of 2 by Anonymous Coward · · Score: 0

      Good Lord, you are a loooooooooser.

    2. Re:Powers of 2 by pryan · · Score: 1

      Show yourself coward! What kind of loser reads articles at a threshold that includes 0?

  36. Re:What will the next 2.4 revision be called? by Captain+Pooh · · Score: 1

    As the 2.4.x kernel series has been headed to higher and higher revision (x) numbers, I've been wondering what will occur when those numbers are exhausted. Seeing as how we're at 2.4.9, will all the next revisions be 2.4.9.x? It's probably way too early for 2.6. --Alex
    Probably the geek high council will not release any stable updates but will release unstable ones instead like 2.5, and that will go on until 2.6. I wonder how many years it took kernel 2.2 to go to 2.4?

  37. Re:What will the next 2.4 revision be called? by kabhul · · Score: 1

    The next revision will be called 2.4.10, of course :-) And 2.5 hasn't even been started yet, so yes, it is way to early for 2.6

  38. Re:What will the next 2.4 revision be called? by rkent · · Score: 1

    Judging from what happened with the 1.2.x series, I'm sure the next 2.4 revision will be called 2.4.10, then 2.4.11... you get the picture.

  39. 3c59x Driver by buer · · Score: 0

    Wonder what's updated in there.

  40. Re:I really hate... by BierGuzzl · · Score: 1, Troll

    I really hate the "I really hate slashdot is not freshmeat" posts

  41. oh great... by panic911 · · Score: 1

    I usually am happy to hear of a new release (cause I get bored with the last one :), but man this sucks. I just got 2.4.8 working the other day, and now I gotta upgrade again? wowzers btw, did anybody have problems with the emu10k1 drivers in 2.4.8? It looks like they may have fixed it in 2.4.9 according to the changelog.

  42. Nice change for Mozilla Users by DJGreg · · Score: 1

    Been using 2.4.9 for the last hour now. Other than a silly bug b0rking NTFS it works great. Simple fix for NTFS though that somebody else already pointed out on here. The updated emu10k1 driver along with the new emu-tools is just awesome.

    The changes to VMA merging make a noticable difference in mozilla; that alone is worth the upgrade.

    Side note: this is twice in a row that Linus has posted a kernel with a b0rked build, last time was with the emu10k1 driver as a module, this time good 'ole NTFS. Hope he has a relaxing vacation ;)

    --

    Yes, one day I may actually learn to spell...
    1. Re:Nice change for Mozilla Users by Anonymous Coward · · Score: 0

      What's horked w/ the NTFS support?

  43. Re:FreshMeat by Anonymous Coward · · Score: 0

    You should subscribe to the project "linux" on freshmeat. They will e-mail you everytime a new version is released.

  44. Re:NTFS problem... by Dimensio · · Score: 1

    Okay, that does work. Someone else suggested (and actually I'd done this earlier anyway) removing 'unsigned int' from a for loop declaration (which also removes the compile error). I got the idea by looking at the 2.4.8 code. Is doing that going to be a bad thing with the ntfs updates? Which one is the 'correct' method -- I'm more likely to trust adding the #include line.

  45. It is interesting by friday2k · · Score: 2

    My post, which was intended to be controversial, sure triggers a lot of reaction. In Posters and Moderators. Just looking at the moderation totals is interesting by itself: Moderation Totals:Flamebait=1, Troll=1, Insightful=2, Overrated=1, Total=5. I am, personally, not that this would interest too many people, an advocat of the right OS for the right purpose. I run Win98 at home. I like to PLAY Computer Games like Baldur's Gate (and my wife does), I run Win2k at work (well, company policy) and FreeBSD for my webservers (stable, fast, I like it). And I would love to have information on every OS when I am reading "news for nerds, stuff that matters". Because other Operating Systems than Linux DO matter. Even if you don't like it. And, my quotes from the changelog where meant to stir the discussion (100% success on that one).
    People, I can only say one thing: try to be more open towards people and things that are different from what you might like or value. It is not up to you to judge whether they are right or wrong. They have to come to that conclusion by themselves.

    1. Re:It is interesting by big.ears · · Score: 2, Flamebait

      Come on! Slashcode is available. Domain names are cheap. You can even steal all the links from slashdot, editing out the ones about linux, and have your own news about nerds. Its the beauty of Open Source. If you let me know, I might even register so I can 'get in early' with a low ID number. Just stop whining.

    2. Re:It is interesting by RA-Zero · · Score: 1

      I Agree with you 100%

  46. Re:wholy crap! by Anonymous Coward · · Score: 0

    One kernel update isn't even downloaded or the next is already finished!

    So finish your old download, and then get diffs for the new one.

  47. Re:Keep 'em comming by p3d0 · · Score: 0

    My favourite part of that page is the disclaimer at the top:

    Google is not affiliated with the authors of this page nor responsible for its content.

    --
    Patrick Doyle
    I mod down every jackass who puts his moderation policy in his sig. Oh, wait a sec....
  48. Re:Please don't get me wrong by 7-Vodka · · Score: 1
    oooh. sorry. What the hell man. I like it that /. posts this because it's the only site I visit for this kind of news. I'm sorry if you don't run linux, but most who do like to be told there's a new kernel to go grab. What, like the other stories on the front page right now are that great? Give me a break.

    Yes, /. is linux-centric. Yes I run linux and I like it.
    If it wasn't, it wouldn't be my start page.

    --

    Liberty.

  49. Re:Please don't get me wrong by quannump · · Score: 1

    please see this post for further info

    --

  50. Re:What will the next 2.4 revision be called? by Anonymous Coward · · Score: 0

    That's got to be the stupidest question I've ever heard. 2.4.10 comes after 2.4.9!

  51. Re:What will the next 2.4 revision be called? by krogoth · · Score: 1

    IIRC, before 2.4.0 they were around 2.3.99

    --

    They that quote Benjamin Franklin on liberty and safety deserve neither.
  52. drivers/net/rrunner.c looks to be borked. by AgTiger · · Score: 2, Interesting

    Submitted for amusement, a segment of make modules:

    make -C net modules
    make[2]: Entering directory `/usr/src/linux-2.4.9/drivers/net'
    gcc -D__KERNEL__ -I/usr/src/linux-2.4.9/include -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common -pipe -mpreferred-stack-boundary=2 -march=i686 -malign-functions=4 -DMODULE -DMODVERSIONS -include /usr/src/linux-2.4.9/include/linux/modversions.h -c -o rrunner.o rrunner.c
    rrunner.c:1241: macro `min' used with only 2 args
    rrunner.c:1252: macro `min' used with only 2 args
    rrunner.c: In function `rr_dump':
    rrunner.c:1241: parse error before `__x'
    rrunner.c:1241: `__x' undeclared (first use in this function)
    rrunner.c:1241: (Each undeclared identifier is reported only once
    rrunner.c:1241: for each function it appears in.)
    rrunner.c:1241: `__y' undeclared (first use in this function)
    rrunner.c:1252: parse error before `__x'
    rrunner.c:1221: warning: `len' might be used uninitialized in this function
    make[2]: *** [rrunner.o] Error 1
    make[2]: Leaving directory `/usr/src/linux-2.4.9/drivers/net'
    make[1]: *** [_modsubdir_net] Error 2
    make[1]: Leaving directory `/usr/src/linux-2.4.9/drivers'
    make: *** [_mod_drivers] Error 2

  53. Please /. and troll this company that SCREWED me! by Anonymous Coward · · Score: 0, Offtopic
    Horribly OT, I know, but I want to harness the slashdot effect, and the proliferation of ingenious trolls here for revenge on a company that royally FUCKED ME OVER. See, there's this company called CI Hosting (DBA World Web Services), and they are by far the WORST most INCOMPETENT web host on the planet. They make the IRS epitomize good customer service. Worse, they took a good sum of my money (hundreds of dollars) and are COMPLETELY UNRESPONSIVE! Their main site, http://www.worldwebservices.com/ is DOWN with a 403 error, and mail is BOUNCING. I've tried the BBB, etc, but this will tkae time, and I want them to suffer the consequences NOW!

    So, EVERYONE, please go to ticketmonster.hostingsupport.com and REGISTER for a free login/password. You DON'T need to be a customer.

    If the /. effect doesn't kill them outright, then logging in lets you submit trouble tickets. So, spam them with brilliant trolls about Jews, goat sex, niggers, WHATEVER! Make their tech support team a living hell so they won't be able to answer any tickets at all -- it's no big loss, 'cause that's how they ALREADY are!

    Finally, please write a nice email to noalegal@noa.nintendo.com explaining how CI Hosting is using Pokemon graphics and characters illegally and in infringement of Nintendo's copyright. Once you see the Ticketmonster site, you'll see what I mean. Hopefully Nintendo will slap them with a big lawsuit.

    Anyways, please join in and teach them a LESSON for SCREWING ME LIKE THIS!

  54. Re:What will the next 2.4 revision be called? by Tachys · · Score: 2

    It would be called 2.4.10. The latest 2.2 is called 2.2.19

  55. Re:2.4.8 is only a week old by Anonymous Coward · · Score: 0

    2.4. == development release -- every time. They don't say it very often, but if you know the numbering system you'd know that even numbers are just development releases.

  56. SB Live! driver fixed by bconway · · Score: 5, Informative

    Though not a showstopper by any means, the EMU10K1 driver has been fixed from 2.4.8, and is now fully up-to-date. I've been using the drivers from opensource.creative.com since the release of the 2.4 kernel, and this is definitely a welcome change. Check it out!

    --
    Interested in open source engine management for your Subaru?
    1. Re:SB Live! driver fixed by bconway · · Score: 3, Informative

      As in: the drivers included up until 2.4.8 were over 6 months old and lacked a lot of features compared to those mainted on http://opensource.creative.com . These are now fixed in the kernel and fully up-to-date, which I consider to be a good thing.

      --
      Interested in open source engine management for your Subaru?
    2. Re:SB Live! driver fixed by da+groundhog · · Score: 3, Informative

      it should be noted to all the trolls out there, that the emu10k1 user-land tools include an assembler and loader for the cards dsp chip which means that you can not only compile/load the effects it includes (such as chorus and flanger) but you can PROGRAM YOUR OWN EFFECTS (tres cool). And of course this comes with ample documentation.

      --
      "...through this door all my dreams come realities, and all my realities become dreams..."
    3. Re:SB Live! driver fixed by Azog · · Score: 5, Informative

      All of the above is true, however... the new driver may not work for everyone.

      Alan Cox, for example, tried them out and found they didn't work on some of his machines, so he didn't include the new driver in the -ac patches.

      So, it seems they work great for some people but not others. Linus decided to keep them in because the new driver is being maintained, and the old one wasn't - a buggy driver that's being worked on is better than a buggy driver that's being ignored... and the new drivers have much better support for the features of the SBLive.

      Anyway, if you upgrade and find that your sound card quits working, you have several choices - revert to your previous working version, or try Alan Cox'es patched version of the kernel (look under /people/alan on the kernel mirrors) or, if you know what you're doing, just take the relevant emu10k files from 2.4.7 or so and patch them into your tree. Alan Cox's kernels have lots and lots of other changes besides the SBLive driver, of course.

      A lot of work is being done right now on getting the VM (Virtual Memory) balanced right. It works great for a lot of people, but depending on the workload, it can start to thrash really bad and swap itself to death. (kswapd will run, taking all the CPU time and making no progress.) If you run into this problem or others, read the documentation on reporting bugs (see the /linux/REPORTING-BUGS file) and send a mail to the list. Don't hold your breath waiting for a reply, but it will be read, and it might help the developers figure out the pattern of what situations cause problems and what works well.

      (If you report bugs on the Linux Kernel Mailing list, be sure to note what kernel you're running and any non-standard changes you've made.)

      Oh, and if you are not subscribed to the list and want to be cc'ed on replies, say so at the top of your email.

      (I'm not really a kernel developer, yet, but I hack around in the code and read the list, so I know a little about what's going on.)

      --
      Torrey Hoffman (Azog)
      "HTML needs a rant tag" - Alan Cox
    4. Re:SB Live! driver fixed by darkwhite · · Score: 1
      is now fully up-to-date

      up-to-date as in what?

      --

      [an error occurred while processing this directive]
  57. Re:FreshMeat by SubtleNuance · · Score: 5, Funny

    . When a kernel is released, I want to know about it. and who in their right mind looks at freshmeat every fucking day?

    *me* whistles and taps toe while looking around the room quitely...

  58. Re:Another kernel update? by sqlrob · · Score: 1

    I count 15 or so since Jan 1 for W2K (minimum, I'm sure there's more)

  59. Re:how many kernels realeased a year? by Anonymous Coward · · Score: 0

    Can't you read the signs?

    "Please do not feed the trolls."

  60. Question by mwalker · · Score: 3, Insightful

    Hey, does anyone know if they're going to support dumping debugging information for multi-threaded processes into core files? I'm really tired of not being able to post-mortem debug in gdb. I know the errata kernal drops per-pid cores, but that's not like having real core file support.

    Any kernel hackers out there heard whisperings about this?

    1. Re:Question by AndyS · · Score: 2

      A heads up - I used 2.4.4-ac (or was it 5?) and it had multithreaded core dumping. It wasn't perfect (core per thread, which is not pleasant), but I could backtrace each and every one of them.

      Linus has put in some changes to make this a bit better, but I don't know if it's fully supported in gdb yet, I haven't seen anything about it on the development list. However, all of the necessary data should be in there. I'ld imagine that this will work better than it used to (I think that the thread to die has it's memory dumped, which should be the same as all of the other threads).

      If all else fails, you could use a slightly older version of AC, or work out the patches, I'ld imagine they're not much different.

  61. ChangeLog... by Alakaboo · · Score: 4, Insightful

    I love reading the ChangeLogs. Oftentimes they can be quite humorous:

    - David Miller: undo poll() limit braindamage

    This would have helped Bush during the election.

    - David Woodhouse: up_and_exit -> complete_and_exit

    Up and at'em, Dave!

    - me: make return value from do_try_to_free_pages() meaningful

    Do try for meaningful return values.

    - David Miller: "min()/max()" cleanups. Understands signs and sizes.

    Ouch. // min(-400, 3) == 3 // ??

    - Kevin Fleming: more disks the HPT controller doesn't like

    And you have to wonder about this one...

    - Ben LaHaise: use down_read, not down_write() in map_user_kiobuf.
    We don't change the mappings, we just read them.

    1. Re:ChangeLog... by be-fan · · Score: 2

      God what I'd give to see a Win2K changelog...

      --
      A deep unwavering belief is a sure sign you're missing something...
    2. Re:ChangeLog... by Anonymous Coward · · Score: 0

      Would you give a blowjob to an 80 year old man?

  62. Re:What will the next 2.4 revision be called? by Anonymous Coward · · Score: 0
    Off-topic????

    Any chance of slashdot incorporating a minimum intelligence quotient for moderators?

  63. Re:Please don't get me wrong by Captain+Pooh · · Score: 1

    I mean is there a Slahdot article when Microsoft gives out a new Windows 2000 SP?
    Nobody on slashdot wants to know when Microsoft releases a SP because they probably don't run Windows 2000, and plus when Microsoft releases a Service pack everyone seems to know..look at that patch for code red.
    These are newsworthy stories, a 0.01 change in version number is not.
    WindowsMe wasn't news worthy and there was a 0.01 change in it.

  64. Blazing Fast Kernel Mirror by Anonymous Coward · · Score: 4, Informative
    1. Re:Blazing Fast Kernel Mirror by -=Izzy=- · · Score: 1

      troll???

      haha nice moderation!!

    2. Re:Blazing Fast Kernel Mirror by Anonymous Coward · · Score: 0

      it isn't fast any more. Nice one! ;-)

  65. Re:Please don't get me wrong by Sonicated · · Score: 1

    I have the same view as him and I did it to see what changes have been made. Looking at it made me realise it was a bit pointless.

    Try and think before you post next time.

  66. Re:Real news: glibc-2.2.4 was released today by Captain+Quazar · · Score: 1

    GNU's site has no mention of this and claims the current version is 2.2.3. Freshmeat had an announcement for glibc-2.2.4-pre4 on Wednesday. Who exactly is releasing this?

  67. how many kernels realeased a year? by kryptola · · Score: 0, Flamebait

    Just a beginner of Linux community (for a while, I was a fan of a man next door, his name is Bill something). I wonder how many kernels realeased a year? What is the benefit for that?

    --
    "Trying is the first step towards failure" - Homer J Simpson.
    1. Re:how many kernels realeased a year? by CMiYC · · Score: 4, Insightful

      As many as needed. There are no set times or numbers. If enough little bugs are fixed, it is released. If a major bug is fixed, it is probably released sooner. In general, you only have three reasons to upgrade.

      1) The new one has fixed a bug in something you are using. Such as a new USB driver for your widget.

      2) A major security flaw is patched. Which is done way faster (and more publicily) than in most commerical settings.

      3) You enjoy cutting your teeth on new shit. Which would be a lot of us. :)

      I personally usually only upgrade if there is a dangerous remote exploit or for some functionaility. I only upgraded to 2.4.x for iptables and firewire support. Even though the backport of firewire worked fine for me.

    2. Re:how many kernels realeased a year? by be-fan · · Score: 2

      What happend in '97-'98 that made for so few releases?

      --
      A deep unwavering belief is a sure sign you're missing something...
    3. Re:how many kernels realeased a year? by Anonymous Coward · · Score: 1, Informative

      Several new kernels are released each year, according to the maxim "release early, release often." This is part of the open source philosophy as explained by Eric S. Raymond in "The Cathedral and the Bazaar." The idea is that when there are many releases, there is more opportunity for users to run into bugs in the system.

    4. Re:how many kernels realeased a year? by Anonymous Coward · · Score: 1

      Just because they're released, that doesn't mean that you have to upgrade. I'm quite happy about how rapidly linux software, and the kernels especially, are developed, though. I would much rather get my features incrementally, instead of in an installment every few years. This way, by the time feature Y is released, features A through X are mature and have been tested and used by the community for some time.

      Peter

    5. Re:how many kernels realeased a year? by Anonymous Coward · · Score: 0
      pardon me, but this makes no sense. Just by way of comparison, if Microsoft releases Windows 95 in '95, and doesn't release a new version until '98, then that's 3 years of opportunity for users to run into bugs in the system. During that time, Microsoft is releasing various hotfixes/service packs to fix bugs as they come up, but they usually don't add new features. (other than USB, etc) Anybody knows, you add more features, you add more bugs. Therefore, between '95 and '98, Windows 95 became more and more stable as a result of bugs being fixed, and then Windows 98 was released with a host of new features and bugs.

      On the other hand, we have Linux releasing 6-8 new versions a year, and adding new features with each version. More features, more bugs. Although one would hope that in each release all bugs from the previous release are fixed, but this is doubtful.

      Between the two (Open Source and MS) there is not, as you say "more opportunity for users to run into bugs" when there are many releases; there is equal opportunity, but in a given three year span the rapid release is more likely to add bugs, whereas the "release when it's ready" model involves (in general) fixing bugs before adding new features.

      YMMV.

    6. Re:how many kernels realeased a year? by jjsjeff · · Score: 0, Offtopic

      You really are a "Shitsack" aren't you?!

      -Jeff

    7. Re:how many kernels realeased a year? by HiredMan · · Score: 1
      I was a fan of a man next door, his name is Bill something

      Bill lives in a COMPLETELY different neighborhood.
      He don't come 'round our hood very much. ;)

      =tkk

    8. Re:how many kernels realeased a year? by cowens · · Score: 5, Informative

      Here are the counts by year. Only the release versions are counted because development kernels can run into the hundreds.

      1994 - 10 (1.0.0 - 1.0.9)
      1995 - 14 (1.2.0 - 1.2.13)
      1996 - 28 (2.0.0 - 2.0.27)
      1997 - 6 (2.0.28 - 2.0.33)
      1998 - 3 (2.0.34 - 2.0.36)
      1999 - 2/14 (2.0.37 - 2.0.28 & 2.2.0 - 2.2.13)
      2000 - 5 (2.2.14 - 2.2.18)
      2001 - 1/1/10 (2.0.39 & 2.2.19 & 2.4.0 - 2.4.9)

      avg number of kernels per year: 11.75
      The benefit is that you can have the latest and greatest version now instead of six months from now.

  68. Re:I can't wait until XFS is standard... by asincero · · Score: 1

    > I like the fact that growing an XFS volume to
    > take up more space is simple, and does not
    > require unmounting the volume (in fact, you
    > CANNOT grow an unmounted XFS volume, you MUST
    > mount it first).

    FWIW, ReiserFS can do this too. That is, allow you to grow the filesystem while it is still mounted.

    ReiserFS even goes a step further by allowing you to shrink the fileystem too. But you have to unmount said filesystem first to shrink it.

    However, XFS is a full fledged journalling filesystem while Reiser just journals metadata.

    - Arcadio

  69. Does it compile on sun4m ? by Anonymous Coward · · Score: 0

    Everything is in the title.... For bug description, see this post on the kernel mailing list.

  70. Yes - but careful with 2.4.9!! by Anonymous Coward · · Score: 0

    2.4.9 ohci1394 locks my machine up, whether compiled in or as a module. 2.4.[56] worked fine for DV capture, though.

    ac.uk

  71. Re:Keep 'em comming by Anonymous Coward · · Score: 0


    After the Beowolf clusters of everything from PCs thru' coffee machines thru PDAs to useless comments, why not a B.C. of all the linux kernels available out there ???
    </stoopid>

  72. Re:Please don't get me wrong by Alorelith · · Score: 1

    It's not just the damn fact that the kernel is released that I care about, it's knowing that here on Slashdot people will discuss various problems/solutions or whatever about the kernel. How much is discusses about the NTFS support at freshmeat? Very little. Sure, the kernel mailing lists might be a good place to get kernel information also, but sometimes that's a hack job. Slashdot is fine.

  73. Re:NTFS filesystem by SilentChris · · Score: 3, Insightful

    When everybody moves to Windows XP, NTFS will get supported REAL quick.

  74. Re:HOLY FUCKING SHIT! by Anonymous Coward · · Score: 0
    haha. that is pretty funny. I use linux for work and sometimes at home, but I find it hilarious when somebody actually gets a woody because a driver for linux actually works - when it's been working in windows for years.

    I guess some zealots need to get a life.

  75. Re:I really hate... by Anonymous Coward · · Score: 0

    I really hate you.

  76. Gah! by andyh1978 · · Score: 1

    Bah, I just rebooted my machine TODAY to run 2.4.8 :-p

  77. Re:This doesn't really matter anyway by Anonymous Coward · · Score: 0

    How much money is Microsoft paying you to post this stupid shit?

  78. Re:NTFS problem... by Skapare · · Score: 2

    I made a patch to fix that.

    --
    now we need to go OSS in diesel cars
  79. Re:Keep 'em comming by Anonymous Coward · · Score: 0
    I'm sorry, I had to reply to your sig. Did you notice the message at the top of the page?

    Google is not affiliated with the authors of this page nor responsible for its content.

  80. Slow down CowBoy ! by wiZd0m · · Score: 2, Funny

    My old 486 computer here still did not finish compiling 2.4.7 ... at this rate, I will never get any work done.

  81. He would be arrested in the USA by mangu · · Score: 1

    There must be some pretty cool decryption functions in 2.4.9, if he has to go to a free country to release it.

  82. MOD THIS GUY UP! by lowlymortal · · Score: 0, Offtopic

    :)

  83. Re:Gigbabyte Mirror Bandwidth by Anonymous Coward · · Score: 5, Funny

    This one is a lot faster. But it is currently a version out.

  84. NTFS Updates! =) by dew · · Score: 2
    Yeah, baby! Anton Altaparmikov's excellent work on the NTFS updates moves forward with 2.4.9. Now Linux can read, write, and format NTFS partitions pretty stably! Go Anton! =)

    (Disclaimer: I'm having my company sponsor Anton's work. ;) )

    --

    David E. Weekly
    Code / Think / Teach / Learn
    h4x0r for

    1. Re:NTFS Updates! =) by Skapare · · Score: 2

      Due to an invalid assumption about putting baces inside macros (specifically, the max() and min() macros, which were changed in 2.4.9) which might be present inside the for() clause (which exists in 3 places in the kernel, 2 of which apply to NTFS code), the NTFS code isn't compiling. I made this patch to fix it.

      --
      now we need to go OSS in diesel cars
  85. Re:FreshMeat by stesch · · Score: 1
    When a kernel is released, I want to know about it. and who in their right mind looks at freshmeat every fucking day?

    When you have problems with a current kernel you look at any resource which can help you.
    If there's no problem with your kernel you don't need to upgrade.

  86. MOD PARENT UP by Anonymous Coward · · Score: 0

    +5 insigtful +6 funny!1! because its true!

  87. Rescue floppys for XFS ? by frankie_guasch · · Score: 1

    What if I mess it all ?

  88. Re:Fat FS fixes & CD Updates by Jetson · · Score: 1
    I hope this works. My first reply was improperly refused as lame and the second attempt gave me the "this post was submitted only 277,700 hours ago" error message. Bring on the banjo....

    What I was *trying* to say is that the sources are generally well documented. Knowing that the IDE/CD stuff was changed, it's quite simple to look at the commentary at the top of /usr/src/linux/drivers/ide/ide-cd.c to see what was done. If you want to make it really easy on yourself you could download the patch and search through the diff text.

  89. Re:Stress-test it! by Ziviyr · · Score: 1

    Should have had a mantis saying "BANJO!" in the slash-logo...

    --

    Someone set us up the bomb, so shine we are!
  90. Re:Please don't get me wrong by Jacek+Poplawski · · Score: 1

    >but what is so exciting about:
    >- Alan Cox: more driver merges
    there was a very nasty bug, since 2.4.3, all VIA MVP3 systems (most of K6-2 users have that motherboard) were heavy slowed down, for example it was impossible to watch movies in mplayer/avifile, that problem was fixed in -ac series (IIRC 2.4.4-ac2)

  91. Stress-test it! by sulli · · Score: 2, Offtopic

    See if it responds better than Banjo...

    --

    sulli
    RTFJ.
  92. Is he taking his laptop to Finland... by leifb · · Score: 2, Funny

    ... or do we have to wait a whole *two weeks* for 2.4.10?

  93. ntfs driver broken? by g_dancer · · Score: 1

    Hey there, I'm currently on the run to catch a train, so I have no time to search the web for the right place to reportbugs, compile errors and the like. So, please bear with me. Here we go: make[3]: Entering directory `/usr/src/linux/fs/ntfs' gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common -pipe -mpreferred-stack-boundary=2 -march=i686 -DNTFS_VERSION=\"1.1.16\" -c -o unistr.o unistr.c unistr.c: In function `ntfs_collate_names': unistr.c:99: warning: implicit declaration of function `min' unistr.c:99: parse error before `unsigned' unistr.c:99: parse error before `)' unistr.c:97: warning: `c1' might be used uninitialized in this function unistr.c: At top level: unistr.c:118: parse error before `if' unistr.c:123: warning: type defaults to `int' in declaration of `c1' unistr.c:123: `name1' undeclared here (not in a function) unistr.c:123: warning: data definition has no type or storage class unistr.c:124: parse error before `if' make[3]: *** [unistr.o] Error 1 make[3]: Leaving directory `/usr/src/linux/fs/ntfs' make[2]: *** [first_rule] Error 2 make[2]: Leaving directory `/usr/src/linux/fs/ntfs' make[1]: *** [_subdir_ntfs] Error 2 make[1]: Leaving directory `/usr/src/linux/fs' make: *** [_dir_fs] Error 2 This is a vanilla 2.4.9 tree on a SuSE 7.1 system. Please forward this to whereever it belongs and drop me a note (either here or in private mail), so I'll know better for the future. Thanks, Sebastian

  94. OT:Please don't get me wrong by Anonymous Coward · · Score: 0

    or, perhaps, he did it to be able to write an article complaining about how pointless it was.

  95. Keep 'em comming by FreeMath · · Score: 4, Funny
    Please use mirrors:
    http://kernel.org/mirrors/

    2.4.9 Changelog

    Wow, 2.4.8 lasted a whole week.

    --
    This sig intentionally left blank.
    1. Re:Keep 'em comming by L-Train8 · · Score: 1

      Well, after thinking about it for a second, I feel stupid. I guess the point of Google caching itself would be so you can see the special Korean holiday logo days after it has gone away?

      --

      Don't forget that Friday is Hawaiian shirt day.
    2. Re:Keep 'em comming by L-Train8 · · Score: 1

      Replying to your sig as well. Do you mean the Korean theme in the Google masthead? If you hover your cursor over it, you will see "Happy Korean Liberation Day". That theme appeared a couple days ago on the anniversary of Japan's surrender at the end of WW II, which also marked the end of Japan's occupation of Korea. It is a holiday in Korea. If you click on the masthead, it goes to the results of a search on Korean holidays.

      --

      Don't forget that Friday is Hawaiian shirt day.
  96. Re:What will the next 2.4 revision be called? by Anonymous Coward · · Score: 0

    The next one will be 2.4.10. -Vulpyne

  97. Re:Linux is dying by Anonymous Coward · · Score: 0

    hahaha.. are you serious? no updates? theres about a hundred different patches for solaris 8. you must be trolling, but to anyone that takes that seriously, solaris out of the box is an invitation to get root'ed. do what i do and put it behind a firewall and dont give any shell accts .

  98. Re:What will the next 2.4 revision be called? by Anonymous Coward · · Score: 0

    In theory 2.4.10 == 2.4.1, we've already have that one. But since we aren't talking any decimal system, I guess we can do whatever we want.

  99. Re:Help, I can't keep up!!! by Anonymous Coward · · Score: 0

    Oh, manymany kernel this week!

  100. Re:NTFS filesystem by Azog · · Score: 4, Informative

    There is a developer actively working on NTFS support now. It should be safe for read-only mode.
    Note that- write support for NTFS is a dangerous, EXPERIMENTAL feature that you have to explicitly select in the kernel configuration. Until recently, it was almost certain to destroy your disk, and it is still not recommended although rumor has it that it "mostly works now".

    If you blew up an NT partition running in the "read only" mode, send in a bug report to the mailing list. If you want to experiment with write support, send in bug reports for that too, I'm sure the developer will be interested, but don't expect a lot of sympathy if you wipe out important data.

    There's often a good reason why "EXPERIMENTAL" features are called that, even though sometimes it seems political - reiserfs, for example, is pretty safe - reported problems with it usually turn out to be hardware failures.

    --
    Torrey Hoffman (Azog)
    "HTML needs a rant tag" - Alan Cox
  101. Re:I really hate "slashdot is not freshmeat" posts by krogoth · · Score: 1

    Maybe... could it be that some people don't read freshmeat regularly?!?!?!

    --

    They that quote Benjamin Franklin on liberty and safety deserve neither.
  102. Righto.... by Bob+McCown · · Score: 4, Funny
    Please post mirrors in the comments.

    Under control

    1. Re:Righto.... by Fishstick · · Score: 1
      The funniest thing about that site...

      Made to works with adults or children.

      How in the heck would you be able to make a funhouse mirror that didn't work everyone, anyway? (well, vampires yes, but adults only?)
      --

      There is much cruelty in the universe, John.
      Yeah, we seem to have the tour map.

  103. Re:I really hate "slashdot is not freshmeat" posts by Anonymous Coward · · Score: 0

    Does an extra post really hurt you that much? Where do you get off whining about a site you have nothing to do with? Personally, I don't mind hearing about new kernel releases... especially considdering I don't visit FM...

  104. Re:Please don't get me wrong by Anonymous Coward · · Score: 0

    Who gives a fuck about MICROSOFT SERVICE PACKS?!?!

  105. Re:FreshMeat by Lozzer · · Score: 1

    If there's no problem with your kernel you don't need to upgrade.

    You really don't understand the nature of addiction...

    --
    Special Relativity: The person in the other queue thinks yours is moving faster.
  106. Great by gnuLNX · · Score: 1

    I read somewhere awhile back that Linus wanted to start trying to release newer kernel versions faster than revious. Personnally I like it. It gets things out to the community to test quicker. It really was pretty fast between 2.4.8 and 2.4.9. LIke less than a week I think. amazing.

    --
    what?
  107. What will the next 2.4 revision be called? by Delirium+21 · · Score: 0, Troll

    As the 2.4.x kernel series has been headed to higher and higher revision (x) numbers, I've been wondering what will occur when those numbers are exhausted. Seeing as how we're at 2.4.9, will all the next revisions be 2.4.9.x? It's probably way too early for 2.6. --Alex

    --

    Friends come and go, but enemies accumulate.
    1. Re:What will the next 2.4 revision be called? by norculf · · Score: 2, Informative

      Actually there was a similar phrase in Linus's book.

      Because I had been overly optimistic in the naming of version 0.95, I was caught in a bind. Over the course of the two years it took to get version 1.0 out the door, we were forced to do some crazy things with numbers. There waren't many numbers between 95 and 100, but we continually released new versions based on bug fixes or added functions. By the time we got to version 0.99, we had to start adding numbers to indicate patch levels, and then we relied on the alphabet. At one point we had version 0.99, patch level 15A. Then version 0.99, patch level 15B, and so on. We made it all the way to patch level 15Z. Patch level 16 became version 1.0, the point where it was usable. This was released in March 1994 with great fanfare at the University of Helsinki Computer Sciences Department auditorium.

      I never saw anything wrong with version X.YYY, IE: version 0.100, 0.101, 2.4.634, etc...

    2. Re:What will the next 2.4 revision be called? by rekoil · · Score: 1

      Look at the 2.2 and 2.0 trees - the last 2.2 version was 2.2.19, the last 2.0 version was 2.0.39.

    3. Re:What will the next 2.4 revision be called? by cnkeller · · Score: 1, Offtopic
      As the 2.4.x kernel series has been headed to higher and higher revision (x) numbers, I've been wondering what will occur when those numbers are exhausted. Seeing as how we're at 2.4.9, will all the next revisions be 2.4.9.x? It's probably way too early for 2.6. --Alex

      Presumably at some point, Linus will issue a freeze and we'll move on to the 2.5 devleopment series, leaving only O&M on the 2.4 line.

      --

      there are no stupid questions, but there are a lot of inquisitive idiots

    4. Re:What will the next 2.4 revision be called? by Da+Masta · · Score: 1

      I always thought the whole idea with the sub-decimal points was that you could have an infinite number of minor updates as opposed to just 10. So logically, the next kernel version will be 2.4.10, and this could go on forever if need be.

    5. Re:What will the next 2.4 revision be called? by Anonymous Coward · · Score: 0

      Well, after we run out of digits, thats when we move to letters. So 2.4.A will follow 2.4.9. What happens when we get to 2.4.Z has yet to be determined. I suggested we move on to Chinese characters, but there was some concern about double byte code page issues...

    6. Re:What will the next 2.4 revision be called? by leprechaun · · Score: 1
      ... I've been wondering what will occur when those numbers are exhausted. Seeing as how we're at 2.4.9, will all the next revisions be 2.4.9.x?

      How about 2.4.10? Just a guess, but works for me.

    7. Re:What will the next 2.4 revision be called? by Roast+Beef · · Score: 1

      2.4.10, clearly.

    8. Re:What will the next 2.4 revision be called? by Anonymous Coward · · Score: 0

      Jeez man, a troll if I ever saw one...Not even the newbiest of newbies can be this clueless. Congrats to delirium #whatever for picking up the fine art of trolling so quickly

    9. Re:What will the next 2.4 revision be called? by Anonymous Coward · · Score: 0

      I'll go out on a limb, 2.4.10, etc.

    10. Re:What will the next 2.4 revision be called? by basit · · Score: 1

      Just like it was done since 1.X.x, it'll be 2.4.10. 2.2 went all the way up to 19. I think 2.0 went even up into 39.

  108. Jeeez by Captain+Pooh · · Score: 1, Troll

    2.4.9 already!!

    1. Re:Jeeez by Anonymous Coward · · Score: 0
      Oh, ha ha ha ha! That is an amazingly funny post.

      Stellar moderation again, doorknobs.

  109. ISDN updates by Anonymous Coward · · Score: 0

    I noticed that there have been ISDN updates in all the kernel updates lately. Has that much changed in ISDN in the last several years. I would have figured it pretty much stable at this point....anyone care to explain

  110. To all of the people who replied to this by Anonymous Coward · · Score: 0

    You're all fucking idiots. How many replies does this need??? Don't you read what's there before posting??

    1. Re:To all of the people who replied to this by Anonymous Coward · · Score: 0

      yeah, I mean, like, every thread spawns posts with equivalent content, ten in number.

    2. Re:To all of the people who replied to this by leftfist · · Score: 1

      agreed, i was thinking the same thing... but the thing is, this happens with nearly EVERY thread. there are always 10 people saying exactly the same thing.

    3. Re:To all of the people who replied to this by Anonymous Coward · · Score: 0

      agreed, i was thinking the same thing... but the thing is, this happens with nearly EVERY thread. there are always 10 people saying exactly the same thing.

  111. Re:NTFS filesystem by Dimensio · · Score: 1

    NTFS support (read only) seems to be broken completely, so no worries on it blowing up your filesystem this time. It fails to compile either in the kernel or as a module. Of course, it could be something else that I'm doing wrong, often support breaks occur when you have specific features enabled/disabled along with the one you want that won't work.

  112. It should be 2.4.11 by mangu · · Score: 1

    According to my numerological calculations, 2.4.10 is very bad luck!

  113. Re:what about boot messages? by Sonicated · · Score: 1

    Linus was all for it however I seem to remember some other people (Alan Cox beng one of them) saying its the only recognition they get and so no one implemented it.

    There is a patch called the Linux Progress Patch which gives you a graphical startup with a bar and some explanation of what is going on. Its quite pretty and if there is an error the normal messages can be seen on the second console.

  114. 2 compilation errors already by cyrilc · · Score: 1, Offtopic

    ...for the Alpha + i386 arch on NTFS (unistr.c) and pc_keyb.c respectively :

    personal box (AMD Duron) :

    gcc -D__KERNEL__ -I/usr/src/linux-2.4.9/include -Wall -Wstrict-prototypes -Wno-t rigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common -pipe -mprefe rred-stack-boundary=2 -march=i686 -malign-functions=4 -DMODULE -DMODVERSIONS -i nclude /usr/src/linux-2.4.9/include/linux/modversions.h -DNTFS_VERSION=\"1.1.16\ " -c -o unistr.o unistr.c unistr.c: In function `ntfs_collate_names': unistr.c:99: warning: implicit declaration of function `min' unistr.c:99: parse error before `unsigned' unistr.c:99: parse error before `)' unistr.c:97: warning: `c1' might be used uninitialized in this function unistr.c: At top level: unistr.c:118: parse error before `if' unistr.c:123: warning: type defaults to `int' in declaration of `c1' unistr.c:123: `name1' undeclared here (not in a function) unistr.c:123: warning: data definition has no type or storage class unistr.c:124: parse error before `if' make[3]: *** [unistr.o] Erreur 1 make[3]: Leaving directory `/usr/src/linux-2.4.9/fs/ntfs' make[2]: *** [_modsubdir_ntfs] Erreur 2 make[2]: Leaving directory `/usr/src/linux-2.4.9/fs' make[1]: *** [_mod_fs] Erreur 2 make[1]: Leaving directory `/usr/src/linux-2.4.9' make: *** [stamp-build] Erreur 2

    and on the Alpha Server 1000 :

    gcc -D__KERNEL__ -I/usr/src/kernel-source-2.4.9/include -Wall -Wstrict-prototype s -Wno-trigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common -pipe -mno-fp-regs -ffixed-8 -Wa,-mev6 -c -o pc_keyb.o pc_keyb.c In file included from pc_keyb.c:36: /usr/src/kernel-source-2.4.9/include/asm/keyboard. h:25: warning: `struct kbd_repeat' declared inside parameter list /usr/src/kernel-source-2.4.9/include/asm/keyboard. h:25: warning: its scope is on ly this definition or declaration, which is probably not what you want. pc_keyb.c:545: variable `kbdrate' has initializer but incomplete type pc_keyb.c:546: warning: excess elements in struct initializer pc_keyb.c:546: warning: (near initialization for `kbdrate') pc_keyb.c:548: warning: excess elements in struct initializer pc_keyb.c:548: warning: (near initialization for `kbdrate') pc_keyb.c: In function `parse_kbd_rate': pc_keyb.c:574: dereferencing pointer to incomplete type pc_keyb.c:575: dereferencing pointer to incomplete type pc_keyb.c:575: invalid use of undefined type `struct kbd_repeat' pc_keyb.c:576: dereferencing pointer to incomplete type pc_keyb.c:577: dereferencing pointer to incomplete type pc_keyb.c:577: invalid use of undefined type `struct kbd_repeat' pc_keyb.c:579: dereferencing pointer to incomplete type pc_keyb.c:585: dereferencing pointer to incomplete type pc_keyb.c:590: dereferencing pointer to incomplete type pc_keyb.c:591: dereferencing pointer to incomplete type pc_keyb.c: At top level: pc_keyb.c:606: conflicting types for `pckbd_rate' /usr/src/kernel-source-2.4.9/include/asm/keyboard. h:25: previous declaration of `pckbd_rate' pc_keyb.c: In function `pckbd_rate': pc_keyb.c:611: storage size of `old_rep' isn't known pc_keyb.c:612: sizeof applied to an incomplete type pc_keyb.c:614: sizeof applied to an incomplete type pc_keyb.c:615: sizeof applied to an incomplete type pc_keyb.c:611: warning: unused variable `old_rep' make[4]: *** [pc_keyb.o] Error 1 make[4]: Leaving directory `/usr/src/kernel-source-2.4.9/drivers/char' make[3]: *** [first_rule] Error 2 make[3]: Leaving directory `/usr/src/kernel-source-2.4.9/drivers/char' make[2]: *** [_subdir_char] Error 2 make[2]: Leaving directory `/usr/src/kernel-source-2.4.9/drivers' make[1]: *** [_dir_drivers] Error 2 make[1]: Leaving directory `/usr/src/kernel-source-2.4.9' make: *** [stamp-build] Error 2
    1. Re:2 compilation errors already by cyrilc · · Score: 2, Funny

      it still doesn't explain/correct the Alpha/pc_keyb.c problem tough !!

  115. Re:I really hate... by Anonymous Coward · · Score: 0

    I really hate the "I really hate the 'I really hate slashdot is not fresmeat' posts" posts.

  116. Re:Please don't get me wrong by Anonymous Coward · · Score: 0

    A better analogy would be NT/2000 hot fixes, rather than SP's. Does *ANYONE* broadcast NT/2000 hot fixes, and how many NT/2000 admins religiously apply hot fixes right after they come out? Code Red, anyone?

  117. Re:Please don't get me wrong by zulux · · Score: 2, Insightful

    I think it's important because Linux is a community supported software. It truly is software that blongs to you and me - we have all the rights we need to use it in almost any way. Windows is not *our* software - we rent it from Bill. Linus, Alan, Richard and countless others have rolled out a red carpet and have welcomed us - they have given us more than software, but have given us freedom to use our computer in the way we see fit. I'm gratfull to them and people like them - and I like to see what they are up to.

    --

    Moneyed corporations, non-working 'poor' and criminal prisoners are turning productive citizens into tax-slaves.

  118. Re:pcmcia-cs is broken with 2.4.9 by TeknoHog · · Score: 1
    hinds' pcmcia pkg won't build completely with this kernel release (fails on wvlan_hcf.c).

    Hmm, I noticed this problem a few versions ago. It worked fine when I removed the wavelan stuff (didn't need it).

    --
    Escher was the first MC and Giger invented the HR department.
  119. cracker alert by Anonymous Coward · · Score: 0, Troll

    first try, the lame-assed lameness filter thought that the numers were capital letters. maybe with all these lowere case letters the lameness filter will stop being so lame. so here ya go, a bunch of iis machines inflicted by code red and vulnerable, these are right from the server logs. these assholes deserve whatever they get, they knew about this for a couple weeks and still haven't bothered to fix their machines. have fun, kiddies, here's some iis boxes waiting to be owned. 12.10.163.3 12.10.194.185 12.10.194.186 12.10.194.212 12.10.194.216 12.10.194.245 12.10.196.90 12.10.196.91 12.10.196.92 12.10.198.133 12.10.209.125 12.100.103.164 12.100.103.166 12.100.103.173 12.100.103.82 12.100.127.66 12.100.127.83 12.100.2.234 12.100.23.105 12.100.231.38 12.100.4.209 12.100.60.141 12.100.60.181 12.100.8.34 12.100.8.58 12.100.98.99 12.101.113.169 12.101.142.214 12.101.146.2 12.101.146.5 12.101.205.212 12.101.243.194 12.101.3.243 12.101.8.34 12.106.204.182 12.106.70.67 12.106.81.189 12.108.167.164 12.108.167.79 12.108.84.13 12.108.98.27 12.109.143.51 12.110.134.160 12.110.7.175 12.111.156.212 12.111.166.148 12.111.23.228 12.144.11.195 12.147.161.230 12.149.216.135 12.15.133.20 12.151.129.119 12.153.34.205 12.153.65.150 12.154.64.67 12.154.65.132 12.16.10.204 12.17.142.52 12.17.233.92 12.18.181.19 12.18.218.173 12.18.230.39 12.23.66.60 12.23.92.15 12.26.25.23 12.26.4.72 12.27.131.254 12.29.1.134 12.29.172.141 12.29.52.132 12.29.82.250 12.3.72.234 12.3.72.237 12.30.148.37 12.32.17.82 12.33.105.13 12.33.140.77 12.34.156.101 12.35.57.138 12.37.132.214 12.37.133.89 12.37.164.43 12.37.164.44 12.37.164.66 12.37.164.71 12.38.146.66 12.38.146.87 12.38.162.98 12.38.77.68 12.39.197.99 12.4.184.53 12.4.242.167 12.4.51.215 12.40.56.96 12.42.251.143 12.46.176.50 12.46.80.160 12.5.137.175 12.52.68.16 12.6.159.159 12.61.234.229 12.64.137.240 12.64.139.177 12.64.144.38 12.64.24.122 12.64.32.16 12.64.32.182 12.64.36.111 12.64.42.132 12.64.54.177 12.64.6.252 12.64.61.99 12.64.63.56 12.64.7.102 12.64.72.90 12.64.75.15 12.64.90.127 12.7.223.81 12.7.224.229 12.72.131.28 12.72.136.17 12.72.136.46 12.72.205.142 12.72.26.95 12.72.45.240 12.72.50.66 12.73.231.87 12.73.27.18 12.74.100.182 12.74.101.146 12.74.101.35 12.74.120.167 12.74.65.40 12.74.8.16 12.74.98.10 12.75.129.82 12.75.147.40 12.75.200.10 12.76.83.33 12.77.11.25 12.77.11.251 12.77.11.85 12.77.123.69 12.77.147.112 12.77.151.119 12.77.224.79 12.77.231.160 12.77.27.86 12.77.54.96 12.78.127.210 12.78.130.167 12.78.131.252 12.78.145.14 12.78.153.10 12.78.153.32 12.78.154.166 12.78.178.118 12.78.249.43 12.78.48.217 12.79.123.101 12.79.212.28 12.79.212.28 12.79.213.112 12.79.23.104 12.79.25.3 12.8.179.45 12.8.19.90 12.80.23.109 12.80.28.157 12.80.30.77 12.80.53.243 12.80.6.88 12.80.7.196 12.80.7.70 12.81.1.85 12.81.108.201 12.81.110.226 12.81.160.215 12.81.161.76 12.81.161.89 12.81.196.204 12.81.28.75 12.81.3.253 12.81.6.110 12.81.65.18 12.81.71.221 12.81.71.38 12.81.72.53 12.81.78.145 12.81.8.47 12.81.84.213 12.81.86.180 12.81.87.242 12.81.88.67 12.81.9.25 12.82.152.171 12.82.155.229 12.82.243.40 12.83.80.204 12.84.101.149 12.84.107.98 12.84.110.210 12.84.112.180 12.84.128.237 12.84.132.179 12.84.137.122 12.84.138.236 12.84.139.85 12.84.225.96 12.84.230.145 12.84.233.39 12.84.238.111 12.84.240.87 12.84.98.135 12.84.99.112 12.84.99.210 12.85.9.110 12.86.1.125 12.86.1.19 12.86.10.73 12.86.200.238 12.86.217.103 12.86.3.185 12.86.32.252 12.87.104.71 12.87.129.222 12.87.130.84 12.87.93.167 12.88.104.159 12.88.105.24 12.88.115.199 12.88.118.60 12.88.119.135 12.88.160.114 12.88.160.219 12.88.161.164 12.88.162.136 12.88.163.107 12.88.165.42 12.88.166.193 12.88.167.98 12.88.170.109 12.88.207.195 12.88.89.173 12.88.90.126 12.89.128.65 12.89.129.165 12.89.131.159 12.89.135.177 12.89.135.55 12.89.136.247 12.89.136.36 12.89.136.62 12.89.138.248 12.89.145.112 12.89.148.52 12.89.148.87 12.89.170.109 12.89.182.47 12.89.182.6 12.89.84.11 12.9.246.169 12.90.17.163 12.90.22.35 12.90.26.68 12.90.26.68 12.90.7.144 12.90.96.252 12.91.1.209 12.91.10.48 12.91.130.227 12.91.130.76 12.91.130.96 12.91.131.138 12.91.136.108 12.91.136.248 12.91.25.15 12.91.3.69 12.92.20.83 12.92.215.237 12.92.215.93 12.92.217.102 12.92.223.153 12.92.35.30 12.92.35.70 12.92.67.154 12.92.71.38 12.93.208.97 12.93.43.115 12.94.10.219 12.94.23.228 12.98.116.132 12.98.120.155 12.98.134.90 12.98.137.30 12.98.154.38 12.98.16.10 12.98.16.10 12.98.16.10 12.98.54.228 12.98.54.239 12.98.56.139 12.98.61.131 12.98.62.62 12.98.64.158 12.98.69.100 12.98.69.98 12.98.69.99 12.98.8.86 12.98.81.103 12.98.82.71 12.98.83.126 12.99.136.122 12.99.160.218 12.99.160.237 12.99.179.250 12.99.181.51 12.99.184.34 12.99.184.43 12.99.185.163 12.99.187.209 12.99.187.218 12.99.239.50 12.99.30.147 12.99.62.52 12.99.62.54 12.99.8.242 12.99.96.66 128.187.14.248 128.206.196.141 this is just more lower case letters to overcome the lame lameness filter that thinks numbers are upper case. how lame can slashdot be after all. and the punctuation and spaces probably count as upper case too. asdfljkhasdfljkhsdfan lksdfkjhwfadjh asdflkjhsdafjlhsadfjh kljasdfljhsdf jlkhsdfkjhsdaf jklhsdvkjhasdf kljhskjhdfajhfd dfjkhzdfmasdfjklhwkj;hkjbnkjbns kjhasdv kjhsdfakjhsdfa kjhsdaf kjasdfkjhsdfjhf now thatere's some real lameness, which won't be filtered because it's lower case lameness, which is fine with slashdot kljdasfjlh werionren sadkljsdfahj kljdfaiojhefa klsdfkljsdfajkl kljsdfahsdf still too lame kljdfjhsdfajh sdafklnsdafln sdafkldsfaklj sdakjldsfjkldfs jklsdfajkldfs jkldsfkljdsfajkl kjldsfajkljdvsndsnsdljkhsdvklhsdfklhdsklsdglkjsdfk lsdlksg and still too lame for the lame lameness filter kjdfaskljfsda kljdsafksdfa sdfakjldfsjkl dsfkljdfsjkl dfsjklsdfjkl sdfkjldfsjkl dsfkjlsdfjkl iuwerquiower iuweruiwreu weruirwequio uiweruiweruio weruioweruiower czxvnzxczxc nzcxvndfasljkdfas mksdafiupwe m,dsfjklsdfankl dsfajklsdfjkldfsa dfsjklsdfuiwernmjkluiwrenmzvc zxcsdfajklweqruio zsdnmasdfjklseruiothis is just more lower case letters to overcome the lame lameness filter that thinks numbers are upper case. how lame can slashdot be after all. and the punctuation and spaces probably count as upper case too. asdfljkhasdfljkhsdfan lksdfkjhwfadjh asdflkjhsdafjlhsadfjh kljasdfljhsdf jlkhsdfkjhsdaf jklhsdvkjhasdf kljhskjhdfajhfd dfjkhzdfmasdfjklhwkj;hkjbnkjbns kjhasdv kjhsdfakjhsdfa kjhsdaf kjasdfkjhsdfjhf now thatere's some real lameness, which won't be filtered because it's lower case lameness, which is fine with slashdot kljdasfjlh werionren sadkljsdfahj kljdfaiojhefa klsdfkljsdfajkl kljsdfahsdf still too lame kljdfjhsdfajh sdafklnsdafln sdafkldsfaklj sdakjldsfjkldfs jklsdfajkldfs jkldsfkljdsfajkl kjldsfajkljdvsndsnsdljkhsdvklhsdfklhdsklsdglkjsdfk lsdlksg and still too lame for the lame lameness filter kjdfaskljfsda kljdsafksdfa sdfakjldfsjkl dsfkljdfsjkl dfsjklsdfjkl sdfkjldfsjkl dsfkjlsdfjkl iuwerquiower iuweruiwreu weruirwequio uiweruiweruio weruioweruiower czxvnzxczxc nzcxvndfasljkdfas mksdafiupwe m,dsfjklsdfankl dsfajklsdfjkldfsa dfsjklsdfuiwernmjkluiwrenmzvc zxcsdfajklweqruio zsdnmasdfjklseruiothis is just more lower case letters to overcome the lame lameness filter that thinks numbers are upper case. how lame can slashdot be after all. and the punctuation and spaces probably count as upper case too. asdfljkhasdfljkhsdfan lksdfkjhwfadjh asdflkjhsdafjlhsadfjh kljasdfljhsdf jlkhsdfkjhsdaf jklhsdvkjhasdf kljhskjhdfajhfd dfjkhzdfmasdfjklhwkj;hkjbnkjbns kjhasdv kjhsdfakjhsdfa kjhsdaf kjasdfkjhsdfjhf now thatere's some real lameness, which won't be filtered because it's lower case lameness, which is fine with slashdot kljdasfjlh werionren sadkljsdfahj kljdfaiojhefa klsdfkljsdfajkl kljsdfahsdf still too lame kljdfjhsdfajh sdafklnsdafln sdafkldsfaklj sdakjldsfjkldfs jklsdfajkldfs jkldsfkljdsfajkl kjldsfajkljdvsndsnsdljkhsdvklhsdfklhdsklsdglkjsdfk lsdlksg and still too lame for the lame lameness filter kjdfaskljfsda kljdsafksdfa sdfakjldfsjkl dsfkljdfsjkl dfsjklsdfjkl sdfkjldfsjkl dsfkjlsdfjkl iuwerquiower iuweruiwreu weruirwequio uiweruiweruio weruioweruiower czxvnzxczxc nzcxvndfasljkdfas mksdafiupwe m,dsfjklsdfankl dsfajklsdfjkldfsa dfsjklsdfuiwernmjkluiwrenmzvc zxcsdfajklweqruio zsdnmasdfjklseruiothis is just more lower case letters to overcome the lame lameness filter that thinks numbers are upper case. how lame can slashdot be after all. and the punctuation and spaces probably count as upper case too. asdfljkhasdfljkhsdfan lksdfkjhwfadjh asdflkjhsdafjlhsadfjh kljasdfljhsdf jlkhsdfkjhsdaf jklhsdvkjhasdf kljhskjhdfajhfd dfjkhzdfmasdfjklhwkj;hkjbnkjbns kjhasdv kjhsdfakjhsdfa kjhsdaf kjasdfkjhsdfjhf now thatere's some real lameness, which won't be filtered because it's lower case lameness, which is fine with slashdot kljdasfjlh werionren sadkljsdfahj kljdfaiojhefa klsdfkljsdfajkl kljsdfahsdf still too lame kljdfjhsdfajh sdafklnsdafln sdafkldsfaklj sdakjldsfjkldfs jklsdfajkldfs jkldsfkljdsfajkl kjldsfajkljdvsndsnsdljkhsdvklhsdfklhdsklsdglkjsdfk lsdlksg and still too lame for the lame lameness filter kjdfaskljfsda kljdsafksdfa sdfakjldfsjkl dsfkljdfsjkl dfsjklsdfjkl sdfkjldfsjkl dsfkjlsdfjkl iuwerquiower iuweruiwreu weruirwequio uiweruiweruio weruioweruiower czxvnzxczxc nzcxvndfasljkdfas mksdafiupwe m,dsfjklsdfankl dsfajklsdfjkldfsa dfsjklsdfuiwernmjkluiwrenmzvc zxcsdfajklweqruio zsdnmasdfjklseruiothis is just more lower case letters to overcome the lame lameness filter that thinks numbers are upper case. how lame can slashdot be after all. and the punctuation and spaces probably count as upper case too. asdfljkhasdfljkhsdfan lksdfkjhwfadjh asdflkjhsdafjlhsadfjh kljasdfljhsdf jlkhsdfkjhsdaf jklhsdvkjhasdf kljhskjhdfajhfd dfjkhzdfmasdfjklhwkj;hkjbnkjbns kjhasdv kjhsdfakjhsdfa kjhsdaf kjasdfkjhsdfjhf now thatere's some real lameness, which won't be filtered because it's lower case lameness, which is fine with slashdot kljdasfjlh werionren sadkljsdfahj kljdfaiojhefa klsdfkljsdfajkl kljsdfahsdf still too lame kljdfjhsdfajh sdafklnsdafln sdafkldsfaklj sdakjldsfjkldfs jklsdfajkldfs jkldsfkljdsfajkl kjldsfajkljdvsndsnsdljkhsdvklhsdfklhdsklsdglkjsdfk lsdlksg and still too lame for the lame lameness filter kjdfaskljfsda kljdsafksdfa sdfakjldfsjkl dsfkljdfsjkl dfsjklsdfjkl sdfkjldfsjkl dsfkjlsdfjkl iuwerquiower iuweruiwreu weruirwequio uiweruiweruio weruioweruiower czxvnzxczxc nzcxvndfasljkdfas mksdafiupwe m,dsfjklsdfankl dsfajklsdfjkldfsa dfsjklsdfuiwernmjkluiwrenmzvc zxcsdfajklweqruio zsdnmasdfjklseruiothis is just more lower case letters to overcome the lame lameness filter that thinks numbers are upper case. how lame can slashdot be after all. and the punctuation and spaces probably count as upper case too. asdfljkhasdfljkhsdfan lksdfkjhwfadjh asdflkjhsdafjlhsadfjh kljasdfljhsdf jlkhsdfkjhsdaf jklhsdvkjhasdf kljhskjhdfajhfd dfjkhzdfmasdfjklhwkj;hkjbnkjbns kjhasdv kjhsdfakjhsdfa kjhsdaf kjasdfkjhsdfjhf now thatere's some real lameness, which won't be filtered because it's lower case lameness, which is fine with slashdot kljdasfjlh werionren sadkljsdfahj kljdfaiojhefa klsdfkljsdfajkl kljsdfahsdf still too lame kljdfjhsdfajh sdafklnsdafln sdafkldsfaklj sdakjldsfjkldfs jklsdfajkldfs jkldsfkljdsfajkl kjldsfajkljdvsndsnsdljkhsdvklhsdfklhdsklsdglkjsdfk lsdlksg and still too lame for the lame lameness filter kjdfaskljfsda kljdsafksdfa sdfakjldfsjkl dsfkljdfsjkl dfsjklsdfjkl sdfkjldfsjkl dsfkjlsdfjkl iuwerquiower iuweruiwreu weruirwequio uiweruiweruio weruioweruiower czxvnzxczxc nzcxvndfasljkdfas mksdafiupwe m,dsfjklsdfankl dsfajklsdfjkldfsa dfsjklsdfuiwernmjkluiwrenmzvc zxcsdfajklweqruio zsdnmasdfjklseruio

    1. Re:cracker alert by Anonymous Coward · · Score: 0

      1 W4N+ T0 0Wn uR 80X T00

  120. Re:Please don't get me wrong by R3 · · Score: 1

    I think the point here is that while Microsoft can use (better: saturate) pretty much every information channel available to
    announce whatever they want to peddle to the unsuspecting crowd, be it service packs and IIS hole-pluggers
    or new products, the Linux community has this and couple of other web sites and couple of magazines as their only
    venues for announcements and Linux-related information.
    So, why should Slashdot give Microsoft an opportunity to do what they can do on ZDnet/C|Net, in 99% of IT rags, not to
    mention TV and radio - here?

  121. Everything is relative... by AlXtreme · · Score: 1
    ...run Win98...

    ...run Win2k...

    Because other Operating Systems than Linux DO matter.

    Huh? which planet do you come from? ;)

    But Seriously, /. is the home of a lot of GNU/Linux nerds/geeks, but also BeOS and *BSD are regularly discussed, just like HURD. If you don't like GNU/Linux, then that isn't a problem, but that doesn't mean you should troll the news that DOES matter to a lot of us. Let us discuss all our latest kernels, and you can go back to BG, and we'll all be happy.

    Everything is relative. Win2k SP's may matter to you, but i'm sure the majority of readers won't give a cow...

    --
    This sig is intentionally left blank
  122. Re:Real news: glibc-2.2.4 was released today by Skapare · · Score: 3, Funny
    Why does the libc get so little publicity compared to the kernel ? I don't get it !

    Because it has no charismatic leader. And many people are simply afraid to upgrade it (more so than the kernel).

    --
    now we need to go OSS in diesel cars
  123. Trident Cyberblade XP by Anonymous Coward · · Score: 0

    Hi everyone. Since a lot of you are talking about merging drivers into the kernel, I was wondering when we will have a driver for Trident's line of gfx cards, that supports TV-Out! This is the main reason why im not running linux on my laptop.

  124. Re:Gigbabyte Mirror Bandwidth by domo_jojo · · Score: 1

    WTF! That's now in my favorites! After hitting 1.2MB/sec settled into 775KB/sec. Only prob was that the tar kept going way past 26 mb, just wound up cancelling. Got the bz @ 150KB (not bad!) Must be that KY jelly! Or maybe some Sensa.. I mean Kentucky Bluegrass Thanks

  125. Helsinki... yeeaah by drnomad · · Score: 1

    I spend "midsummer night" in Helsinki Finland... great! Met a young feminine lawyer there... oh my god... Have a nice holidat Linus!

  126. Re:FreshMeat by snake_dad · · Score: 1

    To clarify your reply: how many fucking days do you have per month, on average? And why do you waste such a day by just looking at fresh meat? :)

    --
    karma capped .sig seeking available Slashdot poster for long-term relationship.
  127. YHBT by Anonymous Coward · · Score: 0

    YHBT, dipshit.......

  128. Re:Firewire???????? by SirDrinksAlot · · Score: 1

    Hmmm. Well the bridge chipset is the Oxford Semiconductor OXFW911 2nd generation FW to IDE bridge and the drive is an IBM Deskstar 75gxp 30gig. We shall see!

  129. Another kernel update? by Anonymous Coward · · Score: 0

    Jeez, yet another kernel update this year? I think that makes, what, 8 or so updates this year for Linux, and 1 (or 2) updates for Win2K since Feb 2000? Hah!

  130. Good one! by Anonymous Coward · · Score: 0

    I laughed my ass at that. Off.

  131. Re:Dammit!!! by then,+it+was+nigh · · Score: 1

    You think you got it bad? I just got finished installing 2.4.8 on a box literally ten minutes ago. And I see 2.4.9 has a driver update for my Ethernet card, which, I suppose, means I really should upgrade. *groan...*

    --
    sed 's/In Soviet Russia/In NSA America/g' < yakov-smirnoff-jokes.txt
  132. poor Linus by Hoo00 · · Score: 0, Offtopic

    Why nobody gives Linus network access that he has to go to Finland for a week or so to release the kernel?

  133. Re:Real news: glibc-2.2.4 was released today by James+Manning · · Score: 1

    one theory:

    with the acquisition of cygnus, glibc is now basically a redhat-internal project these days, Ulrich being @redhat.com and all.

    Think Taco wants to pimp the work of RH instead of the distro he loves that benefits from it? The kernel's leader is outside RH (although obviously many, if not most of the major contributers are inside RH), so slashdot can pimp the kernel without pimping RH.

    Oh, and did I mention VA Linux is an RH competitor? :)

    Just some thoughts.

  134. Re:FreshMeat by ananke · · Score: 0, Troll

    unce upon a time, long time ago, you could look at freshmeat.net everyday
    heck, you could take the daily e-mails. now it's just too big, too many apps.

    i think they should do a similar thing to slashdot:
    allow registered users to view only certain categories on the front page.

    let's say i am interested in audio apps, and that's what i usually look at at freshmeat. i would like to be able to opt-out from all the other categories, except audio-apps.

    yes, it's a silly idea, but i think it may work

    --
    --- d'oh
  135. I really hate "slashdot is not freshmeat" posts .. by Wordsmith · · Score: 0, Troll

    ... but that's what I think every time I see a new kernel version story. These things are popped out often enough. Shouldn't they be reserved for -major- revisions and interesting new feature additions?

    When 2.4 was released, that was a big deal. When ReiserFS got included, that was a big deal. 2.4.9? Not such a bid deal.

  136. Here is the changelog by Anonymous Coward · · Score: 0

    final: - David Miller: sparc updates, FAT fs fixes, btaudio build fix - David Gibson: Orinoco driver update - Kevin Fleming: more disks the HPT controller doesn't like - David Miller: "min()/max()" cleanups. Understands signs and sizes. - Ben LaHaise: make vma merging more generous, help Mozilla /proc//maps - Jens Axboe: CD updates - Trond Myklebust: save away NFS credentials in inode, so that mmap can writeout. - Mark Hemment: HIGHMEM ops cleanups - Jes Sorensen: use "unsigned long" for flags in various drivers pre4: - Tim Hockin: NatSemi ethernet update - Kurt Garloff: make PS/2 mouse reconnect adjustable like 2.2.x - Daniel Phillips: unlazy use-once - David Miller: undo poll() limit braindamage - me: make return value from do_try_to_free_pages() meaningful pre3: - Patrick Mochel: fix PCI:PCI bridge 64-bit memory type detection - me: more forgotten nfsd off_t -> loff_t - Alan Cox: ide driver merge - Eric Lammerts, Rik van Riel: when oom, kill all threads. - Ben LaHaise: use down_read, not down_write() in map_user_kiobuf. We don't change the mappings, we just read them. - Kai Germaschewski: ISDN updates - Roland Fehrenbacher: sparse lun check - Tim Waugh: handle awkward Titan parallel/serial port cards - Stephen Rothwell: APM updates - Anton Altaparmakov: NTFS updates pre2: - me: fix forgotten nfsd usage of filldir off_t -> loff_t change - Alan Cox: more driver merges pre1: - Rui Sousa: emu10k1 module fixes, remove joystick part. - Alan Cox: driver merges - Andrea Arkangeli: alpha updates - David Woodhouse: up_and_exit -> complete_and_exit - David Miller: sparc and network update - Andrew Morton: update 3c59x driver - Neil Brown: NFS export VFAT, knfsd cleanups, raid fixes - Ben Collins: ieee1394 updates - Paul Mackerras: PPC update - me: make sure we don't lose position bits in "filldir()"

  137. The problem with frequent kernel releases by BierGuzzl · · Score: 1, Interesting

    With longer gaps between kernel releases, people can write apps that interact with the kernel and actually have a reasonable expectation that they won't spend the majority of their time trying to update their code to work with the most recent version of the kernel. People who just want bug fix patches should be able to get just that, leaving the added features,etc which will invariably introduce new bugs to be introduced on the next release cycle. The debian distribution system would be perfectly suited for this concept, and would pretty much do away with the need for a "development" branch of the kernel.

    1. Re:The problem with frequent kernel releases by dvNull · · Score: 1

      It was the SB Live drivers ... I have 2 machines .. one with an AWE64 card and one with the Live!

      The 2.4.8 kernel compile died on the emu10k1 driver .. The other kernel works fine and I play Quake 3 every night =)

    2. Re:The problem with frequent kernel releases by garett_spencley · · Score: 3, Insightful
      Some already pointed this out but it was only a minor point in his/her post. It is _the_ point for mine so I will rant entirely about it.

      The only kernel releases that should break applications are the major and minor releases (not the patch/bugfix releases). If you have an app that works with 2.4.7 (for example) and breaks with 2.4.8 then either your app is broken or it's a driver issue where the maintainer fucked up. Which seemed to be what happened to me with Q3A and the SB Live! drivers in 2.4.8. Although I'm not certain wether it's an issue with the drivers or Q3A.

      The patch level releases fix bugs. Sometimes serious bugs. So you should be greatful that they come out as fast as they do. The minor releases (2.2-2.4) only come out every couple of years so I would hardly consider that "Too fast! OMG I can't keep up!".

      </rant>

      --
      Garett

  138. Linus off to Finland by Anonymous Coward · · Score: 0

    So what's he gonna do over there? Spill the Linux secrets over to the Russians? They've got a 1000 mile border with equipment anywhere near like we've got on the Mexican border, you know.

  139. NTFS filesystem by lavaforge · · Score: 2

    I was reading the changelog and it said that one of the pre- 2.4 kernels improved NTFS support. Has anyone out there tried this? I tried it a while back and blew up my entire NT partition, and I'm about half afraid of it. What kind of progress has been made in this area?

    1. Re:NTFS filesystem by Anonymous Coward · · Score: 1, Informative

      Chec out kernel traffic. Writing on NTFS should still be reserved for the more adventurous people.

    2. Re:NTFS filesystem by Haggis+Muncher · · Score: 4, Interesting


      You can fix this by editing "/usr/src/linux/fs/ntfs/unistr.h" and adding the following at line 30:

      #include <linux/kernel.h>

      and then recompiling. I've not bothered to submit an official patch... there's probably dozens already.

      --

      --
      Free Dmitry!
      http://www.freesklyarov.org
    3. Re:NTFS filesystem by Azog · · Score: 2, Informative

      well yes, that's why anyone who manages to mess things up in read-only mode should send in a bug report, because that would indicate an unknown, serious problem that should be fixed right away.

      Problems in the write support are less serious, because they are not on by default and the developers know about them anyway.

      I suspect the original poster was using the experimental write support. That used to be so bad that it probably should not have been in the kernel at all, but started getting better around 2.4.5 or so - search the LKML archives for "PATCH" and "NTFS" for details.

      NTFS read-only works fine on my dual-boot machine, btw.

      --
      Torrey Hoffman (Azog)
      "HTML needs a rant tag" - Alan Cox
    4. Re:NTFS filesystem by Teukels · · Score: 1

      > There's often a good reason why "EXPERIMENTAL" features are called that, even though sometimes it seems political - reiserfs, for example, is pretty safe - reported problems with it usually turn out to be hardware failures.

      Sometimes features are just being called EXPERIMENTAL in Linux Kernel because there are not enough people who'd just respond to the maintainer saying: "It is doing fine now."

      This, I can imagine, is very common for people take notice when something does _not_ work instead of when things do work..

      PS. Oh.. ReiserFS is totaly safe for me.. Sometimes I just hit reset out of boredom to see it getting up without fsck-ing and filling up lost+found :)) I should tell those people things are working really fine!

      "Kantian moral dictates to never see another person as pathway but allways as objective"

  140. Re:I can't wait until XFS is standard... by Adnans · · Score: 3, Informative

    XFS is great. I have it on 2 production servers (rock solid since installation). However, for my workstation I've recently switched (back) to ReiserFS. I do a lot of large compiles and move huge amounts of code around and that exposes the ONLY weak part in XFS: unlink() time. XFS is doog slow for deleting large directory trees. I sure hope they optimize this, soon.. Other than the long rm times, it's rock solid. The ACL ioctls should be sorted out too soon, so we can have access to extended attributes (I will NOT miss you Be, Inc.)....

    -adnans

    --
    "In short: just say NO TO DRUGS, and maybe you won't end up like the Hurd people." --Linus Torvalds
  141. Link is to hick.org not goatse.cx by Anonymous Coward · · Score: 0

    Goatse.cx doesn't seem to be reachable through a link to its IP address; it's probably virtual hosted. Here's a goat for you.

    1. Re:Link is to hick.org not goatse.cx by Anonymous Coward · · Score: 0

      hick.org and goatse.cx have the same IP address.

  142. mozilla help? by cswiii · · Score: 2

    - Ben LaHaise: make vma merging more generous, help Mozilla /proc/<>/maps

    Can anyone with the know-how explain what this means?

    Cheers.

    1. Re:mozilla help? by Anomie-ous+Cow-ard · · Score: 1

      According to last week's LWN Kernel page, a good number of Gnome applications show similar behavior. I hope this really does work for Mozilla, i haven't changed over yet because it tends to be slow on my old computer here...

      --

      --
      perl -e'$_=shift;die eval' '"$^X $0\047\$_=shift;die eval\047 \047$_\047"' at -e line 1.

    2. Re:mozilla help? by DJGreg · · Score: 2, Informative

      2.4.x changed the way that vma's were merged. VMA's being the sections of virtual memory that you malloc. Mozilla (I'm guessing) has fairly fine-grained memory handling, so it malloc()'s and free()'s often, making for _lots_ of vma's.

      The changes in 2.4.9 make contiginous (sp?) vma's merged into one, speeding up walking the list of vma's. Note that previous versions did this already, but only in very few (easy) cases. This change is a bit more 'expensive', but has made a noticable difference in mozilla for me. These changes could also help out lots of other programs that handle memory similarly (can't think of others atm though).

      All in All.. i like ;)

      Disclaimer: this is my understanding, but as I'm not Rik Van Riel, I'm probably talking out my ass

      --

      Yes, one day I may actually learn to spell...
  143. Re:I can't wait until XFS is standard... by wowbagger · · Score: 3, Informative

    My only experience with ReiserFS was on an SMP machine, and it blew chunks (corrupted file system, bad data, kernel panics). I tried XFS and it worked quite well. I've not given Reiser another shot since then (haven't had time). Perhaps they've fixed this bug.

    I like the fact that growing an XFS volume to take up more space is simple, and does not require unmounting the volume (in fact, you CANNOT grow an unmounted XFS volume, you MUST mount it first).

    So, in a system with hot-swap drive bays, you can add a physical volume to the logical volume group, and just tell XFS to grow. Presto - more space.

    I also like the fact that you can move the journal over to another block device. If "you feel the need, the need for speed" you can use a 10MB SCSI battery-backed up SRAM drive for the journal, and a big RAID array for the main storage. Speed and safety in one.

  144. Re:Freshmeat can send you a mail on new releases by gimpboy · · Score: 1

    dont you know he would have to look at freshmeat every fucking day to find out that they will email you when new stuff is released?

    --
    -- john
  145. Re:NTFS problem... by Anonymous Coward · · Score: 0

    Yet another variation, add #include "ntfstypes.h" just before #include "unistr.h" on line 27, and change the unsigned int to __u32 on line 99. That's two underscores in the __u32.

  146. Grr... no patches??? by Twilight1 · · Score: 1

    "Use mirrors" they whine...

    But no one posts any mirrors.

    Then when a few valid mirrors start popping up, none of them have any patches... only full source trees. What's the point in mirroring if you're only going to mirror the full tree?

    C'mon... some of us (even those of us with lots of bandwidth) would rather patch up than download a whole new kernel tree.

    Someone mirror the patch. Save the trees. Save the whales. Do it for the children. Do it because the voices in your head tell you to. Please?

    -Twi

    1. Re:Grr... no patches??? by -=Izzy=- · · Score: 1

      i mirrored everything. patches, and the full source.

      ftp://209.203.218.6/pub/kernel/2.4.9 happy compiling!

  147. Re:Who cares by Anonymous Coward · · Score: 0

    [BONG]
    The Linux Death Bell Hath Tolled
    [BONG]

  148. Re:Real news: glibc-2.2.4 was released today by Fishstick · · Score: 1

    Wonder how long before a .deb for Woody will appear?

    --

    There is much cruelty in the universe, John.
    Yeah, we seem to have the tour map.

  149. Is kerneli still being maintained? by typedef · · Score: 2, Interesting

    Does anyone know what the deal is with the kerneli patch? Short of an unofficial hacked patch to work with newer kernels, kerneli hasn't been updated since 2.4.3, and there seems to be some serious issues currently with file corruption when using kerneli with 2.4 series kernels. Alternative projects like cryptoapi and loop-aes have sprung up from currently foobar'd kerneli, and while they work great, I can't help but wonder what's going on with the kerneli project that it hasn't been updated in so long.

  150. FreshMeat by Natalie's+Hot+Grits · · Score: 4, Funny

    For those of you trols that think "Slashdot isn't Fresh Meat" here is my 2cents:

    STFU. When a kernel is released, I want to know about it. and who in their right mind looks at freshmeat every fucking day? NOBODY

    So what is the point in starting a bitch session just to bitch? To waste Bandwidth? To blow time at your job? GIME A BREAK!

    Now I can update my linux boxen tonight, and have a piece of mind that the IDE driver wasnt working correctly in 2.4.7 for me, is noted in the changelog as being fixed.

    have a nice day :)

    --
    Two infinite things: your stupidity and mine. But I'm not sure about the latter. If my sig offends you, I'm sorry.
    1. Re:FreshMeat by Anonymous Coward · · Score: 0

      Is it me or does freshmeat not have this announcement yet?

    2. Re:FreshMeat by nirvdrum · · Score: 1

      I have my web browser start up page point to freshmeat. So I check it out every time my browser starts up. *gasp* That means I even check it multiple times in a day *deeper gasp*

      --
      If there was a "-1 Not Funny", that'd be my most used mod.
    3. Re:FreshMeat by Kronos. · · Score: 1

      pheeww!! I'm not the only one ;)

    4. Re:FreshMeat by prla · · Score: 1

      Jeez, since when is FreshMeat that connected with Linux kernel releases. Apart from the stupid idea of making an article on a minor release of course :P

      [paulo@nirvana paulo]$ finger @zeus.kernel.org
      [zeus.kernel.org]

      The latest stable version of the Linux kernel is: 2.4.9
      The latest prepatch (alpha) version *appears* to be: 2.4.9-pre4

      Ever thought of this?.. It saves you a lot of hassle you know.

    5. Re:FreshMeat by ananke · · Score: 1

      grat, moderators not reading the comments again.

      --
      --- d'oh
  151. Help, I can't keep up!!! by orionpi · · Score: 1

    I was just able to download 2.4.8 yesterday. Howmany kernel this week?

    1. Re:Help, I can't keep up!!! by yukonbob · · Score: 1

      I thought the subject said "Help, I can't keep it up!!!", so I was gonna post a clever link.


      Damn.

      -yb

  152. Re:ya by Anonymous Coward · · Score: 0

    There is no chance to survive, make your time();

  153. Fat FS fixes & CD Updates by kisielk · · Score: 1

    Does anyone know the specifics, or a source of information, about these two changes listed in the "final" section at the top of the changelog ?

  154. Please don't get me wrong by friday2k · · Score: 1, Insightful

    but what is so exciting about:
    - Alan Cox: more driver merges
    - Daniel Phillips: unlazy use-once
    and so on? I mean is there a Slahdot article when Microsoft gives out a new Windows 2000 SP? Including the changes and fixes (mirrored in the comments)? When there is a new major release, yeah, that's worth a story (and I expect the same when Windows XP ships, when Apple OS XI is there and the next major FreeBSD is out). These are newsworthy stories, a 0.01 change in version number is not. And now, FLAME ON, but I had to write this ...

    1. Re:Please don't get me wrong by Gothmolly · · Score: 1

      If it's so boring, why did you click on the link to the ChangeLog ?

      --
      I want to delete my account but Slashdot doesn't allow it.
    2. Re:Please don't get me wrong by Anonymous Coward · · Score: 0

      You're almost right, but SlashDot (imho) should be addressing mainly the Open Source Community (& focus indeed on open source OSs).
      You could find in many other places news and commentaries concerning the commercial products of your choice.
      Yes I agree, /. is a little too GNU/Linux-centric (& could do more towards the *BSD community imho), but .. this is his "raison d'etre" (in french : "reason for living").

      P.S.: I'ld like to know if on other sites (for example the sites supporting the Microsoft products) their discussion forums are spawned as lamenessly as ours by individuals having nothing to do with the main discussion topic ..

  155. University Mirror by KkiniDst · · Score: 1
    --
    Brian T Glenn
    delink.net Internet Services
  156. Then I guess.. by Axe · · Score: 1

    IBM is just losing 1 billion bucks, and all this huge ads along 101 is just my hallucination.. Just like the workstations of all our developers, in a very commercial company (will sell the product mostly for Solaris though..)

    --
    <^>_<(ô ô)>_<^>
  157. Yet Another Mirror by LyNXeD · · Score: 2, Informative

    I managed to grab all the 2.4.9 files earlier, and they're now mirrored at:

    ftp://ftp.wingnet.net/pub/linux/kernel/2.4.9/

    All the standard files for 2.4.9 from kernel.org (bz2, gz, signatures, etc.) are there. Just the 2.4.9 though - no older stuff. Have at it!

  158. Re:wholy crap! by Anonymous Coward · · Score: 0

    "Release early, release often."

  159. Re:wholy crap! by Anonymous Coward · · Score: 0

    That's my farting strategy!

  160. Linus truly is a genious... by Leven+Valera · · Score: 1

    I need to remember that plan. Release new version of application, go on holiday for week. Have extra time to handle initial bug reports. Repeat.

    He's brilliant!

    --
    Woot w00t w007.
  161. wholy crap! by Otis_INF · · Score: 2

    One kernel update isn't even downloaded or the next is already finished! Not even Microsoft cooks up that many service packs in this particular timeframe...

    --
    Never underestimate the relief of true separation of Religion and State.
  162. Re:NTFS problem... by Anonymous Coward · · Score: 0

    In linux/fs/ntfs/unistr.c, on line 99 change

    for (cnt = 0; cnt < min(unsigned int, name1_len, name2_len); ++cnt)

    to

    for (cnt = 0; cnt < min(name1_len, name2_len); ++cnt)

  163. Mirror, Mirror on the Wall. by Anonymous Coward · · Score: 0

    Please post mirrors in the comments.

    Eye, Eye, Sir!

    MIRROR! MIRROR! MIRROR! MIRROR! MIRROR! MIRROR! MIRROR! MIRROR! MIRROR! MIRROR! MIRROR! MIRROR! MIRROR! MIRROR! MIRROR! MIRROR! MIRROR! MIRROR!

    When you look in the mirror what do you see?

  164. Bug in NTFS compilation by the+way · · Score: 3, Interesting

    I just compiled 2.4.9 with read-only support for NTFS. It turns out that there is a small bug that stops it from compiling. To fix the bug, edit fs/ntfs/unistr.c, and add somewhere near the top (line 24 or 25 is fine):

    #include <linux/kernel.h>

  165. Re:Meaningful ChangeLog anywhere? by Anonymous Coward · · Score: 0

    How is this offtopic? He asked where a more user-friendly version of the changelog could be found - one of those "promote Linux by being friendlier to 'normal' users" things that are always talked about on Slashdot, in case you didn't quite get it.

    Goddamn stupid fucking moderators...

  166. SB Live by rmgrotkierii · · Score: 0

    I got a SB Live Platnium 5.1 working in Win2000 Advanced Server, SP2, though I JUST installed the drivers for it. Though it's been a month since I've been in Windows to play with it. I'm finding Linux 2.4.6 (yes im going to upgrade to 2.4.9) and XF86 4.1.0 enough for me at the moment, though I am really missing my games. :-\

    --
    Reality is for those who can't face Science Fiction.
  167. Needed: " by Anonymous Coward · · Score: 0

    We really need a moderation catagory to spank suckers who respond to obvious trolls. I'm serious. Nothing would reduce trolling faster than eliminating the indignant responses of people who can't see that they're being had.

  168. 2.4.9 is not too shabby by Anonymous Coward · · Score: 0

    This 2.4.9 memory management stuff works okay on my system. It's getting close to production grade. Hopefully OpenWall will have a patch in the not-too-distant future...

  169. Re:I really hate... by Anonymous Coward · · Score: 0

    I really hate the "I really hate the 'I really hate the "I really hate slashdot is not freshmeat" posts' posts" posts.

  170. I can't wait until XFS is standard... by wowbagger · · Score: 5, Interesting

    I can't wait until SGI gets XFS merged into the main tree. I'm running XFS on all my systems, and so I have to wait until SGI gets the changes merged back into their port.

    XFS (especially when combined with LVM) is great. No fscks, big files, ACLs, and you can grow a mounted file system (great with LVM and hot-swap drives).

    1. Re:I can't wait until XFS is standard... by wowbagger · · Score: 2

      Does Reiser have something like xfs_fsr? xfs_fsr is a program you throw into a cron job and it will optimize the file system: it copies a file to a contiguous space, then swaps the inodes over. It lets you defrag a file system and move the data around for best access.

    2. Re:I can't wait until XFS is standard... by synsent · · Score: 1

      I have LVM with reiserfs, and it is really good and comfortable, what is better on XFS?

    3. Re:I can't wait until XFS is standard... by synsent · · Score: 1

      OK I see XFS is even better for professional enterprise applications.

  171. Re:Firewire???????? by szomb · · Score: 1

    Uhm, I have no actual clue, but I remember when configuring 2.4.8 that I had to disable a bunch of FireWire support. It was actually on by default. So why don't you check the hardware guide and/or just try it.

    --
    Just because a few of us can read write and do a little math, doesn't mean we deserve to conquer the universe
  172. 2.4.A by Anonymous Coward · · Score: 0

    Traditionally for other products (this has never happened with the Linus kernel, however,) the last number is in hexadeciaml, not decimal, so the next version will be 2.4.A

  173. Gigbabyte Mirror Bandwidth by rapett0 · · Score: 4, Funny

    http://linux.uky.edu/kernel/v2.4/

    This mirror is so fast, it will speed your downloads up, even past your NIC/modem's supposed maximums.

  174. Well timed by d97mno · · Score: 1

    I started my compile of 2.4.8 about 20:30. Went away to rent a movie, came back to boot my new kernel...and what is the first thing my Mozilla browser finds... 2.4.9! It's a bad day for Jedi power ;)

    --
    Real programmers never comment their code. If it's hard to write, it should be hard to read!
  175. Dammit!!! by taliver · · Score: 1, Offtopic
    I just downloaded and burned 2.4.8 yesterday!

    Thank God I don't have disks the HPT controller desn't like.

    --

    I demand a million helicopters and a DOLLAR!

  176. Firewire???????? by SirDrinksAlot · · Score: 1

    Does any of the kernels support firewire and firewire hard drives? I'd like to put linux on my external Firewire Hard drive (kernel would obviously live on my ide drive tho) anyone know if this is possible?

    1. Re:Firewire???????? by Snotnose · · Score: 1

      Pop over the firewire page at sourceforge to learn all you need to know about Firewire on Linux. I've got both a camera and IP over 1394 working.

  177. 2.4.8 is only a week old by Anonymous Coward · · Score: 1

    Nothing like pushing 'em out the door ;-).

    1. Re:2.4.8 is only a week old by Explo · · Score: 1

      2.4. == development release -- every time. They don't say it very often, but if you know the numbering system you'd know that even numbers are just development releases.

      Erm, no. 2.1 and 2.3 were development releases and 2.5 will be. 2.0, 2.2 and 2.4 are stable series. See eg. this link.

      --
      Everyone who makes generalizations should be shot.
  178. Re:NTFS problem... by gotan · · Score: 2

    If you want to avoid such troubles you have some options:
    - not upgrading at all (do you really need the newest spiffiest kernel?)
    - upgrade only after there was some discussion, so you'll be warned about trouble
    - wait for the first patches, see if they fix the things you need
    - wait for a precompiled kernel (say as rpm) for your distribution

    If you want the newest Kernel from kernel.org the day it comes out you're expected to keep your old kernel so you can use that if the newest stuff don't work, and that you take a glance at the compile logs and use that option if something comes up you can't handle.

    You don't need to edit "the friggin source code", it's an option. If that newest MS-Stuff breaks you're without that option, you have to roll back (if you can). Since users with the level of knowledge you hint at, are probably relying on their distribution for precompiled kernels i don't see your problem.

    --
    "By the way if anyone here is in advertising or marketing... kill yourself." -- Bill Hicks
  179. Re:This doesn't really matter anyway by Fujisawa+Sensei · · Score: 1

    364000 Red Hat users?

    I gotta toss some water on this FUD unless some poor smuck actually believes it.

    According to Netcraft there are >18,300,000. Assuming that 1/3 of these system's are running Linux, that leaves 6,100,000 Linux servers running Apache. Acording to your numbers there are 455000 servers running linux that leaves something like 13.5 webservers per user.

    This does not include people using Linux as routers, File servers, and PDAs. It doesn't include workstations not running apache, clusters, or boxes behind firewalls.

    And if you thing red ink is flowing like blood in the linux community, just have a look at how poorly the tech industry is doing. Linux companies are actually performing better than the market average.

    --
    If someone is passing you on the right, you are an asshole for driving in the wrong lane.
  180. Re:Who cares by Rothron+the+Wise · · Score: 1, Offtopic

    Linux isn't sick. Companies making money off it are. You're just spreading FUD, and you know it.

    --
    A witty .sig proves nothing
  181. Meaningful ChangeLog anywhere? by plaa · · Score: 1, Offtopic

    Is there any place where a meaningful ChangeLog is kept? Reading the individual changes isn't much of a help (many changes may have been made but what are their effect?). I'd like to have a place that explains the changes and tells which users should upgrade (eg. "SBLive support is much better, users with SBLives should upgrade" or the sort).

    I once tried to find a place like this, but failed. Does it exist, and if not, why not?

    --

    I doubt, therefore I may be.
  182. Fuck Mirrors by Anonymous Coward · · Score: 0

    www.kernel.org has a 100mbit connection let's max it out

  183. Re:10MB SCSI battery-backed up SRAM drive? by wowbagger · · Score: 2

    I have no direct experience with the battery backed up drives, but here is a typical link:
    http://www.buymemory.com/mr35.htm

    These things aren't cheap, but they aren't marketed toward your average Joe. However, if I ever get the cash to get a Firewire camcorder, I'd want to do my video editing on a journaled system with the journal on something like this.

  184. NTFS problem... by Dimensio · · Score: 1

    I mentioned this as a reply to someone else, but I was wondering if anyone else had trouble enabling NTFS (read-only) support. I dual-boot between Linux and Windows 2000 and while ntfs reading isn't vital, it's rather helpful at times.

    I normally copmile as a module, but this time I get:
    unistr.c: In function `ntfs_collate_names':
    unistr.c:99: warning: implicit declaration of function `min'
    unistr.c:99: parse error before `unsigned'
    unistr.c:99: parse error before `)'
    unistr.c:97: warning: `c1' might be used uninitialized in this function
    unistr.c: At top level:
    unistr.c:118: parse error before `if'
    unistr.c:123: warning: type defaults to `int' in declaration of `c1'
    unistr.c:123: `name1' undeclared here (not in a function)
    unistr.c:123: warning: data definition has no type or storage class
    unistr.c:124: parse error before `if'
    make[2]: *** [unistr.o] Error 1
    make[2]: Leaving directory `/usr/src/linux-2.4.9/fs/ntfs'
    make[1]: *** [_modsubdir_ntfs] Error 2
    make[1]: Leaving directory `/usr/src/linux-2.4.9/fs'
    make: *** [_mod_fs] Error 2

    Compiling it in the kernel doesn't work either. Bleah, is this broken or did I forget to enable something else?

    1. Re:NTFS problem... by Skapare · · Score: 2

      The max() and min() macros have been changed throughout the kernel to now use 3 arguments instead of 2. The new argument is the first, which is the type for the temporary variables used. This avoids problems with multiple references to data. Usually those get compiled out, but with variables of type volatile, they do not. But in since cases you don't want multiple fetches from volatile variables. The problem here is that the max() macro has one instance and the min() macro has two instances of being used inside the for() clause. Simply changing back to the 2 argument usage won't fix it because the macro is defined for 3. My patch just changes the 3 affected uses back to conventional C code.

      --
      now we need to go OSS in diesel cars
  185. Hell, I'm still waiting for new version of MINIX by Anonymous Coward · · Score: 0

    Anybody know when the new version of MINIX will be released? :-)

  186. Re:HOLY FUCKING SHIT! by cyclist1200 · · Score: 1

    Funny, my SB Live has been working ever Since I switched to SuSE 7.1 with the 2.4.0 kernel, and was working even before that.

  187. Hmm by Anonymous Coward · · Score: 0

    One week... Let's wait for shiny new kernel-related security advisories from vendors... /usd

  188. pcmcia-cs is broken with 2.4.9 by TheGratefulNet · · Score: 3, Informative
    fyi - hinds' pcmcia pkg won't build completely with this kernel release (fails on wvlan_hcf.c).

    looks like some dangerous changes were made: I see errors that say macro 'min' used with only 2 args. this kinda scares me...

    as I've not had much luck with wireless support inside the kernel tree, I've taken to using hinds' pkg instead. so for those who use pcmcia, perhaps wait for the next release..

    --

    --
    "It is now safe to switch off your computer."
  189. Re:HOLY FUCKING SHIT! by Anonymous Coward · · Score: 0

    The SB Live drivers don't work in Win2k.

  190. Re:Real news: glibc-2.2.4 was released today by geirt · · Score: 5, Informative
    Here is the changelog for glibc-2.2.4

    Enjoy

    --

    RFC1925
  191. Real news: glibc-2.2.4 was released today by geirt · · Score: 5, Informative

    Don't forget that the libc is just as important for your computers stability as the kernel. Most applications go trough the libc to access kernel services. Today glibc-2.2.4 was released, go to your local mirror (yes, that is a gnu mirror, not a kernel mirror) and do the upgrade now.

    Slashdot: News for nerds ?

    Why does the libc get so little publicity compared to the kernel ? I don't get it !

    --

    RFC1925
  192. 10MB SCSI battery-backed up SRAM drive? by Anonymous Coward · · Score: 0

    That sounds interesting; can you point to links about / offering sale of these? :)

    Do you have experience with any particular examples of these? (I haven't the foggiest, and I'm merely curious, not about to install one on my home machine, but if the price was right, I would.)

    The idea of putting the journal on a battery-backed RAMdisk is pretty cool ... that really would be a good way to combine speed and safety ...

  193. what about boot messages? by L-Wave · · Score: 0

    Wasn't ole linus talking about doing away withthe kernel boot messages? Did they do that? (it doesn't look like it from the change logs) personally, I think it would be a great idea...at least have some button (like esc) wired to start showing boot messages when pressed. (sorry didnt mean to make this a wish list)

    --
    I SURVIVED THE GREAT SLASHDOT BLACKOUT OF 2002!
  194. FUD by ArchieBunker · · Score: 0

    Fuck You Douchebag! If you were that concenred about kernel releases maybe you should subscribe to the kernel mailing lists.

    --
    Only the State obtains its revenue by coercion. - Murray Rothbard
  195. Freshmeat can send you a mail on new releases by Walles · · Score: 2, Informative
    Freshmeat lets you subscribe to notification of new releases of the Linux kernel. They send you a mail each time a new version is released.

    Shameless plug: Or you could subscribe to some of my projects :-).

    Cheers //Johan

    --
    Installed the Bubblemon yet?
  196. Kernel 2.4.9 have runtime error? by carfield · · Score: 1

    I use gcc3.0 with glibc 2.2.3 to compile kernel 2.4.9, after compile and reboot. The adaptec AIC7xxx scsi driver have error and I can't boot up my machine with new kernel:

    Anyone have same problem?

  197. no you don't... by Anonymous Coward · · Score: 0

    You have to upgrade as much as you have to jump off of a bridge. I was talking to somebody not yesterday that said they were still using kde1.1.2. Are you trying to break your machine?

  198. Kernel Compilation Project? by Dwonis · · Score: 2

    Does anyone have a link to the kernel compilation project? I can't find anything.