<?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; OS X</title>
	<atom:link href="http://routernotes.com/tag/os-x/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>
		<item>
		<title>Order Pizza on your AppleTV</title>
		<link>http://routernotes.com/2008/03/03/order-pizza-on-your-appletv/</link>
		<comments>http://routernotes.com/2008/03/03/order-pizza-on-your-appletv/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 14:31:44 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[AppleTV]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Media Player]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Pizza]]></category>

		<guid isPermaLink="false">http://routernotes.com/2008/03/03/order-pizza-on-your-appletv/</guid>
		<description><![CDATA[Unlike the iPod, the AppleTV certainly hasn&#8217;t been the marketing success that Apple hoped for but hackers sure love it.
From the day that the AppleTV shipped, hackers have dissected the diminutive media player and found ways to add cool and innovative features like playing new video formats, upgrading the hard drive and turning one into [...]


Related posts:<ol><li><a href='http://routernotes.com/2008/01/31/diybuild-your-own-media-player-from-an-old-pda/' rel='bookmark' title='Permanent Link: DIY:Build your own Media Player from an old PDA'>DIY:Build your own Media Player from an old PDA</a> <small>The Core Pocket Media Player, TCPMP, for short, is a...</small></li><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/2007/10/08/itunes-recovery-service/' rel='bookmark' title='Permanent Link: iTunes Recovery Service'>iTunes Recovery Service</a> <small>Had a friend bring me his poor little Intel Mac...</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>Unlike the iPod, the AppleTV certainly hasn&#8217;t been the marketing success that Apple hoped for but hackers sure love it.<br />
From the day that the AppleTV shipped, hackers have dissected the diminutive media player and found ways to add cool and innovative features like playing new video formats, upgrading the hard drive and turning one into a fully working Mac OS X computer.<br />
One modification enables you to <a href="http://www.appletvhacks.net/2008/01/21/pizza-on-demand-ultimate-in-apple-tv-hacks/" title="order pizza with an AppleTV" target="_blank" id="p.ea">order pizza</a> directly from the AppleTV with just the remote control, perfect for the lazy college student that wants to order pizza without taking time to boot up their laptop computer.<br />
<!-- START CUSTOM WIDGETBUCKS CODE -->
<div><script src="http://api.widgetbucks.com/script/ads.js?uid=yMPfdCLYyAawM9Av"></script></div>
<p><!-- END CUSTOM WIDGETBUCKS CODE --></p>
<p><strong>What can a hacked AppleTV do?</strong><br />
Play various video formats in addition to Mp4<br />
Order pizza<br />
Make Skype calls<br />
Use a web browser<br />
Run a full version of Mac OS X<br />
Use a keyboard and mouse<br />
Use an external hard drive<br />
Enable file server and web server<br />
<strong>Getting started with Hacking an AppleTV</strong><br />
The first hacks for the AppleTV involved a bit of surgery and exposure to AppleTV innards. The hard drive had to be removed, mounted into a USB hard drive enclosure and special software loaded from a Macintosh before re-installation back into the AppleTV. But the process has been refined to a no-screwdriver-required method. The <a href="http://wiki.awkwardtv.org/wiki/Patchstick" title="AppleTV Patchstick" target="_blank" id="atw5">Patchstick Method</a> involves installing software on a USB flash drive and plugging it into the AppleTV&#8217;s USB port which Apple reserves for repairs. When the AppleTV boots up, the thumb drive automatically loads the software needed to connect remotely to the media player and install other modifications.<br />
<strong>Why do hackers love the AppleTV?</strong><br />
Apple&#8217;s media player is the perfect piece of computer hardware. First, it&#8217;s smaller than even a Mac Mini, uses low power, is quiet and is relatively inexpensive compared to other media center computers. Additionally, the AppleTV has the right video connectors to hook to a new HD TV and a remote control. Underneath the hood, the AppleTV is really a single board computer with a relatively powerful processor running an interface program Back Row. Hackers only needed to enable the parts of Mac OS X that Apple had hidden and then they had a full computer to load whatever software that they wanted. Once one of the media players has been modified to run an unrestricted copy of Mac OS X, the AppleTV becomes the least expensive Macintosh available coming in at nearly half the price of a Mac Mini.<br />
<strong>This probably voids the warranty</strong><br />
Apple will make little effort to make sure that future software updates to the AppleTV do not break any modifications, so owners of modified AppleTVs may not be able to take advantage of new features and bug fixes provided by Apple. But then again, there&#8217;s always a new hack out. Check out <a href="http://www.appletvhacks.net/" title="AppleTVhacks" target="_blank" id="v-pp">AppleTVhacks</a> for an ongoing list of hacks, modifications and How-To&#8217;s.</p>


<p>Related posts:<ol><li><a href='http://routernotes.com/2008/01/31/diybuild-your-own-media-player-from-an-old-pda/' rel='bookmark' title='Permanent Link: DIY:Build your own Media Player from an old PDA'>DIY:Build your own Media Player from an old PDA</a> <small>The Core Pocket Media Player, TCPMP, for short, is a...</small></li><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/2007/10/08/itunes-recovery-service/' rel='bookmark' title='Permanent Link: iTunes Recovery Service'>iTunes Recovery Service</a> <small>Had a friend bring me his poor little Intel Mac...</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/03/03/order-pizza-on-your-appletv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
