Slashdot Mirror


Apple Demonstrates A Dual-G4 Power Mac

caligula writes: "Just saw this [macnn.com report]: 'Tuesday, May 17 updated 2:30 pm, top stories. During the hardware keynote of WWDC, which ended just minutes ago, Apple demonstrated a dual-processor G4 Power Mac running Mac OS X. Of note to developers is that Cocoa/Carbon applications do not need to be changed in any way to take advantage of multi-processors. Benchmark demonstrations ran roughly twice as fast on the dual-G4 system compared to the single-G4 Power Mac that was on stage. No mention was given as to when these multiprocessor G4s would ship, although it was stressed that it would not be happening any time soon but that they would definitely be out by next year's WWDC.'" JonahLee pointed out a related link on macosrumors.com, and migooch noted this slightly more informative ZDne t story. Mortals still must wait at least 'til January.

51 of 139 comments (clear)

  1. Linux/PPC support? by Anonymous Coward · · Score: 2

    Anyone currently using dual 604e / G3s care to comment on how well the Linux/PPC kernel handles dual Macintosh processors?

    1. Re:Linux/PPC support? by friedo · · Score: 2

      The G3 does not support SMP so there are no dual G3's, but dual 604e's are supported by LinuxPPC. How well the SMP actually works, I'm not sure of, though.

    2. Re:Linux/PPC support? by Capn_Sternn · · Score: 2
      Actually, I remember reading about a company that had introduced dual G3 cards that would run under the AmigaDOS a while back. The problems encountered with cache corruption were fixed in software. However, I don't have a link to the article, nor am I sure if they actually shipped.

      just my 2 cents
      sternn

      I am Dyslexic of Borg
      Resemblance is fertile
      Your ass will be laminated

    3. Re:Linux/PPC support? by Henry+House · · Score: 2

      Linux/PPC handles multiple processors just fine. There are hardware limitations inherent in the way the system bus works, but that's unavoidable and any operating system on multiprocessor hardware is subject to it. LinuxPPC (the distribution) officially supports multiproc 603(e)s including IBM RS/6000 quad-cpu boxes and the more common Apple and Be machines of a few years back.

  2. How hard is SMP support? by divec · · Score: 2

    Can someone knowledgeable explain the issues behind getting a specific processor to work in tandem with itself? I've heard it said that AMD chips won't do this as well as Intel chips - is this just FUD? How different will a multiprocessor G4 be to the single processor version?

    --

    perl -e 'fork||print for split//,"hahahaha"'

    1. Re:How hard is SMP support? by Tower · · Score: 3

      Intel chips work on a shared bus architecture - real easy, like any other bus. Request and grant. Each processor requests bus mastering, and they share. Nice, but one (or more) can get held off.

      The Athlon is based on the same SMP style as the Alphas (see earlier /. article today). Each proc gets it's own dedicated path to the chipset, where there's a switching fabric. This is essentially the same difference between a LAN hub and a switch. One Athlon could be bursting to memory at peak bandwidth while another talks to the AGP bus... good stuff. You only have to wait if the actual resource you are waiting for is being used. This is considerably more dificult (and more costly) to implement than a shared bus.

      The G4 can use a shared bus (as the earlier PowerPCs could. I'm not privy to the specifics of this new chipset, but it stands to reason that anything priced in the consumer marketspace (ooh, buzzword!) would need to be a shared bus to stay cost-efficient.

      The K6 was SMP capable, but not with Intel's chipsets and SMP structure. Therefore, it is essentially non-SMP capable, since nobody supported it. The Athlon has yet to be proven in this arena, but several boards are in the works (or so the rumor mill would have us believe)...

      --
      "It's tough to be bilingual when you get hit in the head."
    2. Re:How hard is SMP support? by mattkime · · Score: 2
      Can someone knowledgeable explain the issues behind getting a specific processor to work in tandem with itself? I've heard it said that AMD chips won't do this as well as Intel chips - is this just FUD? How different will a multiprocessor G4 be to the single processor version?

      To get more than one processor to work on a machine, obviously some cooperation is required. Chips intended for SMP include much of this on chip, so little additional hardware is necessary. However, if the chips do not include this, it must somehow be performed off chip. (Off chip = more expensive.)

      The "cooperation" required is based mainly around the fact that two processors editing the same value in memory could cause BIG PROBLEMS. Therefore, there needs to be a way to "lock" memory values so the second processor keeps its hands off while the first processor is writing. This locking mechanism isn't an issue when dealing with a small number of processors. (I beleive 20 is the upper limit.) As you increase the number of processors, the locking mechanism becomes more and more resource hungry. Getting past twenty processors is what makes a super computer truly super. :)

      --
      Know what I like about atheists? I've yet to meet one that believes God is on their side.
    3. Re:How hard is SMP support? by LordNimon · · Score: 3
      It's hard to answer this question in a single post, but I'll try.

      In a word, it boils down to coordination. The CPU's need to coordinate their activities. With two CPU's, you no longer have a single "master" that always knows what's going on.

      For example, cache coherency is a problem. Each CPU has a write-back cache, which means that the data is not writting to memory right away, but held until it can be written in a burst. If one CPU has unwritten data in its internal cache, the other CPU doesn't normally know about it. So the two CPU's need to talk to each other.

      Another issue is interrupts. Some SMP systems let interrupts go to any CPU. Some force all interrupts to go to one CPU. Obviously, the former is more complex.

      On recent Intel CPU's, there is something called a system management interrupt (SMI) which is like a super-interrupt that the OS doesn't know anything about. It's meant for the BIOS only. SMI's run in "SMI mode", where all interrupts are turned off, and all CPU's jump the SMI handler simultaneously. Getting all CPU's to exit the SMI handler simultaneously is difficult.

      Another issue is the chipset. The system bus needs to be able to handle multiple CPU's vying for PCI and memory devices.

      Anyway, that's just a brief list. Maybe someone who's worked on the SMP support for an operating system could chime in.

      --
      And the men who hold high places must be the ones who start
      To mold a new reality... closer to the heart
    4. Re:How hard is SMP support? by Tower · · Score: 2

      All very good points - mod this one up a few...

      The memory contention is dealt with via 'snoops' on PowerPCs (probably a similar mechanism on the Intel Arch). For example, if you have a PCI network card DMA'ng some data to main memory, the chipset can issue a snoop to the processor, asking if he has any data from that address. The processor can then cast out data from his internal cache, and the chipset can combine the data with the incoming PCI write, so coherency is maintained. The actual process and timing is interesting, but the system is fairly simple from a top level view. With extra processors, this can be an additional burder, and could get rather interesting...

      Interrupts... well... there's a nasty rat's nest... I'll leave that one alone for now. Suffice it to say, the PPC has a few different kinds of interrupts (including an SMI)... Not sure about the full SMP actions there, but again, it all depends on the OS structure.

      Asymetrical MP is so much *easie*, when you think about it... but it's not very useful with only 2 procs...

      --
      "It's tough to be bilingual when you get hit in the head."
  3. Somewhere between vaporware and.. by tcd004 · · Score: 4
    We need a new name for tech that's slapped together for a trade show, looks great on stage, but won't hit consumers hands for at least a year. How about nearhereware?

    nearware?

    tcd004

    Here's my Microsoft Parody, where's yours?

    1. Re:Somewhere between vaporware and.. by HeghmoH · · Score: 2

      WWDC is not a trade show.

      World Wide Developer Conference. They tend to show off things coming down the pipeline so Mac developers can keep ahead of them.

      --
      Mod down posts with a "Free Mac Mini/iPod" sig, they're spam!
    2. Re:Somewhere between vaporware and.. by gad_zuki! · · Score: 2

      Want But Can't Have Yet Ware

      WBCHYW

      Maybe people can grunt, "weeb-chew" in frustration.

  4. It's Mac toni...(well maybe next year) by Calimus · · Score: 2

    Ok so it's not going to be out for Xmas, but at least Apple is starting to realize that they can't just make it on the normal consumer market. Could this be a streatch before a full blown launch into the server market? I think so. An I think it's long over due.

    I'll state now that I'm not a hardcore fan of any particular processor market, I'm just a hardware fan. And while this still has the smell of vaporware it still has the possibility of coming to life. With the forthcoming of OS-X and now SMP Macs I hope to eventually see some interesting new hardware/software to take advantage of this.

    --
    Trying to be different, just like everyone else.
  5. Some G4 LinuxPPC Benchmarks VS misc X86 by FORTYoz · · Score: 2

    http://www.fortyoz.org/lmbench/results.txt

    The G4 does ok, not great.

    Can someone explain why i'd want one again?

    1. Re:Some G4 LinuxPPC Benchmarks VS misc X86 by Penrif · · Score: 3

      AltiVec vector processing is absolutly killer. Anything dealing with graphics manipulation or signal processesing (amungst others) runs insanely well on a G4 when it uses AltiVec.

    2. Re:Some G4 LinuxPPC Benchmarks VS misc X86 by Tower · · Score: 3

      Hmmm... well, remember (like the Alpha), GCC isn't optimized as well for the PowerPC line as it is for the Intel Architecture (more people, more time). Of course, that isn't the whole story (nothing ever is).

      That aside, I still can't find any specInt or specFP #s... which are a fairly good representation...

      Anybody else know of them (and have a source)?

      --
      "It's tough to be bilingual when you get hit in the head."
    3. Re:Some G4 LinuxPPC Benchmarks VS misc X86 by ToLu+the+Happy+Furby · · Score: 3

      That aside, I still can't find any specInt or specFP #s... which are a fairly good representation...

      That's because SPEC doesn't run on MacOS. Thus the only PowerPC SPEC scores available are for high end IBM type systems, which have far superior i/o systems to Macs, and thus ought to perform much better on memory-intensive benchmarks like SPEC.

      Unfortunately, the latest high-speed PIIIs kick the crap out of them, as do the actually-purchasable GHz Athlons. AltiVec is a great SIMD design, but even if there was enough software to take advantage of it, it'd be starved for data by the Mac's pitiful system bus in most real world conditions.

      Basically, the only reasons to buy a Mac for your desktop is the OS, the color, or the fact that the new iMacs don't need fans. The only good points of the PowerPC architecture are low power consumption (which makes it a great laptop chip, and allows for the lack of a fan) and AltiVec (which, again, is starved by the poor i/o system).

      For a much more detailed explanation of what I just said (including PPC vs. x86 SPEC comparisons), see Paul DeMone's excellent article.

      As for the best SPEC/$ platform, right now it's far and away the GHz PIII. In the near future, it will be the Thunderbird on the low end and the new high-clocked Alphas (finally) for FP stuff. In the medium term, Willamette just might post some amazing SPEC results, although it's too early to tell. In any case, it's clear that the PPC architecture will lose badly for at least the next 12 months or so.

      Besides, SPEC has a lot of things wrong with it as a benchmark, not least of which is the fact that even the SPEC "base" tests can be compiled based on optimizations from a previous test run (this is why Itanium will have good SPEC scores but terrible performance), and that it has no graphical component, and that it doesn't model typical code very well, unless you spend your time running scientific simulations all day.

      On the other hand, if there were a better cross-platform benchmark, it would also show that the PPC sucks. As a CPU for a personal computer, that is. As well it should: it's designed for embedded/signal-processing applications.

  6. Re:Multitasking by Penrif · · Score: 2

    I heard that they would multitask much better in OS X, yet... that is being delayed..

    Um, do you think BSD multitasks well? If the answer is 'yes' then, the answer to whether OS X will multitask well is also 'yes'.

    And no, other MacOS versions didn't multitask 'well'. They multitasked differently, using a model called cooperative multitasking. Instead of the OS dolling out CPU time, the currently running process gets all the stuff the system doesn't use and it's up to that process to tell the OS that it's done with what it wanted to do. In the hands of good programmers, I find this vastly superior to pre-emptive (OS controled) multitasking, the program the user is running responds very nicely. In the hands of Microsoft, this is hell. They don't like to give up CPU time at *all*.

  7. K7 needs chipset support .... by taniwha · · Score: 3
    Basicly most CPUs use a shared CPU bus to memory over which things like cache coherency is done - K7 (and DEC's Alpha) use a bus that's point-to point and rely on the memory controller to manage the cache coherency for them.

    I believe the problem is that AMD have yet to release a memory controller with 2 CPU ports so that we can do 2-way SMP - K7 is supposed to be already to work it's just waiting for the chipset.

    Sadly, because this memory controller chip will only be used for SMP systems and most systems are single CPU, this will mean that volumes on this chip will be low and it will likely cost more meaning dual motherboards will be more expensive than their Intel cousins :-(

  8. Re:And the rest of us should care...why? by Guano_Jim · · Score: 2
    A multiprocessing G4 by itself may not be any great shakes. But put one into a 3d animation pipeline with Maya and RenderMan on it and you've got a killer production machine. I'm not aware of a RenderMan port to the MacOS, but the political clout for it is certainly there. (Given the Steve Jobs/Pixar relationship, I mean.)

    Check out Maya for MacOS X.

    Looks to me like Macintosh is (finally) taking some bold steps into the high-end 3d/production market.

  9. Mac Attack! by stevarooski · · Score: 2

    Macs are great for some things. . .like running a system right out of the box, DV, and also for some kinds of developing (right, Carmack?)--gotta love/hate the closed system.

    I personally use both where I work, and while I'd rather use a PC for some things, a Mac remains my choice for video editing (Final Cut Pro, iMovie, and Premiere form a competent studio), streaming (Quicktime), and graphics (Adobe).

    Imagine a dual G4 for video editing and multimedia content creation! Now THAT would sell a few units--firewire built it as well.

    - S

    http://students.washington.edu/steve0/
    steve0@u.washington.edu

    --

    - - - - - - - -
    Don't worry, being eaten by a crocodile is just like going to sleep in a giant blender.
  10. Interesting by penguinboy · · Score: 2
    From the macosrumors article:



    <i>I wonder if, with MacOS X's dock, will it be possible to write applications to provide the same level of feedback as a Linux' docking app?</i><p>

    A Mac user wants Mac OS to have functionality as good as Linux? I thought it was supposed to be the other way around. How the times are changing..

    1. Re:Interesting by Darchmare · · Score: 2

      Have you thought that if these Mac people preferred the functionality of Linux, they would consider switching to it?

      I run LinuxPPC myself, and it's pretty good - but for one reason I find myself switching back to the MacOS regularly (and it's not just app support either).

      Unix/Linux have some damn good ideas, but a UI that doesn't fight you every step of the way isn't one of them (and yeah, I know there is no one UI out there).

      Docked apps are a good thing, though.

      - Jeff A. Campbell
      - VelociNews (http://www.velocinews.com)

      --

      - Jeff
  11. Hmph... good stuff. by Legolas-Greenleaf · · Score: 2
    I'm working in cross-platform programming, and our company chose to go with Apple (we each have an iBook and we have some iMacs). At first, I was skeptical about it. However, after some use (and putting LinuxPPC on it), I don't really want anything else (except for more mouse buttons). We've also got a PIII 500, and in comparison, the iBook is pretty speedy, considering it's a laptop (for only $2500 CDN, which is a deal). I wrote Apple off in the past, but if they can get MacOS X together (since the hardware is willing, but MacOS is still weak... i mean, whenever anything on the network goes for DHCP, or anything on Firewall reboots, the iMacs freezes for a few seconds and skips our playing CD ;^), I would be willing to abandon Intel entirely.
    Just how I see it. =^)
    (and this is my first post).

    i've looked at love from both sides now. from win and lose, and still somehow...

  12. Re:Multitasking by HeghmoH · · Score: 2

    I love my Mac, but the multitasking is shite these days.

    It was good for when they were still 8MHz 68000, and it's true that preemptive multitasking is, in theory, marginally slower. However, that difference in speed is insignificant these days; we're talking like a .001% difference in peak speed. Preemptive multitasking is poor when done by Microsoft, but don't blame the technique, blame the implementors. I find my Linux box to be much more responsive under heavy load than my Mac, although the UI makes me cry.

    I will be dancing in the streets when full preemptive multitasking appears in MacOS.

    --
    Mod down posts with a "Free Mac Mini/iPod" sig, they're spam!
  13. wait, it gets better... by imac.usr · · Score: 4

    Back in the day ('95-96 or so) there were dual-604e Macs and quad-604e Mac clones that ran Photoshop like nobody's bidness. The G4 was designed from the beginning (unlike the G3) to accept up to 4-way cache-coherency, IIRC. Four G4 cores on a single die were considered quite feasible when Motorola rolled out the design. Mmmmmm...four-way processing....[hrragglhh]

    Hmmm. Could Apple be the first company to introduce a MP laptop?
    (Or has somebody already done so?)

    --
    I use Macs for work, Linux for education, and Windows for cardplaying.
  14. Re:So what Mac? by Darchmare · · Score: 2

    ---
    (where do I get that ROM again...).
    ---

    You download it.

    Some time back, Apple moved the ROM out of hardware and into software.


    - Jeff A. Campbell
    - VelociNews (http://www.velocinews.com)

    --

    - Jeff
  15. oh, and the guy quoted on MOSR is wrong by imac.usr · · Score: 2
    I don't know which Apple official said they never introduce new hardware at WWDC, but obviously he wasn't around for last year's PowerBook launch. D'oh!

    --
    I use Macs for work, Linux for education, and Windows for cardplaying.
  16. Dual G4 Board from PowerLogix by goingware · · Score: 3
    PowerLogix, vendor of G3 and G4 upgrade boards that go into both 7500/8500 class PowerMacs, as well as G4 ZIF upgrades for the G3 macintoshes, is working on a dual G4 upgrade card:

    PowerLogix Announces First Dual G4 Upgrade Card

    The advantages of the Apple machine are that it will run with a faster system bus and faster memory than an 8500 that has been upgraded with one of these cards, which has to access main memory at the same speed as the conventional 604 does in the original machine.

    The advantage of the upgrade card is that you can run it with older system software - note that when Apple releases new machines, usually they require the latest system to run them so they're not a lot of help to developers wanting to maintain application compatibility with old systems.

    And what's really cool is that it's possible that the BeOS will run on the cards, and BeOS applications and the whole BeOS system are pervasively multithreaded and so should take great advantage of these cards.

    Note that the reason Be can't make the BeOS run on PowerMac G3 and G4 machines is not because of their processors but because Apple won't give Be the specs for the proprietary chips on the motherboards of the new machines. This is not a problem for an upgraded 8500 and in fact many people are currently using 8500's with G3 upgrade cards.

    You can be sure Linux will work on the cards because PowerLogix includes a copy of LinuxPPC with each card they ship.

    Sadly, a Be employee who bought a PowerLogix card for his Power Computing home machine found that it didn't work to run the BeOS - he's very happy with it on the MacOS. Many other G3 cards do work with the BeOS though.

    I have very enthusiastically urged PowerLogix to support the BeOS in their cards and offered to beta test for them on my 8500.

    They also have a USB/Firewire card that allows older mac owners to take advantage of all those spiffy peripherals and video editing software that's available for the new machines. I'm waiting until the dual G4 ships to purchase an upgrade but I'll be getting the rapidfire card so I can use an HP Deskjet USB printer on my mac.

    --
    -- Could you use my software consulting serv
    1. Re:Dual G4 Board from PowerLogix by Darchmare · · Score: 4

      ---
      Note that the reason Be can't make the BeOS run on PowerMac G3 and G4 machines is not because of their processors but because Apple won't give Be the specs for the proprietary chips on the motherboards of the new machines.
      ---

      Ah yes. Apple has been terrible about releasing the information used in order to port alternative operating systems on their hardware, eh?

      Darwin
      MkLinux
      LinuxPPC
      NetBSD
      Yellow Dog Linux
      Debian
      SuSE

      Think for yourself. No matter what Be's propaganda says, Apple has nothing to lose from Be porting their OS to their hardware, since they still gain sales either way. Perhaps they don't want to subsidize Be's development, but that's besides the point. Be's argument was questionable from the beginning, and is twice as questionable now that Apple has released Darwin.

      Don't get me wrong - I love BeOS, but the company behind it doesn't seem to have any trouble hiding reality from their userbase. They got seduced by Wintel and they know it.

      - Jeff A. Campbell
      - VelociNews (http://www.velocinews.com)

      --

      - Jeff
    2. Re:Dual G4 Board from PowerLogix by Darchmare · · Score: 2

      ---
      It's probably relevant that Apple killed the CHRP platform that was the basis of Be's entire business.
      ---

      Apple never killed CHRP. Nobody bit on CHRP (and as far as I know, few/none of the MacOS licensees were CHRP).

      ---
      Given that Apple made it clear that they didn't want to help Be, and Intel did (with info and money), it probably became a pretty easy choice...
      ---

      This may be a better way to put it. Apple didn't deny Be anything, they simply didn't subsidize their development. Be was lured by the siren song of Intel, and needed an excuse to move away from the PPC space.

      - Jeff A. Campbell
      - VelociNews (http://www.velocinews.com)

      --

      - Jeff
    3. Re:Dual G4 Board from PowerLogix by Darchmare · · Score: 2

      Actually, Apple had a Linux distribution they were pushing long before Darwin came out. Apple certainly helped there.

      Did they base the company on it? Nope, but I don't think you can say that support on those operating systems was hacked when Apple had at least 1-2 people working on it.

      - Jeff A. Campbell
      - VelociNews (http://www.velocinews.com)

      --

      - Jeff
    4. Re:Dual G4 Board from PowerLogix by Darchmare · · Score: 3

      ---
      The reason why Linux gets the necessary specs is because the commercial interest is tiny or non-existent, and Linux is not seen as a threat.
      ---

      Are you serious? Linux is a much bigger threat than BeOS. I'm not going to argue technological specs with you (as I'd say BeOS has lots of things over MacOS and Linux in that respect), but I'd say Linux has multiple times the amount of commercial support that the BeOS has. Linus Torvalds - not JLG - is on the cover of Money magazine this month. Who do you think has more commercial support?

      Last I checked, the major Linux companies haven't had to repurpose their OS efforts into the phantom 'Internet Appliance' market.

      ---
      Be however would stand to make profits, and make Mac OS look old fashioned, crufty and slow.
      ---

      Other than interface, Linux makes the current MacOS look pretty crufty in many ways (most notable are stability issues). Does Apple worry? Not really. To use Linux or BeOS on their hardware you have to buy their boxes AND their OS. Sure, they may lose somewhat in OS upgrade sales and 3rd parties may mis out, but really it's a no-brainer.

      I mean, think about it: If you can sell 10 machines running one OS or 12 machines with the other 2 moving to an alternative OS, wouldn't you? These aren't as good to Apple as those who stick with MacOS, but they're not _hurting_ in the slightest. When 90% of the world already runs something else other than MacOS already, it's not like they're keeping a big secret about those other operating systems anyhow.

      ---
      Secondly, Apple have never once challenged Be's oft-stated claim that the necessary specs have been witheld.
      ---

      Actually, they have.

      If you're expecting a press release, though, you're probably not going to get it (Apple doesn't respond to damn near anything, especially rumors - call their PR group, it's their policy).


      - Jeff A. Campbell
      - VelociNews (http://www.velocinews.com)

      --

      - Jeff
    5. Re:Dual G4 Board from PowerLogix by Darchmare · · Score: 2

      ---
      Power Computing demonstrated a CHRP based laptop shortly before Apple (Jobs) killed CHRP and took them over.
      ---

      First, you can't kill CHRP - it's a standard, not a company. What Apple did was refuse to license the MacOS. Power Computing could very easily have produced CHRP compliant BeOS powered machine.

      Of course, this completely ignores the market viability of such a move, but that's not Apple's problem. Apple pretty much killed Power Computing, but CHRP was and is an open standard that anyone could work with.

      ---
      Apple wanted to raise licensing fees, so it (Jobs) killed CHRP rather than lose that source of income.
      ---

      This is true, if you replace CHRP with MacOS licensing. Apple changed their mind on who they wanted to license their OS to. I didn't like it either (I was a big Power Computing fan, and own a PTP 225 myself) but in hindsight it's hard to argue with the turnaround Apple made soon after.

      But either way, Apple did not kill CHRP. Apple doesn't even 'own' CHRP. CHRP is still there, waiting for someone to use it (in fact, didn't Umax come out with a 'mostly' CHRP compliant box some time back?).

      ---
      How wrong you are: Be was already porting before Jobs killed CHRP. Even BeOS 5 runs on PPC, so they never really left PPC space.
      ---

      I never said Be did it because Apple stopped licensing the MacOS out. Be did it because X86 machines outnumber PowerPC machines 10 to 1, and Intel sold them on the idea. The MacOS licensing issue was just convenient timing, but in the end it didn't matter that much other than in the platform's viability as a whole (Be wouldn't have cared one way or the other - it's not like Power Computing was going to sell BeOS-only machines any time soon, and BeOS ran just fine on Apple's boxen).


      - Jeff A. Campbell
      - VelociNews (http://www.velocinews.com)

      --

      - Jeff
    6. Re:Dual G4 Board from PowerLogix by Darchmare · · Score: 2

      ---
      I would point out, though, that the version of Disk Setup that comes with MacOS 9 includes an option for recommended LinuxPPC setup
      ---

      Yep. Doesn't sound like the actions of A Great Evil Apple Conspiracy, does it? Sure, it probably took some guy a day to write support for that (if that), but it's still a nice token gesture. Apple's not going to subsidize the development of 3rd party operating systems - which is what I think Be expected - but they're not standing in anyone's way either.

      ---
      For the record, I do subscribe to the view that, whatever Apple did or didn't do, Be was looking for an excuse to drop PowerPC support once they had committed to x86.
      ---

      Right. If they had simply said that they were needing more cash and the PPC space wasn't providing, that would have made more sense. Now I wouldn't agree so much, but at the time the Mac market was pretty downbeat and nobody even knew if Apple would be making PPC-based machines in the future.

      Be understood the PR hit they'd take was nothing compared to the new people they'd get from the "other" platform, so pissing off their PPC developers was an acceptable casualty.

      - Jeff A. Campbell
      - VelociNews (http://www.velocinews.com)

      --

      - Jeff
  17. Benchmarks versus the "Feel Good Factor" by daviddennis · · Score: 3

    The best reason to get a Mac is if you prefer the look and feel of MacOS to Windows. Although MacOS X is going to be a radical change, I don't think the essential aesthetic rightness of the Mac is going to change as a result.

    Certainly I find it more pleasing to work in Photoshop or Painter or any other graphics program on the Mac than to work in Windows, even though the software is basically the same. It has to do with design quality, just like a Mercedes-Benz feels better than a Chevy. The Mercedes might have the exact same statistics - speed to 60mph, quarter mile, etc - but it still feels better because it's better designed and built.

    Curiously enough, my Mac has been a pretty cost-effective purchase, too. It's about three years and two generations old, and it still works well with current software. During the time I've owned it, Windows has gone from 95 to 98 to 2000. In the PC universe, I've owned three different systems, which in total cost more than the Mac.

    I'll probably replace this machine with one of the multiprocessor G4s (assuming the price isn't too ghastly, which admittedly might be a forlorn hope), and then it will go to serve another owner, or I'll use it to try Mac Linux or something. Either way, its useful lifetime is significantly longer than a PC.

    I'll replace it because I enjoy the MacOS, and because I think MacOS X is going to be far superior to any version of Windows. It will be a quality multiprocessing system, unburdened by the tiresome flaws of the Windows world, but it will still run mainstream software like Photoshop and (dare I say it?) Word.

    Sure, it's expensive - of course as I grow richer over the years, that's less and less important for me. And of course there's less software than for Windows, but who cares? You couldn't buy every piece of available software for either platform, anyway.

    Of course the reality of it all is that I will always own multiple computers and multiple platforms. Right now, I have an old SGI workstation (currently awaiting repairs), a Windows NT 4 system, a Linux notebook, and the Mac. I use the Linux notebook for work-related stuff, and don't take it home every night. My Mac waits patiently for me, smoothly and reliably telling me that there is mainstream life in the computing world after Microsoft.

    To me, that's something beyond price.

    D


    ----

  18. Old Mac apps on OS 10 by yerricde · · Score: 2

    SimpleText: What, Emacs isn't simple enough for you? Its interface (under graphical systems such as X and Windows) is a knockoff of Windows's, which in turn is a knockoff of Mac OS's.

    Kid Pix: Now that xfree runs on Darwin, GTK+/Glib, GNOME, and GIMP are coming very soon. GIMP is a near-Photoshop paint package (all it lacks is CMYK), yet kids love it.

    --
    Will I retire or break 10K?
  19. OS X Issues by Mr+Q.+Z.+Diablo · · Score: 2

    A dual-processor G4 is undoubtedly going to be a very fast machine. Sure, it's still vapourware but it indicates that multiprocessing can be achieved easily. This is surely the purpose of the demonstration.

    Some of the commentary alluded to the following and I'd like to correct some minor points:

    1. People are asserting that Linux would be better run on some other system.

    A1. True. Apple is about the integration of proprietary software with specifically constructed hardware. If you want an open system then look elsewhere.

    2. Assertions that Mac don't make good web/workgroup servers.

    A2. This was correct in the first instance until the release of MacOS X Server around a year ago. At the time of release, a Power Macintosh G3 running Apache was the fastest Apache server available. As concerns the notion of "workgroup servers", AppleShare IP is a very good solution for small workgroups. The AFP server available on OS X is quite up to the demands of serving to hundreds (even thousands) of clients and Samba runs on OS X, too.

    3. Macs don't multitask.

    A3. Not strictly true. There is no protected memory or pre-emptive multitasking in MacOS X but they're quite capable of the standard time-slicing methods used when running multiple applications/services. OS X is, essentially BSD Unix and the beta is due out in a matter of months. If a platform does the job for which it was intended (and the Mac may not be the choice for you) then its cost is both justifiable and supremely irrelevant.

    Mr Q. Z. D.

    --
    Systems admin, drinker, musician and all-round bastard. "Now we see the violence inherent in the sysadmin."
  20. Re:And the rest of us should care...why? by humanerror · · Score: 2

    I just don't get excited anymore about Apple's overdue attempts at joining the game so damn late. 3 or 4 years ago, this would have been great, but to anyone but the Mac-Jihad, it's a big yawner and deserves a big "who (else) cares?"

    The 9500/180MP was introduced August 5, 1996. Dual 180Mhz 604e; 6 PCI slots; officially supported up to 768Mb RAM, but was capable in reality of 1.5G of RAM; shipped with minimum 2G HD (not exactly small for the time); optional PC compatibility card.

    The 9600/200MP shipped February 17, 1997, with similar overall specs (4G minimum HD).

    Yes, you're right. Their attempt to join the game is long overdue.


    --
    --
    "We're an apex predator with the fecundity of a base level herbivore... We're a virus with shoes..." RazorJAK
  21. What are you talking about by Duck0987 · · Score: 2

    I've been apple loyal since i got my first IIgs back in like 87. Since then I've gone from a 7200 to a B&W g3. Mac did multi processing back in the day with the 604 series chips, and they have been doing it on the windows side since the pentium pro's I believe. And you know what, I never really saw a huge push at any time with the market going nuts because they could get a multi-processor computer. And you know why, because the average user, the joe that buys a computer really doesn't give a rats ass, or have a need for more than one processor. And asuming the average person is the one buying computers. I find it hard to believe that a duel g4 are going to jump the sales of macs like you claim.

    --Duck

  22. Re:Dock Apps (was Re:Interesting) by Darchmare · · Score: 2

    True enough. I completely forgot the fact that NeXTStep is where the dock more or less appeared.

    Linux has a lot of things, but most of its innovations come from its development paradigm rather than any one piece of technology...

    - Jeff A. Campbell
    - VelociNews (http://www.velocinews.com)

    --

    - Jeff
  23. Apple may release these sooner than January by Apotsy · · Score: 2

    People keep saying that until MacOS X comes out, a multiprocessing machine won't be useful, however Apple recently released an updated SDK for multiprocessing development on MacOS 9, so perhaps this machine will see the light of day before the release of MacOS X next year. An announcement could even come as soon as two months from now, at Macworld New York in July.

    1. Re:Apple may release these sooner than January by Pope · · Score: 2

      Anyone with a MP Mac (like the 9500MP or the DayStar Genesis) was advised to upgrade to OS 9 mainly because the MP libraries got a big overhaul.

      Pope

      Freedom is Slavery! Ignorance is Strength! Monopolies offer Choice!

      --
      It doesn't mean much now, it's built for the future.
  24. Twice the performance? by BoLean · · Score: 2

    "demonstrations ran roughly twice as fast on the dual-G4 system compared to the single-G4 Power Mac"

    I thought one of the basic facts about SMP is that parallel processors only give 60-70% or their total performance. So in this case the best that could be hoped for is %170 performance of a single CPU. Any ideas? Is this just another gimmick or abreviated benchmarking?

    1. Re:Twice the performance? by maggard · · Score: 2
      "... twice as fast." to a reporter sitting in a chair watching a trade-show presentation - we're not talking about benchmarks here.

      Two processors doesn't mean 2x speed. However Apple has moved to a microkernel design in the past year (hey - nobody noticed!) and Photoshop was redesigned for multi-processing years ago when Daystar developed the technology for Apple.

      Thus it could well be approximately twice as fast for some operations in some applications.

      Now, since there are only a very few applications that even begin to warm up a G4 this isn't that big a deal to the general public. However for those who are running cycle-eaters like Photoshop it is great to see this technology back on Apple's roadmap.

      -- Michael

      --
      I don't read ACs: If a post isn't worth so much as a nom de plume to its author then I wont bother either.
  25. All apps in one VM? by yerricde · · Score: 2

    [all OS 9 apps run in one virtual machine and] if one "Classic" app crashes, well, the rest can go with them

    This is exactly how Windows 95 and NT run 3.1 apps, or how Wine runs Windows apps. Anything new about opening a VM for maximum compatibility?

    --
    Will I retire or break 10K?
  26. GIMP clumsy? by yerricde · · Score: 2

    To make GIMP easier to use, right-click a document window and left-click the dotted line at the top of the main menu. You now have a reasonably standard menubar-in-a-box.

    --
    Will I retire or break 10K?
  27. Once again Apple shows up the computer industry! by 11390036 · · Score: 2

    Well, it seems to me that the performance gain of a multi-processor system is greater with a mac than an x86 setup.

    What a suprise!



  28. BeOS 5 Pro runs on a PPC by goingware · · Score: 2
    BeOS 5 Professional Edition runs on a PowerPC.

    Only the free version doesn't run on a PowerPC.

    Be also offers PowerPC support for their BeIA internet appliance platform, which is rather intelligent considering that a powerpc is a much better choice for an embedded platform like an internet appliance (consumes less power).

    See the bottom of BeIA Introduction at the bottom under hardware requirements where is says:

    Processors: x86 (Pentium class or better), PowerPC (all)

    --
    -- Could you use my software consulting serv
  29. Emacs menubar by yerricde · · Score: 2

    emacs doesn't count because it has a "buffers" model, not a "documents" model.

    They're equivalent models. Rename the "buffers" menu to "documents". For Emacs to truly fit in, however, its menubar will need to be reordered:

    Eunuchs/NT Emacs: Buffers Files Tools Edit Search Help
    Mac Emacs: File Edit Search Tools Documents Help

    --
    Will I retire or break 10K?
  30. Re:Sure about the BeOS thing? by Darchmare · · Score: 2

    Look harder. Everything Be needed is contained within the code for Darwin. Sure, they can't actually use the code, but they could certainly find out whatever boot parameters or 'secret stuff' they needed. Obviously the LinuxPPC people (as well as those in the lengthy list I mentioned) aren't having any trouble. In fact, they've received direct assistance from Apple as well.

    Be needed an excuse to abandon their PPC userbase, and Apple was convenient. If they had simply said "Sorry, the volume in the Mac market just isn't enough" I wouldn't have blamed them. The foisting of blame on a 3rd party, though, is about as lame as you can get.

    Apple obviously has no intent on blocking Be, and why should they? They'd sell boxes either way, including a copy of the MacOS. Much better than having Be leave their platform.

    It's like pinning a murder on someone who has absolutely no motive, and basing your opinion on the words of someone who suddenly got a major cash infusion from a 3rd party (Intel). Apple had no reason to kill BeOS/PPC.


    - Jeff A. Campbell
    - VelociNews (http://www.velocinews.com)

    --

    - Jeff