Slashdot Mirror


Linux Desktop Clustering - Pick Your Pricerange

crashlight writes: "A Linux cluster on the desktop--Rocket Calc just announced their 8-processor "personal" cluster in a mid-tower-sized box. Starting at $4500, you get 8 Celeron 800MHz processors, each with 256MB RAM and a 100Mbps ethernet connection. The box also has an integrated 100Mbps switch. Plus it's sexy." Perhaps less sexy, but for a lot less money, you can also run a cluster of Linux (virtual) machines on your desktop on middle-of-the-road hardware. See this followup on Grant Gross's recent piece on Virtual Machines over at Newsforge.

199 comments

  1. Expensive by merauder · · Score: 1

    but sounds interesting none the least.

    --

    ..and knowing is half the battle.

    1. Re:Expensive by typedef · · Score: 1

      THANKS FOR SHARING!

  2. mmmmmmmmmm by vulgarDPS · · Score: 1

    I heard that the new thing will be putting a hundred procs on a board instead of designing a better arcitecture for the processor itself. This is the new intel modow. Everyone hop on board.

  3. Virtual vs physical by mcspock · · Score: 1

    Why would you want 8 virtual machines when you can have 8 physical machines? Isn't the whole point faster processing in a cluster?

    --
    -- Patience is a virtue, but impatience is an art.
    1. Re:Virtual vs physical by f00zbll · · Score: 2, Insightful
      I don't know much about building a cluster, but I thought one of the limiting factors of clusters is network latency. If they have it all on the same motherboard, or designed their own bridge to connect multiple CPU/MB, it would be faster right?

      By the fact that they are all incased in the same box, rather than connected via a switch, it has less distance to travel. I don't know that 5 feet of CAT5 could make that big of a difference. On the otherhand, they could have designed a different way of bridging the systems and dramatically reduce latency. In either case, it is intriguing.

  4. Virtual macines??? by TheAwfulTruth · · Score: 5, Insightful

    The purpose of running clusters is to increase processing power and/or fail-safety. How is running 8 virtual machines in any way a "less sexy" version of an 8 CPU cluster?

    --
    Contrary to popular belief, coding is not all free blow-jobs and beer. Those things cost MONEY!
    1. Re:Virtual macines??? by whirred · · Score: 1

      Ah, but you are missing the true beauty of this. Just wait until I setup my beowolf cluster of these boxes, and you will realize the fail-safety and processing power increases.

      Yes, I just said BEWOLF CLUSTER of these boxes.

    2. Re:Virtual macines??? by PD · · Score: 5, Funny

      Maybe I want to develop software for a Beowulf cluster, but either I don't have a cluster of my own, or I just want to write the software, not run it in production. Either way, a set of 8 virtual processors would be good enough for the job.

    3. Re:Virtual macines??? by PD · · Score: 4, Interesting

      I just thought of something else. I have never used a Beowulf cluster, so maybe I'm completely wrong, but virtual machines could make a Beowulf more easily upgradeable. The idea is that you'd make a cluster with a whole bunch of virtual machines, say 1024. The cluster is fixed at that size for all the software that runs. But in reality, you've got 32 processors actually running. When you upgrade the cluster to 64, you don't need to reconfigure any of the software that runs on the cluster, because they all assume that you've got 1024 processors. But, you get a performance increase because there's now more physical processors. As I said before, I don't know much about clusters. I imagine that somebody who really does know will quickly either confirm what I said or reduce my idea to a pile of stinking rubble.

    4. Re:Virtual macines??? by Anonymous Coward · · Score: 0

      The purpose of running clusters is to increase processing power and/or fail-safety. How is running 8 virtual machines in any way a "less sexy" version of an 8 CPU cluster?

      As you pointed out, increasing fail safety is one of the reasons for using clusters. If you had a cluster of virtual machines running on a single machine, the machine's hardware is a single point of failure (unless you're using extravagent hardware with a backup motherboard, power supply, etc. but that doesn't qualify as "middle-of-the-road hardware" IMO).

    5. Re:Virtual macines??? by cweber · · Score: 3, Interesting

      You're mostly off the mark, I'm afraid. Most software that uses a cluster runs through MPI or simply through scripts. Both mechanisms allow for easy adjustment in the number of nodes/CPUs you use.

      Many large compute problems are embarassingly parallel, i.e. the same calculation needs to be repeated with slightly different input parameters. There's basically no interprocess communication, just a little forethought about filenaming conventions, total disk and memory usage, etc.
      Execution of such tasks reduces essentially to a simple loop:
      foreach parameter_set
      rsh nodeN myprog outfileM
      end

      For those programs that actually run a single instance of the code on several CPUs, you have to be acutely aware of how many nodes you use. Your code has its own limits on how well it scales to multiple CPUs, and your cluster imposes limits on how well (in terms of latency and bandwidth) nodes can communicate. Very few codes in this world scale well beyond 64 CPUs, especially not on run-of-the-mill clusters with plain ethernet interconnects. Fortunately, it is trivial to readjust the number of nodes used for each invocation of the code.

      Lastly, virtual nodes cannot easily simulate the behavior of real nodes. Again, it's the interconnect latency and bandwidth. When it comes to supercomputing, only trust what you have run and measured on a real life setup with your own code and input data.

    6. Re:Virtual macines??? by Perdo · · Score: 2

      A beowulf cluster operating system could expose a standerdized set of API's to an application if no matter how many processors it had it told the application that it had 1024 but the application could not then be optimized for the actual hardware it is running on. KLAT2's applications were optimized to take advantage of the 3DNow! extentions which Trippled the effective processing power of their cluster. Just like Direct X provides API's to applications for standardization does not come close to what could be achieved hand codeing machine language to the x86 hardware. Look at the applications being run on clusters now and you will see that most are cash poor but manpower and entusiasm heavy. If they could afford 3 times as much hardware to achieve the same performance they would have ordered expencive big iron from IBM. Also not that 1024 processors limits the scalability of the cluster. The real Idea is to force hundreds of commodity machines to act like a single processor

      --

      If voting were effective, it would be illegal by now.

    7. Re:Virtual macines??? by choprboy · · Score: 1

      The idea is that you'd make a cluster with a whole bunch of virtual machines, say 1024. The cluster is fixed at that size for all the software that runs. But in reality, you've got 32 processors actually running. When you upgrade the cluster to 64, you don't need to reconfigure any of the software that runs on the cluster,

      Or better yet, cut out all the overhead of running "virtual" processors and install MOSIX. Then just run your 1024 processes simultaneously. The processes will transparently migrate to the least busy nodes to load balance. Add more machines to the MOSIX cluster (while the cluster is up) and the load will be further distributed. Need to take your workstation out of the cluster temporarily? Just force a removal and the processes migrate off to other machines...

    8. Re:Virtual macines??? by rew · · Score: 2

      The idea is that you'd make a cluster with a whole bunch of virtual machines, say 1024.

      Good plan. There's a large BUT however....

      There are two sources for N processors not being N times as fast as one.

      First there is the communications overhead. If you have 1024 virtual processors, running on 32 real processors, there are going to be about 32 programs running and communicating on one processor, while they could've gotten by without communicating at all...

      Also, the problem may not be divisable in 1024 equal chunks.

      If you write your software to scale to 32, there is going to be a parameter that says how many processors there are already. So adjusting it to 64 is not going to be hard.

      But test-running on a small (but virtually large!) cluster before running it on the "real cluster" could allow you to guess the magnitude of both "performance impacting issues" before buying time on the expensive "real cluster". So there certainly is a point in doing it that way....

      Roger.

    9. Re:Virtual macines??? by Anonymous Coward · · Score: 0

      Software fails too.

      We run multiple copies of Weblogic Server in clustered mode on a single AIX box. That way, when one of the WLS instances dies, the site stays up.

      Its a pretty common configuration.

  5. Hey by Guitarzan · · Score: 1, Offtopic

    Can I get a Beowulf clu......um, nevermind.

    1. Re:Hey by ch-chuck · · Score: 2, Funny

      Sure, why not. If an 'internet' is a network of networks, we should be able to build a cluster of clusters. One cluster calculates the reality I'm flying thru while another one calculates the effects of the nuclear device I just heaved, both feed into the headmounted 3D stereo graphics processor with surround sound audio helmet on the hydraulically actuated platform, while an input/output cluster handles sim data from the other players over the fibre channel...

      --
      try { do() || do_not(); } catch (JediException err) { yoda(err); }
    2. Re:Hey by LinuxHam · · Score: 2

      If an 'internet' is a network of networks, we should be able to build a cluster of clusters

      They do. It's called Grid computing. Now that Qwest can shoot 400Gbit/s over 1,000km or something insane like that, supercomputing centers are connecting clusters with faster links than your 64-bit PCI bus.

      --
      Intelligent Life on Earth
  6. Sexy...? by grahamsz · · Score: 0, Offtopic

    I'm sorry but it's just a big red box.

    I can see why mac systems are stylish and perhaps 'sexy' but this is just big and red.

    Although red is better than beige i guess.

    1. Re:Sexy...? by liquidsin · · Score: 2

      I'm sorry but it's just a big red box.

      What's not sexy about box?

      Oh, you meant like a computer...I was thinking of something else...

      --
      do not read this line twice.
  7. - 8 - 800MHz Celerons? by qurob · · Score: 2, Flamebait


    So, it's about equal to my dual Athlon 2000+?

  8. Wow... what a markup! by eaglej · · Score: 4, Funny

    Yeah, it's a nice compact little box... But they're pulling in a phat few g's on each box. I'll build my own, thank you very much.

  9. Why is Timothy badmouthing... by SpookComix · · Score: 3, Troll
    ...the articles he posts? Tim, baby, if you don't like or agree with the article, either don't post it or keep your opinion to yourself.

    I know I'll get modded down for this, but here's an example:

    Posted by timothy on Tuesday January 22, @02:45PM
    JackBlack tells us about the "unbelievable deal you can get at KMart on all their overstocked computers and periphials! You won't believe the kind of prices on these things! I don't know about you people, but I'd rather swallow Draino than buy boxen from Big K! But, shit, whatever, I guess.

    Timothy is his own conflict of interest.

    What is happening to Slashdot these days?

    --SC

    --
    You read fiction? I write it! Lemme know what you th
    1. Re:Why is Timothy badmouthing... by nomadic · · Score: 0, Offtopic

      I can see where you're coming from, but in this case he followed up his negative comment with an actual link to another method of clustering. So it's more than a compare and contrast than just a statement then anti-statement.

    2. Re:Why is Timothy badmouthing... by baronben · · Score: 1

      Conflict of intrest only happens, I belive, when the diffrence of intrests can or does effect the outcome. Since Timmy is posting the artical, it means that even though he doesn't agree with it, he still thinks that it falls under the "news for nerds" part of /. (Something tells me this isn't "Stuff that matters".) If he, say, didn't post this story because the cluster wasn't sexy enough, then it would be a conflict of intrest.

    3. Re:Why is Timothy badmouthing... by gimple · · Score: 1

      Knowing I will probably burn some Karma... It is interesting that these guys always have some smarmy comment to make after every article. Couldn't they just post the damn thing?

    4. Re:Why is Timothy badmouthing... by BlowCat · · Score: 1

      Wow! Timothy refused to advertize KMart on Slashdot. As a result, KMart filed for Chapter 11.

    5. Re:Why is Timothy badmouthing... by sheldon · · Score: 1

      I think this article was interesting and don't mind seeing this stuff. You get an idea of what exists out on the market. Sometimes even if you don't need it right now in six months you may go "wait, I saw something that would do that..."

      Now as far as bias, what I find interesting is that /. made absolutely no mention last week of Microsoft making .Net available for download. The free SDK compilers, the free redistributable, or the MSDN subscription downloads of VS.Net.

      It made all the other news sites, along with articles complaining about server capacity. (VS.Net is like a 3 Gig download)

      I was at least expecting an article titled "Microsoft servers don't hold up to massive load!" :)

  10. Cluster == sexy by iamr00t · · Score: 1

    It let's you point at your P100 laptop and say - that's my cluster, I do some SETI on it :)

    1. Re:Cluster == sexy by CoJoNEs · · Score: 0, Offtopic

      I do my seti on a p75 laptop
      I think its sexy.

  11. under engineered. by azephrahel · · Score: 5, Funny


    I'm sorry, but for that price this is way under engineered. The origonal bewulf cluster was made with components on par, for the day, as the celeron modle of the redstone, for far less. If your going to spend the time and money building and marketing systems like this, they could have done a better job. They suck mobos in a big case and eth linked them togeather. Call me crazy but I think for that much money you could get a small backplane, 8 industrial PC's (powerpc/copermine/whatever on a pci card each w/its own memory) toss em in and spend the rest of your "engineering" budget, making a patch to the kernel for reliable communication over the bus, instead of slow eth connections.

    besides with the speed advantages shared memory brings to multiprocessing a quad xenon would probably outpreform this.. deffinately a quad proc ultrasparc but those are pricey even used...

    --
    You are only young once, but you can stay immature indefinitely.
    1. Re:under engineered. by benedict · · Score: 3, Insightful

      Sure, you could build it yourself, and your
      hardware cost would be lower.

      But what about the cost of your time, in terms of
      dealing with vendors, putting machines together,
      testing them, integrating them, and testing again?

      I'm guessing these machines come with support, too,
      though I can't tell because their web site is
      Slashdotted.

      --
      Ben "You have your mind on computers, it seems."
    2. Re:under engineered. by Anonymous Coward · · Score: 0

      I agree, no doubt a dual athlon 2000+ with DDR memory would perform better. Maybe if they used higher speed celerons or even the new .13 micron p3 (1.13 ghz and higher)

    3. Re:under engineered. by mpe · · Score: 2

      If your going to spend the time and money building and marketing systems like this, they could have done a better job. They suck mobos in a big case and eth linked them togeather.

      But for some reason chose a midi tower, rather than a 4U rackmount.

    4. Re:under engineered. by __aafutm5472 · · Score: 1

      Ya know, one argument to stuff like this that doesn't hold water for me is the 'What do you value your time at?' argument. Honestly, if I'm building a system like the one described, I'm doing it for me and my own education/geek factor. I'm not going to sell the damn thing, I'm going to use it for me, therefore my time costs nothing. And here's why: It's MY time...I already own it, therefore it costs nothing!!

      People seem to be so obsessed with placing a value on things that they forget that some people do stuff like this for a hobby, and therefore it is more likely to cost money than pay for itself. By definition a hobby shouldn't really pay for itself, otherwise it's a business, aka work.

      If I were to build one, it wouldn't be work. But, then again, maybe I'm one of the few people who spend my day working on computers, then go home and work on computers for fun.

    5. Re:under engineered. by Carpathius · · Score: 1
      If it works for you, that's fine. I build and upgrade my own computers as well. But there have been times in my life when I had to figure tradeoffs of money and time. With a family and a child, I've definately had to figure which was more important to me -- saving $200 or spending two or three hours with my son.

      Besides, I've built something around ten systems. Doing another isn't something that I consider either very interesting or very edifying.

      You enjoy doing stuff like this, and that's great. But don't forget the other sides, as well. Some people may enjoy doing it, but feel their time is better spent elsewhere, untill the actual monetary savings reaches some amount.

      Sean.

    6. Re:under engineered. by zerocool^ · · Score: 2

      besides with the speed advantages shared memory brings to multiprocessing a quad xenon would probably outpreform this.. deffinately a quad proc ultrasparc but those are pricey even used...


      First, I'm guessing you meant quad-Xeon and not quad-Xenon, cause why would you want to have 4 instances of Xenon text editor running on your desktop, or 4 atoms of the element Xenon.

      Second, there is the misnomer that Ultra-sparc boxen are rediculously expensive. It's just not true. The place where I work recently purchased a new shared solaris server - quad-proc Ultra2 4x300mhz w/ 1 Gig of ram and 2x18 gig scsi drives. It only set us back about $1500. That is NOT MUCH in the world of shared website hosting. Plus, it compiles things a lot faster than, say, our P4-1.5 Ghz, despite the 300 Mhz advantage.
      High end hardware is doable, and most people don't need much, especially considering that a Sparc IPC (25-ish mhz w/ 24 megs of ram) runnig solaris 7 can host 200 web pages easily, and handle 3 million hits a month. Web serving is *not* difficult, and it doesn't take a lot of power, just a proc that can switch between processes quickly and efficiently. It's poorly-written CGI that takes power.

      ~z

      --
      sig?
    7. Re:under engineered. by Anonymous Coward · · Score: 0

      wtf you can't even spell you need help:

      http://linuxmonkey.freeservers.com

    8. Re:under engineered. by mallie_mcg · · Score: 1

      Ultra2 4x300mhz w/ 1 Gig of ram and 2x18 gig scsi drives. It only set us back about $1500. That is NOT MUCH in the world of shared website hosting

      Ummm the Sun Ultra2 can take a Maximum of 2 Processors. So I would like to know what you think that you own. And if you mean something like an E450, then it would be costing you significantly more than that for the Chassis. Hell more that that per CPU.
      Not to mention that you can not buy Ultra2's new from Sun anymore. So what do you really have? And does it even Have an UltraSparc-II processor in it anywhere?

      --


      Do the following really mean anything? SCSA MCP CCSA CCNA
      --I'm not actually after an answer!
    9. Re:under engineered. by zerocool^ · · Score: 2

      (censored)> su -
      Password:
      Sun Microsystems Inc. SunOS 5.7 Generic October 1998
      You have new mail.
      (censored):root> mpstat
      CPU minf mjf xcal intr ithr csw icsw migr smtx srw syscl usr sys wt idl
      0 16 0 86 45 44 70 0 1 2 0 98 1 1 1 97
      1 16 0 88 1 0 72 0 1 2 0 102 1 1 1 96
      2 16 0 115 213 13 67 0 1 2 0 100 2 1 1 96
      3 16 0 95 67 67 64 0 1 2 0 97 2 2 1 96


      Tell me how to get more detailed system info and i will, i don't know how to just print out exactly what the procs are and speed ratings

      --
      sig?
    10. Re:under engineered. by zerocool^ · · Score: 2

      Hey, how's this?

      (censored):root> dmesg

      Jan 22 21:47
      cpu0: SUNW,UltraSPARC-II (upaid 0 impl 0x11 ver 0x20 clock 296 MHz)
      cpu1: SUNW,UltraSPARC-II (upaid 1 impl 0x11 ver 0x20 clock 296 MHz)
      cpu2: SUNW,UltraSPARC-II (upaid 2 impl 0x11 ver 0x20 clock 296 MHz)
      cpu3: SUNW,UltraSPARC-II (upaid 3 impl 0x11 ver 0x20 clock 296 MHz)
      SunOS Release 5.7 Version Generic 64-bit [UNIX(R) System V Release 4.0]
      Copyright (c) 1983-1998, Sun Microsystems, Inc.
      mem = 1048576K (0x40000000)
      avail mem = 1029668864
      Ethernet address = (censored)
      root nexus = SPARCengine(tm)Ultra(tm) CycleQUAD (4 X UltraSPARC-II 296MHz)
      pci0 at root: UPA 0x1f 0x4000
      pci0 is /pci@1f,4000
      pci1 at root: UPA 0x1f 0x2000
      pci1 is /pci@1f,2000
      etc.etc.
      I rest my case. BAM.
      ~z

      --
      sig?
    11. Re:under engineered. by mallie_mcg · · Score: 1

      OK, so I was being a smart arse apologies. My point was that a Sun Ultra2 machine (Manuf. By Sun, branded an Ultra2 machine) can have a max of 2 processors. I see that you are refering to the UltraSparc-II processors. The other point that i was making was that i found it very very difficult to believe that you could pick up a new Sun box with 4x UltraSparc-II's in it for less $1500. (The US-II CPU costs 10K-AUD+)

      --


      Do the following really mean anything? SCSA MCP CCSA CCNA
      --I'm not actually after an answer!
    12. Re:under engineered. by zerocool^ · · Score: 2

      eh, it's not new. I mean, we bought it used, and it's a couple of years old. However, we did pay like $1560 for it, plus shipping. I'm not sure where from, and i can find out if you'd like, but I'm still amazed by the price. Which is why i wanted to post it. People looking for high end systems(64 bit) w/ quad procs can get them for a reasonable price.

      ~z

      --
      sig?
    13. Re:under engineered. by mallie_mcg · · Score: 1

      I would love to find out where you got it from and what exactly it is (so that i can assess costs for shipping to .AU ugh!!). My email is easily gained, seeing as if you send to the domain of where my web site is, and use the username, it will find me.

      --


      Do the following really mean anything? SCSA MCP CCSA CCNA
      --I'm not actually after an answer!
    14. Re:under engineered. by Anonymous Coward · · Score: 0

      i'll look into it

      ~z

  12. Rack Density by Genady · · Score: 2, Interesting

    So... how many processors can you fit into a standard 44U enclosure now? If they've got an integral Ethernet switch do you get a gigabit uplink out? This would actually be really cool for Universities/Government Agencies to build insanely great clusters with small floor space. Still if you want insanely great maybe you should cluster a few briQ's together.

    --


    What if it is just turtles all the way down?
    1. Re:Rack Density by HunterWare · · Score: 1

      8 Processors in an 4U? Dell sells 1U duals (PIII 1GigHz) for about 1K a pop. Buy 4 of em....

    2. Re:Rack Density by beowulfshaeffer · · Score: 1

      Dual athlon's in a 1U case means 88 processors in a standard enclosure. You'd need a very good air-conditioner to cool all of them though.

      --
      Shave the Whales!
    3. Re:Rack Density by Shadowlore · · Score: 1

      324 if you are using the transmeta powered RLX blades. 24 in 3u.

      Low power consumption, low cooling costs,. minimal cables, and two available 10/100 ports per cpu after the management port is taken (another 10/100). Not to mention the system imagiung capability.

      Now, if they only had fibre channel ports ...

      --
      My Suburban burns less gasoline than your Prius.
  13. Re:Is there a real market for this? by rhdwdg · · Score: 2, Interesting

    I could. The form factor is the thing. I could use a few extra CPUs in a MOSIX cluster for my desktop, but I have no room for a small rack and associated power. This fits. I could make them into little application clusters -- 256 MB of flash is plenty per device. I could wish they had GigE, of course (since they obviously need to connect to NAS for data) or multiple NICs per system but even 100 Mb is sufficient for the intended markets.

  14. Terrasoft, briQs, PPC, 4-8 nodes... by tcyun · · Score: 5, Informative

    I saw a quick demo of a multi-noded briQ (by Terrasoft Solutions) at SC2001 a few months ago and was very impressed. The ability to leverage the power of the PPC in vast numbers (and in a very small form factor) was incredible. I wonder how these would do in a head to head competition?

    They offer a 4-8 node tower running 500 MHz G3 or G4 CPUs and drawing "roughly 240 watts per 8 nodes (less than a dual-processor Pentium-based system)." Quite impressive.

    1. Re:Terrasoft, briQs, PPC, 4-8 nodes... by Anonymous Coward · · Score: 0

      The briQ (accd to the web site) are $1500/node
      for the G3's and $2000/node for the G4's.

      Therefore, for $4500, you get a 3 node G3
      package. This is not including interconnections
      between briQs.

      They have a 8node box (sans briQs for $2000)
      plus 8 g3 briQs puts it at $18,000 total.

      This is clearly a lot more expensive than
      the advertised model.

    2. Re:Terrasoft, briQs, PPC, 4-8 nodes... by gonar · · Score: 2

      try $1500 for a g3/500/512mb node
      and $1500 for the case

      so for $4500 you get 2 count 'em 2 g3 nodes (no altivec)

      $2k for the g4 node (same speed & mem)

      so for an 8 node cluster, you are looking at $17,500

      makes the rocketcalc machine look like a bargain, no?

      (ok, ok, the briq is better engineered, but still...)

      --
      The difference between Theory and Practice is greater in Practice than in Theory.
    3. Re:Terrasoft, briQs, PPC, 4-8 nodes... by Anonymous Coward · · Score: 0

      Don't forget, there is a 100 node minum order!

  15. Here's what I'd much rather see by S.+Allen · · Score: 2, Insightful

    I'd like to have see chips that incorporate the CPU, RAM and something equivalent to the North+South bridge. Motherboards should be designed to take 1-32 of these plugged into some godawfulfast bus. CPU and RAM should be one in the same and scale together. RAM co-located w/ the CPU would be much, much faster. Most systems and applications can scale with more threads or CPU's. CPU's by themselves are just about as fast as they need to be for any task that cannot be divided into multiple threads (I'm not talking about poorly written progams). This whole getup would be significantly more elegant, reduce parts and complexity and probably be cheaper to produce in the long-run.

    I don't see this as the same as a system-on-a-chip. With those, you're integrating video and audio. I'd either rather NOT see that integrated at all or have a portion of this new CPU combo thingy incorporate a DSP or FPGA region(s).

    Whoa, time to put down the crack pipe.

    1. Re:Here's what I'd much rather see by mpe · · Score: 2

      I'd like to have see chips that incorporate the CPU, RAM and something equivalent to the North+South bridge. Motherboards should be designed to take 1-32 of these plugged into some godawfulfast bus. CPU and RAM should be one in the same and scale together. RAM co-located w/ the CPU would be much, much faster.

      Most of this (apart from the RAM with the CPU) sounds like a Sequent Symetry. There's also the Vax cluster. Where processors (with RAM) and storage controllers connect to a 16 (IIRC) way star interconnect.
      Both of these are over a decade old technology. So something similar which fits in a box one person can pick up is probably overdue.

    2. Re:Here's what I'd much rather see by Glock27 · · Score: 1
      I'd like to have see chips that incorporate the CPU, RAM and something equivalent to the North+South bridge. Motherboards should be designed to take 1-32 of these plugged into some godawfulfast bus. CPU and RAM should be one in the same and scale together. RAM co-located w/ the CPU would be much, much faster.

      To some extent you're describing Hammer's architecture...it has an integrated memory controller, so as you add CPUs to an SMP system, you add memory bandwidth. The processors sit on a HyperTransport bus, so if Processor A need's Processor B's data, that is the route (a pretty efficient one!).

      Clawhammer, the lowest-end version is set up for 2-way clustering. Sledgehammer will go much higher. I sure hope the rumored 3400+ processor rating is real! :-)

      299,792,458 m/s...not just a good idea, its the law!

      --
      Galileo: "The Earth revolves around the Sun!"
      Score: -1 100% Flamebait
    3. Re:Here's what I'd much rather see by Glock27 · · Score: 1
      Ooops, substitute SMP for clustering in the above. Momentary brain cramp... ;-)

      299,792,458 m/s...not just a good idea, its the law!

      --
      Galileo: "The Earth revolves around the Sun!"
      Score: -1 100% Flamebait
  16. only 100mbps? by Restil · · Score: 4, Interesting

    The primary disadvantage of clustering is the network bottleneck. You lose out because even 100mbps is only a small fraction of what the pci bus of even low end pentium systems are able to handle. At LEAST go with gigabit ethernet so you can push over 100 megs per second between processors. This will greatly increase the usefulness of an integrated cluster by decreasing the one primary disadvantage.

    Also a bit pricey, but there would be some cost advantage in reduced footprint for some environments.

    -Restil

    --
    Play with my webcams and lights here
    1. Re:only 100mbps? by Anonymous Coward · · Score: 0

      FYI: When you are at the 1G range, the amount of CPU overhead become significant... You might be able to get close to 100 megs but no where OVER 100 megs as stated.

    2. Re:only 100mbps? by cweber · · Score: 1

      GigE won't help much because you're still stuck with ethernet's awful latency. Last time we shopped for supercomputers, cluster solutions lost out because of this, even with pricey Myrinet, Via or other high-end interconnects.

    3. Re:only 100mbps? by Lumpy · · Score: 2

      being in the same box I wonder why they didn't use U160 scsi for comms. hell you can have 16 nodes on a SCSI bus nowdays and transferring data between 8 machines and the array of shared drives would make it scream like a raped ape.

      hell we use that kind of setup for spitting 24 mpeg2 streams out for commercial insertion from pentium 166's

      --
      Do not look at laser with remaining good eye.
    4. Re:only 100mbps? by GigsVT · · Score: 1

      You are correct, but it all depends on one's application. Latency may or may not be a big factor in one's application. If it isn't, then you can easily save thousands of dollars with a cluster.

      --
      I've had enough abrasive sigs. Kittens are cute and fuzzy.
    5. Re:only 100mbps? by mpe · · Score: 2, Insightful

      The primary disadvantage of clustering is the network bottleneck. You lose out because even 100mbps is only a small fraction of what the pci bus of even low end pentium systems are able to handle. At LEAST go with gigabit ethernet so you can push over 100 megs per second between processors. This will greatly increase the usefulness of an integrated cluster by decreasing the one primary disadvantage

      Depends on the application in question. There are many parallel processing tasks which do not need massive communication between processors. Effectivly each processor simply gets on with it's task on it's own.

    6. Re:only 100mbps? by GigsVT · · Score: 2

      Do you have any information on setting up a shared SCSI bus like this? I'd be very interested in doing it, but I have not been able to find any information about it.

      gigs at vt dot edu

      --
      I've had enough abrasive sigs. Kittens are cute and fuzzy.
    7. Re:only 100mbps? by Lumpy · · Score: 3, Informative


      Yes start here

      http://linux-ha.org/comm/

      this is used in the linux HA system extensively. Xenix and Unix has it also.. No version of NT has this ability nor any Microsoft product. Maybe someone has written a driver for NT4.0 but I doubt it.

      --
      Do not look at laser with remaining good eye.
    8. Re:only 100mbps? by Lumpy · · Score: 1

      also look here

      http://www.ibiblio.org/pub/Linux/ALPHA/linux-ha/ Hi gh-Availability-HOWTO-7.html

      this will get you started. searching for linux SCSI communication and start digging.

      --
      Do not look at laser with remaining good eye.
    9. Re:only 100mbps? by sporty · · Score: 2

      Took a bit of thought to what you said. Wouldn't you be communicating smaller pieces of information on the norm vs huge amounts? Or are you tinking of doing large data translations? Perhaps they were building for one and not the other?

      Heh, there'll always be a bottle neck.

      --

      -
      ping -f 255.255.255.255 # if only

    10. Re:only 100mbps? by benwb · · Score: 2

      100mbps ethernet consumes 75% of a 32 bit/33 mhz pci bus. Jumping up to 64bit/66 mhz it's still consuming nearly 20% of available bandwidth. The current generation of PCI busses (even "high end" ones) cannot pump out enough information to saturate a gigabit line.

    11. Re:only 100mbps? by Anonymous Coward · · Score: 0

      Yes. What the guy should have complained about is the latency of ethernet. Of course as others pointed out for many problems you don't need much communication between processors.

    12. Re:only 100mbps? by Wesley+Felter · · Score: 2

      That's totally bogus. PCI is 32 bits * 33MHz = 1056 Mbps.

    13. Re:only 100mbps? by Anonymous Coward · · Score: 0

      Gigabit ethernet will make a significant difference in at least one important area even if it makes no difference in the performance of your other applications: backup & restore.

    14. Re:only 100mbps? by cweber · · Score: 1

      And of course, if your job is one of those really embarassingly parallel ones (say, rendering frames) you don't even need a cluster, but simply use desktops overnight or in the background. Saves even more dollars.

    15. Re:only 100mbps? by cweber · · Score: 1

      Gigabit ethernet will make a significant difference in at least one important area even if it makes no difference in the performance of your other applications: backup & restore.

      Granted. But frankly, how much backup do you need for cluster nodes where the local disk serves up OS and scratch space only? (Assuming you're running your cluster the way most supercomputer installations do.) I can't see the cost justification for a fast backup pipe here.

    16. Re:only 100mbps? by SpinyNorman · · Score: 2

      Nice in theory, but in practice Gigabit ethernet does not deliver Gb/sec - and in fact Ethernet's contention access mechanism (CSMA/CD) guarantees that you won't!. In practice you're better off with channel bonded 100Mb/sec Ethernet and a smart switch topology such as KLAT2's Flat Neighborhood Networks to minimize latency and maximize inter-node bandwidth.

      KLAT2 FNN

      Note to moderators: above link refers to Linux, AMD processors and Beowulf clusters! Do the right thing! ;-)

    17. Re:only 100mbps? by wadetemp · · Score: 2

      Uh huh... have you ever used a reasonably new 32bit PCI computer when it's transfering data at close to 100mbps? Let alone when it's actually supposed to do something with that data, like write it to a hard drive or process it. Want to multiply that effect by 2... or 3... or 8... or 10?

    18. Re:only 100mbps? by Drakantus · · Score: 2

      Yes I have. Copying files from one drive to another over the PCI bus often transfers at 15-25MB per second, which works out to 120-200mb/sec. The CPU shows some usage and things are a little sluggish, but the OS is still totally usable, especially if it's on a 3rd drive that is not involved in the copying.

      Besides, due to inefficiency in TCP/IP you can't really get the full 100mb/sec, it's mostly limited around 80mb/sec for the better NICs.

      --
      I love going down to the elementary school, watching all the kids jump and shout, but they dont know I'm using blanks.
    19. Re:only 100mbps? by Anonymous Coward · · Score: 0

      > Xenix and Unix has it also.. No version of NT has this ability nor any Microsoft product.

      Umm, Xenix IS a M$ product.

  17. already posted by Brightest+Light · · Score: 1

    i believe this was already posted a few weeks ago.

  18. Explain this to me by CrayzyJ · · Score: 1

    How is 8 800MHx Celerons sexy?

    --
    Holy s-, it's Jesus!
  19. So much for eating your own dogfood... by ncc74656 · · Score: 1

    ...or maybe it's something else (bandwidth?), but it looks like they're slashdotted.

    --
    20 January 2017: the End of an Error.
  20. Virtual clusters? by Lxy · · Score: 2

    you can also run a cluster of Linux (virtual) machines on your desktop

    So you're suggesting that I divide my machine into 8 virtual machines and then cluster them for uber fun? Figuring the extra latency, wouldn't it be faster to just leave it alone?

    --

    There is no reasonable defense against an idiot with an agenda
    :wq
    1. Re:Virtual clusters? by athakur999 · · Score: 2

      The point isn't gaining speed, it's gaining reliability and maintainability. Instead of one PC being your email, database, proxy, etc. server, you create a virtual machine for each one.

      If you need to upgrade the kernel on your email server, you can just reboot that virtual machine and leave your database, proxy, etc. servers untouched. If a process goes wild on your database server it'll only screw with that service and not your email, proxy, etc.

      --
      "People that quote themselves in their signatures bother me" - athakur999
  21. Re: - 8 - 800MHz Celerons? by morcheeba · · Score: 1

    Uh, no.

    2*20008*800
    40006400

    Of course, the dual athlon kicks butt for many applications (I know, I use one!), but it all comes down to the needs. What would be cool is if low cost dual athlon boards (ala tyan tiger) were substituted (8*2*2000 = 32000, or 5 times faster)... but then the whole thing would just melt with the heat. I do like the embedded flash/diskless aspect of the system, though. Its a simple cluster in a nice box.

  22. Clustering under VM is....pretty dumb by CDWert · · Score: 3, Informative

    Clustering under vserver scheme is pretty dumb, if it was in fact meant to be serious.

    vservers assume that a machine has resources avaiable and that no one instance is consuming 100% of the systems resources. Application built for utilization under a cluster would most likey CONSUME 100% quickly and easily, otherwise why run them under a cluster in the first place ????

    I do like their monitor applet, its pretty coll for basic cluster managment/monitoring.

    At the same time all you people complaining about price...lets see

    800mhz cele w256 meg each MB, NIC and whatever storage, lets say on the cheap $300 each

    4 350 Watt PS $100

    Ok a really cool case and PS

    Time to load software, lets say weve done it before and it take 8 hours

    Physical Assembly and testing 5 hours

    My bill rate and personal time is worth 120/hr
    $1560
    Hardware $2400
    Power Supply $ 100
    Mildy cool case$ 100

    THAT COMES TO 4160, Hell, add to that I dont have to build the SOB AND it comes under warranty , you betch you A** Id buy one of these

    PLEASE think before you gripe about prices...
    Looks like a deal to me ....

    PS, Kernel version is 2.4.12 from what I saw on their link to products showing a screen shot Ayeee.....

    --
    Sig went tro...aahemmm.....fishing........
    1. Re:Clustering under VM is....pretty dumb by Anonymous Coward · · Score: 0

      My bill rate and personal time is worth 120/hr

      Bullshit. You might bill $120/hour, but there is no way you're worth it.

    2. Re:Clustering under VM is....pretty dumb by GigsVT · · Score: 1

      So you make $250,000 a year?

      For those of us who's time is worth a little less than $120/hr, it's a pretty good deal to just build our own.

      I'm building my own 6 node, Duron 950 for a total hardware cost of $1300. That could have just as easily been 8 nodes for $1700, had I the money to spend on two more nodes.

      --
      I've had enough abrasive sigs. Kittens are cute and fuzzy.
    3. Re:Clustering under VM is....pretty dumb by Anonymous Coward · · Score: 0

      Assuming you can get that much work, of course.

      Some people work for higher wages per hour and don't work 40 hrs per week, tho they might wish they could...

  23. Re:Damn... by jargoone · · Score: 0, Offtopic

    I guess that one hit post. Almost though. Thanks for the kind words, and thoughtful haiku. I'd better start whoring again, or I won't see mod points for a while.

  24. Cool software by Ksop · · Score: 1

    I may not have the $4.5K to buy the box but that software looks spiff. The java demo of the cluster monitoring was realy cool. How about I get a stack of these and use the free software.

    Yeah yeah network speed blah blah. Let a man dream!

    1. Re:Cool software by GigsVT · · Score: 2

      Please never order from TigerDirect. Check the BBB record on them and resellerratings.com. They are the target of many consumer lawsuits, and have a terrible record.

      --
      I've had enough abrasive sigs. Kittens are cute and fuzzy.
  25. The Needed Ingredient by 4of12 · · Score: 2

    OK, the price for these kinds of things is really nice and low. Low enough to make anyone in the numerically-intensive computing arena really want something like this.

    (However, I probably wouldn't want one of these as my desktop machine if the power supplies took more current than a typical wall outlet, if it made as much noise as a helicopter taking off, and if heated up my cubicle to 92 F.)

    But the key ingredient in my mind is making these distributed boxes more conveniently usable, much like those 64-way big boxes from Sun and SGI.

    How far along are MOSIX, Scyld's products, others(?) that make these distributed clusters have a nice Single System Image?

    --
    "Provided by the management for your protection."
  26. A Cheaper Idea by Anonymous Coward · · Score: 0

    $4500? WTF For? How much could a motherboard/processor combo w/ memory possibly cost for 800mhz celerons? You could build one of these w/ a custom case for $1000

  27. 1U servers anyone? by Anonymous Coward · · Score: 0

    Hmm. 8x800MHz, not quite rack-mount, about 10U high, $4,500. Why not just buy eight rack-mount PCs and an Ethernet switch? You can do so for approximately the same cost and have fully independent PCs, nothing particularly proprietary, plus you can have as many as you want instead of groups of eight.

    1. Re:1U servers anyone? by Lumpy · · Score: 1

      because 8 1u servers and a switch would cost MORE than this.

      this is really cheap for what they are selling. you cannot reproduce it for less.

      --
      Do not look at laser with remaining good eye.
    2. Re:1U servers anyone? by qurob · · Score: 1

      According the the Penguin Computing banner ad on the top of this page, the Relion 105 costs an upwards of $1000 each.

      Add a couple bucks for a switch....

  28. Linux not ready for the desktop [was Re:Expensive] by M$Marketing · · Score: 0, Troll

    I agree. I don't see how Linux will ever be ready for the desktop. First of all it's expensive. The actually costs of upgrading hardware is not reasonable. Secondly, who is going to spend time programming software that they can't sell? It's great for people who need to learn about what is out there, but there just aren't any options available. Third, this whole article reaks of hypocrisy. They say Linux is free and runs better than our products, yet you have to upgrade to use the desktop. With our OS, you don't need more than one processor to use the desktop. It's just not practical to use Linex.

    --
    Take care...
  29. I can crash it by T3kno · · Score: 1


    #!/usr/bin/perl

    how_about_a_beowolf_of_these();

    sub how_about_a_beowolf_of_these {
    fork();
    how_about_a_beowolf_of_these();
    }

    --
    (B) + (D) + (B) + (D) = (K) + (&)
    1. Re:I can crash it by rjamestaylor · · Score: 1

      Remind me not to hire you...

      --
      -- @rjamestaylor on Ello
  30. Do-it-Yourself Cheap Clusters by ChaoticCoyote · · Score: 3, Funny

    I've been building my cluster from various remaindered/cast-off/refurbished machines I find. Computer Geeks is a good source.

    Load balancing is frelling difficult, but I've been doing some solid parallel programming work that translates nicely to "real" clusters. I'd love to buy one of the Rocket Calc boxes -- but I can make a darned nice box for a lot less money with more processing power, if I'm willing to have cables and such all over the place.

    The only real cluster-related problem I have is my lovely wife. She's one of those people who want things to "match" (so why in frell did she marry me?), and my "heterogenous" cluster just isn't very aesthetic. She just doesn't understand that the cluster's job is to compute, not to look pretty!

    Then again, the Rocket Calc machines are attractive, and the color would go with the living room furniture...

    1. Re:Do-it-Yourself Cheap Clusters by Courageous · · Score: 2

      frell? frelling???

      You mean we weren't supposed to all understand that you really meant "FUCK" when you said that? Try it. Repeat after me. FUCK. F-U-C-K. FUUUUUUCK! Feels good, doesn't? Wheh, now aren't you glad you've got that out of your system?

      I knew you would be.

      >:-/

      C//

  31. Off Topic? by DebtAngel · · Score: 0, Offtopic

    Redundant, maybe, but off-topic> ?!?!?!?

    --

    Is this post not nifty? Sluggy Freelance. Worshi

    1. Re:Off Topic? by Guitarzan · · Score: 1

      Oh well, I don't understand it either. It's only a silly ./ post...

  32. Re:The Turd Report 01/22/2002 by Anonymous Coward · · Score: 0

    If this it the 3rd report, then where is the first and where is the second?

  33. site slashdotted, here's google cache by eufaula · · Score: 2, Informative

    here is the google cache since the site seems to be slashdotted....

    http://www.google.com/search?q=cache:q2egeLKmoVQC: www.rocketcalc.com/+rocketcalc&hl=en

  34. Re:Damn... by SpookComix · · Score: 0, Offtopic
    And you've been added to mine. My, what a lovely circle jerk we've got going!

    --SC

    --
    You read fiction? I write it! Lemme know what you th
  35. Re: use RLX tech Crusoe systems! by Anonymous Coward · · Score: 0

    forget this thing, buy something from RLX Technologies and get similar CPU power while saving a -bundle- on power and cooling costs!

  36. How does it do itt? by kzadot · · Score: 1

    What I want to know, is how does the software manage to leverage the use of the cluster. They mention that programs wont need to be changed to take advantage of the clustering. How can this be? It doesn't mention much about this Houston software that seems to handle it. Usually applications have to be especially written for clustering. The website also doesn't seem to mention what tasks this system is really good for.

  37. Re:Linux not ready for the desktop [was Re:Expensi by Anonymous Coward · · Score: 0

    quite interesting how no version of windows can do what linux does, example is today's topic.. 8 way clustering.. xp? nope, 2000 nope.. another example of how Microsoft is becoming a bloated toy not useful to anyone anymore.. what happened to the innovation? what happened to actually trying? Ms quit back in 1995 trying to innovate or put out quality. and Linux will overtake it this year.

    yup, ms loses in 2002. it will be a grand sight indeed!

  38. Re:Can you imagine by dperkins · · Score: 1

    You're right. Just a wannabe. Sorry, I'll have to make sure my stupid posts are at least Spelled correctly! :)

    My Bad!

    --
    My sig hates me. That's ok, I never cared for it much anyway.
  39. Re: - 8 - 800MHz Celerons? by qurob · · Score: 3, Interesting

    Although I'm joking, let's just take a look at some numbers, hypothetically speaking.

    *borrowed from Tom's Hardware*

    Linux Compiling Test

    3.35 minutes for a Athlon XP 2000+
    14.2 minutes for a Intel Celeron 800mhz

    (now, here's where we stretch it)

    Figure 1.7 minutes for a dual Athlon XP 2000+, 50% of the other time.

    1.7 x 8 = 13.6 minutes


    But, who really compiles with a cluster, really?

    It'd still be faster....At least on a few benchmarks, and at least in theory

  40. Two Questions by fm6 · · Score: 2
    (1) Since this is all about high-performance computing, why use Celerons?

    (2) Why is it taking so long for someone to make the obligatory "Imagine..." post?

  41. whatever. by jonbrewer · · Score: 2

    To run multiple linux instances on one "middle of the road" server, you need VMWare GSX. It ain't free. In fact, it's $3,550.00. (there goes your "a lot less money" idea, T.)

    As for the value of this product, I see it clearly. Not all computational problems need high data throughput between nodes. And their Redstone-A product gives you an 8 node PIII 1Ghz cluster with 4GB of ram for $6000. And all the networking set up and ready to go. Give it to your Scientist and they don't need to know jack about network or configuration, they just treat it like another unix workstation.

    When I think of the ~ $20k each we spend on Sun and SGI workstations for our scientists, I cringe. This I wouldn't (won't?) think twice about buying.

  42. a desktop renderfarm by Lumpy · · Score: 2

    You know when spielberg said that the next big smash wont be from him or some big studio but it will be from a woman named buffy from idaho. This brings that possibility one step closer. I can see this as a renderman render farm or even just an effects renderfarm for some of the effects the AVID generates.

    gimmie 2 of these, an AVID, and a $200,000.00 camera and lens you've got the next ET on your hands... (Nooo not cheech and chongs Extra Testicle get your mind out of the gutter)

    it's getting there where the general schmuck has the power that hollywood does.

    --
    Do not look at laser with remaining good eye.
    1. Re:a desktop renderfarm by Graymalkin · · Score: 2

      Talent != equipment. You can do a film is craptastic 8mm with butcher paper soaked in crisco as a lens and still make a rad movie if you've got a smidgen of talent behind the camera and it helps to have some in front of the camera too. I'd rather have a real 8-way system than a cluster-in-a-box. The 8-way with the right software is going to be alot more productive than an 8-node cluster limited to batch rendering stuff I throw at it. Shit I'd rather have four dual processor systems with fast storage systems and 4 talented guys on them rather than 8 processors and one talented guy.

      --
      I'm a loner Dottie, a Rebel.
  43. Re:Linux not ready for the desktop [was Re:Expensi by r00tdenied · · Score: 2, Interesting

    Cost of upgrading what? Did you even read the article? This is a CLUSTER, not your run-of-the-mill desktop or workstation. I could get linux to easily run on an old 486 motherboard that is somewhere in the bottom of my closet.


    If any OS is expensive due to upgrades, it is definately Micro$oft OS's. Can you see Windows XP running on a 486 33 mhz? I thought not.


    Additionally linux cost a LOT less to administer by IT shops than Microsoft operating systems. With Microsoft operating systems, you have to *click* here, *click* in this text field,etc. I could have ipchains up and running fast than you could have NAT running on Windows2000.


    However, this cluster is a great solution to a lot of problems. It would definately free up colocation rack space, and make it easier to do virtual hosting.


    r00tdenied
    --
    Platinum Networks Hosting www.platinum-networks.com
  44. SGI flashbacks? by qurob · · Score: 1


    To me, this almost looks like a combination of various old SGI systems.

    So THAT makes it COOL.

    1. Re:SGI flashbacks? by qurob · · Score: 1

      Whoops...here's the link

      Picture Gallery

      http://www.sgiaddict.net/sysdoc.html

  45. and for the price . . . by hawk · · Score: 2
    $4500: 8xCeleron 800, 8x356mb=2g.


    My new workstation (yes, it's finally coming, for those whohave been wondering; the purchase order goes to main campus today):
    $4800: 2xAthlon 1900, 2gb ddr.


    My memory and bus are significantly faster. I believemy total processing power is equal or close under most applications.


    Then I get a few things that aren't in that bundle:
    2x18gb cheetah 15000rpm u160
    4x 9gb cheetah 15000rpm u160
    21" sony monitor & video card
    scsi cdrw


    would I really get any more from this unit???

    1. Re:and for the price . . . by Anonymous Coward · · Score: 0

      My memory and bus are significantly faster.

      Not really. Each memory bus on this box is slower, but there are eight of them.

      Also if you are running a job that parallelizes well, drive space and speed don't matter all that much.

      Bottom line is, this system is for heavy duty number crunching. For Monte Carlo type work (for example) it would toast your box any day of the week. And if it's not fast enough, you can get more and drop them in without changing the setup. Of course this machine is not so good for development work or game playing, but that's not what it's meant for.

    2. Re:and for the price . . . by sigwinch · · Score: 2

      The Celeron cluster also has 8X CPU cache. A workload that doesn't fit in dual Athlons' cache might fit in octal Celerons. Since main memory is ~10X slower than cache, the speedup in the inner loop can often pay for the slowdown from interprocessor communication.

      --

      --
      Kuro5hin.org: where the good times never end. ;-)

    3. Re:and for the price . . . by hawk · · Score: 2
      Ithas 8 L1 caches, but they're not 8 times as large. Come to think of it, how do the cache sizes compare? Doesn't each athlon have about 4 times the celery's, equalizing thimngs?


      also, it seems more likely that one big cache wouldhave what you need than a collection of little ones *all* having it.


      I also noticecd that I used 9 words for each array element in my stucture. *doh*. 8 would have exactly alligned it in terms of memory fetch operations (one or two; I forget)>


      Anyway, isn't the 1900 athlon somewhere in the broad range of 3 800 celerys?


      hawk

    4. Re:and for the price . . . by sigwinch · · Score: 2
      Athlon XP data cache is 320 kB (ignoring storage of instructions in L2 cache). Dual machine has 640 kB total.

      Celeron 800 data cache is 160 kB. Octal machine has 1280 kB total, twice that of the Athlon.

      Even if Celeron cache transfer rate is half that of Athlon (don't have exact numbers), total throughput will still be double.

      also, it seems more likely that one big cache wouldhave what you need than a collection of little ones *all* having it.
      It depends on the workload. If you can parallelize the cache load, it can be a huge win. If all the caches are flushed by the same constant data that won't quite fit, it doesn't help much. As usual the problem and how you parallelize it are just as important as the hardware.
      --

      --
      Kuro5hin.org: where the good times never end. ;-)

  46. Rocketcalc Redstone by Anonymous Coward · · Score: 0

    Imagine a Beowolf Cluster of THESE!!!

  47. Re:Linux not ready for the desktop [was Re:Expensi by M$Marketing · · Score: 0, Troll
    another example of how Microsoft is becoming a bloated toy not useful to anyone anymore.. what happened to the innovation?
    Many of our products run on 486 computers. I've been using computers since XTs. When the 486 came out we upgraded our software to make good use of the hardware. *That's* what happens when we innovate! Can X Windows and Netscape run fast on a 486?
    --
    Take care...
  48. There's a better way... by The+Panther! · · Score: 2

    If you're looking to do the same thing, cheaply and with a little DIY hardware tech time, simply buy a big ATX case with room for a couple of extra power supplies, install a 386 or 286 mobo (all ISA slots!!!), and buy a number of these computers and plug them in. They don't draw power from the motherboard, so you don't even bother connecting the 286 to power. Instead, tie each power supply to one or two of these cards directly (requires a little soldering), and there you go. A cluster in a box.

    If I had the money, I'd be doing this myself. Instead, I've got a rack full of 4U AT cases with dual PPro 200mhz machines instead. The one advantage to having full sized motherboards (with PCI slots) is that I'm installing triple-channel-bonded ethernet so I get gigabit ethernet bandwith, without paying gigabit prices.

    --
    Any connection between your reality and mine is purely coincidental.
  49. Thought for the day... by jd · · Score: 2
    The fastest processor out there (in terms of sheer power, not mere MHz) is the Athlon XP 2000+. I've checked with AMD, and they don't say you -can't- use it with the MP chipset. (They don't say you can, either. What they DO say is that they don't list or recommend that combination.)


    That'd give you 2 processors per chunk. By stapling four chunks together, using MOSIX, you'd get the same as an 8-proc SMP box, without the hyper-expensive motherboard.


    Now, this is where it gets fun. (Yes, I've been reading up a bit on this. :) The processor uses a clock multiplier, to translate the clock rate of the system into the clock rate for the processor. You -can- fiddle with this multiplier, but it occured to me that you don't actually need to. You can simply replace the system's clock, instead.


    I don't know what the "default" multiplier is, but I'd guess it's probably x16, or thereabouts, given the speed of the rest of the system. In which case, if you threw in a 1GHz clock (I suggest oven-baked, as they taste better), you'd get 16 GHz on the processor.


    Now, THAT kind of ramp-up is not going to be easy. Chips run hot as it its, and if you plan on overclocking an Athlon by a factor of 8, you can expect to fry eggs on the surface. As for the poor RAM chips.... those are REALLY going to suffer!


    My guess is that if you strapped pelziers onto all the chips, immersed the entire system into some synthetic, non-conducting fluid that you can super-cool to, say, -135'C (there's some stuff 3M makes that'll handle it), and you devised some way to keep it that cold, the chips might survive the experience.


    Might. I'm not even going to say "probably". To the best of my knowledge, no overclocking or supercooling experiment on conventional PCs has gone to that extreme. The only ones that came close (a NZ project involving pouring liquid nitrogen into the case) trashed the disk drives and BIOS.


    On the other hand, I've been checking up on the tolerences of components, and what you COULD build, if money wasn't an issue. The technology for an 4x2 MOSIX/SMP cluster, overclocked to 16 GHz and still running -does- seem to exist. (The keyword is "seem" - most chip specs are calculated, not actually measured, according to the data sheets.)


    Now, I suspect that it'd cost a damn sight more than $4000, just for the parts, even if you could mass-produce such a monster (assuming you had the engineering skill to build it in the first place), or even find anyone crazy enough to buy one, given that it'd probably be more cost-effective (and certainly safer) to go with an IBM mainframe at that point.


    On the other hand, kernel compiles would be quick.

    --
    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)
    1. Re:Thought for the day... by Knobby · · Score: 2

      The fastest processor out there (in terms of sheer power, not mere MHz) is the Athlon XP 2000+.

      I thought the IBM POWER4 processors were still out front..

    2. Re:Thought for the day... by ameoba · · Score: 2

      One catch :

      Anyone spending this kind of money on a cluster is likely to be doing serious number crunching. Now, some types of number crunching don't mind posibly letting a wrong answer slide through somewhere (IE - in a render-farm, you might get a bad pixel). Other environments, where calculations are all interdependant, a single bad number could make all the computation worthless (the old "A butterfly flaps its wings in Tokyo and we get another John Katz article" story).

      Besides, no point in spending the time designing & testing this monster OCed box, when you can just buy a few 8-way Xeons, or call Sun/SGI.

      --
      my sig's at the bottom of the page.
    3. Re:Thought for the day... by cheezehead · · Score: 1

      Now, this is where it gets fun. (Yes, I've been reading up a bit on this. :) The processor uses a clock multiplier, to translate the clock rate of the system into the clock rate for the processor. You -can- fiddle with this multiplier, but it occured to me that you don't actually need to. You can simply replace the system's clock, instead.

      I don't know what the "default" multiplier is, but I'd guess it's probably x16, or thereabouts, given the speed of the rest of the system. In which case, if you threw in a 1GHz clock (I suggest oven-baked, as they taste better), you'd get 16 GHz on the processor.

      Now, THAT kind of ramp-up is not going to be easy. Chips run hot as it its, and if you plan on overclocking an Athlon by a factor of 8, you can expect to fry eggs on the surface. As for the poor RAM chips.... those are REALLY going to suffer!


      If things were that simple, people would have done it already.
      I'm no expert on overclocking, but there are a lot of problems with this approach.

      - You can't just apply a 1GHz clock to a system. There's the matter of peripheral chips that simply will not work. As you mention, the RAM is going to have a huge problem. Then, there will be all sorts of problems with the motherboard itself (coupling between PCB traces, electromagnetic interference). There is a reason why overclockers don't make motherboards themselves: it's just too hard to get it right, never mind the difficulties in making multi-layer PCBs.

      - Heat production by chips is a limiting factor, so cooling will help. But: when you try to overclock an Athlon 8 times, you're going to run into different problems. There's the matter of electron mobility inside the chip. No matter how cold it is, there is a limit to the speed they move, given certain dimensions of the transistors. Same goes for the RAM: you can cool it all you want, at a certain point it just won't go any faster any more (and that point is reached long before your 8X speed increase).

      --

      MSN 8: Now Microsoft even has bugs in their ad campaigns.

    4. Re:Thought for the day... by oojah · · Score: 1

      I don't know what the "default" multiplier is, but I'd guess it's probably x16, or thereabouts, given the speed of the rest of the system. In which case, if you threw in a 1GHz clock (I suggest oven-baked, as they taste better), you'd get 16 GHz on the processor.

      This is just plain wrong. Firstly, I don't believe that you can actually 1GHz crystal oscillators. More importantly, you can't just cool a chip and expect it to be able to go faster.

      As you overclock a chip you need more cooling because more power is being dissipated (CMOS logic power consumption is a function of frequency). This does not mean that adding unbounded cooling would allow the chip to be overclocked to any given frequency. The variables which you have control over (temperature, frequency, voltage) are not the whole story with regards to maximum frequency. Just as, if not more, important are device and track capacitance, track resistance and device size. These are controlled by the manufacturers and are the reason why they sell chips at different clock ratings.

      As you say, cooling everything to -135C might allow the chips to survive the experience but that doesn't mean that they would work.

      Cheers,

      Roger

      --
      Do you have any better hostages?
  50. Re:under engineered - AND SPAM by choprboy · · Score: 1

    Really, I agree this way over-priced for the specs. I built myself dual-node quad Xeon cluster (8 processors) for almost half that price.

    Besides, why in the hell is timothy spreading this??? The guy is promoting this "personal cluster" by spamming several newsgroups. Last week he hit a number of groups including comp.os.linux.hardware, comp.parallel, and comp.graphics.rendering.misc. That by itself ought to be more than enough to convice you not to buy for this guy!

  51. Re:No, but.... by lucius · · Score: 1

    WTF?? Moderated down? This is fucking clever.

  52. SGI Killer??? by Anonymous Coward · · Score: 0

    So this has gotten me thinking. Would something like this be the final nail in the SGI coffin? Imagine this scenario:

    Disney/Pixar/Other purchases a whole bunch of these clusters-in-a-box as their workstations for each graphic artist. The price is comparable to (or less than) that of an SGI workstation. When it comes time to do the final rendering of Toy Story XIII, you connect all of the individual workstations to create one BIG cluster. Thus, each artist has exceptional horsepower on their own, and the group is able to take advantage of it as well. As a result, no one purchases SGI workstations, and since the workstations can be clustered, nobody buys SGI servers.

    Could this be the way Linux surpasses SGI/IRIX in the graphics market?

  53. Re:Linux not ready for the desktop [was Re:Expensi by Anonymous Coward · · Score: 0

    I'm sorry but none of your supported products runs on a 486. and as normal MS mindset goes, it should be illegal for people to use those older products because they are stealing revinue from the mother corperation by using the legacy apps. (example, the intentional locking of IE6 to install to Win95, you can actually hack the installer to install it and it runs fine on win95, but Ms dont want you to. and therefore forces the user to upgrade by intentionally breakingthings.)

    Sorry, but Win3.11 was barely a product just like Visual basic 2.0,3.0 and 4.0.. most companies happily ran DOS during the WFWG days because the software was nothing more than a re-branded OS2.

    please tell me WHAT current supported product runs on a 486 in a useable state? booting is not useable, it should act like Windows NT 4.0 on a P166.. that fast but not real fast (as if the entire NT line was ever fast. NT3.51 on a P-III 800 is still dog slow.)

    Like I said there is no innovation in the windows products anymore, the re-hashing of the same old code with prettier pictures is it's impending doom... just like how noone is buying XP except when it's forced on them during a new computer purchase.
    Linux will win big, like it won the embedded market.

  54. Re:Linux not ready for the desktop [was Re:Expensi by M$Marketing · · Score: 0, Flamebait
    Cost of upgrading what? Did you even read the article? This is a CLUSTER, not your run-of-the-mill desktop or workstation.

    That's right. When you upgrade your workstation to a run of the mill server, you will have a desktop server. Nobody's going to want to use that. Honestly, now. How many Luinux users do you expect to use this X Server? .2%? .4%? I'll give you 3%. Place your bets. I know which workstation is going to win in 2002.

    I could get linux to easily run on an old 486 motherboard that is somewhere in the bottom of my closet.

    I hardly think so. How could a machine with only 8MB run Netscape? See the requirements for yourself.

    There's just no way. Don't get me wrong, though. I do appreciate your thoughts. It's just that when you blindly state your opinions as opposed to facts, then it becomes very difficult for casual readers to make a decision.

    I wish our company and yours would work together to improve the accessability of computers for everyone. Linux is great for programming in C, Assembly and other scripting Languages, but for the casual user, businesses, and in depth programmers, we offer standardizations that allow for user friendliness.

    In fact, I take back what I said about Linux and programming in C. You guys have to have autoconf in order for it to be portable. We don't. On top of that, we have *several* programming languages to choose from. See here.

    I could have ipchains up and running fast

    Again, not true. Casual users will be forced to read HowTo manuals and man pages. If you follow the link into the several pages, you'll see that some of them are *years* old!
    --
    Take care...
  55. Re:Linux not ready for the desktop [was Re:Expensi by Anonymous Coward · · Score: 0

    Can someone mod down all this trolling?

  56. No problem for the right application by KM1 · · Score: 1

    As pointed out above the communication bottleneck is no problem at all for many of the most CPU-intenstive parallel computations. Monte Carlo-simulations for example can often be done with just about no communication at all. The same is true for many of the really hard computational tasks where we just don't have any algorthims that can make use of intensive communication among the processors.

  57. 8 Celerons?! by Anonymous Coward · · Score: 0

    8 X Shit = Shit.

    I'd rather have 2 Athlons than 8 Celerons. That's the most retarded fuckin thing I've ever seen.

  58. Re:Linux not ready for the desktop [was Re:Expensi by Anonymous Coward · · Score: 0

    Netscape? why? Opera is smaller faster and more standards compliant than netscape and IE. typical MS fud preaching that netscape is the only choice, maybe back in 1992 it was. Yes, He is right. in fact I have a working Linux box with X windows and a nice WM running a nice graphical email client, Opera, a wordprocessor (abiword) spreadsheet (gnumeric) and graphical arts app (gimp) on a 486 DX25 with 16 meg of ram and only 32 meg of swap on a 1 gig hard drive with TONS of room to spare. as for the comment of the user would have to read to figure it out.. that is also true for any microsoft product. the casual user cannot figure out how to secure their nice new W2K or XP machine because they have been lied to by microsoft for years that it's not needed and microsoft products are safe to use. (blatent lie.. it is unsafe until you follow many many complex steps to secure it and patch it. and then connecting it to the internet directly is still unsafe.)

    Sorry. Ms still cannot compete. and a casual user can pick up linux operation within 1 week, the same timeframe it takes a casual user to figure out the silly changes made from one version to another in the windows dance.

  59. Aimed at developers by Anonymous Coward · · Score: 0

    Seems to me this box is aimed at developers with a large cluster environment in the back room.

    Think of it this way, you develop the apps on the 8 way desktop machine and when they are tested and ready, you deploy them on the big boys. The box is useless as a serious computing cluster, but not for developing!

  60. Oh well. by rice_burners_suck · · Score: 2

    Oh well.

    The other day, I saw an auction on eBay for an SGI Octane. The price was over 100,000 bucks. Looking at the pictures, I could tell why: It included a rack with a bunch of really fancy stuff on it, and an SGI Octane. That is why I consider sexy.

    Actually, here is what I really want. I want to have several of every brand of computer, running all the operating systems available for each brand. That way, I'll be able to access software and information for any of them. It'll cost a ton of money, and that's money I don't have, but hey, who said you can't imagine stuff?!

    Oh well.

  61. Re:Imagine!!! by Rostoff · · Score: 1

    oh go fuck yourself, redundant my ass you silly twerps

  62. Re:whatever -- User Mode Linux by Jess · · Score: 1

    What about using open software instead of proprietary software. For instance, you can run multiple instances of Linux using User Mode Linux http://user-mode-linux.sourceforge.net. This can save you the $3,500 for VMWare GSX.

  63. Obligatory Beowulf Cluster Post by TrollBridge · · Score: 0
    WOW! Imagine an 8-node Beowulf Cluster of these things! And better yet, with Linux installed on them!

    Oh wait...

    --
    There's a Mercedes gap too. I want one and can't afford one, but it's not government's job to do anything about it.
  64. huh? by jelle · · Score: 1

    "Clustering under vserver scheme is pretty dumb, if it was in fact meant to be serious."

    The vserver scheme is the _inverse_ of a cluster, not meant at all for applications that you would otherwise run on a multi-node cluster.

    Did you even go to the vserver homepage , and read the introduction of the introduction? ->

    Linux computers are getting faster every day. So we should probably end up with less, more powerful servers. Instead we are seeing more and more servers. While there are many reasons for this trend (more services offered), the major issue is more related to security and administrative concerns.

    Is it possible to split a Linux server into virtual ones with as much isolation as possible between each one, looking like real servers, yet sharing some common tasks (monitoring, backup, ups, hardware configuration, ...) ?

    We think so ...

    --
    --- Hindsight is 20/20, but walking backwards is not the answer.
  65. Possible SGI killer? by nakhla · · Score: 1

    So this has gotten me thinking. Would something like this be the final nail in the SGI coffin? Imagine this scenario:

    Disney/Pixar/Other purchases a whole bunch of these clusters-in-a-box as their workstations for each graphic artist. The price is comparable to (or less than) that of an SGI workstation. When it comes time to do the final rendering of Toy Story XIII, you connect all of the individual workstations to create one BIG cluster. Thus, each artist has exceptional horsepower on their own, and the group is able to take advantage of it as well. As a result, no one purchases SGI workstations, and since the workstations can be clustered, nobody buys SGI servers.

    Could this be the way Linux surpasses SGI/IRIX in the graphics market?

    1. Re:Possible SGI killer? by Graymalkin · · Score: 2

      If you want to use a cluster to do the final rendering that might work but you can't use a cluster as a workstation. In order to have cache coherence and whatnot processors need a high speed low latency connection (latency being measured in nano seconds) not be connected by a NIC through the south bridge on the memory controller. If you were to stick 8 Celerons on a single node somehow then you'd give an Octane a run for its money.

      --
      I'm a loner Dottie, a Rebel.
  66. VM Cluster by Soong · · Score: 1

    Clustering virtual machines is about as useful as making a RAID drive accross partitions of one drive.

    (Being that it sucks and is very inneficient, but lets you test the software holding it together.)

    --
    Start Running Better Polls
  67. If you need to get something out of your system... by ChaoticCoyote · · Score: 2

    ...I suggest a laxative. ;)

    "Frell" is a word used on the TV series Farscape; it has the nice ability to replace many different cuss words with on catch-all phrase. For example: "To frell with it!" or "Frell you." And using "frell" avoid those nasty negative moderations that can so bruise my tender ego.

    As for "fuck", "hell", and other cursatives: I make sailors blush, youngster; I've been coding so long, I've had to invent or borrow new cuss words because I wore the old ones out. I'm bored with "fuck" the word "although not the act, mind you), and am looking for new, fresh alternatives.

  68. Why? by Anonymous Coward · · Score: 0

    Perhaps less sexy, but for a lot less money, you can also run a cluster of Linux (virtual) machines on your desktop on middle-of-the-road hardware.

    Why would you do that? I suppose that you could develop under such an environment, and gain some convenience for clustered code developers that way, but you certainly would not want to deploy a clustered application on a virtual cluster, that would nullify the point of clustering, and in fact harm performance!

  69. I love hardware sites by Anonymous Coward · · Score: 0

    that get Slashdotted...

  70. Build server by JohnZed · · Score: 2

    I would love to use one of these (especially the higher-end model) for a build server. I seem to remember a parallel make utility for Solaris (one that allows you to use multiple machines to do a build). Anyone know of something similar for Linux?
    --JRZ

  71. hhmm by Anonymous Coward · · Score: 0

    and with there 8 processor goodness there website is already down..

  72. Re:Linux not ready for the desktop [was Re:Expensi by M$Marketing · · Score: 0

    You don't seem to answer the main question the /. readers want to know about. Why would anybody want to install a desktop on a 486? Even KDE development isn't geared for that platform anymore. Ever tried to install Debian on a 486 with only 8MB?

    --
    Take care...
  73. Maybe they could use a couple of these to fight /. by tyrani · · Score: 1

    Maybe they could put apache on a couple of these and not have to deny web traffic when they get slashdotted.

    Only a thought.

    --
    rejected (19) accepted (0)
    Is there a psychological term related to getting your stories rejected on slashdot?
  74. Re:Linux not ready for the desktop [was Re:Expensi by r00tdenied · · Score: 2, Insightful

    Again, not true. Casual users will be forced to read HowTo manuals and man pages [linuxdoc.org]. If you follow the link into the several pages, you'll see that some of them are *years* old!

    Ipchains is not *years* old as you put it, so the howto's definately can't be. Many of the howto's are old, but that is becuase a lot of things are backwards compatible with the newer kernels.

    r00tdenied
    --
    Platinum Networks Hosting www.platinum-networks.com
  75. Re:Linux not ready for the desktop [was Re:Expensi by Anonymous Coward · · Score: 0

    For the typical way clusters like this are used,
    Windows actually works fine. Run PVM, MPI and the
    like..code in Fortran using the excellent compilers
    available and away you go. Oh wait..you've never
    actually done something like that..you're just talking out your ass like most people around here.
    Check the very large windows clusters down at UIUC
    by Andrew Chien etc.

  76. Re: - 8 - 800MHz Celerons? by Anonymous Coward · · Score: 0

    In practice you will be mach fatser. The Celerons can never manage to communicate fast enough in order to compile faster. What you have is probably twice faster, three times cheaper and draws three times less energy. Some people are just lucky...

  77. Re: - 8 - 800MHz Celerons? by Anonymous Coward · · Score: 0

    Uh, yes.
    I believe a dual athlon 2000 will smash it.
    Let' see 8 CPU on 10MB/s vs 2 CPU each are 3-4 times faster on 2100MB/s. What a joke. Doesn't even compare. The athlons will be faster by at least a factor of 2.

  78. Re:If you need to get something out of your system by Anonymous Coward · · Score: 0

    Try yelling "CUNT!!!" in the office instead! You may be jaded with "fuck", and not getting the stress relief you need from it, but I expect that screaming "CUNT!!!" at the top of your lungs will be more satisfying and simultaneously fill your co-workers with fear that you have gone off your rocker.

  79. VM Cluster (testing is good!) by Caractacus+Potts · · Score: 1


    ...but lets you test the software holding it together.

    Pretty darn useful, if you ask me. I just started playing around with VMware last week, and I doubt I'll get a full night's sleep until I get some kind of Beowulf cluster up and running. I've made several attempts in the past with real hardware, but it took too long to dedicate and set up "N" different types of machines. With VMware, I can play with several configurations using several distros, and when I like what I've got, clone a few VMs and test some more. When I finally know what I'm doing and can justify the expense, I'll move on to setting up a real cluster. Until then, I'm just happy to be on the learning curve.

  80. Re: - 8 - 800MHz Celerons? by morcheeba · · Score: 1

    When I said it all comes down to needs, maybe I should have been a little clearer. I was giving the usual "appropriate hardware" depending on what kind of application you're trying to run spiel; i.e. it all depends on what kind of hardware needs you've got.

    For example, if you're running a single-threaded program, A 2*2000MHz system will be 150% faster than an 8*800MHz system because only one processor can be used. However, if you are raytracing 8 frames of animation, the 8*800 system will be 60% faster than the dual, because bandwidth requirements are low, interprocessor communications are low, and the task is plain number crunching.

    Where did you get 10MB/s and 2100MB/s? Are you assuming dual fibre channel for your dual athlon and making the byte/bit mistake?

    If you want to talk bandwidth, then you should make comparisons to the switch version of the rocket calc (note: it's called calc for a reason, because bandwidth isn't this things strongest suit - go with an SGI or myrinet if that's what you need), and you'll get loads more bandwidth (8*100 Mbit/sec).

  81. Re: - 8 - 800MHz Celerons? by alec314159 · · Score: 1
    3.35 minutes for a Athlon XP 2000+

    No way I'm buying anything with XP in its name, dude.

  82. Claims about VMs by zaqattack911 · · Score: 2, Interesting

    Ok.. so VMs makes sense because it allows seperate virtual linux O/Ss for each major server function. (web database ftp..). This is good for management and accounts. However, "they" are still making claims that it offers somekind of performance advantage over running them all on one O/S. I mean... call me crazy but I don't see how there is much of a performance advantage.. if not just wasted memory here. Someone please throw me a clue.

    1. Re:Claims about VMs by Anonymous Coward · · Score: 0

      you are absolutely correct, it is just that the slashdot editors (in this case timothy) have literally no idea what they are talking about most of the time.

    2. Re:Claims about VMs by zaqattack911 · · Score: 1

      oh ok:) glad we cleared that up.

  83. Response to your .sig by Anonymous Coward · · Score: 0

    The link your .sig points to is educational in that it shows a post that has (I think) clearly been subjected to a recursive 0: Offtopic moderation.

    Even the AC responses were given 0: Offtopic - which is highly suspicious given that Offtopic usually takes a 0 AC post to -1.

    Now I just know this is going to go -1: offtopic but I encourage those people who do see my message to CLICK THE SIG!

  84. Re:If you need to get something out of your system by Anonymous Coward · · Score: 0

    Smeg head.

  85. Re:Early post. by Anonymous Coward · · Score: 0

    How may a jerky beef have some nuts ?

  86. this machine is nice. by Billly+Gates · · Score: 2

    I can play solitaire and code so much faster with this baby. Come bring it on.

  87. Marketing personal clusters by heroine · · Score: 2

    I would have been ecstatic if someone made personal clusters consisting of dual 1.5Ghz Athlon nodes on gigabit ethernet a long time ago yet only now has someone decided to market personal clusters of single Celerons. Time to give up on the technically possible and base wish lists only on the technically marketable.

  88. NAT & Windows 2000 by Anonymous Coward · · Score: 0

    "I could have ipchains up and running fast than you could have NAT running on Windows2000."

    Lessee. Setting up Internet Connection Sharing in Windows 2000:

    -- Connect both ethernet cards to their respective locations (one to your router/modem; the other to a hub)
    -- Go to Network Properties
    -- Right-click on your external ethernet adapter (which you should probably rename to "External")
    -- Click the Sharing tab
    -- Click the checkbox labeled "Enable Internet Connection Sharing."

    Done. NAT routing for up to 255 computers in less than 5 minutes.

    You picked a terrible example.