<?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>RouterNotes.com &#187; disk image</title>
	<atom:link href="http://routernotes.com/tag/disk-image/feed/" rel="self" type="application/rss+xml" />
	<link>http://routernotes.com</link>
	<description>Networking and Mac OS X lessons learned in a Campus LAN environment</description>
	<lastBuildDate>Mon, 15 Sep 2008 18:01:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Create encrypted disk images with a script</title>
		<link>http://routernotes.com/2008/06/30/create-encrypted-disk-images-with-a-script/</link>
		<comments>http://routernotes.com/2008/06/30/create-encrypted-disk-images-with-a-script/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 14:32:39 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[disk image]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://routernotes.com/?p=35</guid>
		<description><![CDATA[Disk images are one the great things that Mac OS X supports natively. There are so many things that can be done with them like store important data in them securely with the built-in encryption.  The encrypted disk images can be taken anywhere and can be opened on any Mac.
All of this can be [...]


Related posts:<ol><li><a href='http://routernotes.com/2008/06/16/create-encrypted-backups-with-disk-images/' rel='bookmark' title='Permanent Link: Create Encrypted Backups with Disk Images'>Create Encrypted Backups with Disk Images</a> <small>Disk images make the perfect backup file. Without any extra...</small></li><li><a href='http://routernotes.com/2008/07/07/encrypt-your-thumbdrive-protect-your-identity/' rel='bookmark' title='Permanent Link: Encrypt your Thumbdrive: Protect your identity'>Encrypt your Thumbdrive: Protect your identity</a> <small>The little flash devices are the modern day floppy disk...</small></li><li><a href='http://routernotes.com/2008/01/14/disable-time-machine-from-nagging-about-every-disk-in-leopard/' rel='bookmark' title='Permanent Link: Disable Time Machine from nagging about every disk in Leopard'>Disable Time Machine from nagging about every disk in Leopard</a> <small>Time Machine is a great utility, but it asks if...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Disk images are one the great things that Mac OS X supports natively. There are so many things that can be done with them like store important data in them securely with the built-in encryption.  The encrypted disk images can be taken anywhere and can be opened on any Mac.</p>
<p>All of this can be done through Disk utility, but if you do it repeatedl, creating a little script can save time. For example, in Terminal:</p>
<p>hdiutil create -encryption -stdinpass -srcfolder private encryptedfolder.dmg</p>
<p>So, it would look something like this:</p>
<p><strong> hdiutil create -encryption -stdinpass -srcfolder /Users/Myaccount/Documents encryptedfolder.dmg</strong></p>
<p>Note that the command is entered all in the terminal as one line with a return. This will encrypt the folder to a disk image called encryptedfolder.dmg and bring up a password dialogue box for you to enter a password.  If you want to enter the password in the script then try this.</p>
<p><strong>echo -n &#8220;password&#8221; | hdiutil create -encryption -stdinpass -srcfolder private encrypted.dmg </strong></p>
<p>This will create the disk image with the password of &#8220;password&#8221; with bringing up an interactive dialogue box. Be warned that anyone with access to the computer may be able to read this script and see you password, but that is not a problem if you take the  disk image away from the computer</p>


<p>Related posts:<ol><li><a href='http://routernotes.com/2008/06/16/create-encrypted-backups-with-disk-images/' rel='bookmark' title='Permanent Link: Create Encrypted Backups with Disk Images'>Create Encrypted Backups with Disk Images</a> <small>Disk images make the perfect backup file. Without any extra...</small></li><li><a href='http://routernotes.com/2008/07/07/encrypt-your-thumbdrive-protect-your-identity/' rel='bookmark' title='Permanent Link: Encrypt your Thumbdrive: Protect your identity'>Encrypt your Thumbdrive: Protect your identity</a> <small>The little flash devices are the modern day floppy disk...</small></li><li><a href='http://routernotes.com/2008/01/14/disable-time-machine-from-nagging-about-every-disk-in-leopard/' rel='bookmark' title='Permanent Link: Disable Time Machine from nagging about every disk in Leopard'>Disable Time Machine from nagging about every disk in Leopard</a> <small>Time Machine is a great utility, but it asks if...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://routernotes.com/2008/06/30/create-encrypted-disk-images-with-a-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Encrypted Backups with Disk Images</title>
		<link>http://routernotes.com/2008/06/16/create-encrypted-backups-with-disk-images/</link>
		<comments>http://routernotes.com/2008/06/16/create-encrypted-backups-with-disk-images/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 13:46:12 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[disk image]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://routernotes.com/?p=61</guid>
		<description><![CDATA[Disk images make the perfect backup file. Without any extra software or cost, Mac OS X will compress and encrypt the data into a single file that can be copied anywhere.While most backup programs need to be installed on a computer in order to be able to decrypt and read the backup, encrypted disk images [...]


Related posts:<ol><li><a href='http://routernotes.com/2008/06/30/create-encrypted-disk-images-with-a-script/' rel='bookmark' title='Permanent Link: Create encrypted disk images with a script'>Create encrypted disk images with a script</a> <small>Disk images are one the great things that Mac OS...</small></li><li><a href='http://routernotes.com/2008/07/07/encrypt-your-thumbdrive-protect-your-identity/' rel='bookmark' title='Permanent Link: Encrypt your Thumbdrive: Protect your identity'>Encrypt your Thumbdrive: Protect your identity</a> <small>The little flash devices are the modern day floppy disk...</small></li><li><a href='http://routernotes.com/2008/01/14/disable-time-machine-from-nagging-about-every-disk-in-leopard/' rel='bookmark' title='Permanent Link: Disable Time Machine from nagging about every disk in Leopard'>Disable Time Machine from nagging about every disk in Leopard</a> <small>Time Machine is a great utility, but it asks if...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p id="ad.10">Disk images make the perfect backup file. Without any extra software or cost, Mac OS X will compress and encrypt the data into a single file that can be copied anywhere.<br id="biuf0" />While most backup programs need to be installed on a computer in order to be able to decrypt and read the backup, encrypted disk images can be opened on any Macintosh.</p>
<p id="ad.10"><span id="ep::0" class="Apple-style-span"><strong id="xu:d">Creating the disk image with Disk Utility</strong></span>.</p>
<p id="ad.10">Disk Utility is located in the Applications/Utilities folder on the hard drive. Most people only use Disk Utility to repair disks and permissions, but it can also be used as a backup program.</p>
<p id="ad.10">Go under the File menu and select New. A pop-up menu will show up with two options: Blank Disk Image and Disk Image from Folder. Choose the Disk Image from Folder and a dialogue box comes up and asks you to select the folder that you wish to backup. After selecting the folder that you want to back up another dialogue box appears asking you to name the disk image to be created and specify the type of disk image to be created. For backups, select compressed for Image Format and 128-bit AES encryption for Encryption. Mac OS X 10.5 Leopard adds the option for 256-bit AES encryption with is more secure, but takes longer to create and open up. Next a box appears asking you to enter a password for the encrypted disk image. Choose a difficult password because disk images can be opened if someone can guess your password. Microsoft offers a free <a id="r4d_" title="password strength tester" href="http://www.microsoft.com/protect/yourself/password/checker.mspx">online password strength tester</a> and notes about creating passwords that cannot be easily guessed.</p>
<p id="ad.10">Selecting the <span id="lcp20" class="Apple-style-span"><strong id="xu:d0">Save Password in Keychain</strong></span> option means that the password to the disk image will be stored under your account information on that Mac. The image can be opened up by manually entering a password. If you are the only user of that computer, then this option can save time. However, if you share the computer with other people and do not have separate user accounts, then they can open the backup file too.</p>
<p>Now that the file is created, the image can be moved to another computer or flash drive in case the primary hard drive fails.</p>


<p>Related posts:<ol><li><a href='http://routernotes.com/2008/06/30/create-encrypted-disk-images-with-a-script/' rel='bookmark' title='Permanent Link: Create encrypted disk images with a script'>Create encrypted disk images with a script</a> <small>Disk images are one the great things that Mac OS...</small></li><li><a href='http://routernotes.com/2008/07/07/encrypt-your-thumbdrive-protect-your-identity/' rel='bookmark' title='Permanent Link: Encrypt your Thumbdrive: Protect your identity'>Encrypt your Thumbdrive: Protect your identity</a> <small>The little flash devices are the modern day floppy disk...</small></li><li><a href='http://routernotes.com/2008/01/14/disable-time-machine-from-nagging-about-every-disk-in-leopard/' rel='bookmark' title='Permanent Link: Disable Time Machine from nagging about every disk in Leopard'>Disable Time Machine from nagging about every disk in Leopard</a> <small>Time Machine is a great utility, but it asks if...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://routernotes.com/2008/06/16/create-encrypted-backups-with-disk-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
