First Psystar Mac Clones Ship 466
An anonymous reader writes "According to Gizmodo, Psystar has begun shipping its Macintosh clones, thus proving that the company is not a hoax. Initial impressions seem to be positive, though Software Update does not work."
Sure, they shipped... (Score:2, Insightful)
Re: (Score:3, Funny)
Re:Sure, they shipped... (Score:5, Funny)
Re:Sure, they shipped... (Score:4, Funny)
Oh wait...
Re: (Score:3, Insightful)
most people interested in this dont want a cheap mac, they want an expandable mac that isnt complete overkill (like he Mac Pro). The number of people who'd install extra hard drives or replace their graphics card easily outnumber the number of people who can actually make use of 8 cores and dual sockets. the Mac Pro may be fan-fucking-tastic value for what it is, but its baseline configuration is ridiculously over
Re:Sure, they shipped... (Score:4, Insightful)
lets just say that the cheapest configured mac pro with edu discount is $2k (it's more, but lets stick with round numbers), and lets say that the psystar clone is $500 (it's less, but again round numbers). I can handle paying an apple premium, sometimes as much as 30-40% extra for the exact same components because it's from apple, but 300% extra is pushing it a little far. what's that I hear? the specs arent comparable? that's exactly my point. dont want or need a mac pro, it's complete overkill when I just want a graphics card and an extra internal drive. I'd be completely happy with an expandable mini
Unless the gizmod article or the posting is a hoax (Score:2)
Re: (Score:3, Insightful)
Re: (Score:2, Insightful)
However, for consumers, it is a very dangerous approach when dealing with questionable businesses. Caveat emptor and all that.
Re:Unless the gizmod article or the posting is a h (Score:4, Funny)
I see a box with a Mac mini inside! (Score:2)
Here are the instructions to make your own.
Acquire Mac Mini, PC case, screwdriver. You might need some extension cables too.
Open case. Put Mac Mini inside.
Close case.
Profit!! Err, I mean loss!
Re: (Score:3, Funny)
Re: (Score:3, Insightful)
Re: (Score:3, Interesting)
I still find it amusing that so many people think that if you put OSX on a OC you'll get the same experience as you do on Mac hardware... You folks know that if Mac ran on anything it would be just a buggy and fucked up as windows right? The only reason it runs smoothly now is because Apple controls the hardware.
That is just a hypothesis (granted it's a very plausible and reasonable one). OSX already does run on a variety of hardware -- just not as big a variety as Windows. While you probably can't run OSX on just any PC, you could probably spec a system out for it specifically (as Psystar has apparently done). The most interesting thing about this company might be that it is a chance to see the hypothesis tested. Linux users are already quite willing to accept hardware limitations to avoid OS instability.
Operation Unsuccessful (Score:5, Insightful)
Re: (Score:3, Interesting)
Download the full update from the Apple developer site, do some major moving and backup magic with some of the kext's (apples loadable modules), and run the install. Some people have scripts out that will resolve the issue, but its a doable manual process.
The major issue with the updates, is that some of the modifications (even when using EFI installed OSX with a stock kernel) to the modules that Apple does, breaks the har
Re: (Score:2)
Download the full update from the Apple developer site, do some major moving and backup magic with some of the kext's (apples loadable modules), and run the install. Some people have scripts out that will resolve the issue, but its a doable manual process.
This is stupid. There are very few things that require continual modification of OS X after each update. The one big one is if your CPU is not supported.
Psystar as far as I know ships a machine with a supported CPU and a supported chipset. So why the hell can't they make it update proof?
I keep a Pentium 4 box around for research purposes. It is almost upgradeable without thinking about it. The only issue it ever has is that Apple's kernel source has checks for an Intel CPU with family 6. The Penti
Re: (Score:2)
Re:Operation Unsuccessful (Score:5, Informative)
What "EFI layer"? Netkas's PC EFI is a marketing name that Netkas put on his branch of my branch of the Apple-supplied Darwin/x86 bootloader.
The only thing EFI about it is that he supplies some of the runtime services functions. I do this as well except in my version everything returns EFI_NOT_SUPPORTED. It is enough that the EFI system and runtime services tables exist and have halfway-valid information and that where a function pointer is expected that it point to some function. The implementation can be as simple as mov $EFI_NOT_SUPPORTED, %eax; ret.
Nothing bad happens when the runtime services functions do not exist. Even if the one for rebooting the system instead returns EFI_NOT_SUPPORTED the system will still reboot because Apple still has legacy code to do this without EFI runtime services.
The point of my booter is to allow Apple to focus on their own systems and to not maintain legacy code yet still continue to provide open source code that will work unmodified on non-Apple machines. The idea is that anyone can take the code they do release as Darwin and boot it unmodified on most PCs. As a side-effect anyone can also take the Apple-compiled binaries from OS X and do the same. That is, after all, the point of it.
Of course, what I provide does not enable you to run OS X. You still have to provide a decryption engine and decryption keys and I don't help with that. Nor does Netkas PC EFI since the decryption engine, as explained by Amit Singh, is in the "Dont Steal Mac OS X.kext"
None of this has anything to do with EFI. Once the kernel is going, EFI is gone except for two tables and a handful of runtime services functions.
Re:Operation Unsuccessful (Score:4, Informative)
What you don't realize is that you don't have to modify kexts on disk to modify their behavior at runtime.
The way Apple has structured the IOKit you can do everything that needs to be done purely by adding kernel extensions. It is never actually necessary to remove or modify kernel extensions but the hackintosh scene hasn't figured this out yet.
I plan to update my website in due time with the specifics of how exactly you accomplish this. Aside from the issue of the kernel simply not being able to boot unmodified on a P4 I have an otherwise completely update-proof test box with hardware that is not supported out of the box by OS X. It's no different from any other OS really. Add drivers for hardware support. Add drivers that support hardware better than the OS-supplied drivers and keep the OS-supplied drivers from loading when they would cause problems.
For example, consider a typical Windows installation. Microsoft provides a driver for basic ATA support. Once you install a more appropriate driver, it matches the hardware and drives it in lieu of the MS-supplied driver. The biggest difference is that on Windows NT (and derivatives) the plug'n'play aspect is done once when installing the driver. The system records which driver needs to load for a given piece of hardware. In OS X the plug'n'play happens upon each boot. The kernel builds up the IOCatalogue with information about available drivers and then passively matches the hardware using that information. That usually reduces it down to 1 or 2 potentials, usually just one. Then active matching occurs where each driver has a chance to probe the hardware and actively test whether or not it is able to drive it.
All of this is fully documented by Apple. Once you read the effing manual you realize that the current hackintosh methods are insanely stupid.
As an aside, this is why Windows fails to boot on a different machine to that which it was installed on. The Windows bootloader will not load drivers except those declared in the configuration control set registry hive. An OS X installation, if actually done properly, is able to boot on anything. But so far no one has really done an OS X installation properly which is why we see all these stupid machine-specific installation options in hackintosh spins.
As for the ACPI tables, I'm theorizing on that now. I think the clear answer is to write an open ACPI platform expert as such an animal is needed for Darwin to really be considered an open platform. Doing a fully open ACPI PE kext means that various ACPI hacks employed in Linux can be ported to Darwin. Not having a fully open ACPI PE means that it's somewhat questionable as to whether Darwin can be used freely, depending mostly on whether you consider the Apple-supplied kexts to be parts of OS X or parts of Darwin.
Re: (Score:2)
That is a very bug issue. Not only that but if something doesn't work, who are you going to turn to. Psystar will probably blame Apple and Apple will say you have an unsupported system. Sure, you save $200 (the price difference for a Mac mini), but are the headaches you are getting for saving the
Re: (Score:2)
Sure, you save $200 (the price difference for a Mac mini), but are the headaches you are getting for saving the money worth it?
If the Mini was in a tower case with expansion slots like this thing had, I'd gladly pay extra (though I'm not buying a Pystar either - I made my own). As it is though, the Mac Mini is a laptop with no keyboard or screen. Non-officialness aside, I'd consider the Pystar a better system if it has Apple's blessing. I'd actually be willing to pay more for it than a Mini.
Re: (Score:2)
Re:Operation Unsuccessful (Score:4, Informative)
The sad truth is that if you want a Macintosh with upgradeable graphics hardware, it's going to cost your $2200+. I can upgrade the graphics card on virtually any $199 Wal-mart PC. There's a problem here.
Me personally, I've put almost as much money into my homebrew Mac as a Mac Mini would have cost. I have a slightly bigger hard drive (160gb) and more ram than the base (2gb), but those are both options that could be accomodated. The difference is that my system is running an 8600GTS video card. You can't get that out of a Mac Mini at all.
Re: (Score:2)
As for video upgrades, even on Macs that have sep. video cards, I've never found the need to upgrade after the fact. I usually by the video card with the most amount of memory available at the time and it serves me for the life of the machine.
Integrating the video chip onto the motherboard is going to reduce costs and space requirements- so creating a separate slot for a video card is
Re: (Score:3, Interesting)
apple does not make a HEAD LESS mid-range system.
Re: (Score:2)
Re:Operation Unsuccessful (Score:4, Insightful)
There are some of us (music and video producers, artists, etc.) who even occasionally work on computers that are not connected to the Internets.
Re: (Score:3, Funny)
Meh (Score:2, Interesting)
Re:Meh (Score:5, Insightful)
Plop the mini's hardware into a mini-tower case, and tack on 1 PCI-E x16 slot, 1 PCI-E x1 slot, and 1 regular PCI slot, and then we'd have a machine worthy of my purchase. Until that point I'll keep on using my hacked up generic "mac" and my old PowerMac G4.
Re: (Score:2)
Re: (Score:2)
Re: (Score:2)
Re: (Score:3, Insightful)
I hear this sentiment a lot.. but what does it really mean? Are there people who aren't using computers as tools to accomplish a task? Is hacking an OS to work on X piece of hardware NOT an app
Re: (Score:2)
Re: (Score:2)
Re:Meh (Score:4, Insightful)
What would I use expandibility for? (Score:2)
What I would want to put in it would depend on what it starts with. Since I don't expect them to build my ideal machine, I just want to be able to make something that's got what I need without having to pay 3 times as much as I can afford for a bunch of stuff I don't need.
If it had intel integrated video, I'd definitely need a video card.
I need at least one 3.5" drive bay.
I'd want two 3.5" drive bays, so I
Re:What would I use expandability for? (Score:4, Insightful)
First, I distinguished between "need" and "want". The desires you chose to ridicule were not in the "needs". You didn't ask what our "needs" were, you asked what we would do with expandability. If you asked "what do you need expandability for" you'd get a different answer.
So once you eliminate that straw man, what I need is an adequate GPU, an adequate hard drive, and no integrated display... and a consumer price. Maybe 40% over what Psystar is asking for their box? That would give Apple their usual markup.
The argument that "most consumers don't need" those features is a bit circular, since they're not available from Apple and haven't been available from Apple at a consumer price since Steve Jobs took over. On the other hand, they *are* available from Wintel box shippers, and most consumers are still buying Wintel boxes.
Don't assume you know all the reasons why they do that. I know I'm regularly surprised by people's answers to why they still use Windows after they express desire for my desktop.
And do consider that you'll never find out if you just ask Mac users, because that's a sample that's pre-selected to only include people for whom the current line of Macs is at least minimally acceptable.
Re:Meh (Score:5, Interesting)
Plop the mini's hardware into a mini-tower case, and tack on 1 PCI-E x16 slot, 1 PCI-E x1 slot, and 1 regular PCI slot, and then we'd have a machine worthy of my purchase. Until that point I'll keep on using my hacked up generic "mac" and my old PowerMac G4.
What they need is a Mac Pro Mini (or Mini Mac Pro). Basically, half a Mac Pro:
* Single dual or quad-core CPU
* 4 DIMM slots for 8G-16G RAM (2G standard)
* PCIe x16 slot (with room for dual-width cards)
* PCIe x4 slot
* PCIe x1 slot
* Two internal 3.5" bays, w/RAID1 or RAID0 on the chipset.
* One internal 5.25" bay (Dual layer DVDRW standard)
* Priced from about US$1100.
Of course, Apple will never do this because it would absolutely slaughter higher-margin Mac Pro sales.
Re:Meh (Score:4, Informative)
Re: (Score:2)
Anyone can do it themself with whatever (almost) PC they already have and a downloaded DVD from TPB or whatever. These people are just trying to make money of the work by both people over at Apple and the people who made it possible.
And it sounds like fuck, I'd pay $200 to get rid of that noise alone.
So.. shall the bets begine (Score:2)
On the other hand, the EFI bootloader they are using from netkas, thats another story...
I actually have OSX running on my Dell Vostro 1500, and while everything in the base model works perfectly with OSX, my customized model, the intel wireless card does not work.. *sigh*
Re: (Score:2)
I fully expect there to be something in future OSX patches that will be incompatible with these computers.
Re: (Score:2)
Re: (Score:2)
Re: (Score:2, Interesting)
Re: (Score:2)
Re:So.. shall the bets begine (Score:5, Informative)
Re: (Score:3, Insightful)
Re: (Score:2)
Apple-labeled peripherals (Score:2)
Re: (Score:2)
Apple legal (Score:4, Funny)
Re: (Score:2)
Re: (Score:2)
Not that it would matter, but because it would be cute
Software Update does not work. (Score:2)
No software update means no fixes for any security vulnerabilities that turn up. Lovely.
Re:Software Update does not work. (Score:5, Insightful)
Annoying over-used buzzwords aside, my guess is that the update situation on these will be just like other hackintosh setups, where you can update, but you have to obtain a hacked update installer, or go through a very manual process to do it.
My original hackintosh setup for example was running 10.4.8 and couldn't use software updates, but I was able to move it over to 10.4.10 eventually (though I'm now running on 10.5.1).
Loud! (Score:4, Insightful)
Step One Complete! (Score:2, Insightful)
Plus, they have another hurdle - Apple C&D letters should be rolling in by now, if they haven't already.
It should be an interesting court battle. Yet another challenge for intellectual property in relation to software. Lets hope this one goes the way be all want.
Re: (Score:2)
ps - the camera work in that video was just terrible! why follow the video cable for a quarter of the clip? wtf. yes we know the video cable attaches to a monitor. I trust them not to just hid a MacPro under the desk (pretty obvious with the PC bios boot up)
Mac Mini (Score:4, Funny)
Am I the only one who thinks it would be hilarious if every model they shipped out contained a faulty motherboard, with signals rerouted to hide the fact everything is running from a Mac Mini stashed in the "powersupply"?
That would be great.
I've got to say, for a scam they are really committed.
At first, I thought this was all interesting and going to have an interesting legal battle attached to it. Then it was clear this was a scam and there would be no fun to watch. Now I'm starting to wonder if I'll get to see the legal fight after all. Maybe it's not a scam?
Re: (Score:2)
For $400 bucks, that would be great! ; )
Re: (Score:2)
Well, lessee... Take 10,000 paid orders, ship 100 units, skip town. Sure, those 100 units might cost $1500 to build, but that's still a heck of a profit margin.
Re:Mac Mini (Score:4, Insightful)
Movie doesn't show anything (Score:2, Insightful)
He films the normal PC in the back with the cable and so on, everything is fine...
When the turns to the front of the screen someone takes out the VGA cable, puts it in a display switcher or something, while the monitor is still turned off, and connects a Mac laptop to that display switch.
Then the dude turns on the PC, starts recording the screen, waits until the windows starts showing and the other guy switches the signal to the laptop. This w
Re: (Score:2)
The motherboard is also a Gigabyte based on the "setup-q-flash" message shown on the screen... i don't know if gigabyte would agree to make a Mac clone...
Gigabyte wouldn't be agreeing to make a Mac clone anymore than ECS agreed to make my own homebrew mac. The reality is that with a little tweaking MacOS will run on just about about anything with a modern Intel chipset. With a little more serious tweaking it will run on AMD-based machines. Plenty of people have been doing this for years now. All this company did was pick out some generic hardware off the shelf that works with Mac OS X, and then install the hacked copy (note that while you do RECEIVE a v
Re: (Score:2, Informative)
That movie can be extremely easy to create, it's probably a fake. He films the normal PC in the back with the cable and so on, everything is fine... When the turns to the front of the screen someone takes out the VGA cable, puts it in a display switcher or something, while the monitor is still turned off, and connects a Mac laptop to that display switch. Then the dude turns on the PC, starts recording the screen, waits until the windows starts showing and the other guy switches the signal to the laptop. This was his hand with the camera remains in the same position and it's easy to cut out the transition.. especially since the eyes of the people are focused on the flash where the mac screen is shown. So the movie for me it says nothing, it can be so easily faked i could do it myself if i had a fake. The motherboard is also a Gigabyte based on the "setup-q-flash" message shown on the screen... i don't know if gigabyte would agree to make a Mac clone... Just my two cents
Installing OS X on PCs is old news. Certain Gigabyte motherboards come with hardware that OS X has driver pre-installed for, and everything else is community supported.
Here's a "fake" forum if you are lookiung for more info: http://www.insanelymac.com/ [insanelymac.com]
Re: (Score:2)
That movie can be extremely easy to create, it's probably a fake.
Nowhere near as easy as just installing 10.5 on a suitable PC.
Seriously, why would anyone think the video is a fake ? It's not difficult to install 10.5 on EFI-capable PC hardware (which is both common and cheap).
You Don't Actually Need Software Update (Score:5, Insightful)
That way if I need to reinstall, which does happen now and then, I don't need to download again.
There's no serial number check on manual downloads, but I expect that soon we'll be seeing the Apple version of Windows Genuine Advantage.
Re: (Score:2)
There's no serial number check on manual downloads, but I expect that soon we'll be seeing the Apple version of Windows Genuine Advantage.
I don't think that will happen. I think Apple will shut down clone makers, and leave the hackers to their own devices. Apple already has a "WGA" style protection built-in to their hardware. I'd be surprised if going the Windows route protected them any more than the hardware solution that they have in place. Either system is not sufficient to protect against a determined individual.
Re: (Score:2, Informative)
Well I'll be damned - I never noticed that (Score:2)
Re: (Score:3, Informative)
I don't think the problem is just that Apple's "Software Update" doesn't work. More likely the problem is that you can't update your OS without causing it to stop functioning. Psystar hacked the OS to run on generic hardware. If you install an update that overwrites part of that hack, your machine doesn't work anymore.
Re:You Don't Actually Need Software Update (Score:4, Insightful)
If there is ever an Apple version of Windows Genuine Advantage I'll quit using OS X, it will be erased from my drive and I'll never develop software for the Mac again.
My computer, once I purchase it, should always function as long as there is not a hardware issue. I shouldn't have to prove I'm not stealing from the company, I shouldn't need an internet connection to unlock software, I _should_ be able to replace hardware components of the computer and I _should_ be able to transfer the software to another computer.
End of story. I use a Mac because I think Apple understands that these are rights and they improve usability.
Re: (Score:3, Interesting)
Of course the Mac Pirates will just find a way around that as the Windows Pirates did with XP and Vista. So maybe Apple wouldn't bother and just allow OEM installs for Non-Apple branded hardware?
WHY doesn't Software Update work? (Score:2)
If, in fact, it replaces parts of Leopard with custom-tailored substitutes for this specific hardware, then I don't think it's accurate to say it's really running
Re: (Score:2)
Why does this interfere with Software Update, but not with installing from an installation DVD? How does it boot from the installation DVD?
To say that this is capable of running "unmodified OS X Leopard kernels" is either logic-choppping with the word "kernel," or it's like saying a NASCAR vehicle is an "unmodified" retail car...
Re: (Score:2)
This is complete bullshit. The software update tool does check the model name and internally (e.g. without sending data to Apple) displays additional model-specific updates.
For instance, if you have an iMac with a particular firmware version then Software Update will display the firmware update for it. If you don't have that particular model of iMac then it will hide it from you. But the program still knows it exists because it grabs the full list of updates from Apple.
Why no cese and desist from Apple? (Score:2)
Re:Why no cease and desist from Apple? (Score:4, Insightful)
On what grounds? Psystar is installing a retail boxed product of MacOS X on Psystar hardware. There's no copyright violation, so none of the extreme remedies in the Copyright Act apply. Any legal restriction Apple seeks to impose that their software can only be run on their hardware runs afoul of "tying" restrictions in antitrust law. Apple would have to win an antitrust case before they could get a cease and desist order.
What we'll probably see is heavily restrictive DRM in future Macs to prevent this. Or an end to retail sales of MacOS.
Re:Why no cese and desist from Apple? (Score:5, Interesting)
I have to wonder why they have not tried to get a preliminary injunction to halt shipment pending legal matters. They probably could get that fairly easily.
They're probably weighing it against the possibility of having their "you can only install the copy of OS X you bought onto our list of blessed hardware" clause in the OS X EULA ruled invalid.
Re: (Score:2)
That's how they handled the ThinkSecret guy. Apple would have no problem suing a (real) corporation, but they're afraid to look like the RIAA if they use the courts to go after i
Re: (Score:2)
the fans are so loud! (Score:2)
No Updates (Score:2)
If they choose to allow these hackintoshes to update, th
How long until Apple Sues? (Score:2)
Uh oh (Score:4, Funny)
I converted my gaming machine into one (Score:3, Interesting)
It is fast fast fast fast fast.
Only few things I have to put up with.
1. You have to turn on AHCI in the BIOS or you will kernel panic randomly. This makes the machine sit for about 20-30 seconds probing SATA ports and whatnot until it finally launches into the OS bootloader. This is a bios/board problem, not an OS X problem. Annoying at worst.
2. Machine will sleep (using kernel patch) but upon wake, I have to manually assign an IP then go back to DHCP to get the machine to go back online.
3. If I boot into windows and want to go back to Mac OS, I have to turn off the computer, unplug it and wait 15 seconds before plugging in and starting back up. If I don't, after the white screen with the apple, the graphics card will shut down and I can't see. Must be some flag in the card or board that windows sets that the drivers I'm using isn't resetting.
4. Switching resolution can cause a blue screen where you can't see anything. Rebooting will take care of it.
5. Some 3D apps won't work. Second Life is one example.
First thing's first (Score:5, Interesting)
I've got to wonder why Software Update isn't working on them, even though they've admitted to using the EFI loader hack. In my experience, only OS updates (ie 10.5.1->10.5.2) are potentially dangerous anymore, and I managed to update from 10.5.1 to 10.5.2 without issue on an oldish Shuttle AMD barebones box here after patching EFI/Vanilla kernel.
It's almost trivial to get a vanilla kernel up & running on an Intel hackintosh now, only slightly more difficult on an AMD box -- there are even several quite good pre-packaged installers now with 10.5.2 that do everything for you if you don't like to get your hands dirty.
All that said, it's going to be funny when all of the people duped into buying these can't update to 10.5.4 or whatever and end up with a bricked box. At least if you do it yourself, you develop the skillset to boot into single user mode, disable kexts, remove caches etc.
Maintaining a functioning, stable, up-to-date Hackintosh (with Quartz Extreme running properly etc) is a lot like keeping a '60s Volkswagen running. Not particularly difficult, but you build up the skills over time and it takes quite a bit of patience. I think there are going to be a lot of pissed off people once they realize what they've bought into.
What is Psystar really selling? (Score:4, Interesting)
Does Psystar's installation of OSX violate Apple's EULA? Is Apple's EULA even legal? I have no idea, but Psystar is not the company who is going to spend millions slugging it out in court trying to get Apple's EULA declared invalid. This is a Fly-By-Night operation and Psystar's behaviour so far -- from the constantly changing addresses to the questionable background of its owners to the fact that they have built their entire business model on selling freely available OSX hacks -- tells me exactly what is going to happen next:
When Apple Apple sues -- and make no mistake, they will sue -- Psystar will fold and disappear. That's been the Psystar game plan all along. Take as many orders and collect as much money as possible before they get shut down. And if you happen to be one of the people waiting for delivery when Apple's lawyers attack, well, it sucks to be you.
Thanx for the cheap, easy threadjack (Score:5, Insightful)
Naysayers (Score:3, Insightful)
This whole episode is a reminder of Hanson's Law: Never attribute to malice that which can be explained by stupidity!
price not $399 (Score:3, Insightful)
Shipping is another $50 (macs ship free).
so the total price is $609 without wifi or blue tooth. compared to $599 for the mac. The cpu is a bit
Re: (Score:2)
Re: (Score:2)
Re: (Score:3, Funny)
Re: (Score:3, Funny)
Re:It is a fraud (Score:5, Insightful)
As to "profiting off someone else's work", EVERYBODY does that to some extent. ISP's are "profiting" off of Google, Ebay, etc because people buy internet access because of those items. Gas stations are profiting off of car manufaturers because they supply fuel for something that someone else made. Paper companies profit from fax/copier manufacturers because they generate a need for their product.
The bottom line is that Apple sells an operating system. They have a legally questionable clause in there stating that when you buy it you can't install it except on computers that they deem appropriate (namely, ones they made themselves). If that clause is successfully shot down, things will likely return to a semblance of fairness: people who purchase software from a company can install it wherever and on whatever they want to.
I mean seriously: if Microsoft came out with EULA stipulations tomorrow that stated that regardless of how well it worked, you couldn't install MS Office (even a legally purchased copy) on a WINE-equipped Linux machine, Slashdot would shit a jagged brick coated in hot sauce. Apple does the same though and it's reasonable behavior.