<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Backing Up And Exporting Address Book Contacts</title>
	<atom:link href="http://www.mactricksandtips.com/2008/11/backing-up-and-exporting-address-book-contacts.html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mactricksandtips.com/2008/11/backing-up-and-exporting-address-book-contacts.html</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 30 Jul 2010 22:46:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Ammi</title>
		<link>http://www.mactricksandtips.com/2008/11/backing-up-and-exporting-address-book-contacts.html/comment-page-1/#comment-38819</link>
		<dc:creator>Ammi</dc:creator>
		<pubDate>Sun, 21 Mar 2010 02:18:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.mactricksandtips.com/?p=1206#comment-38819</guid>
		<description>Address Book Problems

Thanks for your posts guys…
My problem is that my Address Book is to big (.abbu) and comes up a message telling exactly this: TO BIG.
Than I can&#039;t import into the iMac.

If I go to Metadata file and copy the .abdcp files something curious happens, when I paste in another file (external HD) to transport to the iMac… the .abcdp files assume the double of the size of the original files. I&#039;m scare to copy those .abcdp files in the iMac and generate more problems. :P

Some tips? 
Happens this same thing with somebody else?
thanks in advance</description>
		<content:encoded><![CDATA[<p>Address Book Problems</p>
<p>Thanks for your posts guys…<br />
My problem is that my Address Book is to big (.abbu) and comes up a message telling exactly this: TO BIG.<br />
Than I can&#8217;t import into the iMac.</p>
<p>If I go to Metadata file and copy the .abdcp files something curious happens, when I paste in another file (external HD) to transport to the iMac… the .abcdp files assume the double of the size of the original files. I&#8217;m scare to copy those .abcdp files in the iMac and generate more problems. :P</p>
<p>Some tips?<br />
Happens this same thing with somebody else?<br />
thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nathalie</title>
		<link>http://www.mactricksandtips.com/2008/11/backing-up-and-exporting-address-book-contacts.html/comment-page-1/#comment-6934</link>
		<dc:creator>nathalie</dc:creator>
		<pubDate>Tue, 25 Nov 2008 09:43:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.mactricksandtips.com/?p=1206#comment-6934</guid>
		<description>hmmm, I do it in a very simple way. 
Open Adress Book, click on All, then cmd+A (Select all) inside colums &quot;name&quot;, all your contacts are now selected. Then choose File &gt; Export. All your contacts are now stored in a file called vCards.vcf that is saved wherever you want it to be. You can check that every contact is included by hitting space bar when the file is selected, QuickLook will show its content. All it takes is about 3 seconds :-)</description>
		<content:encoded><![CDATA[<p>hmmm, I do it in a very simple way.<br />
Open Adress Book, click on All, then cmd+A (Select all) inside colums &#8220;name&#8221;, all your contacts are now selected. Then choose File &gt; Export. All your contacts are now stored in a file called vCards.vcf that is saved wherever you want it to be. You can check that every contact is included by hitting space bar when the file is selected, QuickLook will show its content. All it takes is about 3 seconds :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bryan</title>
		<link>http://www.mactricksandtips.com/2008/11/backing-up-and-exporting-address-book-contacts.html/comment-page-1/#comment-6526</link>
		<dc:creator>Bryan</dc:creator>
		<pubDate>Wed, 19 Nov 2008 15:26:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.mactricksandtips.com/?p=1206#comment-6526</guid>
		<description>I have had a problem where my addressbook corrupts itself, and this can cause some serious problems with my iphone as well (the full corruption was transfered to my iphone, and I couldn&#039;t get contacts back until I reset the phone to factory).  

I don&#039;t have an external drive capable of doing time machine backups right now (it&#039;s on the list).  So what I did was to write a shell script that used &#039;tar&#039; to tar the addressbook files and save 4 copies of them.  I then used cron to run this every day, and each day the new backup replaced 1 of the old backup copies.  

Here is the shell script: 

cp addressbook.backup.3 addressbook.backup.4
cp addressbook.backup.2 addressbook.backup.3
cp addressbook.backup.1 addressbook.backup.2
cp addressbook.backup addressbook.backup.1
tar czf addressbook.backup /Users/bryan/Library/Application\ Support/AddressBook/

I placed this script in my documents in a folder called auto-phone_backup. and had cron execute from there. 

30 4 * * * /Users/bryan/Documents/auto-phone_backup/address_backup.sh

It&#039;s not a great script and system, but it provides me with some security and this time if my address book corrupts, I will loose, at most, 1 day of updates.</description>
		<content:encoded><![CDATA[<p>I have had a problem where my addressbook corrupts itself, and this can cause some serious problems with my iphone as well (the full corruption was transfered to my iphone, and I couldn&#8217;t get contacts back until I reset the phone to factory).  </p>
<p>I don&#8217;t have an external drive capable of doing time machine backups right now (it&#8217;s on the list).  So what I did was to write a shell script that used &#8216;tar&#8217; to tar the addressbook files and save 4 copies of them.  I then used cron to run this every day, and each day the new backup replaced 1 of the old backup copies.  </p>
<p>Here is the shell script: </p>
<p>cp addressbook.backup.3 addressbook.backup.4<br />
cp addressbook.backup.2 addressbook.backup.3<br />
cp addressbook.backup.1 addressbook.backup.2<br />
cp addressbook.backup addressbook.backup.1<br />
tar czf addressbook.backup /Users/bryan/Library/Application\ Support/AddressBook/</p>
<p>I placed this script in my documents in a folder called auto-phone_backup. and had cron execute from there. </p>
<p>30 4 * * * /Users/bryan/Documents/auto-phone_backup/address_backup.sh</p>
<p>It&#8217;s not a great script and system, but it provides me with some security and this time if my address book corrupts, I will loose, at most, 1 day of updates.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christoph Abermann</title>
		<link>http://www.mactricksandtips.com/2008/11/backing-up-and-exporting-address-book-contacts.html/comment-page-1/#comment-6456</link>
		<dc:creator>Christoph Abermann</dc:creator>
		<pubDate>Tue, 18 Nov 2008 11:03:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.mactricksandtips.com/?p=1206#comment-6456</guid>
		<description>I backup my addressBook Data simply by backing up the folder home =&gt; library =&gt; Appl suport =&gt; AddressBook; works well; if you need to restore in another Mac, just put the backuped contents in this same folder in this new mac!

Christoph</description>
		<content:encoded><![CDATA[<p>I backup my addressBook Data simply by backing up the folder home =&gt; library =&gt; Appl suport =&gt; AddressBook; works well; if you need to restore in another Mac, just put the backuped contents in this same folder in this new mac!</p>
<p>Christoph</p>
]]></content:encoded>
	</item>
</channel>
</rss>
