Slashdot Mirror


SGI Announces MIPS and IRIX End of Production

ramakant writes "Considering the recent news regarding their dismal financial situation, it should come as no surprise that SGI announced end of production for MIPS based hardware and the IRIX operating system. From the article: "SGI launched the MIPS/IRIX family of products in 1988. Since then, this technology has powered servers, workstations, and visualization systems used extensively in Manufacturing, Media, Science, Government/Defense, and Energy. After nearly two decades of leading the world in innovation and versatility, the MIPS IRIX products will end their general availability on December 29, 2006." IRIX has always been my favored OS, and I'll be sad to see it gone. Hopefully my O2 will survive for many years to come."

275 comments

  1. MIPS is going away? by EvanED · · Score: 4, Funny

    Now what narrowly-deployed architecture for which everyone runs a CPU simulator will be taught in computer organization and assembly language classes?

    1. Re:MIPS is going away? by OrangeTide · · Score: 4, Informative

      Systems with a clean instruction set are apparently unpopular in the real world.

      PowerPC is rather nice, but it's not as clean. (but it is easier to use)

      --
      “Common sense is not so common.” — Voltaire
    2. Re:MIPS is going away? by jd · · Score: 1

      ARM? (arcem isn't maintained, from the looks of it, but it's a neat pure-hardware-level ARM platform simulator.)

      --
      It's a small world and it smells funny; I'd buy another if it wasn't for the money; Take back what I paid (SoM)
    3. Re:MIPS is going away? by AKAImBatman · · Score: 3, Funny
      Now what narrowly-deployed architecture for which everyone runs a CPU simulator will be taught in computer organization and assembly language classes?

      Duh. They'll emulate the 6507 in the Atari 2600. That way they can run it on real, modern hardware! :P
    4. Re:MIPS is going away? by Bluesman · · Score: 2, Funny

      It'll all be Motorola 68000.

      Anything but Intel, it's just way too easy to find recent and cheap hardware and software that's i386.

      Plus the textbooks won't have classic lines like,

      "Today's machines now come standard with up to 4 megabytes of Random Access Memory, and this continues to increase every year!"

      --
      If moderation could change anything, it would be illegal.
    5. Re:MIPS is going away? by larry+bagina · · Score: 1

      My assembly class use 8086 (with Microsoft's assember... I prefer nasm). I think 32-bit ARM is the cleanest real world instruction set I've used.

      --
      Do you even lift?

      These aren't the 'roids you're looking for.

    6. Re:MIPS is going away? by DrDitto · · Score: 2, Informative

      MIPS is not going away. They are a seperate company that now focuses on the high-end embedded market.

    7. Re:MIPS is going away? by Tarlus · · Score: 2, Insightful

      I'm sure they'll continue to teach MIPS assembly for many years to come simply because it's the easiest to teach and learn. SGI's dropping of MIPS won't matter since every computer-organization student is emulating it with SPIM on more common architectures, anyway.

      --
      /* No Comment */
    8. Re:MIPS is going away? by AKAImBatman · · Score: 2, Insightful

      To be serious for a moment, the 6502 series (which included the 6507 and 65C02) was an excellent processor architecture that was incredibly easy to learn on. Its small instruction set, focus on 8 bit instructions, and logical segmenting made it popular both in real usage (Commodore 64, Atari 2600, Nintendo Entertainment System, Atari 8-bit computers, Apple II, BBC Micro, etc.) AND in teaching.

      Just about anyone can learn to program it by reading the documentation. It's so simple, it can even replace BASIC as a first language. (Although, you might have a bit of diffculty doing "Hello World" unless you understand the hardware you're programming for.)

    9. Re:MIPS is going away? by tomstdenis · · Score: 1

      Um what? MIPS lacks a add with carry instruction. That makes it suck. :-)

      Tom

      --
      Someday, I'll have a real sig.
    10. Re:MIPS is going away? by cant_get_a_good_nick · · Score: 1

      Just about anyone can learn to program it by reading the documentation.
      Sigh, those were the days.. I learned 650x machine code (not assembler, didn't ahve one of those) on the C64 from reading the Compute! book. I miss my C64.

      I think for me it was knowing i had essentially total control of the machine. I had the Mapping The C64 book, i could learn what every byte did. A kid trying now with Linux has megabytes and megabytes to read.

    11. Re:MIPS is going away? by ajlitt · · Score: 4, Informative

      MIPS isn't going away. MIPS is very popular for embedded video processing. TiVo is MIPS (now, at least), the PSP is MIPS, and many DVD players are based on a MIPS. MIPS is still popular because the ISA isn't patented and there are a number of compatible cores out there.

    12. Re:MIPS is going away? by neonprimetime · · Score: 2, Insightful

      I for one teach an undergraduate Assembly course in the Spring, and I intend to continue using SPIM in the class.

    13. Re:MIPS is going away? by neonprimetime · · Score: 2, Interesting

      Can I ask a legit question then, since you seem to know what you're talking about :-) What if any effect SHOULD this announcement have on current undergraduate Assembly courses that teach MIPS? Thank you in advance.

    14. Re:MIPS is going away? by 10Ghz · · Score: 4, Informative

      SGI MIPS-workstations are going away, MIPS itself is not going anywhere, It's still running in millions of embedded devices, and more will be announced in the future.

      --
      Lesbian Nazi Hookers Abducted by UFOs and Forced Into Weight Loss Programs - -all next week on Town Talk.
    15. Re:MIPS is going away? by RAMMS+EIN · · Score: 1

      ``Now what narrowly-deployed architecture for which everyone runs a CPU simulator will be taught in computer organization and assembly language classes?''

      Itanium?

      *ducks*

      --
      Please correct me if I got my facts wrong.
    16. Re:MIPS is going away? by Mercano · · Score: 1

      ARM has those conditional execution bits at the beginning of every instruction. Useful, undoubtedly, but it adds another layer of complexity to teaching the thing.

      Side note, one of the coolest things I remember from EECS 2xx was how many instructions weren't implemented on MIPS hardware but they had anyway, mostly via the zero register. NEG? Sure, it might exist in the assembler, but its going to get turned into a SUB instruction from R0 by the time it hits machine code. Load immediate? No, you mean add immediate, with your value plus good ol' R0. There were a few more of these psydo-instructions, and I remember being pretty impressed by the hackishness of them all to cut down on transistors.

      --
      #include <signature.h>
    17. Re:MIPS is going away? by AKAImBatman · · Score: 1
      I learned 650x machine code (not assembler, didn't ahve[sic] one of those) on the C64

      Are you saying that you actually hex edited your programs? Ouch. Now that's old school! :)
    18. Re:MIPS is going away? by okvol · · Score: 1

      I took one college quarter of PDP-11 machine language, and then 2nd and 3rd quarters of IBM 370 mainframe machine language. The only machine coding I ever did for $$$ was on a Z-80, some subroutines on a TRS-80. Those were simpler days...

      --
      cabg x3 is a life changing event...
    19. Re:MIPS is going away? by davechen · · Score: 1

      HA! For my machine language class we had to enter binary code into a PDP-11 and debug the code using the switches and LEDs on the front panel.

    20. Re:MIPS is going away? by mmkkbb · · Score: 1

      I don't think that's unique to MIPS. I seem to remember numerous pseudo-instructions from my 68HC11 days as well.

      --
      -mkb
    21. Re:MIPS is going away? by SomeoneGotMyNick · · Score: 1
      I learned 650x machine code (not assembler, didn't have one of those) on the C64 from reading the Compute! book.


      Likewise....

      I hand assembled 6502 code by only using the mnemonic reference in the back of the VIC-20 Programmer's Reference Guide. All this after just learning basic. I used the open architecture of the system and the well documented memory map to create a bitmapped Formula 1 car graphic that moved across the screen one pixel at a time. Lots of ROL/ROR usage. I entered the code via POKEs read from DATA statements. It wasn't much more than a proof of concept, but it was a banner day for a young future programmer. One of those "I figured it out all by myself" moments.

      After a seven year break from machine code, I end up hand assembling 6502 code on a microprocessor trainer that I interfaced to an R/C remote controller for an electronics course project in an effort to recreate the Big Trak days.
    22. Re:MIPS is going away? by rbanffy · · Score: 1

      300: AD 30 C0 4C 00 03
      300G

      Boy... I miss the Apple II days. 6502 rocks.

    23. Re:MIPS is going away? by LWATCDR · · Score: 4, Informative

      I will answer. None at all.
      This announcement is about the end of MIPS as a server and workstation platform. The vast majority of CPUs are not used for server or workstations. They live in toasters, DVD players, digital cameras, microwaves, and so on. In the real world very few people ever write assembly programs that run on a server or a workstation. However in the embedded space assembly is still pretty common.
      MIPS isn't dead. MIPS servers are dead. MIPS lives on in many devices.

      --
      See my blog http://ilovecookes.blogspot.com/ for light hearted technical information.
    24. Re:MIPS is going away? by mmkkbb · · Score: 1

      New Freescale ColdFire microcontrollers still use the 68000 instruction set and they're still getting put in new devices, although the current CF core is a bit different...

      --
      -mkb
    25. Re:MIPS is going away? by xiox · · Score: 1

      I laughed upon my schoolmates with their puny 6502 with three 8-bit instruction registers. My blistering 4MHz Z80 came complete with several 16bit registers (with an alternative set), lots of fancy addressing modes, and my favourite the LDIR instruction. How could I ever do without that wonderful memory copying instruction?

      The 6502, for comparison, felt like some sort of masochist's apparatus!

    26. Re:MIPS is going away? by plopez · · Score: 1

      In my hardware course we also wired the damn thing together, then programmed it. We tested against a simulator we wrote in Pascal (we worked in pairs).

      Those were the days. It hurt a bit but you got an end-to-end view of these things and learned virtual machines to boot!

      That was also the summer (yes I took it in the summer) I learned to watch baseball. Not much happens in base for long periods of time, so I would wrap wires. I would hear the bat, watch the replay, then go back to wrapping wires.

      Damn I'm old.

      --
      putting the 'B' in LGBTQ+
    27. Re:MIPS is going away? by ncc74656 · · Score: 1
      My assembly class use 8086 (with Microsoft's assember... I prefer nasm).

      Sounds like the class I took, except they also threw in three or four weeks of VAX assembly at the end. That way, we had some 32-bit experience as well.

      --
      20 January 2017: the End of an Error.
    28. Re:MIPS is going away? by multipartmixed · · Score: 1

      You may think I'm joking, but I'm not. For 2nd year architecture, we ran a PDP-11-ish simulator on MIPS boxen. It must have been locally developed, however, as I cannot find it online anywhere. As a simulator for this stuff, I found it particularly retarded, as it included "extra" instructions for I/O. What a crock of shit!

      We used real MIPS assembler in fourth-year compiler construction, however.

      --

      Do daemons dream of electric sleep()?
    29. Re:MIPS is going away? by jd · · Score: 1

      I believe the 6502 series is up to 65I02, and is still going strong. If I'm correct on this, it's one of the longest-lived series of microprocessor, as virtually everything else from back then has been abandoned.

      --
      It's a small world and it smells funny; I'd buy another if it wasn't for the money; Take back what I paid (SoM)
    30. Re:MIPS is going away? by TeknoHog · · Score: 2, Interesting

      More importantly, what units shall we use to measure CPU performance when MIPS goes away?

      --
      Escher was the first MC and Giger invented the HR department.
    31. Re:MIPS is going away? by jd · · Score: 1

      MIPS is a consortium, as I understand it, that produces a specification for the sole purpose of having Broadcom ignore it. (I'm serious - the Broadcom SB1 core is a mishmash of a wide range of MIPS specifications, uses a HyperTransport bus that takes bits from three different versions, and has an ethernet controller that almost works at the rated speed.)

      --
      It's a small world and it smells funny; I'd buy another if it wasn't for the money; Take back what I paid (SoM)
    32. Re:MIPS is going away? by okvol · · Score: 1

      How about gigacycles per microfortnight?

      --
      cabg x3 is a life changing event...
    33. Re:MIPS is going away? by Anonymous Coward · · Score: 0

      Well... LDIR was slower than making a loop.

      But, I liked Intel 8085 and Zilog Z80 much. But Motorolas 6809 was the gratest 8-bit from the past. Some addressing modes was more advanced than 68000 which came later. Hade support for high level languages with two stacks. Two index-registers (that could be used as stack to) and two 8-bit accumulators that also was a 16-bit accumulator.
      That CPU, one simple memmory manager with 512Kbyte memory and OS9.
      *remembering*
      Ah, what a machine!

    34. Re:MIPS is going away? by Dr+Caleb · · Score: 1

      " I seem to remember numerous pseudo-instructions from my 68HC11 days as well."

      "Branch Never" - BRN was my favourite. It was common to all the 68XX line.

      The logic was astounding! Load an address into a register then never, ever go there. The exact opposite of BRA "Branch Always".

      Nowadays, a PIC microcontroller is the way to go. 16 pin DIP, 4 D/A's, a few K of EEPROM, 35 instructions total. Sweet!

      --
      "History doesn't repeat itself, but it does rhyme." Mark Twain
    35. Re:MIPS is going away? by F.O.Dobbs · · Score: 1

      Actually Tivo switched to PPC with the Series 2. Not sure what's in the new Series 3 yet.

    36. Re:MIPS is going away? by AKAImBatman · · Score: 1
      I believe the 6502 series is up to 65I02

      AFAIK, the only models of the 6502 are 6502, 6507 (fewer pins), 65C02 (fixes bugs), and 65816 (16 bit). These cores have been implemented by various processors, and are still often used in modern microcontrollers. You're probably thinking of either the 65C816, or a specific manufacturer's model number.
    37. Re:MIPS is going away? by weierstrass · · Score: 1

      ..for at least another 30 years

      --
      my password really is 'stinkypants'
    38. Re:MIPS is going away? by timeOday · · Score: 1
      Systems with a clean instruction set are apparently unpopular in the real world.
      I would put it the other way... when a lot of different people and applications pile on to a technology, it necessarily becomes more complex and loses some of its initial design clarity. This almost always happens to software programs in the end.
    39. Re:MIPS is going away? by FoolishBluntman · · Score: 0, Troll

      Not True. x86 was a crappy intruction set before IBM or Microsoft got there.

    40. Re:MIPS is going away? by shplorb · · Score: 1

      Don't forget the PlayStation and PlayStation2! I think my ADSL2+ all-in-one routerthingy has a MIPS processor too.

      But yeah, MIPS will be around forever in embedded systems, just like ARM and PPC.

    41. Re:MIPS is going away? by ajlitt · · Score: 1

      TiVo Series 2 is MIPS based. Series 1 is PPC based. Series 3 has yet to be determined.

    42. Re:MIPS is going away? by Anonymous Coward · · Score: 0

      MIPS is a standalone company, spun off by SGI. It licenses its IP to various companies, with Broadcom being one of them.

    43. Re:MIPS is going away? by WilliamSChips · · Score: 1

      The TI-89 uses a 68000.

      --
      Please, for the good of Humanity, vote Obama.
    44. Re:MIPS is going away? by mnmn · · Score: 1

      Who the HECK puts cpus in a toaster?!?
      I've heard of toasters every time 'embedded' is mentioned, but it defies logic. My toaster just mechanically pops toast after it has been toasted. Hardly a reason to use up a 32-bit chip running on 40,000 transistors and a quartz crystal.

      --
      "Give orange me give eat orange me eat orange give me eat orange give me you." -Nim Chimpsky
    45. Re:MIPS is going away? by jd · · Score: 1

      I'm sure it was a National Semiconductor chip and I'm certain it was a 6502 (8-bit) processor, but as I can't find the reference to it, then either there was a short-lived I-generation that was so short-lived that very few people heard of it, OR I am not remembering correctly (never! :). I do know for a fact that NS made a 3GHz 6502 that was not one of the three you list above, and that this ultra-high-speed model is not listed on NS' website either. (Companies should have pages for discontinued products - it's not as if the pages would take much space.)

      --
      It's a small world and it smells funny; I'd buy another if it wasn't for the money; Take back what I paid (SoM)
    46. Re:MIPS is going away? by networkBoy · · Score: 1

      "Hardly a reason to use up a 32-bit chip running on 40,000 transistors and a quartz crystal."

      FYI, quartz is expensive. usually they use a LC or RC oscillator or a resonator as those are far cheaper.
      Also, my toaster is 16bit (I think) with an 8 bit I/O path. Don't think that 32bit is really required.
      All those settings to operate.

      I didn't know all this till it broke and I figured "how hard can it be, it's a toaster"... teach me eh?
      -nB

      --
      whois gawk date unzip strip find touch finger mount join nice man top fsck grep eject more yes exit umount sleep dump
    47. Re:MIPS is going away? by Anonymous Coward · · Score: 0

      MIPS. Just because a system is no longer available in a server is no reason to stop using it for teaching purposes. If it helps the course, it'll keep being used.

      Where, for example, are the systems running MIX? Or MMIX?

    48. Re:MIPS is going away? by Bing+Tsher+E · · Score: 1

      The 6502 was only popular because it was a very, very cheap processor so the lower end hobbyist computers all adopted it. If you really liked that kind of architecture you could get a Motorola 6800 (or, more likely, a 6802.) Which wasn't a dead end architecture, instead evolving to the 6809, the 'HC11 (which still rules for lots of embedded chores) and onward to the 68000.

    49. Re:MIPS is going away? by Bing+Tsher+E · · Score: 1

      It's only recently that sales of 4-bit embedded controllers have been surpassed by sales of 8-bitters.

      On the relative quantities of big vs. small processors, many people forget there are 'automatic multipler effects' that mean there will NEVER be more of the 'big' processors in the install base. Any desktop machine has 'little' processors in the keyboard and the mouse, on the hard drives' logic board, etc. There are thus multiple small processors deployed for each 'big' processor, per desktop.

    50. Re:MIPS is going away? by timeOday · · Score: 1
      Not True. x86 was a crappy intruction set before IBM or Microsoft got there.
      If it was crappy before, it has gotten much more crappy since. Even memory protection, which seems pretty fundamental, is a bolt-on. Plus floating point, SIMD (i.e. MMX), 64-bit support, and now virtualization.

      Of course all of this is assuming the particulars of the instruction set really matter anyways.

    51. Re:MIPS is going away? by LWATCDR · · Score: 1

      Probably in some toaster ovens. If it has a digital timer odds are it has a mpu.

      --
      See my blog http://ilovecookes.blogspot.com/ for light hearted technical information.
    52. Re:MIPS is going away? by ozmanjusri · · Score: 1
      what narrowly-deployed architecture for which everyone runs a CPU simulator

      Actually, the MIPS chip could end up being the most widely deployed CPU on the planet. It's the basis of China's Godson series of chips. http://www.theinquirer.net/default.aspx?article=24 882

      --
      "I've got more toys than Teruhisa Kitahara."
    53. Re:MIPS is going away? by masonbrown · · Score: 1

      I may be wrong, but isn't MIPS its own company now, and this announcement is just that SGI will stop using MIPS chips in any systems they make?

      I think MIPS has a huge market in embedded devices and network gear like routers.

    54. Re:MIPS is going away? by vincecate · · Score: 2, Interesting

      That MIPS is not dead is both true, and a good point. However, the Zilog Z80 is not dead either. But we don't get very excited about it any more. When we got our first one, it was way cool, but today most people would not even think about the fact that Zilog still sells Z80s.

    55. Re:MIPS is going away? by jnf · · Score: 1

      there are logical set instructions and branch on various register value instructions, I'm sorry your mind is so simple.

    56. Re:MIPS is going away? by SQL+Error · · Score: 1

      "Today's machines now come standard with up to 4 megabytes of Random Access Memory, and this continues to increase every year!"

      My new PC comes with 4 megabytes of Random Access Memory.

      And 4GB of volatile streaming storage.

    57. Re:MIPS is going away? by Anonymous Coward · · Score: 0

      In the embedded world, only the dinosaurs still use assembler. Welcome to C.

    58. Re:MIPS is going away? by Anthony · · Score: 1

      Not just workstations but the Origin Super Computers as well. Now CXFS as a server is supported on the Altix (Itanum 2/Linux) there is no real need to sell them to the general customers.

      --
      Slashdot: Where nerds gather to pool their ignorance
    59. Re:MIPS is going away? by Duhavid · · Score: 2, Interesting

      I dont know... It was pretty crappy.

      1 register you can use that isnt used by something
      else ( ax ) ( bx was used for something, cx
      was used in some "counting" instructions,
      dx would have the most significant 16 bits
      of a multiplication ( ax would have the lower,
      now that I think of it.... dx:ax would be
      the full 32 bit result ). So, ax that, 0 registers
      you can use that arent used by something else.

      Addressing ( "long" ). 20 bit addressing bus,
      16 bit system. So, you load a register with
      a 16 bit value, and wink wink, it gets shifted 4 places
      left. 20 bits it is now. Then, load another
      register with another 16 bit value, which is added
      to the other you just did, viola, a 20 bit address.
      Dont ask me how the two registers you just loaded
      related to each other, I am trying to repress that.

      --
      emt 377 emt 4
    60. Re:MIPS is going away? by Anonymous Coward · · Score: 0

      Seriously, all this "elegant" assembler stuff is nuts.

      I first learned Zilog's Z80 assembler, and then x86, and it wasn't so dificult.

    61. Re:MIPS is going away? by AndyboyH · · Score: 2, Funny

      Who the HECK puts cpus in a toaster?!?

      How do you think the toast gets cooked overwise? It ain't going to brown itself...

      --
      Baka Drew
    62. Re:MIPS is going away? by LWATCDR · · Score: 1

      And Motorola/Freescale still sells members of the 6800 and 68000 line and many companies still sell the Intel 8051 family.
      Old chips never die they just end up in Furbys.
      I don't know what you mean about not getting excited about embedded chips. I find the embedded market much more exciting as far as CPUs goes than the PC market. The X86 just shows how fast you can make a big fly with enough money. The ARM, Propeller, AVR, Cell, and PPC embedded chips are a lot more interesting than the core/clock war in the X86 world. And I would would love to get my hands on a Power5 or Ultra Sparc or Sparc T1.

      --
      See my blog http://ilovecookes.blogspot.com/ for light hearted technical information.
    63. Re:MIPS is going away? by networkBoy · · Score: 1

      excellent point about the multiplier effect.

      AFAIK, however, the 8 bit install base is bigger than everything else and has been for quite some time. I'm really curious where 4 bit was more widely used than 8 anywhere in recent history (since say about 1995)

      --
      whois gawk date unzip strip find touch finger mount join nice man top fsck grep eject more yes exit umount sleep dump
    64. Re:MIPS is going away? by Anonymous Coward · · Score: 0

      Thanks for reminding me! I picked up one of those Flashback 2 consoles at Goodwill, dumped it in my garage without trying it, then forgot all about it. (I really need to clean my garage.)

    65. Re:MIPS is going away? by Digital+Pizza · · Score: 1

      Without a delay in that loop, only your dog will hear that! (Sadly, I didn't even have to look anything up to know what you were doing)

      --
      We apologize for the inconvenience.
    66. Re:MIPS is going away? by OrangeTide · · Score: 1

      That would matter if MIPS were an 8051, Z80 or Pentium.

      ARM's instruction set is nice (very practical).

      --
      “Common sense is not so common.” — Voltaire
    67. Re:MIPS is going away? by OrangeTide · · Score: 1

      Well if you want orthogonal you could have ended up with the VAX instruction set. It's rather complicated to make chips that talk VAX, I'd say it's more complex than x86.

      68K was orthogonal for most things, and it's well designed. I'm sure if Intel were behind it instead of Motorola we'd all be running 68K "Pentiums" or something now. Motorola is was never very good at promoting their product lines, at least not as good as Intel.

      --
      “Common sense is not so common.” — Voltaire
    68. Re:MIPS is going away? by damiangerous · · Score: 1
      I do know for a fact that NS made a 3GHz 6502 that was not one of the three you list above, and that this ultra-high-speed model is not listed on NS' website either.

      Are you sure you know this for a fact?

      Also, the only reference I can find anywhere to a 65I02 was another one of your own Slashdot posts from June.

    69. Re:MIPS is going away? by Duhavid · · Score: 1

      I dont know the VAX instruction set, but I learned on a PDP 11,
      and that was very nice. I would imagine the VAX instruction set
      would be similiar. The Sparc assembly was not too bad. Never
      did 68k, but I have heard good things about that....

      --
      emt 377 emt 4
    70. Re:MIPS is going away? by tomstdenis · · Score: 1

      Yeah which means bloat?

      Can you do a 32x32 multiply-add => 96-bit accumulator in less than four opcodes? [16 bytes with ARM]. Even the x86 can do that in 5 opcodes [load, mul, add, adc, adc] and takes about the same space. Sure you can accomplish the operation, just is it efficient or not?

      In many cases where MIPS are being used the hard work is offloaded. Which isn't a bad thing. It just doesn't speak volumes about the core as a highly efficient design [in general].

      Tom

      --
      Someday, I'll have a real sig.
    71. Re:MIPS is going away? by rbanffy · · Score: 1

      It makes a weird sound due, probably, to fluctuations in the clock.

      But I agree, in order to have an audible frequency square wave, you will need to build a delay loop. There

      You will need a real II to try this out. It worked in my Apple II, Unitron (II+ clone), Spectrum ED (//e clone) and CCE Exato, but not quite in my CCE Exato Pro (//e enhanced clone).

      Someday I will resurrect them all.

  2. Meanwhile, on eBay by Intron · · Score: 2, Insightful

    204 items found for SGI.

    Good times for collectors.

    --
    Intron: the portion of DNA which expresses nothing useful.
  3. Irix was cracker paradise by phayes · · Score: 4, Insightful

    Irix itself wan't that much worse than any other *nix of the same time period, but none of the varied tools, 3D bells & whistles that SGI bolted on were designed with security in mind. The only way to avoid getting hacked into was to remove it all before connecting it to the net, but once you removed it there was little point in buying one.

    --
    Democracy is a sheep and two wolves deciding what to have for lunch. Freedom is a well armed sheep contesting the issue
    1. Re:Irix was cracker paradise by spitzak · · Score: 1

      It sure was. And long before Microsoft "innovated" it, too!

    2. Re:Irix was cracker paradise by Bing+Tsher+E · · Score: 1

      You just described why it was foolish to use an SGI workstation as a server.

      Well, anyway, you just described it in the same way, essentially, that it's plain stupid to put a $500 graphics card in any modern computer used primarily as a server.

      Obviously, there is no sensible reason at all to buy $500 graphics cards, as you explain it.

    3. Re:Irix was cracker paradise by Rich0 · · Score: 1

      Note to the wise - when your OS includes multi-MB suid executables you're going to be in for trouble... I'm sure the same applies to a few linux distros, but I for one am happy when kde asks me for my root password when it needs to do something dangerous...

    4. Re:Irix was cracker paradise by Anonymous Coward · · Score: 0

      Isn't this what cdrecord by Joerg Schilling required? Well, those days are over too. Welcome to the New Age!

    5. Re:Irix was cracker paradise by Rich0 · · Score: 1

      Actually, it works without being suid, but cannot set realtime priority or stuff like that.

      In theory setting cdrecord suid isn't a huge liability. If designed right it should raise its priority, and immediate drop root privs. If it does this before processing input it would be ressitant to most attacks. The same applies to a lot of other software which drops root privs like a hot potato - the window of vulnerability is small and a careful audit of the code that runs as root is not difficult.

      The IRIX utils were a different beast - they needed to perform privileged operations after receiving user input. So, an audit would have to cover the entirety of a windowed software package, with a ton of library calls.

  4. support ends in Dec 2013 by mister_jpeg · · Score: 1

    so hopefully those of us using Irix will see maintenance releases until then.

    --
    -jpeg
    1. Re:support ends in Dec 2013 by git68 · · Score: 1
      Irix development has slowed to a crawl anyway, 6.5.30 was supposed to be released end of July and as far as I am aware still hasn't, so I wouldn't count on too many maintenance releases. My companies main server suite's support for Irix apparently ends in 2008, luckily about the time the lease expires on our Origin 350's, my guess is it will save us a fortune moving to whatever box and linux.

      However will miss Irix as it was my introduction to *nix.

      --
      sigpending(2)
    2. Re:support ends in Dec 2013 by onyx+pi · · Score: 1

      6.5.30 is the end of the road. Apparently the IRIX team went about 22 upgrade releases farther than originally planned.

      I will miss IRIX as well. Sorry Linux, never liked you

    3. Re:support ends in Dec 2013 by Sepper · · Score: 1

      I think you will find systems running IRIX/MIPS for years to come... We are still running stuff on HP-UX/HPPA here(and it's not like we don't want to move it elsewhere... we just can't...)

      --
      I live in Soviet Canuckistan you insensitive clod!
  5. Oh Gosh by sarathmenon · · Score: 2, Funny

    Now I have to dump my IRIX, right after I dumped SCO UX. This just isn't fair!

    --
    Microsoft: "You've got questions. We've got dancing paperclips."
  6. Too bad - MIPS was pretty by Just+Some+Guy · · Score: 4, Interesting
    My computer architecture class textbook was based on MIPS, and after messing around with 68k and x86 assembler for years, its assembler was like a breath of fresh air. It had a truly elegant design, or so I thought, and it's a shame to see it die.

    Alpha, MIPS, and others - where are you now? x86-2^x is pretty much all that's left for general-purpose programming these days (although Sun might have something to say about that), and that's too bad. Kind of like how you can't be a great programmer without ever having seen Lisp, you can't be a great chip designer without ever having known something that doesn't run IA32 code.

    --
    Dewey, what part of this looks like authorities should be involved?
    1. Re:Too bad - MIPS was pretty by Anonymous Coward · · Score: 0
      My computer architecture class textbook was based on MIPS...

      Ahh... Good ol' Hennessey & Patterson. I remember writing a MIPS emulator in C for that class.

    2. Re:Too bad - MIPS was pretty by BrentRJones · · Score: 2, Insightful

      Consolidation of operating systems is not good for computer science. Variety increases knowledge just as travel expands the mind. Everything is heading for the day when there is one primary OS on one primary HW platform. Let's hope that creativity spawns many new creations.

      --
      Help end the use of Sigs. Tomorrow
    3. Re:Too bad - MIPS was pretty by Zontar_Thing_From_Ve · · Score: 1

      Kind of like how you can't be a great programmer without ever having seen Lisp

      Is your name Richard Stallman? :-)

      Seriously, none of the programmers I worked with who I thought really knew their stuff ever worked with Lisp, although I suppose many of them may have seen Lisp, so technically you may be right, even though I suspect your definition of seen is not literal.

    4. Re:Too bad - MIPS was pretty by RAMMS+EIN · · Score: 1

      I wouldn't go as far as saying that you can't be a great programmer without knowing Lisp, but it's definitely true that everybody I know who knows Lisp says it's been an eye opener, and I would say they are all better programmers than the ones who haven't worked with Lisp.

      --
      Please correct me if I got my facts wrong.
    5. Re:Too bad - MIPS was pretty by mnmn · · Score: 3, Insightful

      MIPS was great and still has life left in it. However ARM has been bulldozing its way through recently in the higher embedded markets where MIPS was strong. Even AMD sold Alchemy eventually.

      The embedded market was getting crowded, which is a good thing. The survival of the fittest gave us ARM instead of us being stuck with assembly codes like the PIC and x86.

      --
      "Give orange me give eat orange me eat orange give me eat orange give me you." -Nim Chimpsky
    6. Re:Too bad - MIPS was pretty by be-fan · · Score: 3, Insightful

      It's quite true in a sense, though of course it depends on your definition of "great". If "great" is just someone who is very good at his/her job, then yes, you can be a "great" programmer without ever using Lisp. However, if you define "great" to mean somebody who really has a higher-level perspective about programming as a whole, then I'd have to say that you can't be "great" without experiencing Lisp or something like it.

      Put simply, different languages represent different areas in the design space of programming languages. C represents one area, C++/Java/C# another set of closely-grouped areas, Ruby another, Python another, etc. Lisp represents a very large, and to many people used to C++/Java/etc, very novel portion of the design space, as does ML and its kin. A truely great programmer, then, must not only be proficient in the usage of a specific tool that represents a specific point in the design space, but must have a perspective of the whole design space. He must be able to look at specific solutions, and realize when they are just instances of a higher-order, more generalized principle. The only way to gain that perspective is to explore the design space, and mastering Lisp is a way to explore a very large and unique part of that space.

      There's a saying that "to a man with a hammer, everything looks like a nail". This refers to a general notion that our tools limit the ways in which we think about solving problems. Let me give you a concrete example. Lisp has a feature called multi-method dispatch, in which the target of a polymorphic call is decided by the types of more than one of the arguments. To someone who has only ever used a language with single-dispatch (ie: C++/Java/C#'s virtual methods), the very idea of using multiple-dispatch to solve a particular problem never even comes to mind. He makes due with what he has, using techniques like the "visitor pattern", and sits content thinking that this is the best he can do. Somebody who knows Lisp, on the other hand, might still have to use the visitor pattern (because his boss forces him to use Java), but he'll realize that its just a way to do double-dispatch in a single-dispatch language, and that increased understanding of the nature of the solution will help him write better code.

      --
      A deep unwavering belief is a sure sign you're missing something...
    7. Re: Too bad - MIPS was pretty by Dolda2000 · · Score: 1
      ...you can't be a great chip designer without ever having known something that doesn't run IA32 code.
      Like VAX? ;)
  7. SPARC? by Grendel+Drago · · Score: 2, Funny

    I learned on SPARC; I thought everybody else did too...

    --
    Laws do not persuade just because they threaten. --Seneca
    1. Re:SPARC? by EvanED · · Score: 2, Interesting

      Penn State uses MIPS, I think Cornell uses MIPS (at least the musical I read based off of their org course seemed to indicate so, at least from the hardware point of view), I'm pretty sure Wisconsin uses MIPS. Heck, the aforementioned CPU simulator (SPIM) came out of U. Wisconsin. And those are the only three places I have any inkling about.

      I do know that PSU *used* to teach SPARC in a standalone assembly course, but that was later combined with the org class and at that point changed to MIPS.

      (BTW, an addendum to my original post, I know that there are plenty of SGI machines around, so "narrowly-deployed" is probably too harsh. That said, the only time I've run any MIPS code we wrote in that class was on SPIM.)

    2. Re:SPARC? by Ana10g · · Score: 1

      Colorado State uses SPIM for MIPS as well for our assembly course... They'll probably keep teaching it though, since the concepts that are put forth don't really change, it's the underlying implementation (we're abstracting our teaching methodology!!!). That, and it's emulated. I don't think CSU's seen an IRIX box for some time now.

      --
      just an analog boy living in a digital age.
    3. Re:SPARC? by Neoprofin · · Score: 1

      I can confirm that as of year ago Wisconsin was still using MIPS and I haven't heard any word on a change since then.

    4. Re:SPARC? by bullsbarry · · Score: 1

      Old Dominion University uses mips. At least, they did 4 years ago...

    5. Re:SPARC? by E-Lad · · Score: 3, Interesting

      I think MIPS was the popular arch to learn asm on. Here at UMBC, MIPS is still what the assembly programming courses revolve around. In the mid 90s, SGI/IRIX was popular in (american, at least) universities. This course is pretty much one of the only reasons why we keep a few O200s around (including a 24-CPU Challenge XL... well, okay, it's now 16 CPUs, because we seem to be seeing one CPU board die each year). It's funny because back in the 90s, the Challenge XL was billed to faculty as a high-speed research computing server, which it was - at the time. Some of the old timers believe that's still is true today, probably because they just don't know better. 16x 200Mhz CPUs ain't all that, no matter what arch you're on.

      Hopfully we can convince the CS dept to move their course off of MIPS so we can push these aging servers off the end of the loading dock. SPARC or x86/64 would be the alternatives here.

    6. Re:SPARC? by Nimey · · Score: 1

      Meh, my glorified state college used ArrowAsm for MS-DOS. The tentacles...

      --
      Hail Eris, full of mischief...

      E pluribus sanguinem
    7. Re:SPARC? by Nuskrad · · Score: 1

      Just to add to the list, Lancaster University in the UK also teaches MIPS assembler (in the SPIM emulator)

    8. Re:SPARC? by LWATCDR · · Score: 3, Insightful

      X86!
      using the X86 to teach assembly language is like using Perl to teach object oriented programing.

      No need to move off MIPS, just use an emulator.

      --
      See my blog http://ilovecookes.blogspot.com/ for light hearted technical information.
    9. Re:SPARC? by jd · · Score: 2, Funny

      You can't confirm that! You're not Netcraft! :)

      --
      It's a small world and it smells funny; I'd buy another if it wasn't for the money; Take back what I paid (SoM)
    10. Re:SPARC? by drinkypoo · · Score: 2, Interesting

      Using x86 to teach assembler is great! It means that once you've struggled and fought with that piece of shit, everything else will be easy. By contrast, MIPS is too easy. After that, everything else will be harder :)

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    11. Re:SPARC? by mnmn · · Score: 2, Interesting

      x86 assembly is more useful than most other assembly. Once you learn it you can further learn x64, MMX etc and make fast drivers and codecs that you can (1) sell (2) get a job through.

      I learned x86 asm around 1994 mainly because there was nothing else for a 15 yr old with a PC, and because x86 even back then was pervasive enough.

      I was trying to build a boot code virus using instructions and code taken from a BBS server.

      I failed to infect my own computer.

      --
      "Give orange me give eat orange me eat orange give me eat orange give me you." -Nim Chimpsky
    12. Re:SPARC? by swillden · · Score: 2, Interesting

      By contrast, MIPS is too easy. After that, everything else will be harder :)

      My first assembly language was VAX. For those who are unfamiliar with it, the great thing about VAX assembler was that there was an instruction for everything. For example there was a machine instruction that performed a quicksort. The old joke was that you could write any program with a single instruction, if you could find it and figure out how to use it.

      --
      Note to ACs: I usually delete AC replies without reading them. If you want to talk to me, log in.
    13. Re:SPARC? by oudzeeman · · Score: 1

      My university CS dept taught assembly on x86, but lots of people took a required (for the B.S., not for the B.A.) course from the computer engineering dept that taught HC11 assembly first.

    14. Re:SPARC? by LWATCDR · · Score: 1

      "(1) sell (2) get a job through"
      The number of people that get a job using X86 assembly language is probably smaller than those that get a job writing assembly on an 8051.
      I never said that you shouldn't learn X86. I said you shouldn't use it for teaching assembly language.

      --
      See my blog http://ilovecookes.blogspot.com/ for light hearted technical information.
    15. Re:SPARC? by sk999 · · Score: 1

      "My first assembly language was VAX."

      That was my LAST assembly language architecture.

      "the great thing about VAX assembler was that there was an instruction for everything ..."

      Yep, however I discovered that complex instructions were implemented internally
      as as bunch of simpler instructions anyway, so reducing the instruction count in a
      program did NOT lead to faster execution times. Alas ...

    16. Re:SPARC? by Anonymous Coward · · Score: 0

      Now wait a minute. I graduated from UMBC in 2002 with a CS minor, and not only do I distinctly recall using 16-bit x86 assembly for CMSC211 (the assembly language course which I believe is now shoehorned into some assembly/comp.org. hybrid... 313 is the number?) but I still have the sources from all of my projects. Or does this have something to do with the CMPE program?

      I think in light of things, MIPS assembly was a step backward.

    17. Re:SPARC? by hey! · · Score: 2, Interesting

      Jokes aside, the thing about VAX assembly programming is that the instruction set was probably one of the last ones designed where human readability was considered a critial factor. I swear that VAX assembler was almost as easy as coding in C.

      Programming after all is a matter of mastering idioms. Good programming is often largely a matter of choosing sensible conventions and sticking with them. The thing that kills you in the system is lack of orthagonality. Broadly speaking, what I mean by this is that it's important that when you write a program that looks like it ought to be syntactically valid, it should be. Furthermore, it should work more or less the way a sensible programmer unfamiliar with the language would guess it's supposed to work. I'd rather write programs in VAX assembler than Microsoft Transact-SQL dialect because of orthagonality. T-SQL is the most non-orthagonal language in widespread use; you're constantly having to look in the documentation to see if such and so will work in this context.

      --
      Post may contain irony: discontinue use if experiencing mood swings, nausea or elevated blood pressure.
    18. Re:SPARC? by Anonymous Coward · · Score: 0

      actually UMBC teaches both x86 and MIPs assembly(as a CS requirement that is). x86 for the lower level class, MIPs for the upper level. And while the Irix machines are always available, the MIPs based class I took used an emulator (class also included VHDL using simili or cadence simulator/design tools neither running within Irix). Maybe other sections rely on the Irix machines, dunno.

    19. Re:SPARC? by LWATCDR · · Score: 1

      "so reducing the instruction count in a
      program did NOT lead to faster execution times. Alas ..."
      I wounder if that is still true. With the difference between CPU clock speed and memory clock speed I have to wonder where the break even point is. While we have memory spaces we are still limited in cache memory and memory bandwidth. I wonder if CISC may be better than RISK with the current state of the art in CPUs.

      --
      See my blog http://ilovecookes.blogspot.com/ for light hearted technical information.
    20. Re:SPARC? by E-Lad · · Score: 1

      Ah, good news then. I guess things are progessing over there in the ITE building :)

    21. Re:SPARC? by tuxicle · · Score: 1

      ...and at my almost-good-for-nothing school in Bangalore, we had to learn not one but three different assemblers: x86, 8051 and PIC. I liked the PIC the best, but the x86 stuff was fun (for me) coz I got familiar with it by browsing through "learn how to program an uber-cool 4k intro" textfiles common on Fidonet etc :D w00t!

    22. Re:SPARC? by Duhavid · · Score: 1

      Dont take this too harshly, but you seem to be thinking of
      universities as trade schools. x86 would definitly be
      the most applyable and lucrative assembly language to learn.

      If you are trying to get to the underlying ideas and concepts,
      there is too much cruft in the way of learning concepts
      in x86 assembly. Having to remember to push EDX before
      multiplying, that ECX is used for such and so if you execute
      instruction "blah", and will be decremented until zero,
      etc, etc.

      --
      emt 377 emt 4
    23. Re:SPARC? by kjs3 · · Score: 1

      I did something similar...did x86 in CS, then did HC11 in a EE class (Dr. Peatman is a great professor, and writes a good book). Strange little chip, but not as strange as 8051.

  8. Argh by Anonymous Coward · · Score: 0

    This just IRIXs me to no end.

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

      its pronounced eye-ricks, not irks. newbie :p

  9. Re:Shame by MightyYar · · Score: 2, Insightful

    IRIX is System V-based, and thus probably encumbered with SCO nastiness... I wouldn't expect it to be open sourced. Perhaps the parts that were developed by SGI could be, though. They already released XFS under the GPL, for instance.

    --
    W..w..W - Willy Waterloo washes Warren Wiggins who is washing Waldo Woo.
  10. FOSS by Anonymous Coward · · Score: 5, Interesting

    I think they should release IRIX under the GPL and let the community maintain it!

    1. Re:FOSS by archen · · Score: 4, Insightful

      I'm not sure where the logic for something like this comes from. Like there is an infinite ammount of people who will work on every project ever abandoned. If IRIX was so wildly popular, I doubt SGI would stop working on it. I'm sure there's lots of useful code in there, but I'm also sure it's littered with stuff that has a patent on it as well. SGI is still a company that seeks to survive (I would assume), and isn't doing so well. They are in no position to work on figuring out licence issues to put IRIX under the GPL.

      Well this is the first of the old school Unix's to fall that I can think of. AIX and Solaris will probably be last. The ones maintained by Hewlet-Compaqard will be next in line after the death of SCO derivatives.

    2. Re:FOSS by Burdell · · Score: 4, Interesting

      The Alpha and Tru64 Unix are going away first. The last order date for a new AlphaServer is October 27, and (despite earlier Compaq and HP promises and guarantees) Tru64 and its related technologies die with the Alpha.

    3. Re:FOSS by eXtro · · Score: 1

      Not all of IRIX is actually owned by sgi. Bits of it are licensed, other bits are contested (by the SCO trolls). It'd be nice if it happened but it isn't terribly feasible.

    4. Re:FOSS by mnmn · · Score: 1

      Alpha was a lost cause, but much of Tru64 was incorporated into HPUX.

      Some good stuff from IRIX like XFS and OpenGL was shared, but IRIX may never be shared. As much as I want it to be opensourced, I dont think I'll spend more than a day on it. I'm still waiting for opensolaris' complete sources to go through, and solaris is far more usable, in our company at home and elsewhere than IRIX.

      Makes me wonder. Is there a group of people from the OSS community, possibly funded by IBM or whoever, to help with the legal stuff when companies want to opensource their assets but cant pay for it?

      --
      "Give orange me give eat orange me eat orange give me eat orange give me you." -Nim Chimpsky
    5. Re:FOSS by hackstraw · · Score: 2, Informative

      I think they should release IRIX under the GPL and let the community maintain it!

      I believe that is called Linux. SGI has already released bunches of IRIX to Linux including ccNUMA code and XFS and I'm sure other goodies as well.

    6. Re:FOSS by turgid · · Score: 2, Insightful

      It's just Another UNIX System Vr4 variant that runs on SGI MIPS hardware. You get all the same and more in Solaris (swap MIPS for SPARC) since it had much more R&D. You also get the same and more in Linux, but without the official Sys Vr4 codebase.

    7. Re:FOSS by Paul+Jakma · · Score: 2, Informative

      I'm still waiting for opensolaris' complete sources to go through

      See cvs.opensolaris.org. Every bit that Sun can release has been released.

      --
      I use Friend/Foe + mod-point modifiers as a karma/reputation system.
    8. Re:FOSS by fm6 · · Score: 1

      True. But there are still big chunks of IRIX that have never been open-sourced, and probably never will be. When I worked at SGI back in 1999 (when they were first getting into OS) there were a lot of requests from form SGI people who wanted their pet projects or tools made OS just so they could go back to developing them or using them. They all got the same answer: converting a project to open source is a significant effort, and SGI wasn't going to invest that effort just because somebody wanted the software. That would be especially true now, with SGI's odds of survival not being favorable.

    9. Re:FOSS by Burdell · · Score: 1

      None of Tru64 was ever incorporated into HP-UX. HP promised they were going to cary TruCluster and AdvFS forward into HP-UX (and possibly other Tru64 technologies), but then decided it was going to be too hard and threw it all away. October 27 is the end of the line for Tru64; support will continue for several years, but in limited fashion.

    10. Re:FOSS by QuantumFTL · · Score: 1

      It would be better if they could release it into the public domain. Then folks that want to liscense it and improve it under the GPL are welcome to do so, and their improvements will always be Free. People that want to use it commercially, or in BSD or whatever, they can do that too.

    11. Re:FOSS by Anthony · · Score: 1

      Don't forget DG/UX. Had some neat features like fine-grained locking and the Online File System where you could grow and shrink / and /usr without going to single user mode.

      --
      Slashdot: Where nerds gather to pool their ignorance
    12. Re:FOSS by MikeBabcock · · Score: 1

      Being popular won't make you money.

      Just because IRIX is or is not popular doesn't mean management isn't going to buy the much cheaper competitive solution instead.

      However, as others have said, much of what made IRIX IRIX is now in Linux.

      --
      - Michael T. Babcock (Yes, I blog)
    13. Re:FOSS by Anonymous Coward · · Score: 0

      I seriously doubt AIX will go away any time soon. AIX is still heavily entrenched in some businesses and scientific communities. As long as IBM still sells their Power5 architecture servers, they will continue to sell them with AIX or Linux.

  11. Sad by PrayingWolf · · Score: 1

    Its sad to see SGI in the state it is...
    It seems innovators, the "product guys", have a danger of being overrun by companies with more agressive marketing. The technology lovers, the hackers, don't always make it in a world run by economics.

    1. Re:Sad by RAMMS+EIN · · Score: 2, Insightful

      ``It seems innovators, the "product guys", have a danger of being overrun by companies with more agressive marketing. The technology lovers, the hackers, don't always make it in a world run by economics.''

      Nor do those who price themselves out of the market.

      --
      Please correct me if I got my facts wrong.
    2. Re:Sad by Anonymous Coward · · Score: 0

      >> ``It seems innovators, the "product guys", have a danger of being overrun by companies with more agressive marketing. The technology
      >> lovers, the hackers, don't always make it in a world run by economics.''

      > Nor do those who price themselves out of the market.

      exactly, if the hackers love technology enough they'll work for free so that their end-product can be cheaper.

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

      That's how you know pioneers - look for the guys lying around with arrows in their backs...

  12. ARM is patented by tepples · · Score: 3, Informative
    ARM?

    MIPS is popular because it's unpatented (except for a few less common instructions, which aren't taught in Computer Organization and Design anyway). A common term project in computer architecture courses is to design a reduced implementation of the MIPS architecture on an FPGA; some students go beyond this and end up with Plasma. The ARM architecture, on the other hand, is still patented.

    (arcem isn't maintained, from the looks of it, but it's a neat pure-hardware-level ARM platform simulator.)

    The most popular ARM platform simulator nowadays seems to be VisualBoyAdvance.

    1. Re:ARM is patented by dgatwood · · Score: 3, Informative

      The ARM architecture, on the other hand, is still patented.

      Those patents should all have expired by now, at least for the original architecture. Patents filed prior to June 8, 1994 have a term of 20 years from filing date or 17 years fro issue date, whichever is greater. ARM1 was in development testing in 1985 and shipped in 1986. Unless some of those patents too more than four years to be issued, they should be in the clear by now. Of course, you'll have to do a search to be completely certain, but....

      The thumb instruction set, on the other hand, does have currently active patents, I believe.

      A discussion of this issue can be found here.

      --

      Check out my sci-fi/humor trilogy at PatriotsBooks.

    2. Re:ARM is patented by jd · · Score: 1

      I think it's safe to say that anything written in arcem is a re-implementation, not a direct clone. I'm not sure if that makes it free of patent woes, but I've never heard of any associated with it. (Mind you, a University would want a little more assurance than that. Well, these days I would hope so. I know lecturers who wholesale pirated material so as to save themselves some effort. Got them into a little trouble, as I recall.)

      --
      It's a small world and it smells funny; I'd buy another if it wasn't for the money; Take back what I paid (SoM)
  13. Make patches available by pathological+liar · · Score: 2, Interesting

    What would be awesome is if they made *all* the patches available after the EOP/EOL period. As of right now there are a lot of them that are restricted to folks with support contracts. Ideally they would make the core OS available as well instead of just the overlays, but I'm not going to hold my breath on that.

    It'd be nice though.

    1. Re:Make patches available by iggymanz · · Score: 1

      just buy them for dirt on eBay like the rest of us museum-piece SGI owner/operators 8)

    2. Re:Make patches available by pathological+liar · · Score: 1

      That's not legal, unless you're buying a chunk of hardware along with it.

      Even then, I haven't seen 6.5 sets around, only 5.x and 6.2

    3. Re:Make patches available by iggymanz · · Score: 1

      legal, pfffft, even sgi sells that stuff on ebay at times. at the moment there's five full sets of 6.5.x on ebay, two of them are 6.5.29, one 6.5.26 and one 6.5.16 and one 6.5.3. Like they're going to hunt us down..

    4. Re:Make patches available by gjgjgj77 · · Score: 1

      Yes i agree with you wholeheartedly

    5. Re:Make patches available by Anonymous Coward · · Score: 0

      Actually you can download patches related to stability and security from sgi.com. If SGI dies, that may be a problem though. You only need a free account bet it even works with Bugmenot these days. The "freeware" repository has not been updated for ages though its probably full with leaks and holes. I've seen various sets of IRIX 6.5 around including recent versions. I don't want it though as I don't own SGI hardware anymore. Then again, you can even get recent IRIX versions from P2P e.g. eMule and DC++. I had legal copies of 6.5.12 or sth and upgraded to 6.5.22 from P2P. Illegal yes, boohoo, like its in your disadvantage a hobbyist uses your dead EOL OS.

  14. Pick an OS with staying power by rchf · · Score: 0

    I feel sorry for the person that picks an OS dependent on a corporation for its existence. When there is only one "Sun" to nourish your OS "ecology" it is much more likely to wither away - eventually. I picked an popular open source OS for this very reason. RedHat may die but it will take a unprecedented disaster to also kill off Ubuntu, Debian, Slackware (especially Slackware), SUSE Linux, etc.. My intellectual investment is safest with Linux.

    Choose wisely,
    Richard

    1. Re:Pick an OS with staying power by pathological+liar · · Score: 1

      In 1993 SGI had the Indigo2, a powerful graphics workstation for the time, and a very, very well designed operating system. The Linux Kernel v1.0 wasn't even released until 1994. IRIX did and does scale incredibly well. Linux still doesn't, really.

      It's a silly comparison to make, especially when SGI was dominant in its field. There would have been no question. If you'd said "Hey guys we should pick Linux over a company with 10 years of experience because in 15 years Linux will be half-decent!", you'd be cleaning out your desk.

    2. Re:Pick an OS with staying power by rchf · · Score: 1

      Time will tell which lasts longer. But I think the trend is clear.

      -Richard

    3. Re:Pick an OS with staying power by jgrahn · · Score: 4, Interesting
      I feel sorry for the person that picks an OS dependent on a corporation for its existence. When there is only one "Sun" to nourish your OS "ecology" it is much more likely to wither away - eventually. I picked an popular open source OS for this very reason. RedHat may die but it will take a unprecedented disaster to also kill off Ubuntu, Debian, Slackware (especially Slackware), SUSE Linux, etc.. My intellectual investment is safest with Linux.

      This is UNIX! You're supposed to be able to take your ecology with you to Linux, or Solaris, or OpenBSD, or wherever. With some pain, admittedly---but little more pain than if you're migrating from, say, RedHat to Debian.

    4. Re:Pick an OS with staying power by iggymanz · · Score: 3, Insightful

      oh, we should all be sorry for people who chose mvs or vm/cms in the last few decades? SunOS 1.0 was released in 1982, and today we have SunOS 5.10 aka Solaris 10. we'll have to see if there's Linux distros in 24 years before we can really pass judgements on longevity compared to Sun's stuff. BSD is still widely used too, and fifteen or more years older than GNU/Linux distros depending on how you look at things, so I'd say any BSD based stuff has even more safety than Linux (and Linux keeps borrowing good stuff from it and verse vice)

    5. Re:Pick an OS with staying power by rchf · · Score: 1

      You're really answering the fellow that was mourning IRIX. He seemed to feel the loss was more significant than merely a move between UNIX variants.

      -Richard

    6. Re:Pick an OS with staying power by rchf · · Score: 1

      1. BSD moved to open source. I think the open source energy has supported BSD well beyond Sun's involvement.

      2. I do feel sorry for the VM/CMS folks. Does that world interest you?

      3. EMACS is the dominant OS that outlasts them all. Emacs will be around until the sun collapses.

      -Richard

    7. Re:Pick an OS with staying power by Anonymous Coward · · Score: 2, Informative

      I am an anonymous coward.. err.. don't really feel the need to create an account. But, as an SGI employee I can attest to Linux scaling very well on SGI. How about 1024 Itanium2 processors as a single system. No, this is not some cluster machine. One copy of linux runnuing on 1024p with many terabytes of memory.

      Then there is a 4096 processor machine without manky infiniband interconnect or myrinet nonsense that you can run MPI programs against.

      And if you really want a big cluster machine, how about 10240 processors addressable via MPI over infiniband.

    8. Re:Pick an OS with staying power by iggymanz · · Score: 1

      Don't forget apple energy supporting bsd. If someone runs linux on an ibm mainframe, that's happening under z/vm, which is part of the vm/cms family. Also, plenty of money and databases still running there, so yeah it's of interest to an integrator/migrator like myself.

    9. Re:Pick an OS with staying power by thanasakis · · Score: 4, Insightful

      Um, at least Solaris makes great efforts to make sure that an application that runs on Solaris.X will be able to be transfered seemlessly to Solaris.X+1. Thats one of the reasons there's all this legacy staff lying aroung in various directories. If you look at Solaris man pages, there's usually a note about whether the interface is stable and whether it will remain in the next releases. Even the output of commands tends to be relatively stable across releases. And of course there are cases of drivers (for example network cards) that are compatible across Solaris.8,9,10 because they were written according to the guidelines. Even the migration to 64 bits (on SPARC) has been done a decade ago. So, if you invest on it, chances are that your software will probably be able to be transfered unchanged to the next version, when it is around.

      Linux is great, don't take me wrong, but in what way your intellectual investment is safe, when the entire landscape is in continuous flux? I mean, APIs are changing back and forth, kernel modules come and go across minor kernel releases, each distro has its favorite places where commands and files are placed. Not to mention the 32 to 64 bit migration which is in a terrible mess. This is not MHO, read July's Linux Journal editorial and laugh about it.

      The truth is, I don't think you are not interested in any kind of intellectual investment, you are just betting on a horse because someone told you that in the end there can be only one. Well, guess what, "they" 've been saying the same since 1985, and today there is still Windows,Linux,all the BSDs,Solaris,AIX,HPUX etc etc. They aren't going anywhere anytime soon, and, really, it is great to have such a diverse ecology.

      (Although I may have sounded harsh throughout the post, I want to stress that this is all just friendly advice -- kind regards)

    10. Re:Pick an OS with staying power by Anonymous Coward · · Score: 0

      But, as an SGI employee I can attest to Linux scaling very well on SGI. How about 1024 Itanium2 processors as a single system. No, this is not some cluster machine. One copy of linux runnuing on 1024p with many terabytes of memory.

      And that's all well and good, but it didn't scale well in 1993 is the PP's point.

    11. Re:Pick an OS with staying power by Anonymous Coward · · Score: 0

        3. EMACS is the dominant OS that outlasts them all. Emacs will be around until the sun collapses.


      Well, I think that Emacs will be the reason to sun collapses.
    12. Re:Pick an OS with staying power by Anonymous Coward · · Score: 0

      BSD has always been open source. Period. Long before Linux or the GPL existed, and BSD will exist long after linux has been marginalized by patent suits and personality wars.

    13. Re:Pick an OS with staying power by Anonymous Coward · · Score: 0

      I'm an new AC, but what you wrote is bullshat. The "PP" said:

                        "IRIX did and does scale incredibly well. Linux still doesn't, really."

      The reply which you so daftly misunderstood, showed the second quoted sentence to be incorrect.

      HTH.

    14. Re:Pick an OS with staying power by rchf · · Score: 1

      Thanks for the advice - yes I mean it.

      I started with SunOS so the shift to Solaris broke a lot of my code. The only codebase of mine that has been truly stable is in Common LISP and that is because I avoided a lot of the Symbolics specializations. But as a class I find that *NIX runs the gnu tools which still work whatever OS I'm on unless it is Windows (Cygwin is Ok but...sigh...the underlying Windows shortcomings still show through), or a commercial *NIX that is no longer supported (Thinking Machines code is now useless too...sigh...got some of that). My stuff coded to X works fine on Linux so the API is not that different.

      System administration across distros is a pain - you are right there. And if I use a library that is new or only available for a distro then I am sure to also see my intellectual investment look less than shiny.

      I'll look for that article, I'm sure it will be interesting.

      -Richard

    15. Re:Pick an OS with staying power by thanasakis · · Score: 1

      Here's the article online. It was on Linux Journal of May, my mistake, sorry!..

    16. Re:Pick an OS with staying power by MrMickS · · Score: 1
      There is much more pain moving from a *nix to any Linux distro. The reason for this? The fact that a lot of OSS developers consider code that they write to be portable if it works on my than one Linux distro. If you want to run it on Solaris, AIX, IRIX even, prepare for a lot of pain.

      It wasn't always the case, and there are exceptions, the more popular Linux gets though the less portable the OSS code. Yes, you have source and can edited it, but that's not the point. OSS software used to be more easily portable than it is now. We have a generation of coders that don't have experience of a wide range of architectures and as such include architecture specific things in the code without realising they are doing so.

      --
      You may think me a tired, old, cynic. I'd have to disagree about the tired bit.
  15. IRIX==Motorbike. by sbaker · · Score: 4, Insightful

    I always remember talking to some vendor at a usenix conference a few years after the birth of IRIX. We were talking about the relative benefits of SunOS (Solaris as it is now) versus IRIX. The guy said that using IRIX compared to SunOS was like riding a motorbike compared to driving a car. "It's fast, it's a rush, it's more fun than you can possibly imagine - but it's easy to fall off - and when you do it hurts a lot more!"...that pretty much says it all.

    I spent a large fraction of my most productive years sitting in front of a million dollar computer with IRIX in my face. It was pretty good - but with SGI's market share shrinking and Linux getting so mature, it makes sense for them to dump the hideous cost of maintaining an entire OS by themselves. For SGI, it's a good decision in desperate times.

    We split from using SGI to off-the-shelf PC/Linux about 5 years ago - about as soon as nVidia's graphics got good enough for our needs. A PC costs about 1% of an SGI with similar horsepower...QED.

    As for MIPS, the equation is the same one Apple had to face down. Performance = Horsepower per CPU / Price per CPU -- and whilst your own solution can win on horsepower, you can't beat the price of whatever is made in the largest quantities...and it's the same deal as with IRIX - when you have to cut costs, designing your own CPU isn't the smart way to go.

    Sad - but inevitable.

    --
    www.sjbaker.org
    1. Re:IRIX==Motorbike. by Anonymous Coward · · Score: 0

      Don't forget the other increasingly important metric these days - CPU Horsepower / CPU heat ouput, although how important this is does depend on whether the horsepower on a single core is sufficient. I am not sure how the MIPS currently stacks up against Intel and AMD at the demanding end. At the embedded end where less processing power is required then the MIPS and ARM are important.

      In some data centres large numbers of cores with relatively modest processing power are sufficient (think Sun's latest offerings) where the existing programs are legacy or not designed with multiple threads in mind. Having said this these days with wider and deeper support for virtualisation both in software and in hardware (e.g. IBM's work) then having a large numbers of low power cores can be simulated by using fractions of more powerful cores, with varying levels of success or bottlenecks depending on what you use, but less of a risk in that the virtualisation allows you to turn your server back into a few powerful cores if you need to do so in the future.

      With regard to IRIX itself perhaps its nicest feature was the ability to checkpoint a running program at the kernel level.

    2. Re:IRIX==Motorbike. by Anonymous Coward · · Score: 0

      A glaring mistake in your post reduces the impact. SunOS != Solaris. SunOS is a BSD derivative while Solaris is SysV and was a massive pain for all invovled when Sun discontinued SunOS. Several developers even left Sun in protest, I've heard. There's a reason it had the nickname Slowlaris when it first hit the streets and had to run on old hardware

  16. It's a UNIX system. I know this! by earbenT · · Score: 5, Funny

    Lex's skills are useless now. :(

    1. Re:It's a UNIX system. I know this! by BumpyCarrot · · Score: 1

      Jokes aside, I once did some package-wizardy to get FSV working on my Debian install. Wish there was a Windows equivalent, it was actually a ton of use for figuring out where all my disk space was going :)

      --
      Do you see what I did there?
    2. Re:It's a UNIX system. I know this! by mmkkbb · · Score: 1

      i have gotten fsv to compile on my mac just now, but have you considered sequoiaview?

      --
      -mkb
    3. Re:It's a UNIX system. I know this! by BumpyCarrot · · Score: 1

      I wasn't aware of it, but I'm checking it out right now! Thanks :)

      --
      Do you see what I did there?
    4. Re:It's a UNIX system. I know this! by Drathos · · Score: 1

      Those are Tim's skills. Some idiot decided it'd be more PC to have Lex steal them for the movie.

      --
      End of line..
    5. Re:It's a UNIX system. I know this! by monktus · · Score: 1

      Yeah, how's Tim going to get a girl if he doesn't have any skills?

      --
      Weaseling out of things is important to learn. It's what separates us from the animals... except the weasel."
  17. Huh. by Anonymous Coward · · Score: 0

    So exactly what is left of SGI's product line now?

    1. Re:Huh. by pathological+liar · · Score: 1

      They've had Linux workstations for a while now, and have had Windows workstations as well.

      I would imagine one or both will continue in production.

    2. Re:Huh. by Duhavid · · Score: 1

      Goto SGI's product line.

      Turn left.

      --
      emt 377 emt 4
    3. Re:Huh. by kl76 · · Score: 1

      Ignoring the MIPS systems, SGI's current hardware product line basically consists of IA64 Linux workstations (Prism), IA64 Linux servers/supercomputers (Altix) and EM64T Linux servers (Altix XE). No current Windows systems although they've tried several times in the past.

      Come to think of it I could swear I saw an EOL announcement for the Prism line earlier this year on www.sgi.com, but I can't find it any more....

  18. Motorola 68000? by Tumbleweed · · Score: 1

    Hardly. Everyone knows it's all ball bearings nowadays!

  19. Your Favorite OS? by slapyslapslap · · Score: 1

    Come on, it's one thing to admire it, but it's not like there's been much new happening in the Irix world for a while. I really admire Tru64, but I'm not about to call it my "favorite OS".

  20. No wonder by suv4x4 · · Score: 0, Flamebait

    I suspect this is how Apple's computer branch will end, but of course it's just my opinion, not a prediction (or trying to flame).

    In mid 199x, I remember buying a PC Magazine which had review of lots of cool things, among with was the latest SGI machine (I think it was SGI Octane 2, but not sure, maybe it was the first one). It had some cool 3D shots, granted, but Glide and OpenGL already had a firm ground and DirectX was just becoming popular as well.

    I was just a kid, but back then I honestly looked at the price and though "wow, that's kinda nice but why would I buy this overpriced proprietary machinery versus a simple PC?". Most 3D pro-s still wanted their Octane though, because of its status symbol and the cool factor (yea and maybe because it was somewhat better than the PC technoogy at the time).

    I think the same for Apple computers now. Especially with Vista on the horizon (yea you can tell me how stupid Aero is, and I would say: yea it is, but users won't see it this way), I truly wonder who would buy this overpriced proprietary machine versus a simple PC?

    1. Re:No wonder by cant_get_a_good_nick · · Score: 1

      Hmm, you seem to have missed a feew things in the news lately....

      I truly wonder who would buy this overpriced proprietary machine versus a simple PC?
      1) not overpriced, a MacPro can be had for cheaper than a Dell
      2) hadware has been more standardized. They've been pretty standard since they dropped NuBus. The OS is no more proprietary than Windows, hell you can even recompile the kernel.
      3) Macs are PCs

    2. Re:No wonder by Anonymous Coward · · Score: 0

      It had some cool 3D shots, granted, but Glide and OpenGL already had a firm ground

      OpenGL was originally an SGI creation...

    3. Re:No wonder by Anonymous Coward · · Score: 0

      Of course, your prediction depends on vista being actually delivered. You're a man of faith!!!

    4. Re:No wonder by oh_my_080980980 · · Score: 1


      See the thing is, your post is really a flame when it's born out of ignorance parading as fact.

      This statement is the proof: "..overpriced proprietary machine versus a simple PC?"

      1. What the hell are Dells, HPs, Compaqs, etc, if not overpriced proprietary machine? Put another way what is a simple pc?
      2. Have you compared prices?
      3. You failed to factor in the price of Vista and the cost of the required hardware necessary to run it.

      Vista will not run on a simple PC.

      The rumors of Apple's demise, that have been going since 1982, have been vasty over-rated.

    5. Re:No wonder by Anonymous Coward · · Score: 0

      3) Macs are PCs

      No, macs are x86, there's a difference

    6. Re:No wonder by School+Bully2 · · Score: 1

      I remember helping PC Magazine out with the review of the Octane (not Octane 2) when I worked at SGI in 1997!

      I took them through everything, and made sure that I took it apart, so they didn't feel like they needed to! (It was nicely built, but you had to be careful how you took it apart!).

      I like to think that we got a really favourable review because of this. Of course, it didn't help SGI much! ;-)

      Mark.

    7. Re:No wonder by Watts+Martin · · Score: 1

      The SGI-to-PC and Apple-to-PC comparison isn't very solid, though. While people endlessly nitpick over PC and Mac prices, when comparing brand name to brand name, they're generally comparable in a way that SGI's workstations simply never were: a midline Octane workstation would be three or four times as expensive as a high-end PC. SGI's off-the-shelf software selection was extremely limited, tailored just for their niche markets (yes, you could compile open source software, but that's not generally what one bought an SGI workstation to do); OS X's selection is limited compared to Windows, but a couple orders of magnitude greater than Irix's. Apple hardware is (relatively) unique, but there's a wide variety of third-party manufacturers making peripherals, most of which use industry-standard connections -- none of which SGI did.

      It's certainly possible that Apple computer hardware will die off in the long run -- but as cynics have noted, the death of the company has been predicted for well over a decade now. What killed SGI workstations, ultimately, was that they were in a specialized niche rather than a consumer market, and commodity hardware caught up with them. Apple may have positioned themselves as a "boutique" computer maker, but they're still very firmly in the consumer space.

    8. Re:No wonder by suv4x4 · · Score: 1

      1) not overpriced, a MacPro can be had for cheaper than a Dell

      Can a fullblown iMac be had (with monitor, keyboard, mouse and all) for cheaper than $500 which is what I bought my bro last month (A full 17' TFT with 80GB deal, Pentium 4 3GHz 512 RAM etc).

    9. Re:No wonder by evol262 · · Score: 1

      Don't compare apples to oranges (no pun intended). The HD size on the iMacs is at least twice as large as the Dell, they have Core 2 Duos, PCI express slots. non-integrated graphics, etc. The reason MacPros and Dells are compared is that they can be configured identically. You can't make a Dell an iMac no matter how hard you try.

      --
      "The more corrupt a society, the more numerous are its laws." -Tacticus
  21. Such a crowded graveyard, big deal. by museumpeace · · Score: 4, Informative

    Apollo, DEC, Amdahl, Prime, RCA, Remington Rand, GE, Univac, Perkin Elmer, MassComp, Concurrent Computer, Compaq, Sequent, Encore, Xerox, Scientific Data Systems, Wang, GO corporation...and so many more.

    The only lesson you could profit from in all this carnage is knowing when to sell your shares, when to find a good merger rather than waiting for the bankers to hold a fire sale of your patent portfolio.

    --
    SLASHDOT: news for people who can't concentrate on work or have no life at all and got tired of yelling back at the TV.
    1. Re:Such a crowded graveyard, big deal. by iggymanz · · Score: 1

      well, half those companies live on as merged parts of another, can still find their name inside some of the newer systems on components even!

    2. Re:Such a crowded graveyard, big deal. by Anonymous Coward · · Score: 0

      You forgot Control Data and Convex.

    3. Re:Such a crowded graveyard, big deal. by 1lus10n · · Score: 3, Interesting

      True, but we could still use technology driven companies like DEC, Sun and yes even SGI.

      When left to their own devices most of the large computer companies (IBM, HP, Dell, even Intel, AMD, Cisco etc etc) do very little revolutionary or insightful things. They usually tread water with minor "improvements" until someone comes along and kicks them in the pants (see: IBM vs Apple, IBM vs DEC, Intel vs AMD etc etc) with some better technology.

      If all we have left are the "big guys" where is the next revolution going to come from ?

      --
      "Two things are infinite: the universe and human stupidity; and I'm not sure about the the universe." --Albert Einstein
    4. Re:Such a crowded graveyard, big deal. by icebattle · · Score: 1

      Let's not forget Data General. Remember "The Soul of a New Machine"?

    5. Re:Such a crowded graveyard, big deal. by dgatwood · · Score: 1

      DEC (Intel), RCA (Thomson), GE (Thomson), Compaq (HP), Xerox (NYSE:XRX).... In fact, with the exception of DEC, all those I just listed still have their names on the outside of products....

      --

      Check out my sci-fi/humor trilogy at PatriotsBooks.

    6. Re:Such a crowded graveyard, big deal. by dgatwood · · Score: 1

      Just to clarify... not computer products.

      --

      Check out my sci-fi/humor trilogy at PatriotsBooks.

    7. Re:Such a crowded graveyard, big deal. by Anonymous Coward · · Score: 0

      Nice way to simply make things up to try to get insightful mod points. Well done. IBM (say) has never done anything revoloutionary, like (say) invent the _HARD_DISK_.

      Never mind the inventions in terms of chip fab from some of the companies you've mentioned.

      Or microprocessros.

      But as an armchair engineer, you're very well qualified to pass judgement on all these things and declare that they are merely treading water.

    8. Re:Such a crowded graveyard, big deal. by iggymanz · · Score: 1

      well, there's mighty cool stuff being R&D'd with optical, quantum, biological computing, to say nothing of different digital electronhics such as reversible and spin-bus, so I'd say there's still some chance some major disruptive technology to computing will come.

    9. Re:Such a crowded graveyard, big deal. by hackstraw · · Score: 1

      If all we have left are the "big guys" where is the next revolution going to come from ?

      I guess nothing will be new. Startups, and the sucessful ones will be bought out by the big fish, or they will become a big fish themselves.

      On your large computer company list IBM brought us the PC architecture, POWER, and Blue Gene. HP brought us HPUX (never used it), Itanium (with intel). Intel brought us ia32, ia64 (Itanium), and mobile processors. AMD the Opteron.

      I'm getting conservative in my old age, but I much prefer to get something from these big guys because odds are it will work, and work well for a long time.

    10. Re:Such a crowded graveyard, big deal. by Arricc · · Score: 1

      DEC was aquired by Compaq, not Intel.

    11. Re:Such a crowded graveyard, big deal. by dgatwood · · Score: 1

      Well, you're right, but so am I. DEC's networking chip and ARM divisions (what I like to refer to as the -good- parts of DEC) were bought by Intel. The Alpha portion (what I like to refer to as the "I'm not as think as you drunk I am" section) was bought by Compaq. Why Compaq thought that purchase made sense is beyond my imagination, but maybe it's just me. :-)

      --

      Check out my sci-fi/humor trilogy at PatriotsBooks.

    12. Re:Such a crowded graveyard, big deal. by fm6 · · Score: 1
      If all we have left are the "big guys" where is the next revolution going to come from ?

      Dude, SGI was not a little guy. Oh, they started out as one — as did Microsoft and IBM — but then they grew into a major player. They started out with simple graphic workstations, but at their peak they absorbed Cray, MIPS, and several other companies, and were making big expensive hardware for major customers. They were one of the big guys. They just weren't very good at that role.

      To answer your question: the next revolution will come from the same place all the previous ones came from: the latest crop of little guys.

    13. Re:Such a crowded graveyard, big deal. by 1lus10n · · Score: 1

      I work at IBM so I am VERY familiar with what we have brought to the table, and it has been quite a bit. However as any IBM employee who was around during those times could tell you most of those inventions were spurred by other companies.

      So intel gave us some great stuff, took over the market and stagnated it horribly for a few years. AMD (by no means a small company by this point) came out with opteron and athlon64. Then pow, we have woodcrest and merom. The Core architecture is the first time in almost a decade that Intel has done anything good regarding chip design.

      A lot of the things IBM has done in the past were spurred by other companies like DEC, microsoft and apple. Technology driven companies. They were not "small" but they were relatively small when held to the standard of an IBM. My point being when I look at the industry I dont see very many companies that have the market share/capital to do interesting things taking risks. There are companies like Sun (Solaris 10, niagra and so on) and maybe you could throw in some other random tech companies. However most of the players are going the x86 wintel generic box from X vendor with a service contract from Big company X. I fail to see how that will drive innovation.

      Maybe I'm just blind.

      --
      "Two things are infinite: the universe and human stupidity; and I'm not sure about the the universe." --Albert Einstein
    14. Re:Such a crowded graveyard, big deal. by jnf · · Score: 1

      What;s said is that some of those companies, (?most?) created incredible products that were ahead of it's time to some degree and it would be nice to see these companes as they disapear from the face of the earth release their works seeing as they will no longer profit from it.

      Or at least, it would be nice if things were that simple :(

      I'd love to get my hands on some of Wang's source code.

    15. Re:Such a crowded graveyard, big deal. by Anthony · · Score: 1

      And Data General

      --
      Slashdot: Where nerds gather to pool their ignorance
    16. Re:Such a crowded graveyard, big deal. by museumpeace · · Score: 1

      gawd! how could I forget DG? My second professional programming job was writing the "zero Car Availability" module [in assembler] for the Boston Police dept 911 dispatching system: on DG hardware, in 1976.

      --
      SLASHDOT: news for people who can't concentrate on work or have no life at all and got tired of yelling back at the TV.
  22. not a user, eh? by iggymanz · · Score: 1

    last release 6.5.30 was on august 16, 2006. See improvements and new features here

    1. Re:not a user, eh? by un1xl0ser · · Score: 0, Troll

      Wow. Looking at their ChangeLog, it seems pretty dead to me. Thanks for the evidence.

      I can't think of a worse experience for an OS install then Irix.

      Death to IRIX! Long live the new flesh.

      --
      v4sw6PU$hw6ln6pr4F$ck 4/6$ma3+6u7LNS$w2m4l7U$i2e4+7en6a2X h
    2. Re:not a user, eh? by multipartmixed · · Score: 1

      > I can't think of a worse experience for an OS install then Irix.'

      You clearly have not installed AIX 2.x ... or early versions of yggdrasil or slackware.

      Hmm, maybe should have added "in the 21st century" as a qualifier to your statement. ;)

      --

      Do daemons dream of electric sleep()?
    3. Re:not a user, eh? by iggymanz · · Score: 1

      no more or less boring than typical linux kernel changelog, minus the very limited hardware issues compared to what Linux has to worry about

      IRIX 6.x installs have less complexity than recent redhat or suse distro install if one follows the quick route, Any Unix is going to be a bitch if one goes off the quick install into a custom setup, but that's part of the fun and gives true sys admin a hardon.

  23. If you read all the way to the bottom by Anonymous Coward · · Score: 5, Informative
    For those of us who still work at SGI and continue to support this product line,
    also of importance at the bottom of the article is:


    SGI is also committed to offering our customer a full level of support needed to protect their investment in SGI products. End of support (EOS) for MIPS/IRIX products is currently scheduled for no sooner than December 2013. SGI Technology Solutions is continuously evaluating the demand for extended support and may consider longer extensions if necessary.
    1. Re:If you read all the way to the bottom by Anonymous Coward · · Score: 0

      All well and good if SGI is still around in 2013

    2. Re:If you read all the way to the bottom by Anonymous Coward · · Score: 0

      Get ready for some layoffs soon (less needed to maintain support than to produce new machines and update technology) and more later (as users migrate away and support is lessened and finally dropped).

      Of course people could be retrained or transferred, but no one does that anymore, it is simpler to hire new people for less pay, less benefits (or none), less expectations (new workers won't complain about worse working conditions, etc), and don't even need to be Americans (H1-Bs, even outsourcing).

      And of course layoffs if the company goes under.

    3. Re:If you read all the way to the bottom by Anonymous Coward · · Score: 0

      And anyone who thinks SGI will be around til 2013 to actually support it is smoking some really really good stuff.

      Unfortunately.

  24. IRIX was obviously going away. by Medievalist · · Score: 3, Informative

    SGI ported their graphics code to linux years ago, so that they could eliminate the cost of maintaining their own unix variant.

    Even chkconfig reasonably standard in mainstream linux distros. IRIX is not worth the effort.

    They can now concentrate on their core competency, which is presumably better graphics hardware than their competition.

    I guess Erwin will have to start shopping for spare parts on ebay...

    1. Re:IRIX was obviously going away. by Mr.+Hankey · · Score: 2, Interesting

      They do make clusters as well, which I suspect is where they're really going to dig in. I work in a HPC environment and there are some fairly large SGI systems (how's 10240 CPUs sound?) in the building next door that scale quite well.

      --
      GPL: Free as in will
    2. Re:IRIX was obviously going away. by captaineo · · Score: 1

      Today SGI's core competency is not graphics hardware (NVIDIA/ATI blow them out of the water), it's large single-system-image supercomputers. i.e., 512+-CPU NUMA monsters you can log into as a single machine, which are better for certain applications than a cluster of 512+ commodity Linux boxes.

    3. Re:IRIX was obviously going away. by Medievalist · · Score: 1
      I work in a HPC environment and there are some fairly large SGI systems (how's 10240 CPUs sound?)
      Sounds tasty! What OS are they running?
    4. Re:IRIX was obviously going away. by Mr.+Hankey · · Score: 1

      It's running Linux, linking several 512 CPU NUMA components via Infiniband.

      --
      GPL: Free as in will
    5. Re:IRIX was obviously going away. by Medievalist · · Score: 1
      It's running Linux, linking several 512 CPU NUMA components via Infiniband.
      Hmmm. Proving both our points; IRIX was a burden that SGI was able to shed with the help of the F/OSS community.

      Now I have CPU envy, Mr. Hankey.
  25. Remember the state of the art IO and NUMA? by Anonymous Coward · · Score: 0

    With a background on VAX/VMS and Alpha OSF/1, the thing that most impressed me about the Irix machines I used was the scalability of the NUMA systems, and the Guaranteed Rate IO stuff in Irix. I'm not sure how much of the latter is in the Linux version of XFS.

    I'm sorry to see this stuff go.

    Shaheed

    1. Re:Remember the state of the art IO and NUMA? by csoto · · Score: 1

      GRIO is exactly the thing that most impressed me. Yes, the NUMA stuff was excellent, but that was mostly brought along from Cray. GRIO, however, allowed all of that high-speed processing to account for something - assuring that writes to disk can actually keep up with the thousand plus CPUs, for example. Lots of media companies use MIPS/IRIX systems specifically because the applications take advantage of GRIO. You can't afford to lose packets when dealing with high-dollar customers and their precious HD content, for example.

      Doing anything equivalent to GRIO in Linux is downright impossible. The current way of thinking is to always assume that there is enough overcapcity in the hardware to manage. This isn't always a good assumption in demanding applications.

      --
      There exists no way of exchanging information without making judgments. --Bene Gesserit Axiom
  26. NASDAQ runs on MIPS (large HP computers) by Anonymous Coward · · Score: 0

    And no, this isn't old news - a 500 MIPS CPU upgrade in Mar 2005 with a 3-year service contract.

    > http://www.informationweek.com/story/showArticle.j html?articleID=159903673
    >
    > "Mar 21, 2005 04:00 PM
    >
    > More than 30 HP S88000 NonStop severs running HP OpenView enterprise-management
    > software and containing more than 500 MIPS R16000 processors were recently
    > installed at the Nasdaq data center, says Steve Randich,
    > executive VP and CIO for Nasdaq.
    > "

  27. IRIX and OpenServer are rather reliable. by Anonymous Coward · · Score: 0

    Why would you have to dump systems that are working?

    In my network, we have about a dozen SGI machines of various makes still running. Many of them perform more reliably than the newer Dell machine's we've unfortunately purchased. One of the best features of SGI machines is that they have extremely long lifespans. We still have one mail server running NetBSD on an Indy. I wouldn't be at all surprised if it were still running perfectly long after the Dells we got last week passed on. The same goes for our web servers running IRIX. They take some time to secure, but once they get going, well, they really don't stop.

    We also have two SCO OpenServer systems from the early 1990s. The legal shenanigans of New "SCO" aside, they have proven to be some of the most reliable x86 systems we have.

    We aren't going to retire what amounts to our best hardware, even if the vendors go crazy or otherwise stop supporting the products we're using. We think it'd be far riskier for us to go with new, untested solutions, especially when we have old ones that are rock-solid, and from the looks of things will contiue to work for many years to come.

  28. plus this one? by cyfer2000 · · Score: 1
    --
    There is a spark in every single flame bait point.
  29. Why aren't they selling x86 and Linux? by Eravnrekaree · · Score: 1

    I do not quite understand why they didnt move into the x86/Linux server market, including the low end market, and perhaps, even desktops. This seems to be where the most demand is.

    1. Re:Why aren't they selling x86 and Linux? by kimvette · · Score: 3, Insightful

      Uh, they did, and that is what killed them.

      --
      The Christian Right is Neither (Christian nor right). See: Matthew 23, Matthew 25, Ezekiel 16:48-50
    2. Re:Why aren't they selling x86 and Linux? by Animats · · Score: 2, Informative

      They tried that. Didn't help.

      SGI also tried making overpriced Windows desktops. That also flopped. Nice cases, though.

    3. Re:Why aren't they selling x86 and Linux? by Isaac-1 · · Score: 1

      Just look at the IRIX software licensing model, it was highly modular and keyed to the serial number of a specific machine. That kind of product lock in does not fit will with linux.

    4. Re:Why aren't they selling x86 and Linux? by Anonymous Coward · · Score: 0

      Uhhh thats arguable. Linux and nVidia certainly contributed to their demise, but so did Windows NT. Some argue it was their switch from IRIX/MIPS to x86/WNT (Visual WS) which killed them off. We may never know the truth...

  30. Re:Shame by nizo · · Score: 1

    I wish they could at least open source the ultimate hacking file browser, as made famous in Jurassic Park.

  31. Electrapaint by rbanffy · · Score: 1

    They could release Electrapaint as free software...

    The current equivalent I have isn't quite the same - It moves differently.

  32. MIPS died years ago. Long live, ARM! by Anonymous Coward · · Score: 1, Interesting
    The MIPS processor (as a desktop CPU) died more than a decade ago when the 80486 appeared. You knew that it was the beginning of the end of MIPS (and SPARC) when Intel implemented all the concepts (in the 80486) that are taught in computer-architecture courses at MIT. The reason for the delay in implementing these concepts is that Intel never had any real competition before MIPS and SPARC appeared.


    In fact, senior managers at Intel personally flew to Taiwan to "encourage" board makers to stay with Intel despite the significantly higher performance of MIPS. At the time, the MIPS R2000 was significantly faster than the Intel 80386. Intel management understood the problem and eventually whipped its slaves into producing the 80486.


    So long, MIPS. Good riddance.


    Hello, ARM! The ARM instruction set is open for anyone to implement. The patents that ARM holds apply only to the implementation but not to the instruction set itself. If you can figure out a way to implement the instructions in a way that differs from ARM's patented implementation, then you are free to do so.


    ARM is quite unique. Both MIPS and SPARC resulted indirectly from millions of dollars of government funding at Stanford University and UC-Berkeley. By contrast, ARM was developed on a shoestring budget: its aim was to develop a successor to the 6502. We (yeah, that means you) loved the 6502 for its simplicity. ARM inherited that simplicity.


    Further, the simplicity means incredibly low power consumption. If IBM had committed to ARM instead of building the PowerPC, ARM would eventually have shared the marketplace with the x86 in both the server market and the desktop market.


    As Intel management has discovered, low power is the key. The traditional thinking has been that servers should suffer any amount of power usage for a higher clock frequency. However, once clock frequency is so high (i.e., exceeding 1 gigahertz) that power usage exceeds 100 watts, the power causes two serious problems: (1) high electricity bills and (2) degradation of server reliability (due to damage caused by heat to the other components in the system)


    Of course, ARM has a built-in advantage due to its simplicity. Unfortunately, IBM engineers had a huge ego trip and demanded to build yet another RISC processor -- the PowerPC.


    However, there is still time for ARM to succeed in the market for desktops and servers. NEC could commit to building ARM computers and pay Microsoft to port Windows Vista to ARM. NEC has the engineering might to compete against both IBM and Intel. With ARM, NEC has a winner!

  33. No problem: COMPAT_IRIX in NetBSD/sgimips by hubertf · · Score: 3, Interesting

    You can run Irix binaries on NetBSD/sgimips. See http://www.onlamp.com/pub/a/bsd/2002/08/08/irix.ht ml for more information, and check out the NetBSD port's page at http://www.netbsd.org/Ports/sgimips/.

  34. What about Tivo? by CPE1704TKS · · Score: 1

    I thought that Tivo uses the MIPS chip, is this going to affect Tivo in any way?

    1. Re:What about Tivo? by demon · · Score: 2, Insightful

      The MIPS core that is used in the TiVo Series2 systems is a Broadcom design, licensed by Broadcom from MIPS Technologies. I see no reason that that would jeopardize Broadcom's licensing arrangement... though I could be wrong.

      --

      Sam: "That was needlessly cryptic."
      Max: "I'd be peeing my pants if I wore any!"
    2. Re:What about Tivo? by Anonymous Coward · · Score: 0

      MTI (Mips Technologies Inc) is an independent corporation, not part of SGI. "MIPS" has only been part of SGI for a short while. MIPS will just continue to live on see the other posts in the thread.

  35. PowerPC is superscalar. ARM isn't. by tepples · · Score: 2, Interesting
    If you can figure out a way to implement the instructions in a way that differs from ARM's patented implementation, then you are free to do so.

    If you can figure out a way to implement LZW or RSA or MP3 or any other patented codec in a way that differs from the patent owner's patented implementation, then you are free to do so. Unfortunately, no other way exists because the claims on those methods are rawther broad.

    Of course, ARM has a built-in advantage due to its simplicity. Unfortunately, IBM engineers had a huge ego trip and demanded to build yet another RISC processor -- the PowerPC.

    PowerPC was also built to scale to multiple functional units per thread, such that they can run a load, an integer arithmetic, a floating point arithmetic, and a branch at once. Are any ARM implementations superscalar? XScale sure isn't. Or are you talking about a massively multicore CPU, some sort of squared octopus with 64 ARMs?

    1. Re:PowerPC is superscalar. ARM isn't. by drinkypoo · · Score: 1
      If you can figure out a way to implement LZW or RSA or MP3 or any other patented codec in a way that differs from the patent owner's patented implementation, then you are free to do so. Unfortunately, no other way exists because the claims on those methods are rawther broad.

      Sandisk claims to have an alternate method of decoding an mp3, and claims that they have located an independent expert who will testify to that effect.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
    2. Re:PowerPC is superscalar. ARM isn't. by Frank+T.+Lofaro+Jr. · · Score: 1

      A judge also ordered that all their players get seized from a trade show.

      I.e. they lost.

      --
      Just because it CAN be done, doesn't mean it should!
    3. Re:PowerPC is superscalar. ARM isn't. by drinkypoo · · Score: 2, Informative
      A judge also ordered that all their players get seized from a trade show.

      Yes, based on a preliminary injunction, which is apparently quite easy to get in Germany. Their evidence has not actually been presented in court.

      i.e. you lose.

      --
      "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
  36. Re:PowerPC is superscalar. So is ARM by Anonymous Coward · · Score: 2, Informative
    Are any ARM implementations superscalar? XScale sure isn't.
    XScale is a very old ARM implementation. Cortex A8 is indeed superscalar. http://www.arm.com/products/CPUs/ARM_Cortex-A8.htm l
  37. Re:MIPS died years ago. Long live, ARM! by Anonymous Coward · · Score: 1, Funny

    With ARM, NEC has a winner!

    Combined with HED and LEG, it would be an even more powerful combination!

  38. Open Source IRIX or Sale It to someone by Anonymous Coward · · Score: 0

    They should open source IRIX or sale it to someone.

  39. Good bye, MIPS by chrysalis · · Score: 1

    This is a sad news.

    MIPS was a very well designed line of processors.

    Alpha processors are dead, MIPS processors are dead, PowerPC are now only for gaming consoles, ...

    Less and less choice, less and less competition, Intel domination :(

    --
    {{.sig}}
    1. Re:Good bye, MIPS by otomo_1001 · · Score: 1
      PowerPC are now only for gaming consoles

      Really? Tell that to IBM. They seem to be using it for more than consoles. They have servers, embedded systems and more.

    2. Re:Good bye, MIPS by brain1 · · Score: 1

      Good riddance. After having designed several embedded systems using MIPS processors with their boot vector in the middle of memory, the cached vs uncached memory linked to an address bit, the completely bizarre SYSAD bus interface instead of the normal /RD, /WR, Address and Data I'm personally glad to see it go. The only redeeming feature was it's RISC core.

      Just try to create large contiguous memory with half of it as uncached, the other cached, and the boot at BFC00000. Ugh.

      MIPS really smells like an academic exercise in RISC. Others like PowerPC are a dream to work with.

  40. Re: No the x86 is pretty (sarcasm) by Cassini2 · · Score: 1

    What do you have against x86?

    The x86 has way better instruction set than MIPS. Look at all those instructions, each with varying side-effects depending on status bits. The x86 instruction set has so many classic and vital instructions, like AAA (Ascii Adjust Accumulator).

    Thoroughly covering the x86 architecture covers so much of CPU history:
    - 8-bit processors (8080A / 8085),
    - 16-bit processors (8086),
    - better 16-bit processors (80286),
    - 32-bit implementations (80386),
    - 16-bit addressing (8080 / 8085),
    - segmented addressing (8088 - 80286),
    - flat 32-bit addressing (80386),
    - COBOL currency style instructions (AAA and DAA),
    - FORTRAN floating point (FMUL), and
    - C style instruction set optimizations (CMOV).
    Covering the x86 instruction set reveals aspects of almost every historical computer language and programming language in existence! It takes students years to learn the architecture.

    The MIPS architecture is comparatively clean, simple, and obvious. You can teach it in just one course, and cover so much less material. The x86 obviously has the superior instruction set. Besides, the x86 processors consume so much more power (watts and transistors) to do the same things as the MIPS architecture. Obviously, MIPS is just a bad design.

    [sarcasm = off]

  41. Really Sad Times We Live In by nurb432 · · Score: 1

    As we move to a single grey/bland architecture, and eventually OS, kicking and screaming.

    --
    ---- Booth was a patriot ----
  42. Re:Shame by Anonymous Coward · · Score: 1, Informative

    That would be FSN (http://www.sgi.com/fun/freeware/3d_navigator.html ) which has an open-source clone on SourceForge.
    FSV: http://fsv.sourceforge.net/

  43. Re:SGI by Bing+Tsher+E · · Score: 1

    I still have an 8086 box that runs Microsoft Xenix (from before SCO existed). Xenix was a Microsoft product before MS-DOS existed. Yes, Microsoft was the first vendor of a licenced UNIX running on the x86 platform. My Altos 586 will support five users simultaneously logged in on terminals connected to it's five serial ports. It has 512K of RAM.

  44. There is no "verse vice". by Anonymous Coward · · Score: 0

    BSDs can't borrow from linux because of the restrictive and encumbering license the linux kernel is under. Linux can borrow from BSDs because the BSDs are truly free.

  45. I wonder if.. by JustNiz · · Score: 1

    They'd consider opensourcing their IRIX stuff, so that anything not currently available under Linux could get ported.

    1. Re:I wonder if.. by Anonymous Coward · · Score: 0

      AC here, but I actually work for SGI, doing linux kernel work. The kernel is designed very differently than linux, so most of the interesting stuff can't be ported over. More modular stuff (XFS, F/XL, CoW sublinks, etc) can and has been ported.

  46. Re:Electrapaint... yes it's available by Anonymous Coward · · Score: 0

    You mean Electropaint... but anyway, good news for you, here's the source code, and it compiles on Windows:

    http://users.volja.net/wesley/igl.html

    "Panel Library and Electropaint sources are now a part of IGL distribution. David was really kind and allowed me to do this, so i hope everyone appreciates it as much as i do."

    You'll need to get a compiler - plenty of free ones available. Builds just fine.

  47. O2 = 2 slOw by ArmorFiend · · Score: 0, Troll

    > Hopefully my O2 will survive for many years to come.
    Yeah, maybe by then it will finish that integer add operation you submitted to it yesterday.

    1. Re:O2 = 2 slOw by ArmorFiend · · Score: 1

      Whoever marked this troll doubtless hasn't used an O2. I did, for two years. They were too slow the day they hit the market, way behind the PIIs they competed with, at 1/5th the cost. Their main selling point was that they ran Irix, which was a the time ahead of Windows NT by a mile.

  48. Don't forget Playstation 2 and PSP by Corngood · · Score: 1

    That's another hundred million or so mips based machines out there.

  49. Windows CE by tepples · · Score: 1
    NEC could commit to building ARM computers and pay Microsoft to port Windows Vista to ARM.

    That or make a distribution of Windows CE tuned for laptop or desktop use.

  50. Not graphics.... by Anonymous Coward · · Score: 0

    ....SGI does not do graphics anymore. SGI hasn't really done hardware graphics for 5+ years. And the last remnants of the software graphics team god laid off this year. It used to be that graphics for science (people willing to pay millions for a system) was hard. Now graphics for science is easy, and graphics for games is hard. Nobody is willing to pay big bucks for the improvements in graphics SGI could offer over nVidia/ATI.

    SGI does HPC - lots of CPUs in a single system image with a shitload of memory throughput. And they have a great flexible computing FPGA implimentation. And great storage. So if you've got a shitload of data, either to process or move around, you want SGI.

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

    Uhm well some parts of IRIX (OpenGL, FAM, CSA and _many_ others) are opensourced. SGI uses them on Linux/Itanium themselves. SGI licensed SysV code which they're (obviously) not allowed to open source. That has nothing to do with SCO. Ignore SCO, they're bullies who have not been proven right in anything afaicr.

  52. stick with POSIX compliant? by Anonymous Coward · · Score: 0

    Hey, can't developers just stick with POSIX compliant OS's and apps -- should run on Windows, and most of the *nix's, eh?

  53. Re:Shame by MightyYar · · Score: 1

    Just a correction: SCO owns the rights to the SysV code... so they have everything to do with not open-sourcing it. I'd love to ignore them, but they are the legitimate rights-holders of UNIX.

    --
    W..w..W - Willy Waterloo washes Warren Wiggins who is washing Waldo Woo.
  54. Re:Electrapaint... yes it's available by rbanffy · · Score: 1

    Wow! That's really, really, cool.

    I think I will learn the gory details of X screen savers real soon.

  55. Sun Sparc the last holdout? by peter303 · · Score: 1

    With SGI dropping MIPS and Apple dropping Motorola/IBM theres little diversity outside the Intel/AMD x86 world. Even Intel strangled itself introducing costly-to-develop non-x86 chips. Early custom super computing companies like CRAY, Convex etc have long since perished (The CRAY name still exists, ironically starved under its SGI ownership).

  56. Irix EOL == IRIX OSS??? by ekimminau · · Score: 1

    So if they are end of lifing it, how long after before it can be Open Sourced? I REALLY want inst for Linux, and hinv, and current XLVM and their C compiler and... and....

    Ive been a Linux user since October of 1992. I was a season Solaris and HPUX admin before that. Ive been using IRIX since 1994 or 1995. It is BY FAR the easiest to administer OS. Do you like "chkconfig"? Thank IRIX. Do you like /etc/init.d? Thank IRIX. You like /etc/config? Thank IRIX. Like rpm via ftp? Thank IRIX (inst functionality still blows away RPM. apt/yum gets you much closer but it still doesn't beat it.

    I wonder if SGI is going to OSS the last MIPS distribution? Id love to update my O2 to the current version without having to buy a support contract. But I digress...

    --
    Armaments, 2-9-21 And Saint Attila raised the hand grenade up on high, saying, 'O Lord, bless this Thy hand grenade' N
  57. Movidis 16-way 2U keeps MIPS alive by ubiquitin · · Score: 1

    MIPS is alive and ticking. TiVo is still MIPS-based, right? More importantly, at LinuxWorld last month, a company called Movidis was demo'ing a cool 16-processor box in a 2U form factor that features no less than 8 gigs or RAM and 8 gigabit nics. From the white paper: OCTEON CN3860, a 16-core, 64-bit MIPS processor, executes nearly 20-billion instructions per second, using less than 50 watts of power... Each core is clocked around 500 to 600 mghz. So you can supposedly pipe 400 Mbytes/sec through this thing and it'll likely remain cool. I'm thinking this could be useful for store and forward packet manipulation. Linux 2.16 kernel comes with the thing so you actually have a chance of keeping it secure, unlike IRIX, details on the boxes at www.movidis.com. They're based in Santa Barbara. Now how can I come up with $5k to get one of these things to play with? Hey, if they'll spiff Slashdot a demo unit, I'll review it. ; )

    --
    http://tinyurl.com/4ny52
  58. So... by andreyw · · Score: 1

    What will SGI do? Make overpriced IA-32, X64 or IA-64 clones?