<?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>Geekzine.org</title>
	<atom:link href="http://geekzine.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://geekzine.org</link>
	<description>For geeks, by geeks.</description>
	<lastBuildDate>Wed, 27 May 2009 15:12:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to start VNC remotely on a Mac OS X</title>
		<link>http://geekzine.org/2009/05/27/how-to-start-vnc-remotely-on-a-mac-os-x/</link>
		<comments>http://geekzine.org/2009/05/27/how-to-start-vnc-remotely-on-a-mac-os-x/#comments</comments>
		<pubDate>Wed, 27 May 2009 15:12:55 +0000</pubDate>
		<dc:creator>Martin Perron</dc:creator>
				<category><![CDATA[HowTo - Mac OS X]]></category>

		<guid isPermaLink="false">http://geekzine.org/?p=481</guid>
		<description><![CDATA[Once you get SSH’d in you can change the VNC password and start the VNC service using the following command:
sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -activate -configure -clientopts -setvnclegacy -vnclegacy yes -setvncpw -vncpw VNCPASSWORDHERE -restart -agent
So have fun remoting your box!  Btw to VNC over SSH just type something like: “ssh -L 5903:localhost:5900 example.com “.  You can then VNC [...]]]></description>
			<content:encoded><![CDATA[<div>Once you get SSH’d in you can change the VNC password and start the VNC service using the following command:</div>
<blockquote><p><code>sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -activate -configure -clientopts -setvnclegacy -vnclegacy yes -setvncpw -vncpw VNCPASSWORDHERE -restart -agent</code></p></blockquote>
<div>So have fun remoting your box!  Btw to VNC over SSH just type something like: “ssh -L 5903:localhost:5900 example.com “.  You can then VNC to your local machine on port 5903 or “display” 3.</div>
<div>Edit: Hmm when I did this my VNC service’s cpu usage went through the roof.  Not sure if this will happen for everyone but just in case, restarting it fixed it:</div>
<blockquote><p><code>sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -restart -agent</code></p></blockquote>
<p>From: <a href="http://ericboehs.com/blog/?p=18" target="_blank">http://ericboehs.com/blog/?p=18</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fgeekzine.org%2F2009%2F05%2F27%2Fhow-to-start-vnc-remotely-on-a-mac-os-x%2F&amp;linkname=How%20to%20start%20VNC%20remotely%20on%20a%20Mac%20OS%20X"><img src="http://geekzine.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://geekzine.org/2009/05/27/how-to-start-vnc-remotely-on-a-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Force umount on Linux</title>
		<link>http://geekzine.org/2009/05/19/force-umount-on-linux/</link>
		<comments>http://geekzine.org/2009/05/19/force-umount-on-linux/#comments</comments>
		<pubDate>Tue, 19 May 2009 16:29:22 +0000</pubDate>
		<dc:creator>Martin Perron</dc:creator>
				<category><![CDATA[HowTo - Linux]]></category>

		<guid isPermaLink="false">http://geekzine.org/?p=477</guid>
		<description><![CDATA[Did you ever had a problem to unmount a drive/share on a linux system? Maybe the mount share is not accessible but the mount still there.
Example:
umount /mnt/blah
unmount error 16 = Device or resource busy
Refer to the umount.cifs(8) manual page (man 8 umount.cifs)
You can do the following:
umount -f /mnt/blah
If it doesnt work, use the lazyness method:
umount [...]]]></description>
			<content:encoded><![CDATA[<p>Did you ever had a problem to unmount a drive/share on a linux system? Maybe the mount share is not accessible but the mount still there.</p>
<p>Example:</p>
<blockquote><p>umount /mnt/blah<br />
unmount error 16 = Device or resource busy<br />
Refer to the umount.cifs(8) manual page (man 8 umount.cifs)</p></blockquote>
<p>You can do the following:</p>
<blockquote><p>umount -f /mnt/blah</p></blockquote>
<p>If it doesnt work, use the lazyness method:</p>
<blockquote><p>umount -l /mnt/blah</p></blockquote>
<p>Test if your mount is still mounted with the command mount</p>
<blockquote><p>mount</p></blockquote>
<p>What man say about umount</p>
<blockquote><p>man umount</p></blockquote>
<blockquote><p>-f     Force unmount (in case of an unreachable NFS system).  (Requires<br />
kernel 2.1.116 or later.)</p>
<p>-l     Lazy unmount. Detach the filesystem from the filesystem  hierar-<br />
chy now, and cleanup all references to the filesystem as soon as<br />
it is not busy anymore.  (Requires kernel 2.4.11 or later.)</p></blockquote>
<p>Enjoy!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fgeekzine.org%2F2009%2F05%2F19%2Fforce-umount-on-linux%2F&amp;linkname=Force%20umount%20on%20Linux"><img src="http://geekzine.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://geekzine.org/2009/05/19/force-umount-on-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Try windows 7 RC 7100</title>
		<link>http://geekzine.org/2009/05/07/try-windows-7-rc-7100/</link>
		<comments>http://geekzine.org/2009/05/07/try-windows-7-rc-7100/#comments</comments>
		<pubDate>Thu, 07 May 2009 16:46:53 +0000</pubDate>
		<dc:creator>Martin Perron</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://geekzine.org/?p=472</guid>
		<description><![CDATA[Want to try windows 7 RC 7100 ? Easy! go download your free copy to
http://windows7.com/

It supposed to be the latest Release candidate!
Enjoy!
]]></description>
			<content:encoded><![CDATA[<p>Want to try windows 7 RC 7100 ? Easy! go download your free copy to</p>
<p><a href="http://windows7.com/" target="_blank">http://windows7.com/</a></p>
<p><a href="http://geekzine.org/wp-content/uploads/2009/05/windows_7_graphic_tiny.jpg"><img class="alignleft size-full wp-image-473" title="windows_7_graphic_tiny" src="http://geekzine.org/wp-content/uploads/2009/05/windows_7_graphic_tiny.jpg" alt="windows_7_graphic_tiny" width="98" height="98" /></a></p>
<p>It supposed to be the latest Release candidate!</p>
<p>Enjoy!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fgeekzine.org%2F2009%2F05%2F07%2Ftry-windows-7-rc-7100%2F&amp;linkname=Try%20windows%207%20RC%207100"><img src="http://geekzine.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://geekzine.org/2009/05/07/try-windows-7-rc-7100/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu 9.04 is out!</title>
		<link>http://geekzine.org/2009/05/01/ubuntu-904-is-out/</link>
		<comments>http://geekzine.org/2009/05/01/ubuntu-904-is-out/#comments</comments>
		<pubDate>Fri, 01 May 2009 02:05:05 +0000</pubDate>
		<dc:creator>Martin Perron</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://geekzine.org/?p=467</guid>
		<description><![CDATA[Sorry about my lazyness! Im late on the news but&#8230; Ubuntu Jaunty 9.04 is OUT!
Also,we can now have a netbooks versions call Netbook remix
Enjoy!
Download

http://Ubuntu.com
]]></description>
			<content:encoded><![CDATA[<p>Sorry about my lazyness! Im late on the news but&#8230; Ubuntu Jaunty 9.04 is OUT!</p>
<p>Also,we can now have a netbooks versions call Netbook remix</p>
<p>Enjoy!</p>
<p><a href="http://www.ubuntu.com/getubuntu/download" target="_blank">Downlo</a><a href="http://www.ubuntu.com/getubuntu/download" target="_blank">ad</a></p>
<p><a href="http://www.ubuntu.com/getubuntu/download" target="_blank"></a><a href="http://www.ubuntu.com/getubuntu/download" target="_blank"><img class="size-full wp-image-468 alignleft" title="ubuntu_jaunty_jackalope_9_04_by_benja316png" src="http://geekzine.org/wp-content/uploads/2009/05/ubuntu_jaunty_jackalope_9_04_by_benja316png.jpg" alt="ubuntu_jaunty_jackalope_9_04_by_benja316png" width="75" height="75" /></a><a href="http://www.ubuntu.com/getubuntu/download" target="_blank"></a></p>
<p><a href="http://Ubuntu.com" target="_self">http://Ubuntu.com</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fgeekzine.org%2F2009%2F05%2F01%2Fubuntu-904-is-out%2F&amp;linkname=Ubuntu%209.04%20is%20out%21"><img src="http://geekzine.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://geekzine.org/2009/05/01/ubuntu-904-is-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto kill and logout users on Linux</title>
		<link>http://geekzine.org/2009/04/28/howto-kill-and-logout-users-on-linux/</link>
		<comments>http://geekzine.org/2009/04/28/howto-kill-and-logout-users-on-linux/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 17:23:41 +0000</pubDate>
		<dc:creator>Martin Perron</dc:creator>
				<category><![CDATA[HowTo - Linux]]></category>

		<guid isPermaLink="false">http://geekzine.org/?p=464</guid>
		<description><![CDATA[Type the following command to kill the user:
# skill -KILL -u theuser
]]></description>
			<content:encoded><![CDATA[<p>Type the following command to kill the user:</p>
<blockquote><p># skill -KILL -u theuser</p></blockquote>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fgeekzine.org%2F2009%2F04%2F28%2Fhowto-kill-and-logout-users-on-linux%2F&amp;linkname=Howto%20kill%20and%20logout%20users%20on%20Linux"><img src="http://geekzine.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://geekzine.org/2009/04/28/howto-kill-and-logout-users-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is your favorite package management system?</title>
		<link>http://geekzine.org/2009/04/18/what-is-your-favorite-package-management-system/</link>
		<comments>http://geekzine.org/2009/04/18/what-is-your-favorite-package-management-system/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 19:50:08 +0000</pubDate>
		<dc:creator>Martin Perron</dc:creator>
				<category><![CDATA[Polls]]></category>

		<guid isPermaLink="false">http://geekzine.org/?p=461</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[Note: There is a poll embedded within this post, please visit the site to participate in this post's poll.
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fgeekzine.org%2F2009%2F04%2F18%2Fwhat-is-your-favorite-package-management-system%2F&amp;linkname=What%20is%20your%20favorite%20package%20management%20system%3F"><img src="http://geekzine.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://geekzine.org/2009/04/18/what-is-your-favorite-package-management-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>After 16:9 television format, here&#8217;s the new 21:9 format from Philips!</title>
		<link>http://geekzine.org/2009/04/17/after-169-television-format-heres-the-new-219-format-from-philips/</link>
		<comments>http://geekzine.org/2009/04/17/after-169-television-format-heres-the-new-219-format-from-philips/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 21:05:58 +0000</pubDate>
		<dc:creator>Martin Perron</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://geekzine.org/?p=456</guid>
		<description><![CDATA[That video kick&#8217;s ass !!! Must see !!!
http://www.cinema.philips.com/?ls=gb_en
]]></description>
			<content:encoded><![CDATA[<p>That video kick&#8217;s ass !!! Must see !!!</p>
<p><a href="http://www.cinema.philips.com/?ls=gb_en" target="_blank">http://www.cinema.philips.com/?ls=gb_en</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fgeekzine.org%2F2009%2F04%2F17%2Fafter-169-television-format-heres-the-new-219-format-from-philips%2F&amp;linkname=After%2016%3A9%20television%20format%2C%20here%26%238217%3Bs%20the%20new%2021%3A9%20format%20from%20Philips%21"><img src="http://geekzine.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://geekzine.org/2009/04/17/after-169-television-format-heres-the-new-219-format-from-philips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Metric release their fourth album: Fantasies</title>
		<link>http://geekzine.org/2009/04/13/metric-release-their-fourth-album-fantasies/</link>
		<comments>http://geekzine.org/2009/04/13/metric-release-their-fourth-album-fantasies/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 20:53:14 +0000</pubDate>
		<dc:creator>Martin Perron</dc:creator>
				<category><![CDATA[Albums Reviews]]></category>
		<category><![CDATA[Featured]]></category>

		<guid isPermaLink="false">http://geekzine.org/?p=443</guid>
		<description><![CDATA[Metric release their fourth albums on March 31st, 2009 on iTunes.  It was released on April 7th in stores.
Metric is a Canadian New Wave/indie rock band. Originally formed in 1998 in New York City, they are currently based in Toronto, Ontario, Montreal, Quebec, Los Angeles, California and Brooklyn, New York.  (source: wikipedia)
I was septic about [...]]]></description>
			<content:encoded><![CDATA[<p>Metric release their fourth albums on March 31st, 2009 on iTunes.  It was released on April 7th in stores.</p>
<p><strong>Metric</strong> is a Canadian New Wave/indie rock band. Originally formed in 1998 in New York City, they are currently based in Toronto, Ontario, Montreal, Quebec, Los Angeles, California and Brooklyn, New York.  (source: <a href="http://en.wikipedia.org/wiki/Metric_(band)" target="_blank">wikipedia</a>)</p>
<p>I was septic about that album! Can they do a better album than the 3 others? I don&#8217;t say here that this is the best one but it&#8217;s one of my favorite!</p>
<p>That kind of album can be play over and over in a loop!</p>
<p><strong>8.5 / 10</strong></p>
<p style="text-align: center;"><a href="http://geekzine.org/wp-content/uploads/2009/04/metric-fantasies.jpg"><img class="size-medium wp-image-446 aligncenter" title="metric-fantasies" src="http://geekzine.org/wp-content/uploads/2009/04/metric-fantasies-300x297.jpg" alt="metric-fantasies" width="300" height="297" /></a></p>
<p>Official band website:  <a href="http://ilovemetric.com" target="_blank">http://ilovemetric.com</a></p>
<p>Wikipedia: <a href="http://en.wikipedia.org/wiki/Fantasies_(Metric_album)" target="_blank">http://en.wikipedia.org/wiki/Fantasies_(Metric_album)</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fgeekzine.org%2F2009%2F04%2F13%2Fmetric-release-their-fourth-album-fantasies%2F&amp;linkname=Metric%20release%20their%20fourth%20album%3A%20Fantasies"><img src="http://geekzine.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://geekzine.org/2009/04/13/metric-release-their-fourth-album-fantasies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watchmen Original Opening Sequence</title>
		<link>http://geekzine.org/2009/04/11/watchmen-original-opening-sequence/</link>
		<comments>http://geekzine.org/2009/04/11/watchmen-original-opening-sequence/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 18:58:20 +0000</pubDate>
		<dc:creator>Martin Perron</dc:creator>
				<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://geekzine.org/?p=425</guid>
		<description><![CDATA[Watch the original opening of Watchmen movie! Very nice!  
Sorry, they remove the video on youtube&#8230;!
]]></description>
			<content:encoded><![CDATA[<p>Watch the original opening of Watchmen movie! Very nice! <img src='http://geekzine.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a href="http://geekzine.org/2009/04/11/watchmen-original-opening-sequence/"><p><em>Click here to view the embedded video.</em></p></a>
<p>Sorry, they remove the video on youtube&#8230;!</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fgeekzine.org%2F2009%2F04%2F11%2Fwatchmen-original-opening-sequence%2F&amp;linkname=Watchmen%20Original%20Opening%20Sequence"><img src="http://geekzine.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://geekzine.org/2009/04/11/watchmen-original-opening-sequence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hack your iPhone or iPod touch with QuickPWN</title>
		<link>http://geekzine.org/2009/04/08/hack-your-iphone-or-ipod-touch-with-quickpwn/</link>
		<comments>http://geekzine.org/2009/04/08/hack-your-iphone-or-ipod-touch-with-quickpwn/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 00:19:53 +0000</pubDate>
		<dc:creator>Martin Perron</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[HowTo - General]]></category>

		<guid isPermaLink="false">http://geekzine.org/?p=412</guid>
		<description><![CDATA[
Want to find a quick solution on how to JailBreak your iPhone (edge/2G),  iPhone 3G or iPod Touch? It&#8217;s very simple with QuickPWN!
Why hacking your iPhone / iPod touch ? To put Cydia package manager or installer!
This HowTo is for educational purpose only. I&#8217;m not responsible if something goes wrong!
First, make sure you have the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.quickpwn.com/" target="_blank"><img class="alignnone size-full wp-image-414" title="quickpwn" src="http://geekzine.org/wp-content/uploads/2009/04/quickpwn.jpg" alt="quickpwn" width="80" height="80" /></a></p>
<p>Want to find a quick solution on how to JailBreak your iPhone (edge/2G),  iPhone 3G or iPod Touch? It&#8217;s very simple with <a href="http://www.quickpwn.com/downloads" target="_blank">QuickPWN</a>!</p>
<p>Why hacking your iPhone / iPod touch ? To put <a href="http://www.saurik.com/id/1" target="_blank">Cydia </a>package manager or <a href="http://iphone.nullriver.com/beta/" target="_blank">installer</a>!</p>
<blockquote><p>This HowTo is for educational purpose only. I&#8217;m not responsible if something goes wrong!</p></blockquote>
<p>First, make sure you have the latest firmware on your device with iTunes software. Also, backup  / sync your device in case something goes wrong. Then, download QuickPWN from the website:</p>
<p>* <strong><a title="QuickPWN 2.2.5 version 2" href="http://quickpwn2-2-1.googlecode.com/files/QuickPwn-225-2.zip">Download QuickPWN for Windows</a></strong><br />
* <strong><a title="QuickPWN 2.2.5 Mac" href="http://quickpwn2-2-1.googlecode.com/files/QuickPwn_2.2.5.dmg">Download QuickPWN for Mac</a></strong></p>
<p>Before, you start Jailbreaking your device, download the firmware of your device:<strong><br />
</strong></p>
<p><strong>iPhone Firmware</strong> (Edge / 2G)<br />
<strong><a title="Download iPhone firmware 2.2" href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-5779.20081120.Pt5yH/iPhone1,1_2.2_5G77_Restore.ipsw">iPhone  firmware 2.2</a></strong></p>
<p><a title="Download iPhone 2.2.1 firmware" href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-5830.20090127.Mmni6/iPhone1,1_2.2.1_5H11_Restore.ipsw"><strong>iPhone 2.2.1 firmware</strong></a></p>
<p><strong>iPhone 3G Firmware</strong><br />
<strong><a title="Download iPhone 3G firmware 2.2" href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-5778.20081120.Aqw4R/iPhone1,2_2.2_5G77_Restore.ipsw">iPhone 3G 2.2 firmware<br />
</a></strong></p>
<p><a title="Download iPhone 3G 2.2.1" href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-5828.20090127.aQLi8/iPhone1,2_2.2.1_5H11_Restore.ipsw"><strong>iPhone 3G 2.2.1 firmware</strong></a></p>
<p><strong>iPod Touch Firmware</strong></p>
<p><a title="Download iPod Touch 2.2.1 firmware" href="http://www.iphone-hacks.com/downloads/iPod1,1_2.2.1_5H11_Restore.ipsw"><strong>iPod Touch 1G 2.2.1 firmware</strong></a></p>
<p><strong><a title="Download iPod Touch 2G 2.2.1 firmware" href="http://appldnld.apple.com.edgesuite.net/content.info.apple.com/iPhone/061-5863.20090127.rt56K/iPod2,1_2.2.1_5H11a_Restore.ipsw">iPod Touch 2G 2.2.1 firmware</a></strong></p>
<p><strong>For all the firmware version, please refer to that website: </strong></p>
<p><a href="http://www.felixbruns.de/iPod/firmware/" target="_blank">http://www.felixbruns.de/iPod/firmware/</a></p>
<p><strong><br />
</strong></p>
<p>Now, you are ready to JailBreak your iPhone with QuickPWN. The software is very simple to use! I recommend installing only Cydia and Installer.</p>
<p>Don&#8217;t forget that you can always come back to the original firmware from Apple with iTunes. You just have to press the Restore button on iTunes.</p>
<p>Enjoy!!!</p>
<p>N.B: QuickPWN doesn&#8217;t work with iPod 2 &#8211; 2.2.1 5H11a, You can use <a href="http://quickfreedom.com/" target="_blank">QuickFreedom</a> !</p>
<p style="text-align: center;"><a href="http://www.quickpwn.com/" target="_blank"><br />
</a></p>
<p>Definition of <a href="http://www.saurik.com/id/1" target="_blank">Cydia </a>from <a href="http://en.wikipedia.org/wiki/Cydia_(iPhone_OS)" target="_blank">wikipedia</a>:</p>
<p><strong>Cydia</strong> <em>[sih-DEE-uh]</em> is a package installer/manager for the <a title="IPhone" href="http://en.wikipedia.org/wiki/IPhone">iPhone</a> and <a title="IPod Touch" href="http://en.wikipedia.org/wiki/IPod_Touch">iPod Touch</a>, created and maintained by Jay Freeman (saurik), which allows users to browse and download applications from a range of sources. Most applications are available to download for free, with some requiring purchase after downloading, and as of the 1.0.2790-44 release, applications are available to purchase from within the application.<sup id="cite_ref-0" class="reference"><a href="http://en.wikipedia.org/wiki/Cydia_%28iPhone_OS%29#cite_note-0"><span>[</span>1<span>]</span></a></sup> The applications are downloaded directly to iPhone or iPod Touch and are located in the /Applications/ directory , in the same place where &#8216;Apple&#8217; native applications are located. App Store applications are located in /var/mobile/Applications/</p>
<p>Cydia is a front end/graphical interface for a port of <a title="Advanced Packaging Tool" href="http://en.wikipedia.org/wiki/Advanced_Packaging_Tool">APT</a> created by Freeman.</p>
<p>Cydia is usually installed on an iPhone via <a title="Jailbreak (iPhone)" href="http://en.wikipedia.org/wiki/Jailbreak_%28iPhone%29">jailbreaking</a>; it is included in <a class="mw-redirect" title="QuickPwn" href="http://en.wikipedia.org/wiki/QuickPwn">QuickPwn</a> as an item that the user can select.</p>
<p>Definition of Installer from <a href="http://en.wikipedia.org/wiki/Cydia_(iPhone_OS)" target="_blank">wikipedia</a>:</p>
<p>Installer is another package installer, created and maintained by the Russian Rip-Dev company alongside other tools. The former maintainer of Installer, on pre 2.0 firmwares, was Nullriver, Inc.</p>
<p><a href="http://en.wikipedia.org/wiki/IPhone_Dev_Team" target="_blank">Iphone Dev Team</a></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fgeekzine.org%2F2009%2F04%2F08%2Fhack-your-iphone-or-ipod-touch-with-quickpwn%2F&amp;linkname=Hack%20your%20iPhone%20or%20iPod%20touch%20with%20QuickPWN"><img src="http://geekzine.org/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://geekzine.org/2009/04/08/hack-your-iphone-or-ipod-touch-with-quickpwn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.566 seconds -->
