Monday, August 04, 2008

 

Virtualizing Mac OS X Leopard Client

VMWare Fusion 2.0 beta2 supports virtualizing Mac OS X Server as a guest OS. If you try to install a Leopard Client guest, you get an error
The guest operating system is not Mac OS X Server.
However, if you create an ISO/CDR image from your Leopard install DVD, mount it then do
touch "/Volumes/Mac OS X Install DVD/System/Library/CoreServices/ServerVersion.plist"
then unmount it, you can now use that image to install Leopard Client into VMWare with no complaints. After you install, reboot VMWare from the install DVD ISO again, run Terminal and
touch "/Volumes/Macintosh HD/System/Library/CoreServices/ServerVersion.plist"
then reboot from the HD. This probably violates your license agreement so don't do it, I certainly wouldn't.

Update: You can automate the deletion and creation of the ServerVersion.plist file using a LaunchDaemon. Put the following xml in a new file /Library/LaunchDaemons/com.rectalogic.vmware.plist

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
    "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Label</key>
    <string>com.rectalogic.vmware</string>
    <key>ProgramArguments</key>
    <array>
            <string>/bin/bash</string>
            <string>-c</string>
            <string>/bin/rm -f /System/Library/CoreServices/ServerVersion.plist; trap "/usr/bin/touch /System/Library/CoreServices/ServerVersion.plist; exit" SIGINT SIGTERM SIGHUP; sleep 999999 &amp; wait $!</string>
    </array>
    <key>KeepAlive</key>
    <true/>
    <key>RunAtLoad</key>
    <true/>
</dict>
</plist>
Then run
sudo launchctl load /Library/LaunchDaemons/com.rectalogic.vmware.plist
Now when you login ServerVersion.plist will be deleted, when you shutdown it will be recreated ready for the next reboot.

Alternative approach: An alternative approach discussed in the comments is to hack VMWare to disable the check for server.

sudo bash
cd "/Library/Application Support/VMware Fusion/isoimages"
mkdir original
mv darwin.iso tools-key.pub *.sig original
perl -n -p -e 's/ServerVersion.plist/SystemVersion.plist/g' > darwin.iso
openssl genrsa -out tools-priv.pem 2048
openssl rsa -in tools-priv.pem -pubout -out tools-key.pub
openssl dgst -sha1 -sign tools-priv.pem > darwin.iso.sig
for A in *.iso ; do openssl dgst -sha1 -sign tools-priv.pem < $A > $A.sig ; done
exit
VMWare Fusion 3.0: Fusion 3.0 uses EFI instead of BIOS by default. After creating a new VM and before booting it from the install DVD/ISO, edit the *.vmx file and remove/comment out the firmware="efi" line. VMWare will then use the hacked boot image from darwin.iso.

Comments:
Software Updates are a bit tedious with this hack. You have to remove ServerVersion.plist before checking for updates, or it won't find any. Then after you install them when you reboot, you need to leave it removed or the updates won't install. So then when you reboot the VM will fail to start since it is now Client again. So you have to mount the disk or boot off the hacked DVD ISO and use Terminal to restore ServerVersion.plist and then you can reboot off the HD again.
 
ServerVersion.plist is identical to SystemServer.plist with the exception of the product name, which is Mac OS X Server instead of Mac OS X
 
Couldn't you just symbolically link ServerVersion.plist SystemVersion.plist ? On my 10.5.4 client I don't see a SystemServer.plist in /System/Library/CoreServices
 
Does this work for Tiger? I would *love* to virtualize that for application / web browser testing...
 
One solution for the SystemServer.plist issue would be a script or LaunchDaemon that deletes it on boot, and creates it when killed. Unfortunately, I don't see any way to capture the quit signal in a bash script without resorting to subscripts, which just wouldn't work well with launchd. I'll keep examining this, and whip up a little C program if necessary.
 
I updated the post with a LaunchDaemon that automatically removes the ServerVersion.plist on bootup and recreates it on shutdown.
 
I'm using disk utility to create a dmg, then running the 'touch' command, then converting to iso - still won't boot the installer image.... what am I doing wrong?

Using beta2 and a retail disc to create the image....
 
I had problems converting a DMG to an ISO with Disk Utility. Try creating an ISO directly from the DVD instead of a DMG.

If it's not booting with the "The guest operating system is not Mac OS X Server" error, then you probably didn't create the ServerVersion.plist in the correct place in the ISO.
 
For those that care, this hack lets you install in Parallels Server also.
 
>> I'm using disk utility to create a dmg, then running the 'touch' command, then converting to iso - still won't boot the installer image.... what am I doing wrong?

Be sure you select the disk itself when creating the image, not the Mac OSX installer volume. If you don't select the disk you don't get the boot sectors off the DVD
 
Actually, all this is far too complicated. The check for Server vs. Client is in darwin.iso, which can be modified.

Unfortunately, the ISO images are signed. Well, kind of. The public key for verifying the signatures is located in the very same directory. Nice.

cd "/Library/Application Support/VMware Fusion/isoimages"
mkdir original
mv *.sig original
mv darwin.iso original
sed "s/Server.plist/System.plist/g" < original/darwin.iso > darwin.iso
openssl genrsa -out tools-priv.pem 2048
openssl rsa -in tools-priv.pem -pubout -pubout -out tools-key.pub
openssl dgst -sha1 -sign tools-priv.pem < darwin.iso > darwin.iso.sig
sh -c "for A in *.iso ; do openssl dgst -sha1 -sign tools-priv.pem < $A > $A.sig ; done"

(Posting this to give the fine VMWare guys a chance to close this particular hole in Fusion 2 final.)
 
Forgot one step:

mv tools-key.pub original/

where appropriate.
 
Nice! Works for me, but it should be:

sed "s/ServerVersion.plist/SystemVersion.plist/g" < original/darwin.iso > darwin.iso
 
The last shell script is giving me an error about A being and undefined variable. What shell should I be using?
 
The correct and reliably sequence is probably

sudo bash

followed by

cd "/Library/Application Support/VMware Fusion/isoimages"
mkdir original
mv darwin.iso tools-key.pub *.sig original
sed "s/ServerVersion.plist/SystemVersion.plist/g" < original/darwin.iso > darwin.iso
openssl genrsa -out tools-priv.pem 2048
openssl rsa -in tools-priv.pem -pubout -out tools-key.pub
openssl dgst -sha1 -sign tools-priv.pem < darwin.iso > darwin.iso.sig
for A in *.iso ; do openssl dgst -sha1 -sign tools-priv.pem < $A > $A.sig ; done
exit

Works for me :-)
 
That was the ticket! Thanks!
 
Another (easier?) way of creating a working ISO is y converting a dmg into a toast image or creating a toast image from the installer DVD. .toast images are 100% ISO. Just rename the .toast extension into .iso.
 
Also intersting: I managed to clone my everyday Leopard install and run it as a VM by mounting my VMware Leopard-Server virtual disk on my desktop and overwriting its contents by cloning my startup-disk onto it using Carbon Copy Cloner. After that the Leopard-client VM booted just fine using the "SystemServer.plist " method posted here (THANKS!). Just remember to use the right name for your volume, if it isn't "Macintosh HD".
 
For those of you who don't know how to mount your VM's virtual-disk: just right-klick your virtual-machine file (i has the extension .vmwarevm) and select "Show Package Contents" Now look for the file "Virtual Disk.vmdk" Doubleklick it and it will just mount on your desktop.
You won't be able to mount suspended disk-images or VM's with snapshots. So make sure your leopard-VM is shut down, and all snapshots are gone.
 
For me the script at first seemed to work (VMWare detected my Leopard DVD as OS X Leopard Server 64-bit), however once VMWare booted into the installer it says: Mac OS X cannot be installed on this computer. Any ideas?
 
"Mac OS X cannot be installed on this computer." means you are using a non-retail install DVD on a different platform. The client DVDs you get with a new Mac are specific to a set of hardware (e.g. a certain generation of MacBook Pro, or iMac or whatever). You will have best luck with a retail DVD. I'm not sure if you could use the DVD for the physical Mac you are running VMWare on - not sure if VMWare virtualizes the right pieces to fool the DVD.
 
When I run the "touch..."-command I get the message "Read-only file system".
How to make a image, which is not Read-Only but can be used as bootimge for VM?
 
Instead of "sudo bash" it's better to use "sudo -i"
 
"sudo -i" will run the current users preferred shell, which may not be bash - could be zsh, tcsh whatever. The script is a bash script, so better to be explicit.
 
Hey this is great. But I'm having a problem.

I run my virtual machine, it boots off the .iso ok, launches into the installer and I step through to where it asks where do I want to install OSX. But there's nothing in that window to select to install OSX on to.

I'm having the same problem if I try to install OSX Server too.

I'm sure I've set up the virtual machine settings to use a 64GB IDE virtual disk...

Any ideas?
 
Umm... sorry... never mind. I figured it out. I'm a dufus :p
 
I did the "darwin.iso" hack, and I OS X causes a stack fault in kernel mode just after the gray "apple" logo screen appears.

I have a 10.5.0 Retail DVD. Tried both "32bit" and "64bit" options for the VM type, and this is on my Mac Pro (dual 2Ghz xeons)
 
This post has been removed by the author.
 
Virtualizing Mac OS X Leopard Desktop is much easier now. Just use the DiscCloud Virtual Appliance that runs on VMware. Load the Appliance on Vmware server or ESX, connect a Leopard client, and run the DiscCloud tools to virtualized the desktop.

See: http://www.disccloud.com

and

http://disccloud.ning.com

Its real easy .. I set up my 4 year old dual opteron box with 4 SATA drives and now my user desktop on my eMac is 1TB! My desktop lives entirely in a virtual machine running on VMware server on the opteron machine!
 
Just tried the iso image hack with the latest vmware fusion "Version 2.0 (116369)" and it works nicely. Albeit for me the install never gets past the spining grey circle :( perhaps its a coreduo vs core2duo thing?

great blog btw!
 
My problem is, that after having tried this process, my system request server serial after that action and i can type anything during the boot and the system doesn't boot at all. Any idea? Any suggestion is welcome! Thanks in advance!
 
Installation went great. I used the plist-method. But now, when it comes to the welcome screen, it can't use mouse and keyboard no more. The virtual machine doesn't seem to have any input devices and I haven't found a way to activate it in a virtaul machine. Did i miss something, or is there a special trick about it?

Thanx!
 
I used the patch method on a final (= non beta) VMware Fusion 2.0 (Build 116369) - with the perl command instead of sed. I'm using a 24" Aluminum iMac with 4 GiB and 2.8 GHz.

After the patch the freshly created VM accepted the regular retail OS X 10.5(.0) Client DVD without any complaints straight from the SuperDrive and booted right into the installer.

As I'm typing this, the VM has already rebooted: Afterwards I was able to create my usual user/administrator accounts (of course I canceled the registration process, duh!) - as I type this it has just rebooted again after the installation of the VMtools.

Thanks a lot for this very valuable blog post!
 
I got OS X Leopard Client installed and updated to 10.5.5. Now the only thing I can't get to work is Sound. I installed VMware Tools, and still no sound. Does the VMware Tools not work on the Client?
 
Thanks for writing this.
 
Is it possible to just somehow run Mac OS X Server in VMware on a leopard client desktop/laptop? Everytime I try with my dvd it doesn't work right.
in 64-bit it says EBIOS error, and 32-bit it says that andjust loading dvd contents
 
It appears that VMware Fusion version 2.0.1 (released Nov 14, 2008) has added some checks that disable the work-arounds listed above.

I previously had Mac OS X 10.5.5 running flawlessly using the "alternative approach" with the perl command (listed near the end of the instructions above). With VMware Fusion 2.0, I was able to restart the VM at will, but when I attempt to boot this same VM under 2.0.1, it gives me the "Not Mac OS X Server" error.

Luckily I still have a snapshot taken with my Mac OS X client 10.5.5 VM running, so I can always revert to that. I just can't reboot the VM any more.

If anyone finds a way around this problem, please share!
 
Installing 2.0.1 overwrote your patched darwin.iso. Given that the stock Leopard Client DVD boots just fine in 2.0.1 with a freshly patched darwin.iso: Did you re-apply the patch commands after updating?
 
rdbrown: Fusion doesn't support sound for MacOS guests, regardless whether Server or Client :-( That's a known limitation (and documented in the release notes.)
 
I'm the Anonymous guy who posted above: "I used the patch method on a final (= non beta) VMware Fusion 2.0 (Build 116369)"

After updating to Fusion 2.01 (Build 128865), the Leopard VM did not boot - as others have reported, "Not Mac OS X Server" ... sure the 2.01 installer overwrote the patched files.

I then re-applied the patch (again with perl instead of sed), and it went right through without any trouble.
As I'm typing this, Fusion 2.01 has booted the Leopard VM as if nothing happened.
 
The "signature hack" worked flawlessly on my MacBook, with VMWare 2.01 and Leopard retail - thanks!
 
Has anyone tried or has gotten Mac OSX Leopard Client to work on Parallels 4?
 
I'm having trouble following the last part. What do you mean by, " After you install, reboot VMWare from the install DVD ISO again, run Terminal and touch "/Volumes/Macintosh HD/System/Library/CoreServices/ServerVersion.plist"
then reboot from the HD."

I'm getting an error from VMWare Fusion that reads "The Guest Operating System is not OS X Server."

Is the touch command creating the plist file on the Host OS X or the Virtual OS X Machine? I ran the touch "/Volumes/Macintosh HD/System/Library/CoreServices/ServerVersion.plist" command and found it created the ServerVersion.plist on my Host OS X system.
 
Great posts here. I also tried the alternative approach and did the perl. It did finally recognize the Mac OS X DVD installation but when booting during the setup it could never get past to the "circle colored ball." Just spins and unable to install completely. Any ideas on how to resolve this?
 
Hi all !! i did the touch thing and the Hack for darwin iso. but i'm still block after choosing language :( it saied that OS X can not be installed on this computer... is it bcause i'm using a retail DVD i had with my MBP ?
 
Still working with the 2.0.2 update :)
 
I had to reapply the Anonymous' "correct and reliable" hack after the 2.0.2 update, but it worked.
 
Using the launch daemon may require one more step. When you log in to your OS for the first time, launch terminal. You'll need to change permissions on the script.

sudo chown root:wheel /Library/LaunchDaemons/com.rectalogic.vmware.plist

After that, run the launch daemon loader:

sudo launchctl load /Library/LaunchDaemons/com.rectalogic.vmware.plist

Then you should be all good. I noticed that the console was giving me "dubious permissions (skipped)" for the .plist file. Once chown is run, the system will launch it automatically.
 
Same here - I again used the hack with the "perl" line instead of the "sed" line. Worked flawlessly on 2.0.2 (147997), my Leopard Client test VM boots again.
 
Though the alternative patch works great with a Leopard host, if you run Fusion on a Tiger host then the very same Leopard client machine won't work. Of course that's when you implement the .plist flipper, and then you're back in business.
The reason for a Tiger host, btw, is that there isn't as much fighting over graphics resources that way, and dragging VMLeopard windows is less choppy - for those of us cursed with GMA 950 displays.
 
Nevermind about using a Tiger host to get rid of choppiness: If you have a GMA 950 machine, then only use *one* CPU in your VMs (of course, I modified the VM to use *two*). The best I could come up with for an explanation for this was Google results for the MacBook Air, which is basically a really flat incarnation of a regular MacBook (for VMware hosting purposes anyway) -- that article simply said that it can't handle it.

I hardly ever go with the defaults when I install any software, but the algorithm VMware uses to determine machine defaults is pretty much right on.
 
For those who have a DMG and need to convert it to ISO, just use this command.

hdiutil convert image.dmg -format UDTO -o image.iso
 
As usual: I again used the hack with the "perl" line instead of the "sed" line. Worked flawlessly on 2.0.3 (156731), my Leopard Client test VM boots again - on a Leopard host.
 
Just to chime in, this still works with the 2.0.4 update. Had to redo the hackery after updating, hence returning to this page...
 
Used the alternative method w/ PERL and it worked with my dev build of Snow Leopard.
 
Still works for the 2.0.5 update from 6/23/09.
 
I know this is a little off topic, but how would one boot OS X Server 10.4.11 as a guest to VMware or Parallels Server? Would just changing the ServerVersion.plist do it?
 
Did anyone manage to either run Tiger in a VM on a Leopard host or vice versa?
 
Hi,

here my experience:

I could successfully install Snow Leopard on VMWare 2.0.5. (but installation on VMWare 2.0.1 did not work).

I used the normal 30EUR/$ installation DVD.

Using the original Leopard DVD's that came with my MacMini and MacBook Pro did not work (as already mentioned).
 
Ran the darwin patch for the 2.0.6 beta and it still works, was able to start the 10.5 image I installed earlier.
 
Has anybody had any luck with 3.0? I need this asap.
 
This still works fine with the new Fusion 3.0 released today.
 
@rectalogic

I just installed Fusion 3 and followed the alternate approach but it does not work for me.

It always tells me that it's not a server version of OS X.

Can you please elaborate on how you fixed this?


Thanks in advance
 
I have a shell script named fix-vmware and just run "sudo fix-vmware". Contents of the script are:


cd "/Library/Application Support/VMware Fusion/isoimages"
mkdir -p original
mv darwin.iso tools-key.pub *.sig original
perl -n -p -e 's/ServerVersion.plist/SystemVersion.plist/g' < original/darwin.iso > darwin.iso
openssl genrsa -out tools-priv.pem 2048
openssl rsa -in tools-priv.pem -pubout -out tools-key.pub
openssl dgst -sha1 -sign tools-priv.pem < darwin.iso > darwin.iso.sig
for A in *.iso ; do openssl dgst -sha1 -sign tools-priv.pem < $A > $A.sig ; done
 
Having issues with the dreaded "spinning ball" during boot up. Performed all the required patches/etc, and it does boot, just gets stuck at the spinning ball and never progresses. Anyone able to offer a solution or a potential course of action? Thanks
 
I'm using Fusion 3.0, and a shiny retail Leopard disk. I ran the just-reposted script, and I still get the "This isn't Server" message.

In case it helps:

bash-3.2# pwd
/Library/Application Support/VMware Fusion/isoimages

bash-3.2# md5 darwin.iso original/darwin.iso
MD5 (darwin.iso) = 61f5ed0859f1113d2f3539a716b6a7fd
MD5 (original/darwin.iso) = ac0c962beb3cd595ce765f824da3f29b

VMware Fusion reports its version as Version 3.0.0 (204229).
 
This post has been removed by the author.
 
DOH!!! Wrong button... anyway, the md5 checksums are fine, same as what I have but that's not the issue. This is:

To Anon above:

Did you do the touch command on the ISO on the drive? You have to make an ISO of the Snow Leopard DVD on the drive and then touch it so it creates the Server.plist file (empty but it's there).

Without that, you're dead in the water - you can't do this by trying to install directly from the physical DVD in the optical drive; it can only be done properly with an ISO (made with Disk Utility as a CD/DVD Master and done properly).

I made the mistake others make and chose the actual "Mac OS X Install DVD" entry in Disk Utility several times and wasted it because it was never properly bootable. You have to choose the actual optical drive (the physical drive) where the disc is inserted - that's how you end up with an image that's bootable.

Tough lesson but I got it now... ;)

Still stuck with the spinning ball, however, just can't seem to resolve that. Hopefully rectalogic can offer some info or someone else can, pretty please, if you can help.
 
I didn't do the create disk image and touch the file step ... my understanding is that if I patched darwin.iso, I didn't have to edit the installer image...
 
Vmware changed how they are implementing the Checks.

If you have a preexisting VMware of Leopard client, the Alternate fix still works, provided they still use VMware's Darwin bootloader method.

However, if your trying to create a new VM in Fusion 3.0, the new VM will now use a EFI firmware, vs the Darwin boot loader. With the new EFI firmware, the only option I found that works is the ServerVersion.plist hack.
 
Adding:

isolation.tools.osNotMacOSXServer.disable = "TRUE"

to your *.vmx changes the behavior somewhat. Instead of getting the dialog you get a message from the BIOS. This doesn't help, but might be a clue for someone.
 
OK, if you edit your *.vmx config file for your VM and comment out:

#firmware = "efi"

Then vmware will boot using the old BIOS instead of EFI and everything will work again.

I just successfully installed Snow Leopard client in Fusion 3.0 from an ISO of a retail DVD (have to use an ISO so you can touch the ServerVersion.plist)
 
I've just done an install of Snow Leopard Client in Fusion 3.0 -- from the DVD, not from an ISO of the DVD. No requirement to make an empty ServerVersion.plist file in the image or alter the install disc.

Procedure:

In Terminal, execute:
sudo bash

Enter your password if prompted. When you get the # prompt, cut and paste the following into the Terminal window:

cd "/Library/Application Support/VMware Fusion/isoimages"
mkdir -p original
mv darwin.iso tools-key.pub *.sig original
perl -n -p -e 's/ServerVersion.plist/SystemVersion.plist/g' < original/darwin.iso > darwin.iso
openssl genrsa -out tools-priv.pem 2048
openssl rsa -in tools-priv.pem -pubout -out tools-key.pub
openssl dgst -sha1 -sign tools-priv.pem < darwin.iso > darwin.iso.sig
for A in *.iso ; do openssl dgst -sha1 -sign tools-priv.pem < $A > $A.sig ; done

Launch VMware Fusion, create a new VM for Snow Leopard. Save the VM, and then exit Fusion. Using either the terminal or Finder, navigate inside the VM and edit the *.vmx file.

Find the line that reads:

firmware = "efi"

Change it to read:

firmware = "bios"

Do not add a line that says isolation.tools.osNotMacOSXServer.disable = "TRUE" as was suggested above. It seems to screw this up -- my DVD didn't boot with it, but consistently boots without it.

You should now be able to rerun Fusion, and boot the VM from your Snow Leopard DVD, or an unmodified ISO. I've just completed an install using this method, and it booted up from the virtual hard drive and so far is working fine.
 
Been attempting this stuff for two days nearly, still no progress past the spinning ball so, I'm givin' up on it, will come back to this in the future at some point. Not that big of a deal I suppose.

Borrowed an actual OSX Snow Leopard Server install DVD (the real thing) from a friend/I.T. cohort and same thing, just stops after the boot/pre-language selection, black cursor on grey background for about 30 seconds, then the cursor turns into the spinning beachball and that's it. Left it sitting for an hour in the background, doesn't do anything from that point on.

Oh well... thanks for the post regardless.
 
Paul: Could you try booting your installer in verbose mode, and telling me what the last output you get before it hangs is?

To do this, hit F8 when prompted to do so for boot options, and use "-v" as the options.
 
I am folloing the guide to change ISO configuration and vmx file. But every time the error is the same: "Guest machine has disabled the CPU, you must shutdown the vm"

What is the problem? I try the four option 10.5, 10.6, with 32 and 64 bits for Snow Leopard, but any works fine.

Thanks by your help.
 
I solved the problem.
I uninstalled VMware Fusion, that was an upgrade version from 2.0 to 3.0
Reinstall the application, I do again the modification in Fusion and now Is working.
 
I'm using the ServerVersion.plist hack with Parallels Desktop 5 and it works like a charm, Leopard is running just fine. There is a small problem with Parallel Tools though, it installs fine, right after install you can access shared folders, but after reboot, shared folders is gone and the message on the bottom says Parallels Tools are not installed.
Does anyone have a workaround for this?
 
I was trying to do the darwin patch on Fusion 3.0 and still getting the same "System is not Server" error. I just successfully ran SnowLeopard so i decided to share with all you guys what worked for me, may help someone still in the dark. Here is the procedure that works 100%:
- make sure you CLOSE vmware
- apply the darwin patch as follow:
sudo bash
cd "/Library/Application Support/VMware Fusion/isoimages"
mkdir original
mv darwin.iso tools-key.pub *.sig original
perl -n -p -e 's/ServerVersion.plist/SystemVersion.plist/g' < original/darwin.iso > darwin.iso
openssl genrsa -out tools-priv.pem 2048
openssl rsa -in tools-priv.pem -pubout -out tools-key.pub
openssl dgst -sha1 -sign tools-priv.pem < darwin.iso > darwin.iso.sig
for A in *.iso ; do openssl dgst -sha1 -sign tools-priv.pem < $A > $A.sig ; done

-now edit the vmx config file and find the line firmware = "efi" and CHANGE TO firmware = "bios"
Commenting this line out will NOT work. Set firmware to bios and you're good to go
-Run VMware Fusion and start your machine. Happy mac virtualizing ;-)

Thanks everybody for all the help and all the valuable pieces of information put together on this article. Happy new year!
 
I'm trying the last solution for the vmware fusion 3.0.1 and It doesn't work. It says there is no bootable device!!
What can I do? I'm lost, please some help.
 
The darwin.iso hack still works with Fusion Version 3.0.2 (232708).
 
This post has been removed by the author.
 
so, if I create a VM with 10.6 client on a mac, can I move the VMClient to a Linux box and run it with VMWare player?
 
i without a doubt adore your own writing choice, very helpful,
don't give up and also keep penning in all honesty , because it simply very well worth to follow it,
looking forward to look into additional of your current content pieces, thankx ;)
 
Post a Comment



<< Home

This page is powered by Blogger. Isn't yours?