<?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>Snow Leopard Tips &#187; Tutorials</title>
	<atom:link href="http://snowleopardtips.net/tutorials/feed" rel="self" type="application/rss+xml" />
	<link>http://snowleopardtips.net</link>
	<description>Tips, tricks, hacks and news about Mac OS 10.6</description>
	<lastBuildDate>Tue, 02 Mar 2010 11:11:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to display the date on the menu bar</title>
		<link>http://snowleopardtips.net/tips/how-to-display-the-date-on-the-menu-bar.html</link>
		<comments>http://snowleopardtips.net/tips/how-to-display-the-date-on-the-menu-bar.html#comments</comments>
		<pubDate>Tue, 02 Mar 2010 11:01:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://snowleopardtips.net/?p=534</guid>
		<description><![CDATA[it can be a big pain when all you need is a quick way to find the current date. Before Snow Leopard you would have to install a new application to get the job done. Now with a simple change in the system preferences you can display the current date on the menu bar.
Just go to the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="calendar" src="http://www.clker.com/cliparts/d/d/e/4/11971020131225279701jilagan_Calendar_Icon_(Large).svg.med.png" alt="" width="180" height="159" />it can be a big pain when all you need is a quick way to find the current date. Before Snow Leopard you would have to install a new application to get the job done. Now with a simple change in the system preferences you can display the current date on the menu bar.</p>
<p>Just go to the &#8216;Date &amp; Time&#8217; pane of the system preferences. On that page you can click &#8216;Show Date&#8217; to start displaying the date. It&#8217;s a really simple tweak but one that can be extremely useful in everyday use of OS X.</p>
]]></content:encoded>
			<wfw:commentRss>http://snowleopardtips.net/tips/how-to-display-the-date-on-the-menu-bar.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Spoofing your MAC address in Snow Leopard</title>
		<link>http://snowleopardtips.net/tutorials/spoofing-your-mac-address-in-snow-leopard.html</link>
		<comments>http://snowleopardtips.net/tutorials/spoofing-your-mac-address-in-snow-leopard.html#comments</comments>
		<pubDate>Fri, 04 Dec 2009 16:24:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[airport]]></category>
		<category><![CDATA[mac address]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[spoof]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://snowleopardtips.net/?p=400</guid>
		<description><![CDATA[A MAC address, sometimes also refereed to as "physical address" is a unique identifier assigned to every network device. In this short tutorial, learn how to easily change your computer's MAC address.]]></description>
			<content:encoded><![CDATA[<p>A <strong>MAC address</strong>, sometimes also refereed to as &#8220;physical address&#8221; is a unique identifier assigned to every network device. Contrarily to the IP address, which can change dynamically, a MAC address is a bit like a serial number intended to <strong>differentiate every network device on the planet</strong>. Here&#8217;s what it looks like : 01:23:45:67:89:ab.</p>
<p>Changing or &#8220;<strong>spoofing</strong>&#8221; your MAC address can be desired for multiple reasons and is quite simple to do in Snow Leopard.</p>
<p>In this tutorial, we&#8217;ll assume you want to <strong>change your wireless adapter&#8217;s physical address</strong>.</p>
<p>To find out what is your AirPort card&#8217;s current MAC address, type this in the Terminal.</p>
<blockquote><p><code>ifconfig en1 | grep ether</code></p></blockquote>
<h2>Step 1 : disassociate from all wireless networks</h2>
<p>This means to disconnect all current wireless network connections while leaving AirPort enabled.</p>
<p>Open the Terminal and paste this command :</p>
<blockquote><p><code>sudo /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport -z</code></p></blockquote>
<p>You will be asked for your password to execute this command.</p>
<p>The <code>airport</code> command is part or Apple&#8217;s Apple80211 framework. Essentially, it&#8217;s what connects you to Wifi networks. The <code>-z</code> option disassociates from any network.</p>
<div class="notice">
<p><strong>Tip: </strong>You can set up a simpler access to the airport command by creating a symbolic link. To do this, paste the following command in the Terminal:</p>
<blockquote><p><code>sudo ln -s /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport /usr/sbin/airport</code></p></blockquote>
<p><code> </code></p>
</div>
<p>Next time, you will simply need to type <code>ariport -z</code> to disassociate. You may also use <code>airport -I</code> to get information on your current connection.</p>
<h2>Step 2: Change your MAC address</h2>
<p>Once disassociated from the wireless network. You can change the MAC address with:</p>
<blockquote><p><code>sudo ifconfig en1 ether 00:00:00:00:00:00</code></p></blockquote>
<p>You can of course enter what ever you want as long as it is in the correct format. You can verify with <code>ifconfig en1 | grep ether</code> that your address is changed.</p>
<p>To revert your MAC address back to its default, simply reboot your machine.</p>
]]></content:encoded>
			<wfw:commentRss>http://snowleopardtips.net/tutorials/spoofing-your-mac-address-in-snow-leopard.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>How to do a clean installation of Snow Leopard</title>
		<link>http://snowleopardtips.net/tutorials/how-to-do-a-clean-installation-of-snow-leopard.html</link>
		<comments>http://snowleopardtips.net/tutorials/how-to-do-a-clean-installation-of-snow-leopard.html#comments</comments>
		<pubDate>Mon, 31 Aug 2009 23:55:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[advanced installation]]></category>
		<category><![CDATA[clean install]]></category>
		<category><![CDATA[disk utility]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[snow leoaprd]]></category>

		<guid isPermaLink="false">http://snowleopardtips.net/?p=158</guid>
		<description><![CDATA[Hardcore geeks who want the top of the line Snow Leopard experience can format their hard drive, install a clean copy of Mac OS 10.6, restore their data and reinstall their applications from backup.]]></description>
			<content:encoded><![CDATA[<p>Hardcore geeks (you know who you are) who want the top of the line Snow Leopard experience can <strong>format</strong> their hard drive, install a <strong>clean copy</strong> of Mac OS 10.6, restore their data and <strong>reinstall</strong> their applications from <strong>backup</strong>.</p>
<p>The advantage of going this route as opposed to simply upgrading from 10.5 is that you know your installation will be <strong>100% clutter free</strong>. It&#8217;s also a good occasion to clean out the ol&#8217; home folder from any files that have been lingering since your last re-install (the Download folder can quickly get to be enormous).</p>
<p>The disadvantage of course is that this approach <strong>takes time</strong>. Depending on your personal settings and the number of apps you use, it can take a few days to get your system back to the way you like it.</p>
<p>So if you&#8217;ve made it this far, its probably because you&#8217;ve decided to take the long way home and do a <strong>clean install</strong>. The actual installation takes about <strong>45 minutes</strong> so make sure there&#8217;s something good on TV before you start.</p>
<p>So let&#8217;s get started:</p>
<ol>
<li> Insert your cool new <strong>Snow Leopard</strong> disk in your Mac and reboot.</li>
<li>Once the system restarts into the installer, select your language and click <em>Continue</em> at the Install Mac OS X screen. The following screen will show the available partitions on your system.</li>
<li>Before we select which drive to install Snow Leopard on, we&#8217;ll select <strong>Disk Utility</strong> from the Utilities menu. This is the part where we format the drive. From the list on the left, select your hard drive and click on the <em>Partition</em> tab. Partition the drive to your liking and make sure your primary has the <strong>Mac OS Extended (Journaled)</strong> format.
<div class="notice">Notice: If you plan on later installing <strong>Windows</strong> with <strong>Bootcamp</strong>, now is a good time to make a second partition for that purpose. Leave at least 10Gb depending on your use.</div>
<p><img class="aligncenter size-full wp-image-153" title="Mac OS Disk Utility" src="http://snowleopardtips.net/wp-content/uploads/2009/08/apple-disk-utility.jpg" alt="Mac OS Disk Utility" width="500" height="439" />Once you&#8217;re all done, click <em>Apply</em> to partition your drive.</li>
<li>Once the partitioning magic is over, close Disk Utility. Back at the drive selection screen, you can click <em>Customize</em> to pick and chose some of the different components you wish to install. I personally like to disable the additional language support since I only use English, but you may have other language needs. Also, you can enable Quicktime 7 for legacy format support or Rosetta, a utility that translates Power-PC apps to Intel.</li>
<li>Once you&#8217;ve selected your drive and tweaked your installation, click <em>Install</em>.</li>
<li>Watch TV for about 45 minutes.</li>
<li>When the installer is done doing it&#8217;s thing and you hear the chime, click Done to restart into Snow Leopard!</li>
</ol>
<p>If you have anything to add this or would like to talk about your 10.6 installation experience, don&#8217;t be shy,  <strong>leave a comment</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://snowleopardtips.net/tutorials/how-to-do-a-clean-installation-of-snow-leopard.html/feed</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>How to Install Snow Leopard on PC with Dual Boot</title>
		<link>http://snowleopardtips.net/tutorials/how-to-install-snow-leopard-on-pc-with-dual-boot.html</link>
		<comments>http://snowleopardtips.net/tutorials/how-to-install-snow-leopard-on-pc-with-dual-boot.html#comments</comments>
		<pubDate>Mon, 31 Aug 2009 14:07:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[bootloader]]></category>
		<category><![CDATA[dual-boot]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[snow leoaprd]]></category>

		<guid isPermaLink="false">http://snowleopardtips.net/?p=146</guid>
		<description><![CDATA[Taranfx, a technology blog, has put out a very instructive and easy to follow tutorial entitled "How to Install MAC OS X Snow Leopard on PC – Dual Boot".]]></description>
			<content:encoded><![CDATA[<p><strong>Taranfx</strong>, a technology blog, has put out a very instructive and easy to follow tutorial entitled &#8220;<strong><a title="How to Install MAC OS X Snow Leopard on PC – Dual Boot" href="http://www.taranfx.com/blog/?p=1744" target="_blank">How to Install MAC OS X Snow Leopard on PC – Dual Boot</a></strong>&#8220;. As the name of the post suggests, this step-by-step guide will walk you through the process of installing <strong>Snow Leopard on a PC</strong>. Yes PC users need love too. Not everyone is fortunate enough to be blessed with a Mac.</p>
<p>The 8-step guide is simple to follow and shows you how to prepare your hard disk, install the <strong>Chameleon Bootloader</strong> need for <strong>dual-boot</strong> through to the install of Mac os 10.6.</p>
<p>PC users, prepare to fall in love.</p>
]]></content:encoded>
			<wfw:commentRss>http://snowleopardtips.net/tutorials/how-to-install-snow-leopard-on-pc-with-dual-boot.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
