RSS



An introduction to Linux compression or what the heck is a tar.gz file?

Tue, Oct 3, 2006

ArsGeek, Linux, Ubuntu

Talk about it in our Forums

<meta content="OpenOffice.org 2.0 (Linux)" name="GENERATOR" /><meta content="ben" name="AUTHOR" /><meta content="20061003;11250800" name="CREATED" /><meta content="ben" name="CHANGEDBY" /><meta content="20061003;12513000" name="CHANGED" /><br /> <style type="text/css"> <!-- @page { size: 8.5in 11in; margin: 0.79in } P { margin-bottom: 0.08in } --> </style> <p style="margin-bottom: 0in"><img width="203" height="166" align="top" title="Squash!" alt="Squash!" src="http://linuxmachines.tripod.com/images/bctepic.gif" /></p> <p style="margin-bottom: 0in">If you’re new to Linux and intent on peering under the hood a bit to see what makes things work, then you’ve probably encountered a range of files which are compressed in various formats. This guide is meant to be a quick and easy way to distinguish what’s what in compressed files. It’s written on and for Ubuntu but will be very useful for other distributions as well.</p> <p style="margin-bottom: 0in"><!--digg--><br /> <span id="more-602"></span></p> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">.gz, .tar.gz, .bz2, .zip – these are all files that have been compressed in one form or another. Compressed? There’s a <a target="_blank" href="http://en.wikipedia.org/wiki/Data_compression">real good technical explanation</a> for what compression is and how the varying utilities achieve their end goal, but we’re not going to go into this here. Suffice it to say that compressing something is squishing it down to a smaller size so that it can be more easily stored or transported about. Uncompressing is doing the opposite so that we end up with the original, full sized file in the end.</p> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">Let’s look at some of the more common compression utilities and compressed files you’re likely to find in Linux.</p> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">The first thing we’re going to tackle is the tarball. This is one of the oldest and still widely used compression methods that was originally used to store data on tapes. Tar comes from Tape ARchive.</p> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">You’ll most likely encounter tarballs as tar.gz files, which is to say foo.tar.gz is a tarball. It could contain a single text file, or 3 Gigabytes worth of directories and files. Tar’d files are not really smaller than untar’d files, which is why they’re further compressed with a utility called Gzip – hence the .gz after the .tar. So foo.tar.gz has been set for archiving (tar) and then compressed (gzip). Another way of looking at it is that tar can take multiple files an make one big file out of them, then gzip squashes them down.</p> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">Once you’ve gotten yourself a tarball – perhaps you’ve downloaded a neat utility you want to install, what do you do with it? Most distros will allow you to right click on the tarball through the GUI and simply choose ‘extract here’. If you’re looking at it through a terminal session however, here’s what you want to do.</p> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">If you have a tarball called foo.tar.gz and you want to extract it, type:</p> <p style="margin-bottom: 0in"> <blockquote> <p style="margin-bottom: 0in">tar zxvf foo.tar.gz</p> </blockquote> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">That will extract the tarball, preserving directory structures. Note also that .tgz files are the same thing as tar.gz just in a shorter written (or typed) format.</p> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">Want to make a tarball from a directory called bar containing the files foo1 and foo2?</p> <p style="margin-bottom: 0in"> <blockquote> <p style="margin-bottom: 0in">tar -czvf foobar.tar.gz bar/</p> </blockquote> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">Let’s look a little closer at gzip, as it’s an easy to use utility. If you have a large file, say a 2 MB document called yowsa.txt that you want to compress, you could use gzip as follows:</p> <p style="margin-bottom: 0in"> <blockquote> <p style="margin-bottom: 0in">gzip yowsa.txt</p> </blockquote> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">That would give you a file called yowsa.txt.gz To uncompress this file, type:</p> <p style="margin-bottom: 0in"> <blockquote> <p style="margin-bottom: 0in">gzip -d yowsa.txt.gz</p> </blockquote> <p style="margin-bottom: 0in">or</p> <p style="margin-bottom: 0in"> <blockquote> <p style="margin-bottom: 0in">gunzip yowsa.txt.gz</p> </blockquote> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">And for bonus points, say you have a gzipped file called yowsa.txt.gz that you want to look at without uncompressing. Use the zcat program to do this. It functions much as cat, except on gzipped files.</p> <p style="margin-bottom: 0in"> <blockquote> <p style="margin-bottom: 0in">zcat yowsa.txt.gz</p> </blockquote> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">The other file format you’re most likely to encounter in Linux-land is the .bz2 file, or stuff crunched up with Bzip2. This one’s pretty simple. If you have a file called foo.bz2 and you want to uncompress it:</p> <p style="margin-bottom: 0in"> <blockquote> <p style="margin-bottom: 0in">bunzip2 foo.bz2</p> </blockquote> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">If you want to compress the file foo:</p> <p style="margin-bottom: 0in"> <blockquote> <p style="margin-bottom: 0in">bzip2 foo</p> </blockquote> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">That will result in a file called foo.bz2. Remember that bzip2 compresses and bunzip2 expands. Why bzip2 and not just bzip? The same reason we have <em>7 Up</em> and not just <em>Up</em>.</p> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">Last but not least, is the good old .zip file. This is a file that you’re just as likely to encounter in the Windows world as in the Linux world and it should look comfortably familiar. Except that you’ll be doing this in the command line!</p> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">If you have a file like foo.zip and you want to uncompress it:</p> <p style="margin-bottom: 0in"> <blockquote> <p style="margin-bottom: 0in">unzip foo.zip</p> </blockquote> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">Say you want to make a zip file that’s also password protected:</p> <p style="margin-bottom: 0in"> <blockquote> <p style="margin-bottom: 0in">zip -e foo.zip foo</p> </blockquote> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">Note that the name of the compressed file (foo.zip) comes first, then the file you wish to compress next.</p> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">As always there are a ton of other things you can do with these nifty little programs. Remember that the man command is your friend. Use it often, use it well.</p> <p style="margin-bottom: 0in"> <p style="margin-bottom: 0in">geek out.</p> <p style="margin-bottom: 0in"> <script type="text/javascript">AKPC_IDS += "602,";</script><p class="akpc_pop">Popularity: 1% <span class="akpc_help">[<a href="http://alexking.org/projects/wordpress/popularity-contest" title="What does this mean?">?</a>]</span></p><div class='sociable'><div class='sociable-tagline'><strong>Share and Enjoy:</strong></div><ul><li><a rel='nofollow' href='http://digg.com/submit?phase=2&url=http%3A%2F%2Fwww.arsgeek.com%2F2006%2F10%2F03%2Fan-introduction-to-linux-compression-or-what-the-heck-is-a-targz-file%2F&title=An%20introduction%20to%20Linux%20compression%20or%20what%20the%20heck%20is%20a%20tar.gz%20file%3F&bodytext=%20%09%20%09%20%09%20%09%20%09%20%09%20%09%20%09%20%09%0D%0A%0D%0AIf%20you%27re%20new%20to%20Linux%20and%20intent%20on%20peering%20under%20the%20hood%20a%20bit%20to%20see%20what%20makes%20things%20work%2C%20then%20you%27ve%20probably%20encountered%20a%20range%20of%20files%20which%20are%20compressed%20in%20various%20formats.%20%20This%20guide%20is%20meant%20to%20be%20a%20quick%20and%20e'><img src='http://www.arsgeek.com/wp-content/plugins/sociable/images/default/16/digg.png' class='sociable-img' title='Digg' alt='Digg' /></a></li><li><a rel='nofollow' href='http://delicious.com/post?url=http%3A%2F%2Fwww.arsgeek.com%2F2006%2F10%2F03%2Fan-introduction-to-linux-compression-or-what-the-heck-is-a-targz-file%2F&title=An%20introduction%20to%20Linux%20compression%20or%20what%20the%20heck%20is%20a%20tar.gz%20file%3F&notes=%20%09%20%09%20%09%20%09%20%09%20%09%20%09%20%09%20%09%0D%0A%0D%0AIf%20you%27re%20new%20to%20Linux%20and%20intent%20on%20peering%20under%20the%20hood%20a%20bit%20to%20see%20what%20makes%20things%20work%2C%20then%20you%27ve%20probably%20encountered%20a%20range%20of%20files%20which%20are%20compressed%20in%20various%20formats.%20%20This%20guide%20is%20meant%20to%20be%20a%20quick%20and%20e'><img src='http://www.arsgeek.com/wp-content/plugins/sociable/images/default/16/delicious.png' class='sociable-img' title='del.icio.us' alt='del.icio.us' /></a></li><li><a rel='nofollow' href='http://www.mister-wong.com/addurl/?bm_url=http%3A%2F%2Fwww.arsgeek.com%2F2006%2F10%2F03%2Fan-introduction-to-linux-compression-or-what-the-heck-is-a-targz-file%2F&bm_description=An%20introduction%20to%20Linux%20compression%20or%20what%20the%20heck%20is%20a%20tar.gz%20file%3F&plugin=soc'><img src='http://www.arsgeek.com/wp-content/plugins/sociable/images/default/16/misterwong.png' class='sociable-img' title='MisterWong' alt='MisterWong' /></a></li><li><a rel='nofollow' href='http://reddit.com/submit?url=http%3A%2F%2Fwww.arsgeek.com%2F2006%2F10%2F03%2Fan-introduction-to-linux-compression-or-what-the-heck-is-a-targz-file%2F&title=An%20introduction%20to%20Linux%20compression%20or%20what%20the%20heck%20is%20a%20tar.gz%20file%3F'><img src='http://www.arsgeek.com/wp-content/plugins/sociable/images/default/16/reddit.png' class='sociable-img' title='Reddit' alt='Reddit' /></a></li><li><a rel='nofollow' href='http://technorati.com/faves?add=http%3A%2F%2Fwww.arsgeek.com%2F2006%2F10%2F03%2Fan-introduction-to-linux-compression-or-what-the-heck-is-a-targz-file%2F'><img src='http://www.arsgeek.com/wp-content/plugins/sociable/images/default/16/technorati.png' class='sociable-img' title='Technorati' alt='Technorati' /></a></li><li><a rel='nofollow' href='http://www.blinklist.com/index.php?Action=Blink/addblink.php&Url=http%3A%2F%2Fwww.arsgeek.com%2F2006%2F10%2F03%2Fan-introduction-to-linux-compression-or-what-the-heck-is-a-targz-file%2F&Title=An%20introduction%20to%20Linux%20compression%20or%20what%20the%20heck%20is%20a%20tar.gz%20file%3F'><img src='http://www.arsgeek.com/wp-content/plugins/sociable/images/default/16/blinklist.png' class='sociable-img' title='BlinkList' alt='BlinkList' /></a></li><li><a rel='nofollow' href='http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.arsgeek.com%2F2006%2F10%2F03%2Fan-introduction-to-linux-compression-or-what-the-heck-is-a-targz-file%2F&t=An%20introduction%20to%20Linux%20compression%20or%20what%20the%20heck%20is%20a%20tar.gz%20file%3F'><img src='http://www.arsgeek.com/wp-content/plugins/sociable/images/default/16/facebook.png' class='sociable-img' title='Facebook' alt='Facebook' /></a></li><li><a rel='nofollow' href='http://cgi.fark.com/cgi/fark/farkit.pl?h=An%20introduction%20to%20Linux%20compression%20or%20what%20the%20heck%20is%20a%20tar.gz%20file%3F&u=http%3A%2F%2Fwww.arsgeek.com%2F2006%2F10%2F03%2Fan-introduction-to-linux-compression-or-what-the-heck-is-a-targz-file%2F'><img src='http://www.arsgeek.com/wp-content/plugins/sociable/images/default/16/fark.png' class='sociable-img' title='Fark' alt='Fark' /></a></li><li><a rel='nofollow' href='http://www.mixx.com/submit?page_url=http%3A%2F%2Fwww.arsgeek.com%2F2006%2F10%2F03%2Fan-introduction-to-linux-compression-or-what-the-heck-is-a-targz-file%2F&title=An%20introduction%20to%20Linux%20compression%20or%20what%20the%20heck%20is%20a%20tar.gz%20file%3F'><img src='http://www.arsgeek.com/wp-content/plugins/sociable/images/default/16/mixx.png' class='sociable-img' title='Mixx' alt='Mixx' /></a></li><li><a rel='nofollow' href='http://slashdot.org/bookmark.pl?title=An%20introduction%20to%20Linux%20compression%20or%20what%20the%20heck%20is%20a%20tar.gz%20file%3F&url=http%3A%2F%2Fwww.arsgeek.com%2F2006%2F10%2F03%2Fan-introduction-to-linux-compression-or-what-the-heck-is-a-targz-file%2F'><img src='http://www.arsgeek.com/wp-content/plugins/sociable/images/default/16/slashdot.png' class='sociable-img' title='Slashdot' alt='Slashdot' /></a></li></ul></div> </div> <div class="author_info"> <h3>This post was written by:</h3> <span class="author_photo"><img src="http://www.gravatar.com/avatar.php?gravatar_id=5c60ebfea32a4887de52a370c4ce2437&default=http%3A%2F%2Fwww.arsgeek.com%2Fwp-content%2Fthemes%2Ffreshnews%2Fimages%2Fgravatar.jpg&size=48" width="48" height="48" alt="" /></span> <p><a href="http://www.arsgeek.com/author/admin/" title="Posts by arsgeek">arsgeek</a> - who has written 1980 posts on <a href="http://www.arsgeek.com/">ArsGeek</a>.</p> <p> <br style="clear:both;" /></p> <p class="author_email"><a href="mailto:support@arsgeek.com">Contact the author</a></p> </div> </div><!--/post--> <div id="comments" class="box2"> <!-- You can start editing here. --> <h2 class="commh2">0 Comments For This Post</h2> <ol class="commentlist"> </ol> <h2 class="commh2">3 Trackbacks For This Post</h2> <ol class="commentlist"> <li class="alt " id="comment-433"> <cite><a href='http://zean.no-ip.info/~zean/blog/?p=1030' rel='external' class='url'>zean.no-ip.info » An introduction to Linux compression or what the heck is a tar.gz file?</a></cite> Says: <br /> <small class="commentmetadata"><a href="#comment-433" title="">October 3rd, 2006 at 10:34 pm</a> </small> <p>[...] If you’re new to Linux and intent on peering under the hood a bit to see what makes things work, then you’ve probably encountered a range of files which are compressed in various formats. This guide is meant to be a quick and easy way to distinguish what’s what in compressed files. It’s written on and for Ubuntu but will be very useful for other distributions as well.   [...]</p> </li> <li class=" " id="comment-880"> <cite><a href='http://www.mexico501.com/2006/10/27/an-introduction-to-linux-compression-or-what-the-heck-is-a-targz-file/' rel='external' class='url'>Mexico501 » Blog Archive » An introduction to Linux compression or what the heck is a tar.gz file?</a></cite> Says: <br /> <small class="commentmetadata"><a href="#comment-880" title="">October 27th, 2006 at 12:40 am</a> </small> <p>[...] Page Summary: This is one of the oldest and still widely used compression methods that was originally used to store data on tapes. It could contain a single text file, or 3 Gigabytes worth of directories and files. This guide is meant to be a quick and easy way to distinguish what?s what in compressed files. It?s written on and for Ubuntu but will be very useful for other distributions as well.read more | digg story [...]</p> </li> <li class="alt " id="comment-21259"> <cite><a href='http://kcblog.karibcorner.com/?p=1989' rel='external' class='url'>Karib Corner-Blog Reports » Blog Archive » An introduction to Linux compression or what the heck is a tar.gz file?</a></cite> Says: <br /> <small class="commentmetadata"><a href="#comment-21259" title="">July 14th, 2007 at 11:19 pm</a> </small> <p>[...] way to distinguish what�s what in compressed files. read more | digg story Filed under: Tech [...]</p> </li> </ol> <h2 class="commh2">Leave a Reply</h2> <form action="http://www.arsgeek.com/wp-comments-post.php" method="post" id="commentform"> <p style="padding:5px 0px 10px 0px;"><input type="text" name="author" id="author" value="" size="22" tabindex="1" /> <label for="author"><small>Name (required)</small></label></p> <p style="padding:5px 0px 10px 0px;"><input type="text" name="email" id="email" value="" size="22" tabindex="2" /> <label for="email"><small>Mail (will not be published) (required)</small></label></p> <p style="padding:5px 0px 10px 0px;"><input type="text" name="url" id="url" value="" size="22" tabindex="3" /> <label for="url"><small>Website</small></label></p> <!--<p><small><strong>XHTML:</strong> You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> </small></p>--> <p style="padding:5px 0px 10px 0px;"><textarea name="comment" id="comment" style="width:97%;" rows="10" tabindex="4"></textarea></p> <p style="padding:10px 0px 10px 0px;"><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" /> <input type="hidden" name="comment_post_ID" value="602" /> </p> <p style="clear: both;" class="subscribe-to-comments"> <input type="checkbox" name="subscribe" id="subscribe" value="subscribe" style="width: auto;" /> <label for="subscribe">Check this box to get an email notification whenever a new comment is posted.</label> </p> </form> </div> <center><script language=JavaScript src="http://aj.600z.com/aj/63333/0/vj?z=1&dim=63329"></script></center> <div class="navigation"> <div class="alignleft"></div> <div class="alignright"></div> </div> </div><!--/centercol--> <div id="sidebar" class="grid_6"> <center><script src="http://www.ientry.com/ustream_player.php" type="text/javascript"></script><br><br><script language=JavaScript src="http://aj.600z.com/aj/70419/0/vj?z=1&dim=122"></script><br><br><a href="http://www.ientry.com/10th-anniversary.html" title="iEntry 10 Year Anniversary!"><img src="http://images.ientrymail.com/ientry/10-anniversary9.jpg" border="0" alt="iEntry 10 Year Anniversary!"></center><br/> <div class="box2"> <ul class="idTabs"> <li><a href="#pop">Popular</a></li> <li><a href="#comm">Comments</a></li> <li><a href="#feat">Featured</a></li> <li><a href="#tagcloud">Tags</a></li> </ul> <div class="spacer white"> <ul class="list1" id="pop"> <li><a href="http://www.arsgeek.com/2008/01/15/how-to-fix-your-windows-mbr-with-an-ubuntu-livecd/">How to fix your Windows MBR with an Ubuntu liveCD</a></li><li><a href="http://www.arsgeek.com/2008/07/10/every-single-led-zeppelin-song-in-drm-free-mp3-format-for-999/">Every single Led Zeppelin song in DRM free MP3 format for $9.99</a></li><li><a href="http://www.arsgeek.com/2008/01/30/psp-firmware-hits-390-if-youve-got-the-slim-or-2000-you-can-now-skype-with-it/">PSP Firmware hits 3.90 - If you've got the slim (or 2000) you can now Skype with it</a></li><li><a href="http://www.arsgeek.com/2006/09/25/ubuntu-tricks-how-to-mount-your-windows-partition-and-make-it-readwritable/">Ubuntu tricks - how to mount your Windows partition and make it read/writable</a></li><li><a href="http://www.arsgeek.com/2007/08/02/and-so-gull-baiting-has-become-a-hot-game-among-dolphins/">"and so gull baiting has become a hot game among dolphins"</a></li><li><a href="http://www.arsgeek.com/2008/03/26/rip-dvd-movie-on-mac-os-x/">Rip DVD Movie on Mac OS X</a></li><li><a href="http://www.arsgeek.com/2007/10/24/get-usb-devices-mounted-on-your-virtualbox-xp-machine-in-gutsy-ubuntu-710/">Get USB devices mounted on your Virtualbox XP machine in Gutsy (Ubuntu 7.10)</a></li><li><a href="http://www.arsgeek.com/2008/07/17/10-things-ive-overheard-about-my-linux-laptop-while-on-public-transportation/">10 things I've overheard about my Linux laptop while on public transportation</a></li><li><a href="http://www.arsgeek.com/2006/08/23/how-to-turn-off-the-annoying-system-beep-in-linux-debianubuntu/">How to turn off the annoying system beep in linux (Debian/Ubuntu)</a></li><li><a href="http://www.arsgeek.com/2007/03/20/enable-telnet-in-windows-vista/">Enable telnet in Windows Vista</a></li> </ul> <ul class="list1" id="comm"> <li><a href="http://www.arsgeek.com/2008/01/15/how-to-fix-your-windows-mbr-with-an-ubuntu-livecd/" title="How to fix your Windows MBR with an Ubuntu liveCD">How to fix your Windows MBR with an Ubuntu liveCD</a> (173)</li><li><a href="http://www.arsgeek.com/2007/06/20/your-chance-to-win-one-of-two-creative-zen-stone-mp3-players-or-a-phillips-mp3-player/" title="Your chance to win one of two Creative Zen Stone MP3 players or a Phillips MP3 player">Your chance to win one of two Creative Zen Stone MP3 players or a Phillips MP3 player</a> (142)</li><li><a href="http://www.arsgeek.com/2008/03/06/boriska-boy-genius-says-hes-from-mars-knows-of-a-switch-behind-the-sphinxs-ear/" title="Boriska, boy genius says he’s from Mars, knows of a switch behind the Sphinx’s ear.">Boriska, boy genius says he’s from Mars, knows of a switch behind the Sphinx’s ear.</a> (127)</li><li><a href="http://www.arsgeek.com/2009/10/15/female-characters-in-gaming-past-present-and-future/" title="Female Characters In Gaming: Past, Present, and Future">Female Characters In Gaming: Past, Present, and Future</a> (124)</li><li><a href="http://www.arsgeek.com/2007/12/03/win-a-95mw-green-laser-plus-laserproof-googles-400-retail/" title="Win a 95mW Green Laser plus laserproof googles ($400 retail)!">Win a 95mW Green Laser plus laserproof googles ($400 retail)!</a> (121)</li><li><a href="http://www.arsgeek.com/2008/07/17/10-things-ive-overheard-about-my-linux-laptop-while-on-public-transportation/" title="10 things I’ve overheard about my Linux laptop while on public transportation">10 things I’ve overheard about my Linux laptop while on public transportation</a> (113)</li><li><a href="http://www.arsgeek.com/2006/09/25/ubuntu-tricks-how-to-mount-your-windows-partition-and-make-it-readwritable/" title="Ubuntu tricks – how to mount your Windows partition and make it read/writable">Ubuntu tricks – how to mount your Windows partition and make it read/writable</a> (111)</li><li><a href="http://www.arsgeek.com/2007/09/11/your-chance-to-win-one-of-four-manhattan-games-from-thought-hammer-and-arsgeek/" title="Your chance to win one of four Manhattan games from Thought Hammer and ArsGeek">Your chance to win one of four Manhattan games from Thought Hammer and ArsGeek</a> (90)</li><li><a href="http://www.arsgeek.com/2006/08/23/how-to-turn-off-the-annoying-system-beep-in-linux-debianubuntu/" title="How to turn off the annoying system beep in linux (Debian/Ubuntu)">How to turn off the annoying system beep in linux (Debian/Ubuntu)</a> (89)</li><li><a href="http://www.arsgeek.com/2008/07/01/dungeons-and-dragons-40-worth-it-or-worthless/" title="Dungeons and Dragons 4.0 – worth it or worthless?">Dungeons and Dragons 4.0 – worth it or worthless?</a> (86)</li> </ul> <ul class="list1" id="feat"> <li><a title="Permanent Link to Guild Wars 2 Forum Website Launches" href="http://www.arsgeek.com/2010/06/10/guild-wars-2-forum-website-launches/" rel="bookmark">Guild Wars 2 Forum Website Launches</a></li> <li><a title="Permanent Link to Female Characters In Gaming: Past, Present, and Future" href="http://www.arsgeek.com/2009/10/15/female-characters-in-gaming-past-present-and-future/" rel="bookmark">Female Characters In Gaming: Past, Present, and Future</a></li> <li><a title="Permanent Link to Zombieland: Instant Classic" href="http://www.arsgeek.com/2009/09/30/4944/" rel="bookmark">Zombieland: Instant Classic</a></li> <li><a title="Permanent Link to It’s Good To Be a Super Hero Now" href="http://www.arsgeek.com/2009/09/24/its-good-to-be-a-super-hero-now/" rel="bookmark">It’s Good To Be a Super Hero Now</a></li> <li><a title="Permanent Link to Get Ready to Die – How Social Networking Will Kill You" href="http://www.arsgeek.com/2009/09/15/get-ready-to-die-how-social-networking-will-kill-you/" rel="bookmark">Get Ready to Die – How Social Networking Will Kill You</a></li> <li><a title="Permanent Link to We’re All a Bunch of Nerds" href="http://www.arsgeek.com/2009/09/03/we%e2%80%99re-all-a-bunch-of-nerds/" rel="bookmark">We’re All a Bunch of Nerds</a></li> <li><a title="Permanent Link to Hide Your Children – Entertainment Rating Laws Have No Legal Bearing In Britain" href="http://www.arsgeek.com/2009/08/25/hide-your-children-entertainment-rating-laws-have-no-legal-bearing-in-britain/" rel="bookmark">Hide Your Children – Entertainment Rating Laws Have No Legal Bearing In Britain</a></li> <li><a title="Permanent Link to Destro and the Baroness Play the Clarinet" href="http://www.arsgeek.com/2009/08/12/destro-and-the-baroness-play-the-clarinet/" rel="bookmark">Destro and the Baroness Play the Clarinet</a></li> <li><a title="Permanent Link to Comic Con 09 Cosplay Award Winners" href="http://www.arsgeek.com/2009/07/30/comic-con-09-cosplay-award-winners/" rel="bookmark">Comic Con 09 Cosplay Award Winners</a></li> <li><a title="Permanent Link to Iron Man and Wolverine Anime: Sea Captains and Mullets" href="http://www.arsgeek.com/2009/07/30/iron-man-and-wolverine-anime-sea-capns-and-mullets/" rel="bookmark">Iron Man and Wolverine Anime: Sea Captains and Mullets</a></li> </ul> </div> <!--/spacer --> </div> <div class="widget"> <div class="textwidget"><br /> <center><script language=JavaScript src="http://aj.600z.com/aj/62825/0/vj?z=1&dim=145"></script></center> <br /></div> </div><!--/widget--><div class="widget"><h3 class="hl">Archives</h3> <ul> <li><a href='http://www.arsgeek.com/2010/06/' title='June 2010'>June 2010</a></li> <li><a href='http://www.arsgeek.com/2009/10/' title='October 2009'>October 2009</a></li> <li><a href='http://www.arsgeek.com/2009/09/' title='September 2009'>September 2009</a></li> <li><a href='http://www.arsgeek.com/2009/08/' title='August 2009'>August 2009</a></li> <li><a href='http://www.arsgeek.com/2009/07/' title='July 2009'>July 2009</a></li> <li><a href='http://www.arsgeek.com/2009/06/' title='June 2009'>June 2009</a></li> <li><a href='http://www.arsgeek.com/2009/05/' title='May 2009'>May 2009</a></li> <li><a href='http://www.arsgeek.com/2009/04/' title='April 2009'>April 2009</a></li> <li><a href='http://www.arsgeek.com/2009/03/' title='March 2009'>March 2009</a></li> <li><a href='http://www.arsgeek.com/2009/02/' title='February 2009'>February 2009</a></li> <li><a href='http://www.arsgeek.com/2009/01/' title='January 2009'>January 2009</a></li> <li><a href='http://www.arsgeek.com/2008/12/' title='December 2008'>December 2008</a></li> <li><a href='http://www.arsgeek.com/2008/11/' title='November 2008'>November 2008</a></li> <li><a href='http://www.arsgeek.com/2008/10/' title='October 2008'>October 2008</a></li> <li><a href='http://www.arsgeek.com/2008/09/' title='September 2008'>September 2008</a></li> <li><a href='http://www.arsgeek.com/2008/08/' title='August 2008'>August 2008</a></li> <li><a href='http://www.arsgeek.com/2008/07/' title='July 2008'>July 2008</a></li> <li><a href='http://www.arsgeek.com/2008/06/' title='June 2008'>June 2008</a></li> <li><a href='http://www.arsgeek.com/2008/05/' title='May 2008'>May 2008</a></li> <li><a href='http://www.arsgeek.com/2008/04/' title='April 2008'>April 2008</a></li> <li><a href='http://www.arsgeek.com/2008/03/' title='March 2008'>March 2008</a></li> <li><a href='http://www.arsgeek.com/2008/02/' title='February 2008'>February 2008</a></li> <li><a href='http://www.arsgeek.com/2008/01/' title='January 2008'>January 2008</a></li> <li><a href='http://www.arsgeek.com/2007/12/' title='December 2007'>December 2007</a></li> <li><a href='http://www.arsgeek.com/2007/11/' title='November 2007'>November 2007</a></li> <li><a href='http://www.arsgeek.com/2007/10/' title='October 2007'>October 2007</a></li> <li><a href='http://www.arsgeek.com/2007/09/' title='September 2007'>September 2007</a></li> <li><a href='http://www.arsgeek.com/2007/08/' title='August 2007'>August 2007</a></li> <li><a href='http://www.arsgeek.com/2007/07/' title='July 2007'>July 2007</a></li> <li><a href='http://www.arsgeek.com/2007/06/' title='June 2007'>June 2007</a></li> <li><a href='http://www.arsgeek.com/2007/05/' title='May 2007'>May 2007</a></li> <li><a href='http://www.arsgeek.com/2007/04/' title='April 2007'>April 2007</a></li> <li><a href='http://www.arsgeek.com/2007/03/' title='March 2007'>March 2007</a></li> <li><a href='http://www.arsgeek.com/2007/02/' title='February 2007'>February 2007</a></li> <li><a href='http://www.arsgeek.com/2007/01/' title='January 2007'>January 2007</a></li> <li><a href='http://www.arsgeek.com/2006/12/' title='December 2006'>December 2006</a></li> <li><a href='http://www.arsgeek.com/2006/11/' title='November 2006'>November 2006</a></li> <li><a href='http://www.arsgeek.com/2006/10/' title='October 2006'>October 2006</a></li> <li><a href='http://www.arsgeek.com/2006/09/' title='September 2006'>September 2006</a></li> <li><a href='http://www.arsgeek.com/2006/08/' title='August 2006'>August 2006</a></li> <li><a href='http://www.arsgeek.com/2006/07/' title='July 2006'>July 2006</a></li> <li><a href='http://www.arsgeek.com/2006/06/' title='June 2006'>June 2006</a></li> <li><a href='http://www.arsgeek.com/2006/05/' title='May 2006'>May 2006</a></li> <li><a href='http://www.arsgeek.com/2006/04/' title='April 2006'>April 2006</a></li> <li><a href='http://www.arsgeek.com/2006/03/' title='March 2006'>March 2006</a></li> <li><a href='http://www.arsgeek.com/2006/02/' title='February 2006'>February 2006</a></li> </ul> </div><!--/widget--> <div class="clear"></div> <div class="grid_3 alpha"> </div><!--/grid_3 alpha--> <div class="grid_3 omega"> </div><!--/grid_3 omega--> <div class="clear"></div> <br /><script language=JavaScript src="http://aj.600z.com/aj/62824/0/vj?z=1&dim=122"></script> <br /> </div><!--/sidebar--> <div class="fix"></div> <div class="fix"></div> </div> <!--/#page .container_16--> <div id="footer"> <div class="container_16"> <div class="grid_16"> <p class="fl"><a href="http://www.ArsGeek.com/">ArsGeek</a> is an <script type="text/javascript" src="http://www.ientry.com/copyrightjs.php"></script> <a href="http://www.ientry.com/page/corp/privacy.html">Privacy Policy</a> and <a href="http://www.ientry.com/page/corp/legal.html">Legal</a></p> </div> </div> <!-- end .container_16--> </div> <script type="text/javascript"> jQuery(function() { jQuery.post("index.php",{ak_action:"api_record_view", ids: AKPC_IDS, type:"single"}, false, "json"); }); </script> <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> var pageTracker = _gat._getTracker("UA-5639021-15"); pageTracker._trackPageview(); </script> <div id="top1" class="container_16"> <div class="floatleft"> <ul class="nav1"> <li ><a href="http://www.arsgeek.com/">Home</a></li> <li class="page_item page-item-4084"><a href="http://www.arsgeek.com/archives/" title="Archives">Archives</a></li> <li class="page_item page-item-4247"><a href="http://www.arsgeek.com/contact/" title="Contact">Contact</a></li> <li class="page_item page-item-4358"><a href="http://www.arsgeek.com/about-us/" title="About Us">About Us</a></li> <li><script type="text/javascript" language="JavaScript" src="http://aj.600z.com/aj/65271/0/vj?z=1&dim=65095"></script></li> <li><script type="text/javascript" language="JavaScript" src="http://aj.600z.com/aj/65272/0/vj?z=1&dim=65096"></script></li> <li><script type="text/javascript" language="JavaScript" src="http://aj.600z.com/aj/65273/0/vj?z=1&dim=65097"></script></li> </ul></div> <!--/nav1--> <!-- end .grid_12 --> <div class="floatright"> <span class="subscribe">Subscribe:   <a href="http://feeds.feedburner.com/Arsgeek">Posts</a>   |   <a href="http://www.arsgeek.com/comments/feed/">Comments</a>   |   <a href="http://www.feedburner.com/fb/a/emailverifySubmit?feedId=Arsgeek" target="_blank">Email</a></span> </div> <!-- end .grid_4 --> </div> </body> </html>