<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>JJB Blog &#187; ibiblio</title>
	<atom:link href="http://blog.johnjosephbachir.org/tag/ibiblio/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.johnjosephbachir.org</link>
	<description></description>
	<lastBuildDate>Wed, 04 Jan 2012 05:47:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>iBiblio receives Certificate of Acknowledgement and Congratulations from North Carolina house of representatives</title>
		<link>http://blog.johnjosephbachir.org/2007/03/16/ibiblio-receives-certificate-of-acknowledgement-and-congratulations-from-north-carolina-house-of-representatives/</link>
		<comments>http://blog.johnjosephbachir.org/2007/03/16/ibiblio-receives-certificate-of-acknowledgement-and-congratulations-from-north-carolina-house-of-representatives/#comments</comments>
		<pubDate>Sat, 17 Mar 2007 02:37:19 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[ibiblio]]></category>

		<guid isPermaLink="false">http://blog.johnjosephbachir.org/2007/03/16/ibiblio-receives-certificate-of-acknowledgement-and-congratulations-from-north-carolina-house-of-representatives/</guid>
		<description><![CDATA[Whereas, October 31, 2007 will be the 15th anniversary of the first public demo of sunsite.unc.edu, which is now known as iBiblio.org; and Whereas, the iBiblio website digital repository and community have become cultural treasures of the state of North Carolina, and Whereas, iBiblio has played a pivotal role as both a medium and advocate [...]]]></description>
			<content:encoded><![CDATA[<p><a class="imagelink" href="http://jjb.blogs.jjb.cc/files/2007/03/houselovesibibfull.jpg" title="Certificate of Acknowledgement and Congratulations for iBiblio"><img id="image414" src="http://jjb.blogs.jjb.cc/files/2007/03/houselovesibibfull-150x150.jpg" alt="Certificate of Acknowledgement and Congratulations for iBiblio" /></a></p>
<blockquote><p>Whereas, October 31, 2007 will be the 15th anniversary of the first public demo of sunsite.unc.edu, which is now known as iBiblio.org; and</p>
<p>Whereas, the iBiblio website digital repository and community have become cultural treasures of the state of North Carolina, and</p>
<p>Whereas, iBiblio has played a pivotal role as both a medium and advocate for the free and open sharing of digital information.</p>
<p>Then, therefore this Eighth Day of March<br />
In the Year of Two Thousand Seven,<br />
Representatives Deborah Ross and Verla Insko recognize<br />
iBiblio</p>
<p>For its commitment and contributions to technology and culture,<br />
and to the North Carolina community as a whole.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.johnjosephbachir.org/2007/03/16/ibiblio-receives-certificate-of-acknowledgement-and-congratulations-from-north-carolina-house-of-representatives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup script from Jon Mills</title>
		<link>http://blog.johnjosephbachir.org/2007/01/18/backup-script-from-jon-mills/</link>
		<comments>http://blog.johnjosephbachir.org/2007/01/18/backup-script-from-jon-mills/#comments</comments>
		<pubDate>Thu, 18 Jan 2007 06:57:01 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[ibiblio]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://blog.johnjosephbachir.org/2007/01/18/backup-script-from-jon-mills/</guid>
		<description><![CDATA[ibiblio colleague and systems guru John Mills writes: So, I remember you had a cute backup script for OS X. Well I have an external USB drive, which I don&#8217;t want active all the time. My script runs from a cronjob, and automatically mounts and unmounts the external drive, and uses rsync to copy the [...]]]></description>
			<content:encoded><![CDATA[<p><a title="ibiblio" href="http://ibiblio.org/">ibiblio</a> colleague and systems guru <a href="http://claimid.com/jonmills">John Mills</a> writes:</p>
<div style="margin-left: 40px">So, I remember you had a <a href="http://blog.johnjosephbachir.org/2006/01/02/my-backup-scripts/">cute backup script</a> for OS X.  Well I have an external USB drive, which I don&#8217;t want active all the time.  My script runs from a cronjob, and automatically mounts and unmounts the external drive, and uses rsync to copy the files.</div>
<p>Here&#8217;s the script, called backup.sh:</p>
<p>[bash]<br />
#! /bin/bash</p>
<p># Definitions<br />
DISK=disk1s1<br />
DIR_NAME=jonmills<br />
SOURCE=/Users/${DIR_NAME}/<br />
DEST=/Volumes/Backup/${DIR_NAME}/<br />
EXCLUDE=/var/log/backup/excludes.${DIR_NAME}</p>
<p># Mount a disk by hand with disktool<br />
/usr/sbin/disktool -m ${DISK}</p>
<p># Wait for the disk to spin up, or else this won&#8217;t work<br />
sleep 10</p>
<p># Copy the files with rsync<br />
/usr/bin/rsync -av \<br />
&#8211;delete \<br />
&#8211;delete-excluded \<br />
&#8211;exclude-from=${EXCLUDE} \<br />
${SOURCE} \<br />
${DEST}</p>
<p># Unmount the disk manually with disktool<br />
/usr/sbin/disktool -u ${DISK}<br />
[/bash]</p>
<p>crontab looks like this:</p>
<p>[code]<br />
#<br />
# min   hour    mday    month   wday    command</code></p>
<p># Run the script at 4:30 AM and mail me the log<br />
30     4       *       *       *       ~/.backup.sh 2>&#038;1 | mail -s "Backup Log - `date`" _____@gmail.com<br />
[/code]</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.johnjosephbachir.org/2007/01/18/backup-script-from-jon-mills/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

