Parallels Beta 10 don't work with Yosemite Beta 6!!! VMvare Fusion6 & Oracle VirtualBox 3.2.6 work, only Parallels have problem![]()
What? Parallels BETA 10? We only have normal PD10, maybe BETA is a problem.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Parallels Beta 10 don't work with Yosemite Beta 6!!! VMvare Fusion6 & Oracle VirtualBox 3.2.6 work, only Parallels have problem![]()
So add more cpu cores in VM config.I installed Parallels Version 10 from the above link as a trial. This seems to fix the Yosemite Beta 6 problem and started successfully, but on my iMac Parallels 10 only uses CPU core 0 and nothing else, so I can not say that Version 10 is something which you should use. I wasn't able to start my Windows 8 with it in the expected time.
sudo /Applications/Parallels\ Desktop.app/Contents/MacOS/Parallels\ Service.app/Contents/MacOS/prl_disp_service -e & sudo /Applications/Parallels\ Desktop.app/Contents/MacOS/prl_client_app
What's even worse is that you cannot even download the "trial" version of Parallels 10 and use the "trial" period to get you over this hump until a working hotfix comes out. Because the "try now" link on the homepage points to version 9. Again forced upgrade.
This is a quick but temporary solution:
open terminal and run:
enter your account password and press enter.Code:sudo /Applications/Parallels\ Desktop.app/Contents/MacOS/Parallels\ Service.app/Contents/MacOS/prl_disp_service -e & sudo /Applications/Parallels\ Desktop.app/Contents/MacOS/prl_client_app
Just download the release version of PD10, install, and during the installation (when prompted for the key) it gives an option for trial.
Okay, I have a temporary work-around solution.
sudo /Applications/Parallels\ Desktop.app/Contents/MacOS/Parallels\ Service.app/Contents/MacOS/prl_disp_service -e
sudo /Applications/Parallels\ Desktop.app/Contents/MacOS/Parallels\ Service.app/Contents/MacOS/prl_disp_service -e
I manage to force work the workaround.
1.Start process from Terminal.Process shows the warning "QFileSystemWatcher::addPath: path is empty" and continue to work, not terminated.HTML:sudo /Applications/Parallels\ Desktop.app/Contents/MacOS/Parallels\ Service.app/Contents/MacOS/prl_disp_service -e
2.Start Parallels Desktop.
3.Return to the Terminal. Don't wait till process terminates. Break it by the pressing Ctrl+C.
4.After break immediately start the process again by pressing key Arrow up and then Enter.
Thats all. Parallels starts to work.
Any word on the official fix?
I know I'm using beta software, so I can't complain. But it's fixable by running a terminal command, should be an easy fix for a commercial business.
I'm a bit worried that Parallels cannot update, as the check for updates is greyed out.
I have considered the PD10 upgrade, but only after Parallels shows that they care about their previous costumers.
That worked for me. Thanks.
cd ~
mkdir parallels
touch ./parallels/startparallels.sh
chmod a+x ./parallels/startparallels.sh
#!/bin/sh
instance=${1:-/parallels/}
root=${2:-/Users/[INSERTUSERNAME]/}
if [ -f $root/$instance/parallels.pid ]
then
if kill -0 `cat $root/$instance/parallels.pid` 2> /dev/null
then
echo "Parallels Service is already running"
exit
fi
fi
(
/Applications/Parallels\ Desktop.app/Contents/MacOS/Parallels\ Service.app/Contents/MacOS/prl_disp_service -e &
echo $! > $root/$instance/parallels.pid
) > /dev/null 2>&1
sudo crontab -e and paste @reboot /Users/martyn/parallels/startparallels.sh
export EDITOR=/usr/bin/nano