Slashdot Mirror


Minix 3.2.1 Released

kthreadd writes "Minix, originally designed as an example for teaching operating system theory which was both inspiration and cause for the creation of Linux has just been released as version 3.2.1. Major new features include full support for shared libraries and improved support for USB devices such as keyboards, mice and mass storage devices. The system has received many performance improvements and several userland tools have been imported from NetBSD."

67 of 107 comments (clear)

  1. Minix+Laptop by Chompjil · · Score: 3, Funny

    Verry, nice, may look forward into it for my old laptop from 2007 I won in a raffle

    --
    People once told me 68K ram was all we needed,
    1. Re:Minix+Laptop by fahrbot-bot · · Score: 4, Insightful

      yeah... just now getting shared lib support? Am I supposed to be impressed, surprised, amused, perhaps scholastically challenged on a theoretical level...?

      Don't be a dick. I first used Minix back in the late 1980s, when it first came out, on an IBM PC/AT. It's great for educational purposes, perhaps even better than Linux/BSD. Any continuing progress on something like this is a good thing.

      --
      It must have been something you assimilated. . . .
    2. Re:Minix+Laptop by Darinbob · · Score: 3, Interesting

      Shared libraries aren't easy to implement and they're not a part of the kernel (Minix is about the kernel). Adding shared libraries adds a lot of complexity and infrastructure. The executables in Minix were kept simple on purpose. Minix resembles a more classic Unix style in many ways.

      Pragmatically, it was not feasible to have shared libraries when Minix was new, most Unix systems of the time were still experimenting with it, and you need specific tools chain support that just wasn't there. Now why it didn't change over the intervening years is undoubtedly due to the reason that it's just not all that important for the purpose of Minix which is education.

  2. how does it compare to NetBSD as a teaching tool? by Trepidity · · Score: 5, Interesting

    Afaik, NetBSD and Minix are the two most prominent operating systems that advertise clean source code and architecture, suitable for examination by people learning OS principles, as one of their explicit design goals. NetBSD seems more popular as an actual system to use, and is clean architecture has led it to be famously ported everywhere. Does someone have experience with Minix to compare?

  3. Hardware compatibility by MichaelSmith · · Score: 4, Informative

    Looking under "Drivers, FS" it would seem that the Minix developers are still focusing on keeping it compatible with qemu and virtualbox, ie, they don't expect anybody to run it on real hardware and use it for real jobs.

    1. Re:Hardware compatibility by MichaelSmith · · Score: 1

      I mean they don't expect it to be installed on COTS hardware and used as a web server or workstation. It is, as you said, expected to be used as a teaching tool.

    2. Re:Hardware compatibility by MichaelSmith · · Score: 1

      Yeah but the minix web page does say thae think it is appropriate for netbook type devices. I am currently torrenting the CD image in the hope that I can get it to boot with PXE. The netboot howto says to use the USB image but that seems to be deprecated at the moment.

    3. Re:Hardware compatibility by Raenex · · Score: 3, Informative

      Looking under "Drivers, FS" it would seem that the Minix developers are still focusing on keeping it compatible with qemu and virtualbox, ie, they don't expect anybody to run it on real hardware and use it for real jobs.

      How does support for virtual hardware mean they don't expect people to run it under real hardware too? I don't follow your logic. Not only that, your conclusion is directly contradicted by the Minix website:

      "Research Projects

      MINIX 3 won a grant from the European Research Council for 2.5 million [euros] to further research in highly reliable operating systems. Due to its modular nature and fault tolerance, it is easy to use it as a basis for operating systems research or for a product."

      and more:

      "It was only with the third version, MINIX 3, and the third edition of the book, published in 2006, that the emphasis changed from teaching to a serious research and production system, especially for embedded systems. A few of the many differences between MINIX 2 and MINIX 3 are given here.

      Going forward, we are making a serious effort to turn MINIX 3 into an industrial-grade system with a focus on the embedded market, especially for those applications that need high reliability and availability."

    4. Re:Hardware compatibility by MichaelSmith · · Score: 1

      I have found hardware support in minix to be very poor, in fact I don't think I have ever been able to get it running in a non-virtualised environment. By targeting embedded systems they are in effect saying that thy expect developers to port minix to their hardware.

    5. Re:Hardware compatibility by rubycodez · · Score: 1

      never had a problem on any machine I've owned for the last 20 years, it does target the most common chipsets a studen't's pc would have for a command line system

    6. Re:Hardware compatibility by MichaelSmith · · Score: 1

      I would like to try it on my eeepc 701 but the USB installer seems to be depricated and that installer was requred for PXE installations as well. Many CD installation kernels support TFTP or NFS, both of which I support but so far I can't find any information on how (if at all) to use them with the minix microkernel. I assume that booting is more complex for a microkernel because of all the different parts so maybe netbooting is out for now.

    7. Re:Hardware compatibility by kwark · · Score: 1

      It ran fine on my 286 in 1999. It had an original ne2000 IIRC, but it was only useful as a terminal.

    8. Re:Hardware compatibility by jythie · · Score: 1

      That, unfortunately, is what they said about Pascal....

    9. Re:Hardware compatibility by tlhIngan · · Score: 2

      Looking under "Drivers, FS" it would seem that the Minix developers are still focusing on keeping it compatible with qemu and virtualbox, ie, they don't expect anybody to run it on real hardware and use it for real jobs.

      Well, it's a teaching OS, and if you want to teach how to write an OS, it would help to be able to not need another PC to do it on - after all, you'll build it on the host OS (Minix is self-hosting, so it could be that), but you'd rather not replace your obviously-working kernel with your test version and having to maintain a separate PC just to test with gets old, quick. Perhaps if you had automated deployment tools and all that, but it's still a huge pain. Imagine teaching it - you build and have to switch the projector to the test PC.

      So it's kinda useful to have it be very compatible with VM software, especially since a student may not have access to another PC at the moment or what not.

      And hell, since Minix self-hosts, it'll be doubly annoying to have to reboot your PC to do your OS course homework, then copy it out somehow to your PC to submit your work, then reboot to do your other homework. So another plus for VM support.

  4. Is this a serious OS? by Viol8 · · Score: 1

    Or is it more for teaching? If its angling to be a serious OS I think they may be wasting their time to be honest - that horse bolted in 1991.

    1. Re:Is this a serious OS? by Anonymous Coward · · Score: 4, Informative

      Wikipedia will give you an answer quicker (30 seconds) than Slashdot responses (5 minutes):

      "MINIX is a Unix-like computer operating system based on a microkernel architecture created by Andrew S. Tanenbaum for educational purposes"

    2. Re:Is this a serious OS? by Trepidity · · Score: 2

      I don't think they have any expectation people will use it as a desktop or server OS. They do seem to have a goal of making it suitable for use by embedded-system developers.

    3. Re:Is this a serious OS? by Anonymous Coward · · Score: 3, Interesting

      MINIX has always been first and foremost a teaching OS. What is exciting is that in recent years, the capability seems to have broken through a wall, and the practical usages has started growing quickly. That means it can now be used for both purposes, which makes it even better at its primary purpose.

      MINIX is not trying to be Linux. MINIX is trying to be MINIX, and the exciting thing is that it is now succeeding! So it is one of a growing multitude of options in the free and open source community.

    4. Re:Is this a serious OS? by cnettel · · Score: 1

      Many computer systems have been created with education of computer science concepts in mind (or at least as an important design goal). Pascal and BASIC were to a varying degree created with this purpose in mind (Dr. Jekyll and Mr. Hyde, if you will...). During the microcomputer revolution, they became the de facto norm. Only far later did C intrude to a significant extent into that market.

    5. Re:Is this a serious OS? by interval1066 · · Score: 1

      I would say that they've then been beaten to THAT punch by many embedded systems developers. I'm not even going to cite teh urls. Embedded linux is not a mystery.

      --
      Python: 'And then suddenly you have a language which says "we're all stuck with whatever the whiniest coder wants".'
    6. Re:Is this a serious OS? by interval1066 · · Score: 1

      MINIX is not trying to be Linux. MINIX is trying to be MINIX, and the exciting thing is that it is now succeeding!

      So, "Run Forrest, run!" is more apropos of here than in any use that quote has ever been applied to before in any IT article...

      --
      Python: 'And then suddenly you have a language which says "we're all stuck with whatever the whiniest coder wants".'
    7. Re:Is this a serious OS? by gatkinso · · Score: 1

      I fondly remember Pascal. Awesome language.

      --
      I am very small, utmostly microscopic.
    8. Re:Is this a serious OS? by c0lo · · Score: 1

      END

      --
      Questions raise, answers kill. Raise questions to stay alive.
    9. Re:Is this a serious OS? by Alain+Williams · · Score: 1

      It is available under a BSD-type license which will make it more attractive to some companies than Linux which is under the GPL.

    10. Re:Is this a serious OS? by UnknownSoldier · · Score: 1

      > Awesome language at being verbose; almost as bad as Cobol.

      FTFY

      Pascal sucks for readability: its ass-backwards variable declarations so you can't declare multiple variables, verbose keywords, redundant keywords, two character assignment ':=' (colon equals) instead one '=' (equals) (this WOULD of been fine if you were forced to use this in an IF statement and the single 'equals' elsewhere), and useless distinction between functions and procedures makes it hard to focus on the code when you have to wade through so much on-screen spew of text.

      Compare Pascal's verbosity ...

      { Calculate the hypotenuse using the Pythagoras theorem: SquareRoot( (a*a) + (b*b) )
      Function Pythagoras( A:Integer; B:Integer) : Integer;
        Var SumSquared : Integer;
      Begin
        SumSquared := A*A + B*B;
        PythagorasFunc := Trunc( SQRT(SumSquared) );
      End

      ... with C which has a good balance of minimal and compact keywords; much cleaner and compact with no useless verbosity, stopping before it goes for the nearly unreadable minimalism of APL, Pearl, etc.

      // Calculate the hypotenuse using the Pythagoras theorem: SquareRoot( (a*a) + (b*b) )
      float Pythagoras( int A, int B )
      {
        int SumSquared = A*A + B*B;
        return (int)sqrt( SumSquared );
      }

      One of the few things Pascal did right back in the day was use a proper recursive descent parser which enabled a wicked-fast one-pass compiler. C and C++'s grammar was (and still is) so fucked up that there was no official BNF* grammar for ages. Thankfully D fixes some of the broken C/C++ design -- but adds it own set of kludges -- time will tell if it will ever reach critical mass.

      You can see the verbosity of other languages here:
      http://www.codecodex.com/wiki/Calculate_an_integer_square_root

      Note: * BNF = http://en.wikipedia.org/wiki/Backus%E2%80%93Naur_Form

    11. Re:Is this a serious OS? by RedHackTea · · Score: 1

      Linux...but its restrictive license is an inherent handicap.

      So it's a handicap because...
      1. Any fixes/improvements/forks that people make have to be Open Source, thereby helping the original kernel.
      2. Microsoft and Apple can't steal parts of the code and use it in their OSes legally.

      These are handicaps to corporations, not to Linux or the users, so I'm fine with these "handicaps."

      --
      The G
    12. Re:Is this a serious OS? by ls671 · · Score: 1

      Yeap, turbo pascal overlays on a 8086 with 640K.

      Overlays basically allowed you to swap part of your running executable out manually from within your program.

      http://stackoverflow.com/questions/10155003/how-did-turbo-pascal-overlays-work

      --
      Everything I write is lies, read between the lines.
    13. Re:Is this a serious OS? by kernelistic · · Score: 1

      Sorry for being pedantic, but your "C" example declares Pythagoras() as returning a float yet you cast the return value of sqrt() to int. As it seems that your intent was to truncate, you should use floor() instead of relying on casting hacks.

    14. Re:Is this a serious OS? by RedHackTea · · Score: 2

      Your main points are about restrictions to companies. As a company, you should be concerned about any license and have a lawyer for it. Even if not explicitly stated, every piece of unique work has a natural copyright anyway. Copyleft wasn't made to help companies, but the people. If a person writes code for a new type of compression algorithm and releases it as BSD, then companies are free to improve upon it without ever giving the improvements back. That means company XYZ can substantially improve it and keep it closed source. They have tons of money and tons of coders underneath them working full-time. Company XYZ makes tons of money from this. Eventually, the F/OSS version can't compete and keep up and eventually dies. And if some coding genius could improve the code by 10 fold, then there's no way unless they work for the company. Any free software that wants to use Company XYZ's improved version have to pay fees. If Company XYZ goes under, then the code is never released. It only appears to advance technology temporarily.

      Having said all of this, I'm fine with closed-source code. However, copyleft was made for coders, for guys like me. If you're not a coder, then you won't really understand. It wasn't made for companies, so of course, it restricts them. But, the companies can still use it and improve upon the code, so it only restricts them from using code in their closed-source code and from improving upon it without giving back to the original coders that made it. In fact, they could make a "in-house" version where they don't have to make it open source. It's only when you distribute the code publicly -- when you're profiting from the code -- that you have to release the source code. And if a company is profiting from the work of others, standing on giants' shoulders, shouldn't the guy that they're standing on get some benefit too? Asking for the improvements/fixes in the form of open source code isn't asking for much, seeing as how they wrote the thing in the first place.

      Copyleft is for coders and the community of coders. Average Joes like me. It handicaps corporations/companies.

      --
      The G
    15. Re:Is this a serious OS? by RedHackTea · · Score: 1

      For GPL, if you distribute the product (the binary executable) to the public, then you have to release the source code. You don't have to also sell it. http://www.gnu.org/licenses/gpl-faq.html#ModifiedJustBinary

      --
      The G
    16. Re:Is this a serious OS? by UnknownSoldier · · Score: 1

      Thanks for the catch. The return type is a typo -- should be int, else the compiler will be doing unnecessary casts.

      floor() ceil() are slow as hell as they will promote a float to a double. floorf() and ceilf() should be available but may be unportable / unavailable. :-/

      One of C's design flaws is that it will silently upcast char to int to float to double and there is no way portable nor standard way to stop the idiotic compiler from doing so or to print a compile-type "info", "warning", or "error" if it happens. Likewise there is no portable or standard way to inform the user of downcasts either, or to disable them entirely.

    17. Re:Is this a serious OS? by RedHackTea · · Score: 1

      Even if not explicitly stated, every piece of unique work has a natural copyright anyway.

      That may be your religion, but I don't share it.

      Copyright isn't natural, it's a legal concept. That aside, it is a fact that any original creative work is copyrighted automatically, that's not religion.

      I realize that you're just nitpicking at the original wording by lawyers, but when I was younger, it actually used to be called "natural copyright" more. Now it's known more as a common law copyright or copyright by natural law. In fact, the wiki page says that it stems from the idea as a natural right. Gov site for other readers. I didn't mean to say that it's "natural." Only using the phrasing of my generation.

      Eventually, the F/OSS version can't compete and keep up and eventually dies.

      So why does F/OSS still exist at all? Reality seems to disagree with you. Because F/OSS doesn't need to compete it doesn't have to die, it just needs people who are interested in it, and we live in a big world. New fancy features may not always be developed as fast as with proprietary software because the motive to score big with a hype isn't so strong, but F/OSS software does tend to gradually improve.

      You're right with most F/OSS software, but my sentence applies to the context in which I presented it. For instance, FLAC is on an equal level as other lossless audio compression files. (Apple's ALAC is also under the Apache license, so we're pretty well off as far as free audio compression.) However, imagine FLAC was under a different license. A company uses the code and improves it in house. In fact, the company gets lucky and improves it by 50%. Again, this is just a hypothetical scenario, but that's what these licenses are for anyway -- hypothetical scenarios (in fact, the reason a company makes their code closed source is so that a company with more money can't use it and in effect make the first company go under; for companies, closed source usually makes sense if your primary product is software; all dealing with hypotheticals). Now, a 50% improvement is quite a lot. If the company releases it as free to use but does not release the source code, how many average users would jump on that bandwagon? Probably quite a lot. Eventually, all music is distributed using this closed source compression. F/OSS has battled and continues to battle this, but with near-equal compression it's not too bad. With a margin such as 50% for lossless compression, well, that would be quite detrimental. And in fact, if F/OSS programmers work tirelessly to chop it down another 10%, now the big corporation can chop theirs to 60%. Eventually, I think that FLAC would turn into in inactive project, or be an active project with little-to-no support.

      Luckily, this scenario is rare, and I don't have specific examples of free software under a non-copyleft going inactive due to corporations, but I believe that's due to my lack of research and knowledge to find them. They're obviously not kept very public. However, there are tons of inactive/dead free projects.

      It's just a question of what you're willing to risk. Once you put it under a non-copyleft license and you quit the project, no one else can take it up and change the license. They would have to continue under the same license. It's completely up to the coder/person of course, and everyone is free to choose what license they want.

      --
      The G
    18. Re:Is this a serious OS? by Viol8 · · Score: 1

      "One of C's design flaws is that it will silently upcast char to int to float to double"

      I consider that a feature, not a flaw.

      "Likewise there is no portable or standard way to inform the user of downcasts either, or to disable them entirely."

      Every C compiler I've ever used will tell you when that happens. Some may require specific command line error flagging requests but they'll all do it.

  5. wow by clickclickdrone · · Score: 1

    I remember seeing this for the Atari ST back in the day but was put off by the price back then as istr it coming with full manuals and support but at a price. Amazed it's still going.

    --
    I want a list of atrocities done in your name - Recoil
    1. Re:wow by _Shad0w_ · · Score: 1

      I believe it cost less than $100 and included the book that Tanenbaum wrote to go with it.

      --

      Yeah, I had a sig once; I got bored of it.

    2. Re:wow by unixisc · · Score: 1

      The download is for free, and if one buys the book, one gets the free CD/DVD (whichever it is)

    3. Re:wow by _Shad0w_ · · Score: 1

      "It cost $100" was a historic reference, i.e. that's how much it cost back in the late 80s when he originally wrote and published the book. Back then it wasn't released under a free licence, it was released under a propriety one. It switched to the BSD licence (I think) sometime in the 90s.

      --

      Yeah, I had a sig once; I got bored of it.

  6. NOT version 3 by Anonymous Coward · · Score: 1


    Please be aware that MINIX 3 is not your grandfather's MINIX ... MINIX 1 was written as an educational tool ... MINIX 3 is that plus a start at building a highly reliable, self-healing, bloat-free operating system ... MINIX 1 and MINIX 3 are related in the same way as Windows 3.1 and Windows XP are: same first name

    http://www.cs.vu.nl/~ast/reliable-os/

  7. Virtual by Anonymous Coward · · Score: 1

    VM isnt for real jobs? Tell VMware that.. or Microsoft ... These days fewer and fewer people run anything of value on bare hardware, beyond a hypervisor and perhaps support tools depending which HV you chose. ( since not all are self-hosing )

  8. Re:how does it compare to NetBSD as a teaching too by pipeep · · Score: 4, Informative

    I'm currently in a university course where Minix 3.2.1 is being used to teach OS principles. It's certainly small, and therefore semi-easy to wrap your head around. But I would not agree that its source code is "clean". They have a lot of really old code and suffer from coding guidelines that have changed greatly over time. I've never seen someone mix tabs and spaces so much in a piece of code. And can anyone say "no namespacing"? That said, I don't have much familiarity of the internals of other kernels, but I'm not too impressed by Minix.

  9. Microkernel vs. Monolithic Kernel by RedHackTea · · Score: 1

    Okay guys, let's start the flame war. I honestly think the Microkernel is better.

    1. Everything is more modular and separated. This just makes sense to me, and I think code would be easier to maintain with a diverse community of people.

    2. If the X module dies, the OS can continue running like normal, as long as it's not the base module. For example, as humans, if you lose an arm, you can continue to live. It is losing your "brain module" that will kill you. With Microkernel, there is a lot less rebooting IMO because of a crash. How often have you had to restart your computer to fix an issue? Or remember the blue screen of death with MS?

    3. Because of #2, you can "self-heal." If X module crashes, just restart it -- without having to restart the entire system. You can restart sound/etc. services, but sometimes it still doesn't fix it and you have to do a full restart. And if it's not a service but apart of the kernel code, how to restart it?

    4. Upgrading and pushing out critical fixes can be faster and more easily done. In fact, if you could have two "brain modules", then you could kick the secondary brain off to upgrade the primary brain.

    The main disadvantage I hear about Microkernels are speed and the complexity of message passing between the modules. I use Linux myself because let's face it... GNU/Hurd and Minix just aren't up to snuff. I also prefer the GPL over BSD/MIT/etc. So why do you guys love/hate the microkernel or the monolithic kernel?

    --
    The G
    1. Re:Microkernel vs. Monolithic Kernel by Anonymous Coward · · Score: 1

      Speed an issue? You're thinking Mach. It has rained since then.

      Here's some facts:
      https://archive.fosdem.org/2012/schedule/event/549/96_Martin_Decky-Microkernel_Overhead.pdf

    2. Re:Microkernel vs. Monolithic Kernel by Anonymous Coward · · Score: 1

      HURD is a crappy hybrid system based on an horrid microkernel and pretty much dead because of lack of leadership.

      Minix3 is an actively developed pure microkernel and multiserver system with ambition and under the direction of a person who knows the fuck he's doing.

      If you can't tell them apart, you will not make the cut in the immediate future.

    3. Re:Microkernel vs. Monolithic Kernel by unixisc · · Score: 1

      Also, to prevent a hung driver from crashing the whole system, if a driver gets into an infinite loop, the scheduler will gradually lower its priority until it becomes idle. Eventually the 'reincarnation server' will see that it is not responding to status requests, so it will kill and restart the looping driver. In a monolithic system, a looping driver could hang the system.

      I do think microkernels are not for everywhere, and that it's ideal for embedded systems, where the code size is a big advantage. The complexity of message passing is real, and probably the reason there ain't that many drivers for such OSs. One thing about Mach 3.0 based OSs - that was the first generation of microkernels, which was not fully understood at the time, which is why such OSs were really slow. More modern microkernels, such as L4, are faster, and osFree is being build on that. Minix is a great platform to build an embedded OS.

      If licensing is a big deal here, then go w/ Minix if you prefer BSDL, or wait for HURD and one day, you may get a fully GPL 3 microkernel. One thing - the GNU guys could well have forked Minix 3.0 from that point, ported their HURD servers to it, and got it to work - they tried all sorts of other things like Coyotos. I'd like to see HURD get complete as well.

  10. Embedded Market by crow · · Score: 5, Informative

    I spoke with Andy Tannenbaum when we were at the OSDI conference last October. He said that Minix has a role in the embedded market, especially in places where companies want to avoid the GPL.

    It's a large and growing market. Much as I would prefer Linux, I agree that there's plenty of room for Minix in that market.

    1. Re:Embedded Market by LWATCDR · · Score: 1

      That and they where supposed to do some interesting stuff with like self healing for high reliability I find it very interesting at the Kernel level. I would love to see some way out projects that might do well at replacing X or at least closer intergeneration of X with audio.

      --
      See my blog http://ilovecookes.blogspot.com/ for light hearted technical information.
  11. Minix being ARMed by unixisc · · Score: 3, Interesting

    Actually, in the release announcement, they clearly mentioned that

    There are exciting new developments coming in the near future that aren’t part of this release. For example, the MINIX team has been working hard on MINIX/ARM support, of which significant parts have made it to mainline, yet official ARM support is slated for the near future and is not officially part of this release.

    This is a great move on their part, since Minix, w/ its microkernel, is just perfect for embedded systems and aside from routers, those tend to run on ARM based platforms. I recall reading somewhere that they were porting it to the Raspberry Pi, and hopefully, to other ARM platforms as well. In fact, something like Minix is perfect for Raspberry Pi, and once their ARM port is complete, it would be a good kernel on which to base whatever else is needed. In fact, the Raspberry Pi guys would do well to join hands w/ Tannenbaum and offer Minix as the OS of choice w/ Raspberry Pi.

    Regarding the stuff about the drivers, it was just the Virtio and VBFS that seemed to be about VMs - others, like Ext2 support were about real filesystems. (I'm guessing that for an OS targeted at embedded applications, things like Ext4, Btrfs, ZFS, Hammer, et al wouldn't be appropriate file systems to use)

  12. Re:how does it compare to NetBSD as a teaching too by unixisc · · Score: 1

    Well, from Minix 3.2 onwards, they have included NetBSD userland w/ the Minix kernel, so you then have the best of both. I had Minux as a part of my OS course in 1994 (I think it was Minix 1 then), and Tannenbaum's book, which it came w/. Minix 3 is very different in that whereas in the book, at the time, the only microkernel OSs that Tannenbaum discussed were Amoeba and Mach 3, Minix 1 (and even 1.5 & 2) were not microkernel OSs. However, in Minix 3, Tannenbaum converted his theory into practice, and made it a microkernel OS.

    One thing I think is that the NetBSD guys should consider adapting this as their kernel, given that they target mainly embedded systems, and Minix, w/ the microkernel, is a much better fit for that. Maybe merge the 2, and make it the standard target for current x86 and ARM systems. Keep the NetBSD kernel only for legacy CPUs, such as SPARCs, POWER and so on. In fact, NetBSD 6.1 ought to include Itanium support - that's precisely the sort of platform that the NetBSD guys can find a niche in.

    As an aside, since Tannenbaum has embraced everything BSD for Minix, be it the license, the userland and so on, any story about Minix ought to be tagged under BSD rather than Linux. Also, I don't know whether Minix has been officially certified as Unix or not - if it hasn't been, it's not exactly accurate to file this under 'Unix' either.

  13. Re:DO NOT TELL LINUS !! by unixisc · · Score: 1

    Well, Torvalds does not believe in going the microkernel route, and even Tannenbaum is on record (read the same link) as rebutting the allegation about Torvalds lifting code from Minix.

  14. Re:how does it compare to NetBSD as a teaching too by Anonymous Coward · · Score: 1

    Dunno if I'm replying to a troll or if you genuinely believe what you're saying but whatever...

    I'm no open-source advocate and I'm all for people making money from their work, but I think your comment applies as much to commercial consumer-grade software than to open-source.

    The profit motive from selling software means that companies will often choose to add new features rather than make current software better. And generally, businesses do that because they think that's what people will pay for.

    The quality of commercial software is often determined by the point at which the money put into making something better is no longer paid off by the money to be earned from it. That's natural in business since the purpose in business is to maximize profit.

    There's no financial incentive in commercial software to do things well, just well enough that people will buy it. It doesn't even need to be good enough that users will buy it, just good enough that managers will spend company money on it.

    If your comments were typical of open-source software, people wouldn't be using it.

  15. Re:how does it compare to NetBSD as a teaching too by Trepidity · · Score: 2

    Ah, the classic Slashdot Troll comment, which will here succeed in getting a bite. :) But it will be a short bite: this is exactly how proprietary software works as well. You will despair if you ever see the internals of any of the major proprietary software packages you use regularly.

  16. Re:how does it compare to NetBSD as a teaching too by unixisc · · Score: 1

    I thought that Minix 3 was done from scratch (which explains why while SPARC and Motorola support was there in 2, it's not there in 3) - the whole OS was re-written to be a microkernel OS. So it would be very strange if it had old code in the kernel. They didn't pay much attention to userland - in Minix 3.0, they were using the old userlands of Minix, and only in 3.2.0 did they embrace NetBSD for the rest of the system.

  17. Hurd by jones_supa · · Score: 1

    Is the GNU Hurd kernel a good choice for teaching or OS study in general?

    1. Re:Hurd by hawk · · Score: 1

      Yes.

      Everyone should study projects that never get to the finish line.

      Duke Nukem has finally managed to disqualify itself . . .

      hawk

  18. Better for embedded than for servers by unixisc · · Score: 1

    I'd certainly not suggest using it as a server OS over the likes of FBSD, Debian or RedHat. But for embedded systems, it's certainly more appropriate - I'd definitely recommend it over the likes of something like TinyCore Linux. All those people getting Raspberry Pis or Arduinos or things like that - Minix is the right solution.

    1. Re:Better for embedded than for servers by unixisc · · Score: 1

      Minix 3 would have practical utilities besides the copyfree license - such as its really tiny footprint, and its features, like the reincarnation server & self healing, which would make it practical for even real time systems. The only utility of HURD, consistent w/ the RMS philosophy, would be that it would be the only GPLv3 kernel out there (if they stay w/ Mach 3, even that would be bloated, and not address the same requirements that Minix 3 addresses. If GPLv3 licensing is not a must, there is no reason to use HURD. But even w/o the BSD license, Minix 3 has compelling features of its own, which it didn't have in Minix 1, 1.5 or 2.

  19. Great to finally see some advancement on Minix by niktheslick · · Score: 1

    It seems to me that the tradeoffs Minix makes lends itself to better hardening and security, let alone simplicity and maintainability in the code base. I am excited to see what the Minix community produces now that they have some dedicated developers and are using NetBSD pkgsrc for userland. Cheers!

  20. Re:how does it compare to NetBSD as a teaching too by unixisc · · Score: 1

    One more thing - in Minix, like in FBSD, LLVM/Clang is now the default compiler instead of GCC

  21. Re:how does it compare to NetBSD as a teaching too by manu0601 · · Score: 1

    One thing I think is that the NetBSD guys should consider adapting this as their kernel, given that they target mainly embedded systems, and Minix, w/ the microkernel, is a much better fit for that. Maybe merge the 2, and make it the standard target for current x86 and ARM systems.

    Merging kernels is no trivial job. The only reasonable thing that could be done would be to have the BSD kernel sitting on the top of a microkernel, just like MacOS X does.

  22. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  23. Re:how does it compare to NetBSD as a teaching too by Anonymous Coward · · Score: 1

    If the Minix kernel is BSD-licensed, another thought would be for Debian to try it instead of Hurd, depending upon which microkernel is farther along...

  24. Bowling alleys run on Minix by Taco+Cowboy · · Score: 1

    Minix was/is not confined to the academia

    It also runs the machines in your local bowling allies

    --
    Muchas Gracias, Señor Edward Snowden !
  25. Re:how does it compare to NetBSD as a teaching too by Pino+Grigio · · Score: 1

    I have some experience with Minix, from 1995, when I modified the memory allocation algorithm for a class at University :). I don't think it's an OS I would actually use though!

  26. Re:how does it compare to NetBSD as a teaching too by sg_oneill · · Score: 1

    Yeah it was my first Unix because my old XT couldn't run Linux (which was *very* new at the time). It was great to mess around with, and I managed to hack together a driver for my wang hard drive controller, but the lack of a TCP sockets stack really limited its usefulness.

    --
    Excuse the Unicode crap in my posts. That's an apostrophe, and slashdot is busted.
  27. Re:how does it compare to NetBSD as a teaching too by unixisc · · Score: 1

    As was Minix 1 & 1.5

  28. Re:how does it compare to NetBSD as a teaching too by MurukeshM · · Score: 1

    I find it intensely annoying too. But I ackowledge his right to write as he pleases. And that I'm under no compulsion to read it.

  29. Re:how does it compare to NetBSD as a teaching too by Raenex · · Score: 1

    I don't deny his rights to write it, nor my rights to not read it. That doesn't mean it is beyond criticism.