Auto Start
i just created a script to start it automatically and it works fine. no need to keep terminal open.
Open terminal and paste:
Code:
cd ~
mkdir parallels
touch ./parallels/startparallels.sh
chmod a+x ./parallels/startparallels.sh
open startparallels.sh in your favourite editor and paste this then save exit.
Code:
#!/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
then you need to make it run automatically on reboot:
Code:
sudo crontab -e and paste @reboot /Users/martyn/parallels/startparallels.sh
ctrl + x + y to exit and save in nano
for some reason on the OS X beta this uses VI as the default editor instead of nano, you can change it using:
Code:
export EDITOR=/usr/bin/nano