dm3 said:
I still don't follow. I have space on a Windows machine that I tried mounting using samba, ie
mount_smbfs //host/c$ ~/mountpoint
Don't use samba. I believe that's what I said in the first sentence of my last post. You need to use NFS. It seems Parallels doesn't support samba mounted drives, but nfs mounts work fine.
I use Linux and I forget that others don't. I'm able to boot my Parallels VMs from an nfs mount that's on a Linux machine. (I can do it but I actually use an external drive). I don't think NFS comes with Windows by default - it should come with "Windows Services for Unix" downloadable from
http://www.microsoft.com/downloads/...88-601b-44f1-81a4-02878ff11778&DisplayLang=en
I don't have a Windows machine on my network at the moment (thank god) so I can't test if that works. I really don't understand why anyone would want to use Windows for a network file server, since Linux is so much easier to set up and use out of the box (for servers).
-P is a mount_nfs option that forces mount_nfs to use a port < 1024 for mounting. OS X tries to use > 1024 but Linux requires < 1024.
The syntax of the mount command is simple but slightly different - like with samba, you mount on a host:
sudo mount -o -P host:/parallels_directory ~/mount_point
This is the same as:
sudo mount_nfs -o -P host:/parallels_directory ~/mount_point
I'm sorry if writing "network_drive" rather than "host" confused you.
I''m removing all references to symlink from my previous posts since it seems to have caused more confusion.