Page 1 of 1

2 MACS SAME INFORMATION

Posted: Sat Oct 15, 2011 6:29 pm
by demoledor
is possible to duplicate the information from one Mac to another? i like I can do?

Re: 2 MACS SAME INFORMATION

Posted: Sat Oct 15, 2011 6:33 pm
by nick
You can copy your data file to another Mac, for sure - but it's not automatic.

There are instructions in the help, under "where do I find my MacDive data".

Re: 2 MACS SAME INFORMATION

Posted: Mon Nov 28, 2011 7:20 am
by lbmigritor
anyone tryed dropbox for this? maybe macdive can have dropbox support in the future

Re: 2 MACS SAME INFORMATION

Posted: Wed Jan 11, 2012 7:36 pm
by Schoentje
Yep have tried it, but that didn’t work for me. (OS 10.7.2 and MacDive2.1.1)

Cheers,
Twan

Re: 2 MACS SAME INFORMATION

Posted: Thu Jan 19, 2012 12:37 am
by honigferd
Hi.

You probably tried using the Folder Alias the Finder creates with "Make Alias"? Because that won't work.
However, I found that (using the terminal) and using real symbolic links works fine, assuming you want to move the MacDive folder right into your Dropbox folder and your Dropbox folder is located in ~/Dropbox (if not, just adjust the paths accordingly)

Make sure MacDive is not running while doing this!

In the Terminal:

Go to your Application support folder:

Code: Select all

cd ~/Library/Application\ Support/
Move your ~/Library/Application Support/MacDive folder to ~/Dropbox/MacDive:

Code: Select all

mv MacDive/ ~/Dropbox/
Create a symbolic link from your Application Support folder to the MacDive folder in the Dropbox:

Code: Select all

ln -s ~/Dropbox/MacDive
As nick said in another post already though: MacDive isn't made for syncing data this way, you should only have MacDive open on one computer at once and to be on the safe side wait for the sync to finish before opening it on another computer.

Re: 2 MACS SAME INFORMATION

Posted: Thu Jan 19, 2012 12:42 am
by lionel
honigferd wrote: Create a symbolic link from your Application Support folder to the MacDive folder in the Dropbox:

Code: Select all

ln -s ~/Dropbox/MacDive
I think this should be

Code: Select all

ln -s ~/Dropbox/MacDive MacDive
As nick said in another post already though: MacDive isn't made for syncing data this way, you should only have MacDive open on one computer at once and to be on the safe side wait for the sync to finish before opening it on another computer.
Can't agree more!

HTH,

Lionel

Re: 2 MACS SAME INFORMATION

Posted: Thu Jan 19, 2012 12:47 am
by honigferd
lionel wrote:
honigferd wrote: Create a symbolic link from your Application Support folder to the MacDive folder in the Dropbox:

Code: Select all

ln -s ~/Dropbox/MacDive
I think this should be

Code: Select all

ln -s ~/Dropbox/MacDive MacDive
That's the long way, if the link doesn't have a different name from the original it's not necessary to specify the name. Probably easier to understand with all parameters in place though. :-)