Slashdot Mirror


Happy Birthday, Linux! An OS At 24

prisoninmate writes: It has been 24 long years since the first ever release of the Linux project on August 25, 1991, which is the core component of any GNU/Linux distribution. With this occasion we want to remind everyone that Linux is everywhere, even if you don't see it. You use Linux when you search on Google, when you use your phone, when buy metro tickets, actually the whole Internet is powered by Linux. Happy Birthday, Linux!

152 comments

  1. One exception... by Eric+Freyhart · · Score: 2, Interesting

    Except for where it is powered by Windows.

    1. Re:One exception... by Anonymous Coward · · Score: 2, Interesting

      Actually the internet is mostly powered by Cisco IOS. Some leaf nodes may run Windows or Linux.

    2. Re:One exception... by Anonymous Coward · · Score: 0

      fucking stupid how FOSS stories always have at least one person jump up and down for M$.

      "Except for where it is powered by Windows"

      Um, no shit?

    3. Re:One exception... by selectspec · · Score: 5, Funny

      Actually, the entire internet runs on a FreeBSD system running in Al Gore's basement.

      --

      Someone you trust is one of us.

    4. Re:One exception... by Anonymous Coward · · Score: 5, Funny

      #WindowsComputersMatter

    5. Re:One exception... by Anonymous Coward · · Score: 0

      Or a derivative of BSD.

    6. Re:One exception... by Anonymous Coward · · Score: 0, Insightful

      Fucking stupid how this asshole sits on his ass when an article is so blatantly wrong when it claims "the whole Internet is powered by Linux."

    7. Re:One exception... by Anonymous Coward · · Score: 0

      So he built the Internet using Juniper equipment?

    8. Re:One exception... by Lunix+Nutcase · · Score: 2

      Um, no shit?

      Couldn't even be bothered to read the summary where it claims that the "whole internet" is powered by Linux?

    9. Re: One exception... by Anonymous Coward · · Score: 0

      I probably wouldn't miss the Windows parts, to be honest. I'd see a lot less spam from hacked Windows boxes, that's for sure.

    10. Re: One exception... by Anonymous Coward · · Score: 0

      So you must be the jerk that has to make a comment about Linux every time there is an article about windows.

    11. Re:One exception... by Anonymous Coward · · Score: 0

      #ButWindowsPhonesDont

    12. Re:One exception... by hduff · · Score: 0

      Actually, the entire Internet runs on a Vic-20 with expansion boards and a 300 baud modem.

      --
      "I believe in Karma. That means I can do bad things to people all day long and I assume they deserve it." : Dogbert
    13. Re:One exception... by Anonymous Coward · · Score: 0

      Wait a minute! I thought I downloaded the internet onto my CD-R!

    14. Re:One exception... by cheater512 · · Score: 2

      To be fair, take Linux away and a *massive* portion of the internet goes dark.

      Bit of hyperbole sure. But partially accurate.

    15. Re: One exception... by Anonymous Coward · · Score: 0

      partially accurate. is that you, hillary ?

  2. It's been 24 years by hcs_$reboot · · Score: 4, Insightful

    And I really hope Linux will last at least another 24 years (2039: they'll have to fix that 32 bit time since the Epoch, though).

    --
    Slashdot, fix the reply notifications... You won't get away with it...
    1. Re:It's been 24 years by Viol8 · · Score: 2

      I know this 32 bit epoch is a running gag, but time_t is 64 bits on 64 bit systems and I doubt there'll be many 32 bit systems left (even embedded) by 2039!

    2. Re:It's been 24 years by NonUniqueNickname · · Score: 4, Interesting

      You very well might be right, but isn't that what COBOL devs said back in the day about the year 2000?

    3. Re:It's been 24 years by buchner.johannes · · Score: 1, Informative

      It has been fixed in the kernel, but many programs and libraries still use (sometimes accidentally casting into) 32 bit ints, and even parts of the Linux Kernel, such as file systems. Databases also use 32 bit timestamps. So deployment of a Linux kernel with 64bit time_t will not automatically heal everything.

      Some links:
      http://2038bug.com/index.php/a...
      I like this one: "What's the worst that could happen?" :) http://y2038.com/#q5
      https://en.wikipedia.org/wiki/...

      --
      NB: The message above might reflect my opinion right now, but not necessarily tomorrow or next year.
    4. Re:It's been 24 years by GNious · · Score: 1

      My Amiga 500 emulator is going to have issues, when the signed 32-bit timestamp rolls over :(

    5. Re:It's been 24 years by unrtst · · Score: 4, Informative

      I know this 32 bit epoch is a running gag, but time_t is 64 bits on 64 bit systems and I doubt there'll be many 32 bit systems left (even embedded) by 2039!

      There are still a large number of 32bit cpu's being made (like almost every android device CPU there is, and most Apple iPhone/iPad things, and many of the chromebooks out there):

      All ARMv7 based CPU's, such as:
      * Qualcomm Snapdragon S4 (nexus 7)
      * ARM Cortex-A9 (ex. Exynos 4210 in Galaxy Tab 3)
      * ARM Cortex-A15 (ex. nvidia tegra K1 in NVIDIA SHIELD; Galaxy Tab 4 and S, ASUA Chromebook C201 with Rockchip 3288)

      Apple mobile products:
      * Apple A4 (ARM Cortex-A8): iPhone 4, iPod Touch (4th gen), Apple TV (2nd gen)
      * Apple A5 (ARM Cortex-A9): iPad 2, iPhone 4S, iPod Touch (5th gen), iPad mini
      * Apple A6 (ARM Cortex-A15): iPhone 5

      Some notable 64bit exceptions:
      * Apple A7 (ARMv8-A): iPhone 5S
      * Apple A8 (ARMv8-A): iPhone 6 and 6 Plus
      * Apple A8X (ARMv8-A): iPad Air 2
      * Exynos 5433: Galaxy Note 4 (but it only runs in 32bit mode)
      * Exynos 7420: Galaxy S6 and S6 Edge
      * NVIDIA Tegra X1: ... I don't know if this is in anything yet.

      The work that OpenBSD did needs done everywhere. 32bit systems need to have a 64bit time_t.
      http://it.slashdot.org/story/1...

      Also, like y2k, there will be LOADS of data storage issues - databases that need tables altered, etc. Unlike the printed date, it will be far more difficult to make assumptions about the values based on proximity to the current date (ie. 9/11/01 was considered to be 2001, but 7/4/48 was considered 1948). time_t was a signed 32bit int, so it will wrap around to negative which has a poorly defined behavior.

      It'll only be a "gag" if everyone ends up fixing their systems, rather than crossing their fingers and assuming all cpu's and OS's will be running full 64bit. 2038 isn't even the deadline... the deadline is whenever usage of that date as a timestamp is needed:

      64bit-sys$ TZ=GMT date -d "2038-01-19 03:14:07" +%s
      2147483647
      64bit-sys$ TZ=GMT date -d "2038-01-19 03:14:08" +%s
      2147483648

      32bit-sys$ TZ=GMT date -d "2038-01-19 03:14:07" +%s
      2147483647
      32bit-sys$ TZ=GMT date -d "2038-01-19 03:14:08" +%s
      date: invalid date `2038-01-19 03:14:08'

    6. Re:It's been 24 years by petermgreen · · Score: 2

      In particular the standard userland interfaces (libc and such) on 32-bit ports of linux still use 32-bit time_t. For embedded distros that can afford to sacrifice binary compatibility with both older versions of themselves and regular linux systems this is fairly easy to fix but for more general purpose distros that care about binary compatibility it is much harder and people aren't sure if it's worth doing it.

      Note: my information is based on http://www.slideshare.net/lina... if anyone has more recent information i'd like to hear it.

      --
      note: i'm known as plugwash most places but i screwd up registering that here somehow in the past and now can't register
    7. Re:It's been 24 years by Anonymous Coward · · Score: 0

      The really fucked up thing is that the Linux kernel keeps track of time in a 64-bit type even on 32-bit architectures. However, the syscall that returns the seconds (which is in turn used by libc) will only return a 32-bit value on 32-bit systems (WHY?! It makes no sense).

    8. Re:It's been 24 years by hcs_$reboot · · Score: 1

      Should we really compare COBOL devs working on more or less well managed projects, and C devs working on the Linux kernel?

      --
      Slashdot, fix the reply notifications... You won't get away with it...
  3. Re:Crap. by amalcolm · · Score: 1

    Says the AC with an axe to grind

    --
    Time for bed, said Zebedee - boing
  4. Ironically, I was 24... by feinorgh518 · · Score: 1

    ...when I had my first experience with the Internet in 1996. And, all in all I have probably used more bytes downloading Linux related stuff than Pamela Anderson GIF:s, which sort of gives hope for the future.

    1. Re:Ironically, I was 24... by allcoolnameswheretak · · Score: 2

      And, all in all I have probably used more bytes downloading Linux related stuff than Pamela Anderson GIF:s

      That's a very big 'probably' you got there, friend.

    2. Re:Ironically, I was 24... by macxcool · · Score: 1

      Not Irony, Coincidence ;-)

    3. Re:Ironically, I was 24... by Anonymous Coward · · Score: 0

      You should learn the fucking meaning of the word 'irony'.

    4. Re:Ironically, I was 24... by smallfries · · Score: 1

      Like rain on your wedding day?

      --
      Slashdot: where don knuth is an idiot because he cant grasp the awesome power of php
    5. Re:Ironically, I was 24... by feinorgh518 · · Score: 1

      Ironically, I tried, but it didn't seem to to stick, despite enthusiastic encouragement such as yours ;-)

    6. Re:Ironically, I was 24... by Anonymous Coward · · Score: 0

      Ugh... Irony is a completely subjective word. In someone's mind it could be ironic because they never expected Linux to survive long enough that their age when they discovered Linux would eventually be the same as the age of Linux itself. That is true irony.

      In other words, yes, it could actually be ironic to the OP. Like rain on your wedding day could truly be ironic to people that don't understand math. It's still irony. Pedants that don't understand this are more moronic than the people they complain about.

  5. And yet, even at 24, it's not the year of Linux by garcia · · Score: 0, Flamebait

    I've been using Linux, in varying capacities in both my personal and work life, since that fateful day in fall of 1996 when I popped a Slackware CD into my Dell Latitude P-133 laptop. Yet, I still don't love it as much as I should.

    Why? Because, as I found out this week when I installed Ubuntu 14.04 LTS on a VM to power a SAS installation at work, it still sucks in so many ways. Is it better than it was 19 years ago? Not really. I still had to think; still had to work to get the damn thing to run; and grub still gave me a rash and a shit to get up and running.

    Yeah, the Debian install I originally made back in November of 2002 is still running, after many a dist-upgrade, and it's going strong; however, I still have my love/hate w/Linux after nearly 20 years living with it daily.

    I've always been excited for the next big thing. The next moment when it would be that system I could easily use on my desktop or laptop and interoperate w/the rest of the world; yet, here I am, typing this on a machine, provided to me by my company, I never thought I'd use (a MBPr), ever.

    Yeah, Linux runs the Internet and many of our phones, yet, I still hate it as much as I did when I was 17 years old, for many of the same reasons.

    I'll be happily waiting for another 24 while it continues to grow and do its thing but, unlike the visions many of us saw for Linux back in the day, it has not shaped up like we thought it would. Successful? ABSOLUTELY. But as successful and brilliant as it should be 24 years later, ABSOLUTELY NOT.

    1. Re:And yet, even at 24, it's not the year of Linux by JackieBrown · · Score: 1

      Wow - remind me not to invite you to my birthday...

    2. Re:And yet, even at 24, it's not the year of Linux by garcia · · Score: 1

      But...but...I'm so fun at parties! :-)

    3. Re:And yet, even at 24, it's not the year of Linux by Viol8 · · Score: 1

      "I still hate it as much as I did when I was 17 years old, for many of the same reasons."

      Well you said you're using for personal stuff so you can't hate it that much. You might not have a choice at work but you do at home.

      I agree, linux can be a PITA to install, but once installed its usually damn reliable. Windows OTOH is usually a cinch to install but a PITA from thereafter unless all you want it for is to surf and run Office.

    4. Re:And yet, even at 24, it's not the year of Linux by Kjella · · Score: 1

      If you work with Windows daily, you're going to hate it.
      If you work with Mac daily, you're going to hate it.
      If you work with Linux daily, you're going to hate it.

      Because who the fsck cares about an OS when it's working? It's when you have a problem - and they all have them - you notice them. The question is not if it's flowers and sunshine, it's whether you'd really want to switch and I'd say that after working with Linux daily for 20 years you really don't. I'm pretty sure you could have gotten yourself a non-Linux position, then you can complain about the mysterious blob crashing and curse Redmond or Cupertino.

      --
      Live today, because you never know what tomorrow brings
    5. Re:And yet, even at 24, it's not the year of Linux by MacTO · · Score: 1

      "Hey kiddo! You know I've always been there for you and I will always be there for you. But I've gotta tell ya, you were a disappointment as a kid and you're a disappointment as a young adult. Yet, in spite of all of that, I'm still holding out hope for you in middle age."

      Life of the party indeed! ;)

    6. Re:And yet, even at 24, it's not the year of Linux by Anonymous Coward · · Score: 0

      If you work with *BSD all day, you're going to love it!

    7. Re:And yet, even at 24, it's not the year of Linux by Anonymous Coward · · Score: 0

      If you're as fussy and difficult as Linux, I doubt I'd want to go to your birthday anyway.

      I'd buy you a present, and you'd say "FUCK YOU, I DON'T HAVE DRIVERS FOR IT!"

    8. Re:And yet, even at 24, it's not the year of Linux by LABarr · · Score: 1

      I disagree.

      I use Linux daily, all day long. Close to 7 days a week. When I buy a new laptop I format it before first boot up, and install Linux. (I have a a pretty good collection of unused Windows licenses dating back to 2003.)

      I no longer support friends or clients running Windows. By choice. My 73 yr old mother begged me to install Linux on not only her desktop, but to put it on her little netbook as well. She loves it! Converted my best non-computer-friend over to Linux, at least 6 years ago.

      I work with and use Linux daily because I like it. I don't hate the other guys, I just don't like them as much.

    9. Re:And yet, even at 24, it's not the year of Linux by Anonymous Coward · · Score: 0

      No, sorry, I also have a Mac OS X, and I absolutely love it.
      I love my Solaris 10 desktop, too. I love SmartOS as well.

      But GNU/Linux? It sucks so bad, that I hate it.

  6. Re:Crap. by Anonymous Coward · · Score: 0, Insightful

    People don't give a damn about underlying quality. They want a tool that does the job. Linux, for whatever reason, picked up critical mass to get enough developers so that it does the job.

    That's life, I guess.

  7. Re:Correction by RabidReindeer · · Score: 5, Informative

    Correction: Happy Birthday GNU/Linux. After all, GNU software makes up 75% of the codebase of any "Linux" distribution. Show some respect.

    Some of that gnu stuff is a LOT older than 24 years. I was using some of it under CP/M back before Linux started school.

    It's the LINUX part of it that's having the birthday.

  8. Re:Crap. by Tarlus · · Score: 2

    You should write an angry letter to your congressman.

    --
    /* No Comment */
  9. Re:Crap. by amalcolm · · Score: 5, Informative

    Like you, I use Linux professionally as well as at home, as a developer and user of many CAD and development tools. I've deployed it in embedded environments in a number of scientific intsruments. I simply don't recognise your experience. So I guess YMMV, but you need to take some anger management classes or change career.

    --
    Time for bed, said Zebedee - boing
  10. And Slackware is 25 years old today by Anonymous Coward · · Score: 0

    So there!

  11. Re:Correction by Tarlus · · Score: 2

    Which really, the headline should not be identifying Linux as an OS.

    --
    /* No Comment */
  12. Re:Crap. by Anonymous Coward · · Score: 0

    U MAD BRO?

  13. The internet is powered by electricity... by Anonymous Coward · · Score: 1

    The internet is powered by electricity you insensitive clod

  14. a timeline for those new to the neighbourhood by nimbius · · Score: 5, Funny

    1991: Linux torvalds pulls a fresh cup of coffee off the pot and announces hes got an idea. Little does he know this idea will mean 24 years of shepherding a child through a forest of shady characters from Hans Reiser to Leonart Pottering.
    1992: not even a year old and Linux is caught messing around with windows despite very specific instructions to practice her POSIX. she gets good at CIFS, confusing most of the parents around her and once she starts pretending to be a domain controller at the Active Directory dance its gloves off for the Microsoft PTA.
    1998: Linux finishes her ALSA class and in 2 years starts singing the chart-toppers in mp3 format, much to the dismay of the RIAA.
    2010: in a rebellious phase, Linux stops doing one thing and doing it well and starts hanging out with SystemD, who convinces her she can do anything all the time so long as hes in charge.
    2011: Weird emo/goth/Gnome3 phase means Linux wears a lot more bling than she used to...Parents of Unix long since departed now sigh and stare at the shelf where the pictures of little Linux dressed in Bash rest alongside her achievement for learning computational fluid thermodynamics and wonder where they went so wrong.
    2015: at 24 Linux flies planes handles social media, and directs traffic. She knows windows inside and out, and can hang out with everyone from stuffy government types to the art crowd. She composes music, builds cars, and even folds proteins when shes bored. Old man Torvalds still shows up from time to time to remind parents not to be lazy, friends not to be greedy, and people not to expect him to be around for every little thing Linux may or may not choose to do.

    Happy 24th, Linux.

    --
    Good people go to bed earlier.
    1. Re:a timeline for those new to the neighbourhood by LVSlushdat · · Score: 2

      Wow!! VERY Funny and sooooo true.....
      Wish I could mod it up, but already posted... sigh

      --
      THANK YOU, Edward Snowden!! Americans owe you a debt of gratitude (whether they know it or not..)
  15. Re:Crap. by Anonymous Coward · · Score: 2, Funny

    As soon as the system gets under 100% CPU or memory

    I think I found your problem.

  16. Re:Crap. by Stewie241 · · Score: 4, Insightful

    Curious as to why you would run Xubuntu at home if you hate Linux so much.

  17. "operating system" by Anonymous Coward · · Score: 3, Interesting

    From: torvalds@klaava.Helsinki.FI (Linus Benedict Torvalds)
            Newsgroups: comp.os.minix
            Subject: What would you like to see most in minix?
            Summary: small poll for my new operating system
            Message-ID:
            Date: 25 Aug 91 20:57:08 GMT
            Organization: University of Helsinki

            Hello everybody out there using minix –

            I’m doing a (free) operating system (just a hobby, won’t be big and
            professional like gnu) for 386(486) AT clones. This has been brewing
            since april, and is starting to get ready. I’d like any feedback on
            things people like/dislike in minix, as my OS resembles it somewhat
            (same physical layout of the file-system (due to practical reasons)
            among other things).

            I’ve currently ported bash(1.08) and gcc(1.40), and things seem to work.
            This implies that I’ll get something practical within a few months, and
            I’d like to know what features most people would want. Any suggestions
            are welcome, but I won’t promise I’ll implement them :-)

            Linus (torvalds@kruuna.helsinki.fi)

            PS. Yes – it’s free of any minix code, and it has a multi-threaded fs.
            It is NOT protable (uses 386 task switching etc), and it probably never
            will support anything other than AT-harddisks, as that’s all I have :-(.

    Title is accurate: The original announcement refers to an operating system, so this is the birth of the linux operating system.

    1. Re:"operating system" by Anonymous Coward · · Score: 0

      My takeaways from this:

        * won't be big and professional
        * NOT protable (sic)
        * probably never will support anything other than AT-harddisks

      Doesn't sound very promising to me. Think I will cast my lot in with NeXT.

    2. Re:"operating system" by Anonymous Coward · · Score: 0

      Well, it is the birth of the Freax OS/distribution. Then the name Linux was used by someone else for the directory containing it. But Wikipedia tells me Linus himself only used the name to designate his kernel, which isn't generally considered an OS by itself.

      Then Linus stopped publishing his own distribution at some point, to focus on the kernel part, which is his main link by far to the current state of the GNU/whatever/Linux OS/distribution, so it's really difficult to call this current state just 'Linux', if you have any idea about what you are talking about...

      So either you're celebrating the Linux kernel, or the GNU/whatever/Linux OS/distribution, or the original Freax OS/distribution, which you can possibly call the Linux OS, only if you are talking about what Linus distributed back then, and not today distributions, which simply wouldn't make any sense at all...

  18. Elvis Costello and Gene Simmons by Anonymous Coward · · Score: 0

    will go in the Groupon bid for birthday cakes.

  19. Dead at 25 by Anonymous Coward · · Score: 0

    ...and dead at 25, killed by systemd.

    1. Re:Dead at 25 by Anonymous Coward · · Score: 0

      Nah, 27. It's a rock star OS, so it has to die at 27!

    2. Re:Dead at 25 by tomhath · · Score: 2

      systemd is the future. Instead of getting your panties in a bunch, accept it and get on with your life.

    3. Re:Dead at 25 by sjames · · Score: 1

      Personally, I just remove it. Systemd has no future on my systems unless it grows up and learns to play nice with others.

    4. Re:Dead at 25 by Anonymous Coward · · Score: 0

      systemd is the future

      That explains why so many commercial Unix vendors and the BSDs are begging Lennart to port it, right?

    5. Re:Dead at 25 by Anonymous Coward · · Score: 0

      Solaris and Mac OSX already have very similar service management systems, and the BSDs lack a number of kernel features, most notably cgroups.

  20. Re:Correction by Kjella · · Score: 2

    Correction: Happy Birthday GNU/Linux. After all, GNU software makes up 75% of the codebase of any "Linux" distribution. Show some respect.

    Actually last year they shipped more than one billion NotGNU/Linux devices, BusyBox means there's many non-GNU embedded devices and if GNU vanished most the gaps left would quickly be covered by LLVM to replace GCC and the BSD userland. And it's not nearly 75% GNU projects, perhaps 75% (L)GPL licensed code but that's not why RMS wanted to call it that.

    --
    Live today, because you never know what tomorrow brings
  21. Re:Crap. by rickb928 · · Score: 1

    "basic data safety is not guaranteed"

    Huh? You want a ricochet biscuit to go with that?

    --
    deleting the extra space after periods so i can stay relevant, yeah.
  22. Re:Correction by Viol8 · · Score: 2

    Depends how you define an OS. Many - usually embedded- linux installations have the busybox toolset which has nothing to do with GNU apart from its license.

  23. Even photo booths by Anonymous Coward · · Score: 0

    I think I'd seen a photo booth at the mall once that had "kernel panic" on the screen. So, I assume it is/was Linux.

  24. Re:Crap. by LVSlushdat · · Score: 4, Insightful

    heh .. Such problems with Linux.. Funny how theres a bunch of us out there that have been using it since FOREVER (Slackware/1995 here..) and have ZERO problems with it... If this AC is *actually* having these kinda problems, either he's got seriously crap hardware or more likely he's just trolling... And with what a spyware-fest Windows 10 is, I suspect a LOT more people are gonna say "FUCK MS" and come over to the Linux side...

    --
    THANK YOU, Edward Snowden!! Americans owe you a debt of gratitude (whether they know it or not..)
  25. Re:Crap. by Anonymous Coward · · Score: 0

    Few complex systems behave well under 100% CPU load.
    Despite all their well-designed robustness measures and famed reliability, the IBM z/OS systems I work with daily can still sometimes effectively lock up at that point, once all the non-critical services have been squeezed out. You can get (for example) circular deadlocks between multiple CICS address spaces which, although they don't actually require an IPL (IBM mainframe equivalent of a reboot), might as well do by the time you've reloaded 30 CICS regions and possibly assorted databases.
    As for your experience with Xubuntu running slower with updates, I'll counter with running the same release of Ubuntu for 5 years, regularly applying all updates, with absolutely no detectable slow down.
    Overall though it sounds like you're either incompetent, ridiculously unlucky or a liar. Possibly all three.

  26. Re:Crap. by LVSlushdat · · Score: 4, Interesting

    Sure is interesting that all of the people posting about how bad Linux is are posting AC... Wonder why? Wonder if they're just trolls.. nah, couldn't be...

    --
    THANK YOU, Edward Snowden!! Americans owe you a debt of gratitude (whether they know it or not..)
  27. Re:Correction by Nutria · · Score: 1

    gnu stuff ... under CP/M

    Seeing as how I don't remember using any GNU software on my KayPro IV, or hearing of Unix-centric s/w able to be installed on 8-bit system, no matter the brand or whether CCP was replaced by ZCPR, that comment needs a lot of clarifying.

    --
    "I don't know, therefore Aliens" Wafflebox1
  28. Correction by Anonymous Coward · · Score: 0

    Correction, "actually, parts of the internet is powered by Linux".

  29. Re:Correction by Anonymous Coward · · Score: 0

    Every disinterested party - including Slashdot and Wikipedia - identifies Linux as an OS.

    Only the FSF demand we call it "GNU/Linux". The term has no meaning outside of Stallman's propaganda machine and its attempts to control the narrative.

    A typical Linux installation also contains software from other sources than GNU and the Linux project. Logically, then, we should call it a much longer name than just GNU/Linux, if we wish to follow Stallman's nonsense to its inevitable conclusion.

  30. Re:Correction by LVSlushdat · · Score: 2, Informative

    I've been using Linux since about 1995, and am seriously impressed with how far its come since thern.. I started with Slackware and its bazillions of floppy disks and pulling my hair out getting XFree86 working, nowadays its easier to install something like Mint or Ubuntu than Windows, and in most cases the machine will be 100% operational after the install, nowhere NEAR always the case with Windows... I strongly suspect, with what a spyware-fest Windows 10 has turned out to be, Linux is gonna get a BIG boost in users in the not-too-distant future, once joe-six-pack figures out all of *his* data is now Microsofts... I for one will do everything I can to hurry it along..

    HAPPY BIRTHDAY, LINUX!!!!!

    --
    THANK YOU, Edward Snowden!! Americans owe you a debt of gratitude (whether they know it or not..)
  31. Ahh the memories... by wbr1 · · Score: 2
    It was 1995. I was working in a community college computer lab, connected to local Uni with 56k ISDN. Our only machines that had an IP stack were a few windows machines with winsock and 5 NeXT stations, one of which ran our web server.

    We decided to repurpose one of our shiny new 486DX2 (at 66Mhz!!) to a web server. The hard drive was not large enough to hold windows and the downloaded floppies for slackware. I stayed up all night, finding an open NFS export (at UIUC I think), and downloading each slackware floppy direct to disk one at a time using one of the NeXTs.

    That doesn't even count the time trying to get X running right (which wasn't even needed for a web server!) Heady days I tell you!

    --
    Silence is a state of mime.
    1. Re:Ahh the memories... by LVSlushdat · · Score: 1

      Your story kinda sounds like mine.. 1995, at a small government contractor. I, being one of hte network techs, got tasked to "get this company on the internet"... Since we were a Novell Netware shop, the other techs suggested doing the webserver/ftp via a Novell server and a proprietary (read lotsa $$$$) NLM (Netware Loadable Module). I, on the other hand, had been learning Linux/Slackware and convinced the PTB that we could do the deed for basically the cost of the T1 and router that we'd need in either case, and skip the lotsabucks needed for the NLM httpd.. They gave me the goahead and about 2 weeks later we were on the internet with a website and an ftp server.. Soon thereafter, my wife and I decided to move to Las Vegas, and I handed support for the server over to one of the other guys who had begun using Linux...

      --
      THANK YOU, Edward Snowden!! Americans owe you a debt of gratitude (whether they know it or not..)
  32. Re:Correction by __aaclcg7560 · · Score: 1

    If you got a Z80 processor lying around, you can get a CP/M clone under the GNU license.

    http://www.seasip.info/Cpm/Zinc/index.html

  33. Congratulations slashdot! by Mazhe · · Score: 0

    You are apparently at the age where you can't tell the difference between kernel and OS...

  34. Always thought it should have been LiGnux by Snotnose · · Score: 1

    Not original with me, I started using it in '94 and a co-worker suggested it.

  35. Re:Correction by Nutria · · Score: 1

    you can get a CP/M clone under the GNU license.

    That's not even close to the same as using GNU stuff under CP/M.

    --
    "I don't know, therefore Aliens" Wafflebox1
  36. Re:Crap. by Chrisq · · Score: 2

    Because of Linux, Solaris is no longer #1 OS. Meanwhile, Linux still has filesystems out of 20. century

    memory overcommit is not turned off by default, basic data safety is not guaranteed, and now with systemd it behaves like Windows more than ever before. What a piece of crap OS.

    If one of the BSD's were this popular, I would be fine with that, but in IT, it seems like biggest piece of crap always becomes the latest fad. Good job guys, the whole lot of you. Good job. Pat yourselves on the backs, idiots.

    Yes it does, useful if you want to read old disks, but it also has many 21st century ones.

    memory overcommit is not turned off by default, basic data safety is not guaranteed,

    That's a two edge sword. In practice when running out of virtual memory Windows (without overcommit) comes to a halt, so it takes maybe 10 minutes to just bring up a menu. Linux (with overcommit) starts killing things. You are more likely to do a clean shutdown of the linux bits that havent been killed than of a windows box when this happens.,

    and now with systemd it behaves like Windows more than ever before. ,

    I haven't used it in anger enough to know. On a desktop it seems fine. I have a feeling that once I start serious server work it won't be nearly as flexible as init,

    What a piece of crap OS.

    If one of the BSD's were this popular, I would be fine with that, but in IT, it seems like biggest piece of crap always becomes the latest fad. Good job guys, the whole lot of you. Good job. Pat yourselves on the backs, idiots.

  37. Re:Crap. by Anonymous Coward · · Score: 0

    I MAD.

  38. Re:Correction by RabidReindeer · · Score: 1

    grep, sed, make, more, I forget what all, especially since some were GNU and some were simply Unix ports to CP/M.

    Just that when I first encountered Linux, the GPL wasn't exactly news to me.

  39. Re:Crap. by mark-t · · Score: 4, Interesting

    386BSD, the BSD for PC's from which almost all, if not all modern PC variants of BSD are descended from, first appeared in spring of 1992, after Linux had already been around for some number of months, albeit still in a very alpha state. Even though 386BSD was vastly technically superior to Linux when it first came out, at the time, Linux had simply far too many minor features that made it more amenable to the prevalent existing PC's at the time. Linux had floating point emulation, where BSD required a coprocessor (which at the time was still considered relatively luxurious), and Linux could co-exist with DOS on a hard disk with multiple partitions, while BSD initially had no such capability. By the time BSD had added these features, Linux had largely caught up with it in terms of being far less alpha-state.

    Linux isn't popular because it is faddish, Linux is popular because back in the beginning, it did what people actually needed it to do, while the alternatives did not... and by the time others could also do so, Linux simply had too much of a head start. Linux maintained the lead ever since.

    But does having a head start make something a fad?

  40. There was even an Atari version by Big+Hairy+Ian · · Score: 1

    I remember getting a copy of it in the very early 90s for my Atari ST!

    --

    Build a Man a Fire, and He'll Be Warm for a Day. Set a Man on Fire, and He'll Be Warm for the Rest of His Life.

    1. Re:There was even an Atari version by Anonymous Coward · · Score: 0

      Early 90s? Are you sure it was not Minix? I remember trying it on my Atari Falcon in 1993-94.

    2. Re:There was even an Atari version by Tablizer · · Score: 1

      I remember getting a copy of it in the very early 90s for my Atari ST!

      Oh yah? Well I ran it on my Commodore 64 in 1984!

      Of course, back then it didn't yet have a file system, or, um, memory management, or a command line.

  41. #WindowsComputersMatterButNotVeryMuch by Anonymous Coward · · Score: 0

    nt

  42. Re:Correction by Nutria · · Score: 1

    Interesting. Thank.

    You think that modern GNU utils could fit in 64KB? :)

    --
    "I don't know, therefore Aliens" Wafflebox1
  43. Re: Crap. by Anonymous Coward · · Score: 0

    Linux is as flawed as Windows but in different ways. It used to be far better but since Ubuntu came along it's been pathetically bad.

    You mean the quality of Linux degraded since Ubuntu came along?
    And then you go on and say that nobody can refute that fact with 'RTFM NOOB'?

    You are probably right, no man page mentions the reasons why your argument is hilarious.
    But I suspect that you know the difference between Linux and Ubuntu.

  44. Re:Crap. by Anonymous Coward · · Score: 2, Insightful

    You better believe I have an ax to grind.

    I work with Linux every day, professionally. As soon as the system gets under 100% CPU or memory pressure it crashes. In Solaris (or any Illumos derivative), for that I have mdb, and I can debug a crashed kernel (and make it run again) with kdb. In Linux, that is science fiction.

    At home I have Xubuntu. The piece of crap is so slow and bloated, it's become just like Windows. It started out relatively usable, and the more updates were applied, the slower it got. Many of the updates regularly had failure issues during boot. If I were not forced to (company policy) by idiots, I would never run Linux in production. What. A. Piece. Of. Crap.!

    Virtualization technology in Linux? Crap.
    GNU userland? Does not correspond to any industry norm or standard - crap (recursive grep(1), or TApe ARchiver, tar(1) which supports compression, anyone?) - crap.
    Backward compatibility in Linux? Crap.
    Post mortem debugging? Crap.
    System startup, with million different solutions? Crap.

    Crap, crap, crap! But hey, it's all the rage!!! Yes, you better believe I have an Ax to grind. And not just one ax!

    That's epic. Curious, which distributions are you trying to deploy in your (claimed) professional usage?

    The only time I have experienced random crashes, and lockups are with bleeding edge distros (Mainly *buntu/Mint, for some reason Mint always dead-locks for me regardless of the machine it's put on)

    Meanwhile, If you are indeed using Linux professionally, then you need a professional/enterprise distro. Such as SUSE Enterprise Server or Redhat Enterprise server.

    I've deployed these in VERY demanding environments before and they have almost always stood the test of time. Heck in one instance the CPU cooked before the OS gave up (Cooling system failed).

    Now, if you're using xuBuntu, this is okay for general home use. But I wouldn't consider it for judging the stability of GNU/Linux at all.

    CentOS/RHEL with XFCE would give you a good idea on stability however. Ever thought maybe you're using the wrong distro for the task at hand?

    I tend to use which distro suites the task I need, for my workstation it's CentOS7 with XFCE, for servers it's usually RHEL6/7, for my personal laptop it's Arch Linux..

    So tell me, what are you running that could possibly be so broken? Have you considered it could also be poor configuration?

  45. Re:Correction by Anonymous Coward · · Score: 0

    % ls -lh /bin/cat
    -rwxr-xr-x 1 root root 49K Aug 7 15:10 /bin/cat

    For some reason I don't think so...

  46. Re:Crap. by narcc · · Score: 2, Informative

    (Slackware/1995 here..) and have ZERO problems with it.

    Nostalgia has clouded your vision. I tried to run Linux on my primary system from around 1999 to 2002. (It as too flaky, prior to that, to be more than a curiosity) I spend far more time trying to get various things to work than actually using it. (Remember when getting sound to work was a major accomplishment?) It was a huge pain back then. It's a lot better today (my wife ran it with little trouble from 2008 to 2011) but it's still not quite ready for the desktop. (She abandoned it when she needed to use her computer for work.) The only reason to run it back in 1995 was because you enjoyed tinkering with it. It was completely unsuitable for daily use.

    And with what a spyware-fest Windows 10 is, I suspect a LOT more people are gonna say "FUCK MS" and come over to the Linux side.

    Given the popularity of Google Chrome, even among the privacy hawks on Slashdot, I'd bet against that.

  47. Re:Crap. by Anonymous Coward · · Score: 0

    If I could, I would go into retirement. As it is, I have several more decades of this crap to endure. One can only hope something else, and something better, will become the new fad. If SmartOS became that new fad, I'd be happy for the rest of my professional life.

    Am I angry about GNU/Linux being so popular? Yes, absolutely.

    Nobody is forcing you to stay in the computer industry, there are plenty of other occupations out there that you could conceivably pursue. If your reaction to things you don't like is to bitch and do nothing else then perhaps some self examination is required

  48. whole Internet is powered by Linux?? by mschaffer · · Score: 2

    I love over-reaching statements that are obviously wrong.
    So, everything that comprises the whole internet is running a Linux kernel?
    I doubt it.

    1. Re: whole Internet is powered by Linux?? by Anonymous Coward · · Score: 0

      It is correct in the sense that UNIX is a kind of Linux and VMS is a kind of UNIX and Windows is a kind of VMS. Therefore, the whole wild world is running on Linux.

    2. Re: whole Internet is powered by Linux?? by vandamme · · Score: 1

      It is correct in the sense that UNIX is a kind of Linux and VMS is a kind of UNIX and Windows is a kind of VMS. Therefore, the whole wild world is running on Linux.

      Go home, Uncle Joe, you're drunk.

  49. Re:Crap. by goarilla · · Score: 1

    SmartOS is very domain specific, it's never gonna be the new android or "crappy home router" OS.

  50. Already Too Late by Kenshin · · Score: 1

    "I strongly suspect, with what a spyware-fest Windows 10 has turned out to be, Linux is gonna get a BIG boost in users in the not-too-distant future, once joe-six-pack figures out all of *his* data is now Microsofts... "

    The eternal wishful thinking of "The year of Linux on the desktop".

    Most people already keep their personal communications in Hotmail or Gmail already, so I don't see too much of a fuss going on. Concerned people will just stick with Windows 7. If anything, Joe Sixpack will pick up a tablet* for his casual consumption once his laptop or desktop becomes too sluggish or dies. Things are going in a simpler direction, rather than more fiddly.

    So, unless you want to qualify Android as Linux...

    (*I'm not talking about business computing/gaming/enthusiasts, so calm down.)

    --

    Does it make you happy you're so strange?

    1. Re:Already Too Late by Dutch+Gun · · Score: 0

      It wouldn't be a true Linux thread if we didn't have some unrealistic "Year of Linux on the desktop" optimism. Windows 10 is looking to be fairly popular at this point, and contrary to a lot of concerns, you can actually turn off all of the privacy-intrusive features.

      My Linux experience has historically been to attempt to install and use some Linux distro every five years or so, only to be rebuffed by some serious issue, after which I spend half a day trying to hunt down a solution, then give up and re-install Windows. My last attempt (Ubuntu) was a few years ago on an older Dell XPS laptop, and the mouse cursor moved so fast it was completely unusable, even at the lowest speed settings.

      I'll be trying again soon, perhaps with Linux Mint this time. I'm getting somewhat close to finishing up the Mac port of my game engine, and would like to have a Linux port as well. I'm familiar with a few basic Unix commands, and I've been learning a bit more on my Mac, so hopefully it won't take too long for me to get up to speed.

      --
      Irony: Agile development has too much intertia to be abandoned now.
    2. Re:Already Too Late by steveha · · Score: 1

      Windows 10 is looking to be fairly popular at this point, and contrary to a lot of concerns, you can actually turn off all of the privacy-intrusive features.

      Are there any good articles about that? The stuff I have read has made me leery of Windows 10. I wish that ReactOS was in shape to run my Windows games; I would probably switch to that instead of Windows 10. (For now I'm staying on Windows 7.)

      My Linux experience has historically been to attempt to install and use some Linux distro every five years or so, only to be rebuffed by some serious issue

      I've been using Linux by preference since the late 90's. When I started, it was hard to get a lot of stuff working... I remember buying PCI Ethernet cards since I couldn't get motherboard Ethernet working for certain chipsets, and buying a USB WiFi dongle because it was so hard to get the internal WiFi chipset working on a laptop.

      But these days, pretty much it all Just Works. You can still have trouble with sleep/hibernate, and I think that power management isn't quite as good in general, but things like Ethernet, audio, and WiFi all pretty much just work.

      I'm still using Linux Mint MATE edition (64-bit) as my primary desktop Linux. IMHO, the Gnome 2.x desktop is the best thing ever; it ripped off the things I like from the Mac GUI and from the Windows GUI, and it's polished.

      Linux Mint Cinnamon has come a long way though and you might want to go with that. MATE is kind of a dead end, and someday there might actually be apps I care about that run under Cinnamon but not under MATE.

      Also, you could try setting up VirtualBox on one of your Windows machines, and running Linux inside the VirtualBox. The virtual hardware inside VirtualBox is well-understood by Linux, so you should be able to stop worrying about hardware and focus on learning your way around Linux and doing stuff with it.

      --
      lf(1): it's like ls(1) but sorts filenames by extension, tersely
    3. Re:Already Too Late by Lennie · · Score: 1

      Supposedly Chromebooks are starting to win over Windows on laptop-like devices:

      "Yes, you read it right, Chromebooks have overtaken sales of Windows notebooks. "

      http://www.itworld.com/article...

      --
      New things are always on the horizon
    4. Re:Already Too Late by Dutch+Gun · · Score: 2

      Are there any good articles about that? The stuff I have read has made me leery of Windows 10.

      Here's an Ars Technica article about it. I think it covers most of the issues people are concerned about. I'm moderately concerned about these issues myself, but on the other hand, I do need to keep current for development work.

      Also, you could try setting up VirtualBox on one of your Windows machines, and running Linux inside the VirtualBox. The virtual hardware inside VirtualBox is well-understood by Linux, so you should be able to stop worrying about hardware and focus on learning your way around Linux and doing stuff with it.

      Yep, already did that. Tried out Mint Cinnamon, and really liked it - clean, professional looking, intuitive. I was doing some contract work, so didn't want to mess with my personal dev machine. Now that I'm done for the moment, I'm a bit more free to consider updating my machine for dual-boot use. I need full access to GPU hardware to get real work done.

      Any particular reason you'd recommend MATE over Cinnamon, incidentally?

      --
      Irony: Agile development has too much intertia to be abandoned now.
    5. Re:Already Too Late by steveha · · Score: 1

      Any particular reason you'd recommend MATE over Cinnamon, incidentally?

      Basically, I want either Cinnamon or MATE and until recently, Cinnamon was kind of half-baked.

      The GNOME 2.x desktop has man-decades of work in it, and it has a level of smooth polish that I like. All the things I want to do are possible. To change the way things are laid out, you pretty much just click and drag. When Cinnamon was first released it was really rough around the edges, especially in comparison.

      Since Cinnamon is getting nicely polished, it may be time for me to switch. While I am not a fan of the GNOME Shell GUI, everything I read here on Slashdot says that GNOME 3.x is a solid, well-engineered system; so with Cinnamon layered on top of that, it should have a bright future.

      On the other hand, there aren't any apps yet that I care about that don't work under MATE so I'm not in a hurry to switch.

      --
      lf(1): it's like ls(1) but sorts filenames by extension, tersely
    6. Re:Already Too Late by Dutch+Gun · · Score: 1

      By "laptop-like devices", I think you mean "notebooks", right? Because those are pretty distinct categories.

      Anyhow, I do think that makes some sense. Chromebooks (notebooks) are less expensive, and some users are more comfortable with doing *everything* online, and probably less committed to a particular OS. Nowadays, you really don't need to use any local software if you don't quite want to, so long as you're mostly just doing e-mail, browsing, social media, simple documents creation, and so on.

      --
      Irony: Agile development has too much intertia to be abandoned now.
    7. Re:Already Too Late by Anonymous Coward · · Score: 0

      The problem here isn't Linux it's Dell. Dell is always doing fiddly shit with their hardware. Even on windows you run into bizarre behavior with trackpads using default windows drivers vs. dell drivers vs. synaptic drivers, etc. They are also notorious for only putting as much ACPI info as is required for the version of windows running when it comes out. Every computer I have gotten in my repair shop due to Windows 10 upgrade problems has been a Dell. Every single one.

  51. Re:Crap. by Anonymous Coward · · Score: 0

    This depends on point of view.

    Older UNIX hands came to use Linux, and already had backgrounds in other UNIX variants, likely Solaris. Before 386BSD and Linux, there were no "free" versions. The cheapest and usable was Mt. Xinu or BSD/386 from BSDi. There were tons of commercial versions. Even Dell and Apple had their own UNIX variants.

    Coming from Solaris, IRIX, AIX, and other UNIX flavors, one can see Linux's flaws.

    However, IT has shifted so that pretty much, Linux is the core, and even though a GNU userland might be wonky to old timers used to SVR4, it is the de facto standard now.

    My biggest problem with Linux is that there isn't a reliable way to image a system off for a bare metal restore while it is running. Solaris can be done easily with dump or ZFS tools. AIX has sysback and mksysb. Windows has wbadmin. OS X has third party utilities if Time Machine doesn't cut it. The only reliable way I have with Linux to make a backup that can be used for bare metal restores is either to boot offline media like CloneZilla, or run Linux in a VM, snapshot it, and back up the VM snapshots.

    There are ways around this though. Rsync, tar, and having OS/application ISOs ready to go is one help, although it requires multiple stages to do the restore (install base OS, partition, untar filesystems, etc.) Another is to run your stuff on an easily rebuildable compute node, and use snapshots and a deduplicated filesystem for backups.

  52. Re:Crap. by Anonymous Coward · · Score: 1

    ZERO problems with it...

    Bullshit. You have problems with it, but like most zealots you simply refuse to acknowledge them, even to yourself. Linux is adequate as a kernel, assuming the drivers are working somewhat correctly. But each desktop environment you choose is a half-baked, cluster-fucked mess that screams, "I'M LEARNING HOW TO MAKE SOMETHING!" Linux is for people who LOVE to tinker constantly with their OS. For those of us who just want to run programs and get things done, Windows and OSX are superior choices.

    I suspect a LOT more people are gonna say "FUCK MS" and come over to the Linux side.

    Wrong. It would take one company the size of Google to hammer down and create a single, unified distro that has been polished to a tee and has all the thousands of little niggles ironed out and introduce some substantial changes to the kernel (finally, a stable driver ABI!). That's a massive undertaking for something that probably wouldn't be that successful. Why? Because the world doesn't love Linux like you do. And having a fat, bearded man-child who eats his own toe jam and doesn't even surf the web telling us what type of software we should be using is not helping either.

  53. Re:Crap. by Anonymous Coward · · Score: 0

    Some of us have been using Slashdot since the days of 28.8 dial-up, yet have never registered a username. Things like that might be important to you, but not to everyone. Grow up and recognize that because you felt the need to make a name for yourself makes you no more credible than the next person.

  54. Re:Crap. by Anonymous Coward · · Score: 0

    memory overcommit is up to you. Turn it off if you want.

    data safety is also up to you. Chose the filesystem you want to use.

    The problem with the BSDs are that they don't solve the problem very well, and are not portable to as many architectures as Linux.

    But if you really want a BSD environment, you can have it. It is up to you. You can even recompile the BSD userspace and use that on Linux if you want.

    Sounds like you have a personal problem, and that is not a Linux problem.

  55. Re:Crap. by Anonymous Coward · · Score: 0

    We will see.

  56. Re:Crap. by andrewa · · Score: 1

    So... assuming you're not just trolling... If you hate Linux so much, why do you use XUbuntu at home?

    --
    :(){ :|:& };:
  57. Re:Crap. by Anonymous Coward · · Score: 0

    Skype. If I had Skype for Solaris, I'd completely ditch it.

  58. Re:Crap. by Anonymous Coward · · Score: 0

    I am not trying to apply any GNU/Linux distributions; the company where I consult, when I came here, there were already high and hopped up on all sorts of redhat enterprise Linux versions. Their deployments use ext3. Memory overcommit is not turned off. The systems crash running risk engines, for instance (any 100% CPU load or running out of memory will crash the systems).

    And, they are actively and with a vengeance replacing Solaris systems with this piece of crap of theirs. That makes me particularly angry, because that company was about ten years ahead of the entire industry when they were on Solaris (they had their own build). Meanwhile, the English came and the business idiots either retired the experts, or let entire departments of system engineers go.

    *I* would have *never* replaced a good, working operating system with this Linux piece of crap. I would have probably deployed SmartOS and instead of the ~70 tenants they manage to pack onto a piece of hardware now, packed 400 - 450 Like Joyent does, with no memory overcommit, ZFS to keep my data safe, and bare metal performance virtualization with zones. For everything else, there are either the lx-brand, or the kvm-brand zone.

    Faced with the piece of crap Linux put in by idiots, and knowing what is possible in terms of reliability and performance, hell yeah, I am pissed off. I have always been extremely allergic to idiocy and incompetence.

  59. kernel - not OS - is at 24 by short · · Score: 1

    The OS is of very unspecific date, both older and younger. But media likes everything simple.

  60. Re:Crap. by Anonymous Coward · · Score: 0

    LVM called, it wants you to read the docs

  61. Obligatory by TeknoHog · · Score: 1

    The song just wouldn't work with "It was 24 years ago today" so I'll just keep posting this every year. http://iki.fi/teknohog/music/c...

    --
    Escher was the first MC and Giger invented the HR department.
  62. Re:Crap. by Anonymous Coward · · Score: 0

    You're a liar if you say you've never had any problems with Linux. If you look at how many bugs that get fix on the kernel side alone, not to mention all the problems on the distribution side(dependencies, failed upgrades). Lair. And you assume Linux does not have spyware? Think Ubuntu.

  63. Re:Crap. by Anonymous Coward · · Score: 0

    Skype. If it were available for Solaris, I'd ditch Linux.

  64. Re:Crap. by Anonymous Coward · · Score: 0

    When I use Solaris 10 or SmartOS, data safety comes as integral part of the operating system, in SMF, in FMA, in ZFS. And there is no memory overcommit, if memory is exhausted by a rogue application, the system returns ENOMEM ("not enough core"), but keeps on running. The system also has a forward compatible application binary interface ("ABI"), conforms to UNIX95, SUS V3, UNIX.03, XPG4, XPG6, POSIX, and AT&T SVR 4.0 standards. zones provide for highest performing known virtualization technology in the industry, running at the speed of bare metal, using only as much memory as the individual processes consume, and I do not have a PID 1 reaping problem like Docker did, for which they had to re-implement their crappy version of "lightweight init". I also get cyclics within 10ms, a realtime subsystem, and a choice of two schedulers, which I can pick and choose per process. I get first class observability and post mortem debugging with DTrace, iostat, vmstat (Linux has crappy copies of iostat and vmstat), mdb, and kdb. I need to perform exactly zero system engineering to get all of that.

    With Linux, to automate just ZFS on /, I would need to invest tremendous amounts of system engineering. SMF? systemd is an idiotic attempt to implement what SMF has been doing for more than 10 years now, except I do not need special tools to read out the logs, and it does not replace login(1M), cron(1M), syslog(1M), or anything else (init.d is still there and working, just deprecated).

    24 years later, and Linux doesn't even have data reliability, still using filesystems which are either not production ready after years of masturbation on them (btrfs), or do not checksum data (XFS, ext2/3/4). How would you like for the out of memory killer to kill one of your database processes, when a rogue Java application leaks enough memory? As I wrote in my initial post, Linux is crap - but that it is so popular - I have all of Linux idiots to thank for that.

  65. Re:Crap. by Anonymous Coward · · Score: 0

    I suspect a LOT more people are gonna say "FUCK MS" and come over to the Linux side...

    That would require effort on the part of the end user.

  66. Re:Crap. by Blrfl · · Score: 2

    If one of the BSD's were this popular, I would be fine with that...

    I've done product development on the BSDs. Believe me, the grass is equally brown on both sides of that fence.

  67. Re: Crap. by cyber-vandal · · Score: 1

    My argument is that I found Linux to be more of a joy to use in 2000 than I do now with such "user-friendly" distros as Ubuntu. Any mention of Linux not being perfect on here leads to being monstered by pathetic fanbois such as yourself. Linux had the potential to bury Windows at the turn of the millennium but the various factions spent more time fucking about in the name of "choice" than working together and now we have a horrible mess on the desktop. Server is great, Android is great, desktop is a joke.

  68. Re: Crap. by mark-t · · Score: 1

    So your grievance is with Ubuntu, not Linux, per se.... except perhaps to the extent that Ubuntu's influence has affected other distro's. Even then, your beef would be with the distros that had been so affected.

    I understand that Slackware is still pretty pure

  69. Re:Correction by RabidReindeer · · Score: 1

    Circa 1985, 48K would have been a fairly large program even for a minicomputer system (e.g., Unix).

  70. Re:Crap. by deviated_prevert · · Score: 1

    You better believe I have an ax to grind.

    I work with Linux every day, professionally. As soon as the system gets under 100% CPU or memory pressure it crashes. In Solaris (or any Illumos derivative), for that I have mdb, and I can debug a crashed kernel (and make it run again) with kdb. In Linux, that is science fiction.

    At home I have Xubuntu. The piece of crap is so slow and bloated, it's become just like Windows. It started out relatively usable, and the more updates were applied, the slower it got. Many of the updates regularly had failure issues during boot. If I were not forced to (company policy) by idiots, I would never run Linux in production. What. A. Piece. Of. Crap.!

    Virtualization technology in Linux? Crap. GNU userland? Does not correspond to any industry norm or standard - crap (recursive grep(1), or TApe ARchiver, tar(1) which supports compression, anyone?) - crap. Backward compatibility in Linux? Crap. Post mortem debugging? Crap. System startup, with million different solutions? Crap.

    Crap, crap, crap! But hey, it's all the rage!!! Yes, you better believe I have an Ax to grind. And not just one ax!

    Real neckbeards RUN SLACKWARE! A real OS, Ubuntu based OSes are for blind trogs who cannot write a shell script for shit or even mess with .config files for that matter. What a sorry state of affairs for linux when the pions start to become sysadmins, almost as bad as the so called MS sys admins that can't use Power-shell for shit, but not quite! Take a stress pill and take comfort in your crappy gui tools. Eventually you will figure it out why you can't get your shit done efficiently, either that or someone will for you!

    --
    This message was not sent from an iPhone because Peter Sellers really was a deviated prevert without a dime for the call
  71. Re:Crap. by Anonymous Coward · · Score: 0

    so, instead of writing to your congressman, you have to bribe the dictator of your country?

  72. Re:Crap. by Anonymous Coward · · Score: 0

    ... using it since FOREVER (Slackware/1995 here..)...

    Noobie.

  73. Re:Crap. by Anonymous Coward · · Score: 0

    LVM2 != backups. In fact, it can't back up /boot. Plus, you have to have the free space for the deltas, and most default LVM2 installs have every byte of space allocated.

    Please try again. So far, the best I've found is to pop a LVM snapshot, dump that off, and on restore, rebuild its LVM, untar /boot, and the other filesystems, drop GRUB, and hope I'm not staring at a flashing caps lock key. With any other OS, I can get a consistant system image.

  74. I Still Try Periodically by Anonymous Coward · · Score: 1

    Every time Microsoft releases an update to Windows I make a sincere effort to convert over to Linux. So far I just don't understand how people do it. The latest trial was Kubuntu 14.04. Almost every application I tried to use - Firefox, Amarok, LibreOffice - crashed at least once an hour. The next day I tried 15.04 and after the OS recommended updating my video driver the system wouldn't boot anymore, and KDE's version of safe mode didn't work. Ain't nobody got time to figure out the reason for a half dozen different crashes and driver issues. Back to Windows 7, which runs fine.

  75. Re:Crap. by Anonymous Coward · · Score: 1

    And with what a spyware-fest Windows 10 is, I suspect a LOT more people are gonna say "FUCK MS" and come over to the Linux side...

    Oh you Year of the Linux Desktop people crack me up. Come on, even ME, Vista and 8 didnt drive people to Linux, in fact they sold (yes sold, despite Linux being free) more into the market and were more used than Linux ever has been on the desktop.

    You think the privacy issues (which you turn pretty much all of them off in the Privacy settings anyway) are going to turn people off Windows 10? That must be why Diaspora is so much more popular than Facebook, why DuckDuckGo is so much more popular than Google, why people host their own email servers rather than using webmail like Gmail and Outlook, why everybody is using cash and bitcoin instead of credit/debit cards...oh right if you had experience in the real world you would know this isn't the case.

    You are the very definition of the Linux nerd, the basement dweller who has demonstrably no knowledge of the real world. You are the reason the "Year of the Linux Desktop" is a running joke, it's still hilarious to see you scratching your head about why Linux isn't more popular on the desktop. You really have no idea.

  76. Re:Correction by exomondo · · Score: 1

    Companies have begun to realize the value of collaboration and that working with the community is really advantageous. Sure they still have their proprietary bits and often that is where their competitive advantage lies but it means we get so much code collaboration and with open source and proprietary people working together. The exclusive - rather than inclusive - nature of Free software means it is now competing not just with proprietary software but with open source software as well (LLVM, busybox for example).

    The special exemptions in Linux's COPYING file that allow it to work with proprietary software are what have made it so successful. And with proprietary people realizing the value of collaboration - and the Free Software people too interested in not working with anybody who doesnt share a compatible ideology - we are seeing a rise of more great active open source projects these days.

  77. Re:Crap. by Anonymous Coward · · Score: 0

    Real neckbeards RUN SLACKWARE! A real OS, Ubuntu based OSes are for blind trogs who cannot write a shell script for shit or even mess with .config files for that matter.

    So tell me, how do you know a real scotsman? Your perception of what a "real OS" is is an operating so feature-poor and incompetent that it actually requires you to write shell scripts and edit config files. These should be for exceptional cases, not everyday ones.

  78. Re:Crap. by Anonymous Coward · · Score: 0

    I now live in a country with direct democracy and referendums. Good luck with the congress and the senate.

  79. Re:Crap. by Anonymous Coward · · Score: 0

    Indeed: http://serverfault.com/questions/279571/lvm-dangers-and-caveats

  80. Re: Crap. by Anonymous Coward · · Score: 0

    Perhaps your insults should be directed at yourself.

    (Same AC)

    No, they shouldn't. I've worked as a sysprog on approximately 25 different companies' mainframe systems over more than 30 years (I work for an outsourcer). How many *entirely different* mainframe systems have *you* worked on?
    The issues that cause these circular deadlocks between multiple CICS services and databases have occurred on two of these mainframe systems, and are/were due to poor db/application design which I have/had no control over either technically or managerially. So my competence is not an issue. We have to run to the best of our ability whatever systems we are contracted to run. I suspect without proof that the same issues *could* happen on some of the other systems with similar design issue but they have never hit 100% CPU for long enough.
    The point remains that even the most robust of operating systems can struggle when at 100% CPU for more than transitory periods.

  81. Re:Crap. by Anonymous Coward · · Score: 0

    Sounds like you should quit your job and get one working with Solaris.

  82. Re:Crap. by Anonymous Coward · · Score: 0

    I would, if there were any left! Why are they gone? Because all the idiots made Linux popular!

  83. Re:Crap. by iceaxe · · Score: 1

    Some of us have been using Slashdot since the days of 28.8 dial-up, yet have never registered a username. Things like that might be important to you, but not to everyone. Grow up and recognize that because you felt the need to make a name for yourself makes you no more credible than the next person.

    All these years and I'm still incredible. Incredible.

    --
    WALSTIB!
  84. Re:Crap. by Anonymous Coward · · Score: 0

    That's not true, I had a government job which involved working with Solaris not long ago.

    Of course, IMHO dealing with the crushing government bureaucracy was far worse than dealing with any particular OS, but every job has its pros and cons. If you find Linux so terrible then maybe you'll cope with bureaucracy better than I did.

  85. Perl is older by Sam36 · · Score: 0

    Perl is older, and more gooder.

  86. Happy birthday :) by Anonymous Coward · · Score: 0

    I think this is one of those things to celebrate. one employer once told me Linux was to play at school. When if asked of to choose an operating system for our mail servers . I'm glad we have an endless support for it resources and love. without love nothing is worth. So happy Birthday !