<?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>Hackintosh Laptop &#187; dell hackintosh</title>
	<atom:link href="http://www.hackintoshlaptop.com/tag/dell-hackintosh/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hackintoshlaptop.com</link>
	<description>A non-Apple laptop running Mac OS X</description>
	<lastBuildDate>Thu, 09 Jun 2011 06:11:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Post Installation Steps on My Snow Leopard Dell Mini 10v Hackintosh</title>
		<link>http://www.hackintoshlaptop.com/post-installation-steps-on-my-snow-leopard-dell-mini-10v-hackintosh/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=post-installation-steps-on-my-snow-leopard-dell-mini-10v-hackintosh</link>
		<comments>http://www.hackintoshlaptop.com/post-installation-steps-on-my-snow-leopard-dell-mini-10v-hackintosh/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 05:56:32 +0000</pubDate>
		<dc:creator>Victor Goh</dc:creator>
				<category><![CDATA[Dell]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[dell hackintosh]]></category>
		<category><![CDATA[hackintosh setup]]></category>

		<guid isPermaLink="false">http://www.hackintoshlaptop.com/?p=121</guid>
		<description><![CDATA[My Dell Mini 10v Snow Leopard hackintosh installation though it was eventful, was still a relatively straightforward process. From what I&#8217;m seeing over at myDellMini.com, there are lot of folks who encountered various problems while installing Snow Leopard on their Mini 10v. After my installation experience, there are a few post-installation step that I would [...]
Related posts:<ol>
<li><a href='http://www.hackintoshlaptop.com/installing-mac-os-x-snow-leopard-on-my-dell-mini-10v/' rel='bookmark' title='Installing Mac OS X Snow Leopard on my Dell Mini 10v'>Installing Mac OS X Snow Leopard on my Dell Mini 10v</a></li>
<li><a href='http://www.hackintoshlaptop.com/a-beginners-guide-to-installing-mac-os-x-snow-leopard-on-the-dell-mini-10v/' rel='bookmark' title='A Beginners Guide to Installing Mac OS X Snow Leopard on the Dell Mini 10v'>A Beginners Guide to Installing Mac OS X Snow Leopard on the Dell Mini 10v</a></li>
<li><a href='http://www.hackintoshlaptop.com/my-first-impression-of-mac-os-x-snow-leopard-on-my-hackintosh-laptop/' rel='bookmark' title='My First Impression of Mac OS X Snow Leopard on my Hackintosh Laptop'>My First Impression of Mac OS X Snow Leopard on my Hackintosh Laptop</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-126" title="Dell Mini 10v Mac OS X About Box" src="http://www.hackintoshlaptop.com/wp-content/uploads/2009/09/about_dell_mini_10v.jpeg" alt="Dell Mini 10v Mac OS X About Box" width="321" height="365" /></p>
<p>My Dell Mini 10v Snow Leopard hackintosh installation though <a href="http://www.hackintoshlaptop.com/installing-mac-os-x-snow-leopard-on-my-dell-mini-10v/">it was eventful</a>, was still a relatively straightforward process. From what I&#8217;m seeing over at <a href="http://www.mydellmini.com/forum/dell-mini-10v-mac-os-x-discussion/">myDellMini.com</a>, there are lot of folks who encountered various problems while installing Snow Leopard on their Mini 10v. After my installation experience, there are a few post-installation step that I would recommend to anyone attempting to setup their Mini 10v as a hackintosh laptop.</p>
<p>For me, my most important post-installation step was to ensure audio, wifi and bluetooth works when the laptop wakes from sleep mode. I found these steps over at <a href="http://www.mydellmini.com/forum/os-x-snow-leopard/12700-two-methods-get-sound-after-sleep-10v.html">myDellMini.com</a> invaluable to enable audio after sleep. The following steps are taken from <a href="http://www.mydellmini.com/forum/os-x-snow-leopard/12700-two-methods-get-sound-after-sleep-10v.html">myDellMini.com</a>.</p>
<blockquote><p>Install sleepwatcher&#8230;.<a href="http://www.macupdate.com/info.php/id/10387">here</a><br />
Make sure you install both files of sleepwatcher. One is the main file and the other is a startup loader to ensure you have it every time you boot.</p>
<p>Go to your terminal and type<br />
Code:<br />
<code><br />
sudo nano /etc/rc.sleep<br />
</code><br />
remove the contents of the file ctrl+k will delete line by line&#8230;just hold it down<br />
copy and paste this<br />
Code:<br />
<code><br />
#!/bin/sh<br />
/sbin/kextunload /System/Library/Extensions/AppleHDA.kext/<br />
</code><br />
Ctrl+x to quit.<br />
Push Y to save</p>
<p>Now edit this file. In terminal type:<br />
Code:<br />
<code><br />
sudo nano /etc/rc.wakeup<br />
</code><br />
remove the contents of the file ctrl+k will delete line by line&#8230;just hold it down<br />
copy and paste this<br />
Code:<br />
<code><br />
!/bin/sh<br />
#<br />
osascript &lt;<br />
tell application "System Preferences"<br />
set the current pane to pane id "com.apple.preference.sound"<br />
end tell</code></p>
<p><code>if application "System Preferences" is running then<br />
tell application "System Preferences" to quit<br />
end if<br />
EOF</code></p>
<p><code> </code></p>
<p><code>/sbin/kextload /System/Library/Extensions/AppleHDA.kext/<br />
</code><br />
Ctrl+x to quit.<br />
Push Y to save</p>
<p>You are done.<br />
It takes about 15 seconds for audio to come back after sleep.<br />
Everything works including the audio volume buttons and mic.</p>
<p>This is a new workaround I discovered. It basically opens up the volume prefpane which notices that there is no audio device and then the script reloads it. This two step process seems to get everything working. The only side effect is if you have the system preferences open when you go to sleep this script will close it. (Not a big deal at all)</p>
<p>- taken from <a href="http://www.mydellmini.com/forum/os-x-snow-leopard/12700-two-methods-get-sound-after-sleep-10v.html">myDellMini.com</a>.</p></blockquote>
<p>The next thing I did was to perform a Time Machine Backup of the laptop. My backup was about 6+ GB in size and took around 30 minutes to complete. I used my old 80GB portable harddisk for the Time Machine backup. In the event that anything renders the Snow Leopard installation unusable, this Time Machine backup will be my fall back plan.</p>
<p>The third and final post-installation step was to run Software Update to update to Snow Leopard 10.6.1. The update went through smoothly. I am extremely pleased with my Dell Mini Mac 10v. It&#8217;s the perfect hackintosh netbook.</p>
<p>Related posts:<ol>
<li><a href='http://www.hackintoshlaptop.com/installing-mac-os-x-snow-leopard-on-my-dell-mini-10v/' rel='bookmark' title='Installing Mac OS X Snow Leopard on my Dell Mini 10v'>Installing Mac OS X Snow Leopard on my Dell Mini 10v</a></li>
<li><a href='http://www.hackintoshlaptop.com/a-beginners-guide-to-installing-mac-os-x-snow-leopard-on-the-dell-mini-10v/' rel='bookmark' title='A Beginners Guide to Installing Mac OS X Snow Leopard on the Dell Mini 10v'>A Beginners Guide to Installing Mac OS X Snow Leopard on the Dell Mini 10v</a></li>
<li><a href='http://www.hackintoshlaptop.com/my-first-impression-of-mac-os-x-snow-leopard-on-my-hackintosh-laptop/' rel='bookmark' title='My First Impression of Mac OS X Snow Leopard on my Hackintosh Laptop'>My First Impression of Mac OS X Snow Leopard on my Hackintosh Laptop</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.hackintoshlaptop.com/post-installation-steps-on-my-snow-leopard-dell-mini-10v-hackintosh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

