<?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>Random Linux</title>
	<atom:link href="http://randomlinux.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://randomlinux.com</link>
	<description>Random Linux, MySQL, Wordpress, Joomla, scripts, video games and web hosting tips</description>
	<lastBuildDate>Tue, 23 Apr 2013 19:36:15 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Video Game Emulators For Ubuntu</title>
		<link>http://randomlinux.com/general/video-game-emulators-for-ubuntu/</link>
		<comments>http://randomlinux.com/general/video-game-emulators-for-ubuntu/#comments</comments>
		<pubDate>Tue, 23 Apr 2013 19:36:15 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[VIdeo Games]]></category>
		<category><![CDATA[emulator]]></category>
		<category><![CDATA[emulator for ubuntu]]></category>
		<category><![CDATA[emulators]]></category>
		<category><![CDATA[linux operating system]]></category>
		<category><![CDATA[major system emulator]]></category>
		<category><![CDATA[nes emulator ubuntu]]></category>
		<category><![CDATA[sega emulator ubuntu]]></category>
		<category><![CDATA[snes emulator ubuntu]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[ubuntu emulator]]></category>
		<category><![CDATA[Ubuntu Linux]]></category>
		<category><![CDATA[video game emulator]]></category>
		<category><![CDATA[Video Game Emulators]]></category>

		<guid isPermaLink="false">http://randomlinux.com/?p=52016</guid>
		<description><![CDATA[Linux up until the past few years has been left out of the emulators market as far as availability luckily this has change and now there are ports of almost every major system emulator including some emulators that are written strictly for the linux operating system, the following site has a nearly complete list of [...]]]></description>
				<content:encoded><![CDATA[<p>Linux up until the past few years has been left out of the emulators market as far as availability luckily this has change and now there are ports of almost every major system emulator including some emulators that are written strictly for the linux operating system, the following site has a nearly complete list of all emulators that are available through the Ubuntu package manager and what repository they are in, The site is also slowly adding source files that can be compiled on any other linux distribution.</p>
<p>The list: <a href="http://retro-gaming-world.com/emulators-for-ubuntu/" target="_blank">http://retro-gaming-world.com/emulators-for-ubuntu/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://randomlinux.com/general/video-game-emulators-for-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bash For Loops</title>
		<link>http://randomlinux.com/general/bash-for-loops/</link>
		<comments>http://randomlinux.com/general/bash-for-loops/#comments</comments>
		<pubDate>Wed, 27 Mar 2013 20:12:00 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[bash for loop]]></category>
		<category><![CDATA[bash for loops]]></category>
		<category><![CDATA[bash version]]></category>
		<category><![CDATA[infinite loops]]></category>

		<guid isPermaLink="false">http://randomlinux.com/?p=52006</guid>
		<description><![CDATA[ow do I use bash for loop to repeat certain task under Linux / UNIX operating system? How do I set infinite loops using for statement? How do I use three-parameter for loop control expression? A &#8216;for loop&#8217; is a bash programming language statement which allows code to be repeatedly executed. A for loop is [...]]]></description>
				<content:encoded><![CDATA[<p>ow do I use bash for loop to repeat certain task under Linux / UNIX operating system? How do I set infinite loops using for statement? How do I use three-parameter for loop control expression?</p>
<p>A &#8216;for loop&#8217; is a bash programming language statement which allows code to be repeatedly executed. A for loop is classified as an iteration statement i.e. it is the repetition of a process within a bash script.</p>
<p>For example, you can run UNIX command or task 5 times or read and process list of files using a for loop. A for loop can be used at a shell prompt or within a shell script itself.</p>
<h2>for loop syntax</h2>
<p>Numeric ranges for syntax is as follows:</p>
<pre>for VARIABLE in 1 2 3 4 5 .. N
do
	command1
	command2
	commandN
done</pre>
<p>OR</p>
<pre>for VARIABLE in file1 file2 file3
do
	command1 on $VARIABLE
	command2
	commandN
done</pre>
<p>OR</p>
<pre>for OUTPUT in $(Linux-Or-Unix-Command-Here)
do
	command1 on $OUTPUT
	command2 on $OUTPUT
	commandN
done</pre>
<h2>Examples</h2>
<div><a title="See all UNIX related articles/faq" href="http://www.cyberciti.biz/faq/category/unix/"><img alt="" src="http://s0.cyberciti.org/images/category/old/unix-logo.gif" border="0" /></a></div>
<p>This type of for loop is characterized by counting. The range is specified by a beginning (#1) and ending number (#5). The for loop executes a sequence of commands for each member in a list of items. A representative example in BASH is as follows to display welcome message 5 times with for loop:</p>
<pre>#!/bin/bash
for i in 1 2 3 4 5
do
   echo "Welcome $i times"
done</pre>
<p>Sometimes you may need to set a step value (allowing one to count by two&#8217;s or to count backwards for instance). Latest <strong>bash version 3.0+</strong> has inbuilt support for setting up ranges:</p>
<pre>#!/bin/bash
for i in {1..5}
do
   echo "Welcome $i times"
done</pre>
<p>Bash v4.0+ has inbuilt support for setting up a step value using {START<strong>..</strong>END<strong>..</strong>INCREMENT} syntax:</p>
<pre>#!/bin/bash
echo "Bash version ${BASH_VERSION}..."
for i in {0..10..2}
  do
     echo "Welcome $i times"
 done</pre>
<p>Sample outputs:</p>
<pre>Bash version 4.0.33(0)-release...
Welcome 0 times
Welcome 2 times
Welcome 4 times
Welcome 6 times
Welcome 8 times
Welcome 10 times</pre>
<h2>Three-expression bash for loops syntax</h2>
<p>This type of for loop share a common heritage with the C programming language. It is characterized by a three-parameter loop control expression; consisting of an initializer (EXP1), a loop-test or condition (EXP2), and a counting expression (EXP3).</p>
<pre>for (( EXP1; EXP2; EXP3 ))
do
	command1
	command2
	command3
done</pre>
<p>A representative three-expression example in bash as follows:</p>
<pre>#!/bin/bash
for (( c=1; c&lt;=5; c++ ))
do
   echo "Welcome $c times"
done</pre>
<p>Sample output:</p>
<pre>Welcome 1 times
Welcome 2 times
Welcome 3 times
Welcome 4 times
Welcome 5 times</pre>
<h2>How do I use for as infinite loops?</h2>
<p>Infinite for loop can be created with empty expressions, such as:</p>
<pre>#!/bin/bash
for (( ; ; ))
do
   echo "infinite loops [ hit CTRL+C to stop]"
done</pre>
<h2>Conditional exit with break</h2>
<p>You can do early exit with break statement inside the for loop. You can exit from within a FOR, WHILE or UNTIL loop using break. General break statement inside the for loop:</p>
<pre>for I in 1 2 3 4 5
do
  statements1      #Executed for all values of ''I'', up to a disaster-condition if any.
  statements2
  if (disaster-condition)
  then
	break       	   #Abandon the loop.
  fi
  statements3          #While good and, no disaster-condition.
done</pre>
<p>Following shell script will go though all files stored in /etc directory. The for loop will be abandon when /etc/resolv.conf file found.</p>
<pre>#!/bin/bash
for file in /etc/*
do
	if [ "${file}" == "/etc/resolv.conf" ]
	then
		countNameservers=$(grep -c nameserver /etc/resolv.conf)
		echo "Total  ${countNameservers} nameservers defined in ${file}"
		break
	fi
done</pre>
<h3>Early continuation with continue statement</h3>
<p>To resume the next iteration of the enclosing FOR, WHILE or UNTIL loop use continue statement.</p>
<pre>for I in 1 2 3 4 5
do
  statements1      #Executed for all values of ''I'', up to a disaster-condition if any.
  statements2
  if (condition)
  then
	continue   #Go to next iteration of I in the loop and skip statements3
  fi
  statements3
done</pre>
<p>This script make backup of all file names specified on command line. If .bak file exists, it will skip the cp command.</p>
<pre>#!/bin/bash
FILES="$@"
for f in $FILES
do
        # if .bak backup file exists, read next file
	if [ -f ${f}.bak ]
	then
		echo "Skiping $f file..."
		continue  # read next file and skip cp command
	fi
        # we are hear means no backup file exists, just use cp command to copy file
	/bin/cp $f $f.bak
done</pre>
]]></content:encoded>
			<wfw:commentRss>http://randomlinux.com/general/bash-for-loops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Executing PHP scripts over HTTP Using Cron Jobs</title>
		<link>http://randomlinux.com/general/executing-php-scripts-over-http-using-cron-jobs/</link>
		<comments>http://randomlinux.com/general/executing-php-scripts-over-http-using-cron-jobs/#comments</comments>
		<pubDate>Sat, 23 Mar 2013 15:28:16 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[cron job]]></category>
		<category><![CDATA[php script]]></category>
		<category><![CDATA[schedule]]></category>

		<guid isPermaLink="false">http://randomlinux.com/?p=52001</guid>
		<description><![CDATA[In programming there are a number of ways to execute on an idea and get a result, executing a php file on your web server is no different. Below I will provide examples of how to execute a php script or other type of script over http using configurable cron jobs. Just about all webhosts [...]]]></description>
				<content:encoded><![CDATA[<p>In programming there are a number of ways to execute on an idea and get a result, executing a php file on your web server is no different. Below I will provide examples of how to execute a php script or other type of script over http using configurable cron jobs.</p>
<p>Just about all webhosts also provide a method of adding cronjobs through their control panels including cpanel and plesk.</p>
<h3>Method 1: Execute the script using php from the crontab</h3>
<p>Just like how you call your shell script (As show in our <a href="http://www.thegeekstuff.com/2009/06/15-practical-crontab-examples/">crontab</a> 15 examples article), use the php executable, and call the php script from your crontab as shown below.</p>
<p>To execute myscript.php every 1 hour do the following:</p>
<pre># crontab -e
00 * * * * /usr/local/bin/php /home/john/myscript.php</pre>
<h3>Method 2: Run the php script using URL from the crontab</h3>
<p>If your php script can be invoked using an URL, you can lynx, or curl, or wget to setup your crontab as shown below.</p>
<p>The following script executes the php script (every hour) by calling the URL using the lynx text browser. Lynx text browser by default opens a URL in the interactive mode. However, as shown below, the -dump option in lynx command, dumps the output of the URL to the standard output.</p>
<pre>00 * * * * lynx -dump http://www.randomlinux.com/myscript.php</pre>
<p>The following script executes the php script (every 5 minutes) by calling the URL using CURL. Curl by default displays the output in the standard output. Using the “curl -o” option, you can also dump the output of your script to a temporary file as shown below.</p>
<p>&nbsp;</p>
<div></div>
<p>&nbsp;</p>
<pre>*/5 * * * * /usr/bin/curl -o temp.txt http://www.randomlinux.com/myscript.php</pre>
<p>The following script executes the php script (every 10 minutes) by calling the URL using WGET. The -q option indicates quite mode. The “-O temp.txt” indicates that the output will be send to the temporary file.</p>
<pre>*/10 * * * * /usr/bin/wget -q -O temp.txt http://www.randomlinux.com/myscript.php

The -o and -O flags are only necessary if you want to log the output of the script that is being executed if this information is not needed these flags can be ignored.</pre>
]]></content:encoded>
			<wfw:commentRss>http://randomlinux.com/general/executing-php-scripts-over-http-using-cron-jobs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Converting ps1 Games To Eboots PSX To PSP</title>
		<link>http://randomlinux.com/video-games/converting-ps1-games-to-eboots-psx-to-psp/</link>
		<comments>http://randomlinux.com/video-games/converting-ps1-games-to-eboots-psx-to-psp/#comments</comments>
		<pubDate>Fri, 22 Mar 2013 00:12:22 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[VIdeo Games]]></category>
		<category><![CDATA[ISO]]></category>
		<category><![CDATA[PSone ISO]]></category>
		<category><![CDATA[PSX ISO]]></category>

		<guid isPermaLink="false">http://randomlinux.com/?p=51989</guid>
		<description><![CDATA[Here is our tutorial on how to play your Playstation 1 (PSX/PSOne) games on your PSP. There are two steps to the process. 1. Making a PSX ISO which we will later convert to an eboot (Skip this is you already have a PSX.iso) 2. Converting the ISO to an eboot. And making it look [...]]]></description>
				<content:encoded><![CDATA[<p>Here is our tutorial on how to play your Playstation 1 (PSX/PSOne) games on your PSP. There are two steps to the process.</p>
<blockquote><p>1. Making a PSX ISO which we will later convert to an eboot (Skip this is you already have a PSX.iso)<br />
2. Converting the ISO to an eboot. And making it look nice</p></blockquote>
<p>Firstly if you haven’t already made an ISO image of your PSOne Game lets do that. For this example I’m using Resident Evil 2.</p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/250px-Resident_Evil_2.jpg"><img class="size-full wp-image-51990 alignnone" alt="250px-Resident_Evil_2" src="http://randomlinux.com/wp-content/uploads/2013/03/250px-Resident_Evil_2.jpg" width="250" height="249" /></a></p>
<p style="text-align: center;">In order to convert this Playstation game to an ISO I’m going to use PSone ISO maker. You can also use Nero, Alcohol or an program that can make ISO images. Download Psone ISO maker below:</p>
<p>Download: <a href="http://randomlinux.com/wp-content/uploads/2013/03/psone_iso_maker.rar">psone_iso_maker</a></p>
<p style="text-align: left;">Note if your PSX disk is NTSC, select NTSC or PAL select PAL. NTSC PSX games will work best when converting to eboots.  (Alot of disk drives might have errors extracting the files or even reading the disk.) Hopefully this wont be an issue!</p>
<p>Wait for the PSOne ISO Maker to extract the image. It can take some time so please be patient. Now we have a Playstation image (.IMG and .CCD files) lets move on to converting this to an eboot which can be use on your PSP.</p>
<p style="text-align: center;">We are going to use PSX2PSP to make our Eboot.PBP. Download that below:</p>
<p>Download: <a href="http://randomlinux.com/wp-content/uploads/2013/03/PSX2PSP_v.1.4.2.zip">PSX2PSP_v.1.4.2</a></p>
<p>1. Load the PSX_GAME_Title .IMG you just make or another PSX image you have.</p>
<p>2. Select the output for the Eboot</p>
<p>3. Insert the title of the game here</p>
<p>4. The game ID. This is found on the PsOne disk.  Or find it on our <a href="http://pspslimhacks.com/index.php?dl_id=208">PSX Game ID list.</a></p>
<p>If you want a nice looking PSX2PSP eboot you can customize the images used. To do this click on the customize tab in PSX2PSP.</p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/psp2psx-2.png"><img class="size-medium wp-image-51993 alignnone" alt="psp2psx-2" src="http://randomlinux.com/wp-content/uploads/2013/03/psp2psx-2-300x218.png" width="300" height="218" /></a></p>
<p>Above: I have added some custom images to my Resident Evil eboot. This way it looks much more professional. If your looking for icons and backgrounds for almost every American NTSC game I recommend this PSP2PSX Icon pack -&gt;</p>
<blockquote><p>If you download and extract files to “.\pics\pic1\” most games from USA will show the game cover as shown below.<br />
Megaupload link: <a href="http://www.megaupload.com/?d=XMJE8ZWN" target="_blank">http://www.megaupload.com/?d=XMJE8ZWN</a><br />
The icon pack contains 1400 icons and is about 150MB.</p></blockquote>
<p>Now you have the eboot looking good you can preview it by clicking the arrow tabs in PSX2PSP.</p>
<p><img title="psx-eboot-preview" alt="Preview your PSX Eboot in PSX2PSP" src="http://pspslimhacks.com/wp-content/uploads/2009/03/psx-eboot-preview.jpg" width="511" height="365" /></p>
<p>Preview your PSX Eboot in PSX2PSP</p>
<p>Once your happy with the Eboot preview, click the convert menu again and then convert. <em>(Note if your making a Eboot from a PAL PSX game, please go to options and patches. Apply the PAL2NTSC patches) </em>Once the PSX2PSP have finished making the eboot place the folder (example SLUSXXXXX) in your PSP memory stick \PSP\GAME. Start your PSP and launch the game from the XMB game menu.</p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://randomlinux.com/video-games/converting-ps1-games-to-eboots-psx-to-psp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 25 Nintendo (NES) Games</title>
		<link>http://randomlinux.com/video-games/top-25-nintendo-nes-games/</link>
		<comments>http://randomlinux.com/video-games/top-25-nintendo-nes-games/#comments</comments>
		<pubDate>Thu, 21 Mar 2013 21:58:34 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[VIdeo Games]]></category>
		<category><![CDATA[game play]]></category>
		<category><![CDATA[Nintendo]]></category>

		<guid isPermaLink="false">http://randomlinux.com/?p=51956</guid>
		<description><![CDATA[Every one has a favorites list of games from their childhood and I&#8217;m no different. Being a child of the 80s I played a lot of Nintendo, a whole lot. The following is my top 25 games some are compulsory and some are little gems that just kept me entertained for hours. 25. Bad Dudes. [...]]]></description>
				<content:encoded><![CDATA[<p>Every one has a favorites list of games from their childhood and I&#8217;m no different. Being a child of the 80s I played a lot of Nintendo, a whole lot. The following is my top 25 games some are compulsory and some are little gems that just kept me entertained for hours.</p>
<p><strong>25. Bad Dudes.</strong><br />
<img class="size-medium wp-image-51961 alignleft" alt="Bad Dudes" src="http://randomlinux.com/wp-content/uploads/2013/03/250px-Bad_Dudes_-_NES_-_USA-211x300.jpg" width="211" height="300" /></p>
<p>&#8220;Are you a bad enough dude to save the president?&#8221; Yes, yes I am. This game is on list only because I find the writing humorous. The 80s and 90s were filled with jems just like this, we lived in a world where games didn&#8217;t need to be good they just needed to exist and they were made by the boat load.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<strong>24. Hogans Ally</strong></p>
<p style="text-align: left;"><a href="http://randomlinux.com/wp-content/uploads/2013/03/hogansally.jpg"><img class="alignleft size-medium wp-image-51971" alt="Hogans Ally" src="http://randomlinux.com/wp-content/uploads/2013/03/hogansally-210x300.jpg" width="210" height="300" /></a>   Hogans Ally was one of the very few games which made use of the light gun, Nintendo was great about coming up with accessories and new play methods but not very good at the time about providing  the games to back them up. This game provided a lot of fun and was just as fun or more than duck hunt and didn&#8217;t feature a spiteful dog.<br />
<strong></strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>23. Pro Wrestling</strong><br />
<a href="http://randomlinux.com/wp-content/uploads/2013/03/prowrestling.jpeg"><img class="alignleft size-full wp-image-51977" alt="prowrestling" src="http://randomlinux.com/wp-content/uploads/2013/03/prowrestling.jpeg" width="190" height="265" /></a>   To date this is the only wrestling game I have ever played and as far as I know is still the best wrestling game ever made. The only licensed fighting game was the re-released mike tysons punch out it would be over a decade before licensed wrestling games would come around this leaves you playing as generic wrestler dudes and guy with a star mask (which is what most people chose in my memory of playing. Just good simple smack down fun.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>22. Metal gear<br />
<a href="http://randomlinux.com/wp-content/uploads/2013/03/Metal_Gear_boxfront.jpg"><img class="alignleft size-medium wp-image-51974" alt="Metal Gear" src="http://randomlinux.com/wp-content/uploads/2013/03/Metal_Gear_boxfront-214x300.jpg" width="214" height="300" /></a> </strong></p>
<p>Solid Snake is here and is ready to kick some ass. This game was perhaps one of the best series beginnings and has a solid place in a world of few good shoots and mostly gimick games</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<strong>21. RC Pro-Am</strong><br />
<a href="http://randomlinux.com/wp-content/uploads/2013/03/RC_Pro_Am_cover.jpg"><img class="alignleft size-medium wp-image-51978" alt="RC_Pro_Am_cover" src="http://randomlinux.com/wp-content/uploads/2013/03/RC_Pro_Am_cover-212x300.jpg" width="212" height="300" /></a></p>
<p>RC Pro-am perhaps is one of the best classic racing/kart games of the time and was a blast to play against another person the tracks were just tricky enough to trip you up and allow for a challenge and the additional road hazards made for fun competitive game play.a</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<strong>20. Friday the 13th</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/Friday_the_13th_NES.png"><img class="alignleft size-full wp-image-51970" alt="Friday the 13th" src="http://randomlinux.com/wp-content/uploads/2013/03/Friday_the_13th_NES.png" width="209" height="295" /></a><br />
<strong></strong></p>
<p>This game caused me no end of frustration and generated a twitch gaming anxiety that I did get from many games at the time. Always in a rush against the clock to save some jerky teens (that are likely engaging in sexual acts or the use of illicit substances) from being murdered by Jason.<br />
Having to run or boat from one end of camp knowing that it&#8217;s ticking ever onward to what seems like an inevitable death for those teens got my heart pumping hard barely making it through the door to still have to face off against the beast him self.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>19. river city ransom</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/220px-River_City_Ransom-front.jpg"><img class="alignleft size-medium wp-image-51959" alt="220px-River_City_Ransom-front" src="http://randomlinux.com/wp-content/uploads/2013/03/220px-River_City_Ransom-front-212x300.jpg" width="212" height="300" /></a></p>
<p>Simpy one of the best brawlers of its time, the story wasn&#8217;t that great but was better than the majority of brawler games that were out at the time. And the characters followed the same tried and true formula of nearly identical looking guys in white shirts which we all know means those fuckers mean business.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<strong>18. Yo Noid</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/yo-noid.jpg"><img class="alignleft size-medium wp-image-51981" alt="Yo Noid!" src="http://randomlinux.com/wp-content/uploads/2013/03/yo-noid-218x300.jpg" width="218" height="300" /></a></p>
<p>Yo Noid! comes in at a time of commercial tie ins and product licensing. The game features the one time mascot of Domino&#8217;s pizza. With the slogan of &#8220;Avoid the noid&#8221;, I&#8217;m still not sure what this had to do with pizza or how or why eating their pizza preventing the noid from coming around not knowing what the noid really does. More beyond that it&#8217;s unknown how this becomes a game. What is known is all of that aside the game was actually really fun to play and would kill many hours just mindlessly platforming along to get to the end of each level. Gimick games YaY.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<strong>17. Ninja Gaiden</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/Ninja_Gaiden_NA.png"><img class="alignleft size-medium wp-image-51976" alt="Ninja Gaiden" src="http://randomlinux.com/wp-content/uploads/2013/03/Ninja_Gaiden_NA-210x300.png" width="210" height="300" /></a> The only competition that Shinobi had, ninja gaiden was a fun game with jumping and latching on to walls, being pitted against dogs, and throwing massive throwing stars, the game provided a slightly different play style and presented obstacles which kept game play challenging.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<strong>16. Battle Toads</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/Battletoads.jpeg"><img class="alignleft size-medium wp-image-51964" alt="Battle Toads" src="http://randomlinux.com/wp-content/uploads/2013/03/Battletoads-218x300.jpeg" width="218" height="300" /></a>  This is a game I have played on every system that it was released on, Battle toads is solid just fun brawler with mixed play mechanics such as repelling down a tunnel and racing along a subteranian brain layer (That;s what it looks like who knows what the hell was going on there.) This game would keep me and my brother locked in for hours just trying to get as far as we can with out dying, This game is definitely a great time waster.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<strong>15. Wizards and Warriors</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/Wizards_and_Warriors_NES_cover.jpg"><img class="alignleft size-medium wp-image-51980" alt="Wizards_and_Warriors_NES_cover" src="http://randomlinux.com/wp-content/uploads/2013/03/Wizards_and_Warriors_NES_cover-201x300.jpg" width="201" height="300" /></a> Perhaps the first game I was introduced to on the system and the first one I ever beat as a child. It was fun to hack and slash&#8230; and jump&#8230; man their was a lot of jumping.. through levels killing all the bugs and monsters that would get in your way wizards barely played any part of this game but it didn&#8217;t matter no one really complained you had plenty of things to strike down wizards or not.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<strong>14. Master Blaster</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/2-Blaster_Master.jpg"><img class="alignleft size-medium wp-image-51957" alt="2-Blaster_Master" src="http://randomlinux.com/wp-content/uploads/2013/03/2-Blaster_Master-218x300.jpg" width="218" height="300" /></a>  This is another game which really shinned through with mixed game mechanics splitting between scroller and top down shooter varying game play as you switch back and forth between the two characters of the game.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<strong>13. Contra</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/contra.jpg"><img class="alignleft size-medium wp-image-51967" alt="contra" src="http://randomlinux.com/wp-content/uploads/2013/03/contra-218x300.jpg" width="218" height="300" /></a></p>
<p>Contra pretty much defined and dominated the shoot some shit up category of gaming every console had their king shooter and this was nintendos. While fun played single player it was definitely more fun co-op blazing through the levels it was frustrating when the other player sucked making you have to raise your game but that was another fun aspect of this type of twitch shooting game play.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<strong>12. Bubble bobble</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/bubblebobble.jpg"><img class="alignleft size-medium wp-image-51965" alt="Bubble bobble." src="http://randomlinux.com/wp-content/uploads/2013/03/bubblebobble-210x300.jpg" width="210" height="300" /></a>  The game was simple, capture evil murderous toys in bubble and then pop them. The game play while not complicated was tricky and had it&#8217;s own &#8220;oh shit&#8221; moments when the speed would increase or one of those toys started coming down a path you might not be able to avoid getting hit by them. Definitely a blast to play co-op competing for fruit and &#8220;kills&#8221; trying to top each others score.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<strong>11. Double Dragon</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/tumblr_lzk7bdXCqD1r01n1m.jpg"><img class="alignleft size-medium wp-image-51979" alt="tumblr_lzk7bdXCqD1r01n1m" src="http://randomlinux.com/wp-content/uploads/2013/03/tumblr_lzk7bdXCqD1r01n1m-209x300.jpg" width="209" height="300" /></a> While this didn&#8217;t turn out to be a good movie, double dragon was one of the best side scrolling brawlers of this or any time. A well written story helped back what would be just another brawler as two brothers fight their way through the streets.<br />
<strong></strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>10. P.O.W &#8211; Prisoners of War</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/51RrhxHM-uL._SL500_SS500_.jpg"><img class="alignleft size-medium wp-image-51958" alt="P.O.W - Prisoners of war" src="http://randomlinux.com/wp-content/uploads/2013/03/51RrhxHM-uL._SL500_SS500_-300x300.jpg" width="300" height="300" /></a></p>
<p>This game made me wonder exactly how large POW camps where because no mater how far you got it always seemed like you were still stuck in the middle of the damn camp. Dispite that or my poor memory of it I locked many hours playing this game and appreciate it as a challenging top down shooter.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<strong>9. Kid Icarus</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/Kid_Icarus_NES_box_art.png"><img class="alignleft size-medium wp-image-51972" alt="Kid icarus" src="http://randomlinux.com/wp-content/uploads/2013/03/Kid_Icarus_NES_box_art-212x300.png" width="212" height="300" /></a><br />
<strong></strong></p>
<p>Why this game didn&#8217;t end up further on my list I&#8217;m not sure. Kid icarus was a fun game and was a tricky platformer, my biggest fear or peeve was definitely the eggplants that would turn you into a walking&#8230; well eggplant leaving you defencless until you could make your way to a healing pit to break the cure and those things were not conveniently located either.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>8. Castlevania</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/Castlevania_NES_box_art.jpg"><img class="alignleft size-medium wp-image-51966" alt="Castlevania_NES_box_art" src="http://randomlinux.com/wp-content/uploads/2013/03/Castlevania_NES_box_art-213x300.jpg" width="213" height="300" /></a><br />
<strong></strong></p>
<p>Whipping your way through monsters and bats, castlevania was a challenging game and always had me on the edge of my seat with the variety of special weapons keeping things interesting or hating when you lose a favored weapon by accidently picking up the next you can kill a lot of time while killing your way to dracula.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>7. Super Mario Brothers 3</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/mario3.jpg"><img class="alignleft size-full wp-image-51973" alt="Super Mario Brothers 3" src="http://randomlinux.com/wp-content/uploads/2013/03/mario3.jpg" width="211" height="300" /></a><br />
<strong></strong></p>
<p>This game was a must have for any one. The introduction across the world level play and introduction of a host of new power ups this game was excellent with each different world offering even more challenge than had been in previous mario games.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>6. Guerrilla Wars</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/252px-Guerrilla_War_Cover.png"><img class="alignleft size-medium wp-image-51962" alt="Guerrilla War" src="http://randomlinux.com/wp-content/uploads/2013/03/252px-Guerrilla_War_Cover-211x300.png" width="211" height="300" /></a> This was perhaps one of the most fun top down shooters I have ever played with various weapon power ups and terrain this game never got boring and was just as fun alone as it is with a second player.<br />
<strong></strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>5. Mega Man (Whole Series)</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/NES-megaman2-box.jpg"><img class="alignleft size-medium wp-image-51975" alt="Mega Man" src="http://randomlinux.com/wp-content/uploads/2013/03/NES-megaman2-box-201x300.jpg" width="201" height="300" /></a><br />
<strong></strong></p>
<p>The whole series of megaman gave hours of blasting fun getting new powers as you beat each boss along with some tricky level designs you really hated dr wily for creating all those damned robots.</p>
<p>Side note I guess the artist didn&#8217;t know that mega man doesn&#8217;t use a gun as he is shown on this package. Shrugs.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>4. Legend of Zelda</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/zelda.png"><img class="alignleft size-medium wp-image-51982" alt="Legend of Zelda" src="http://randomlinux.com/wp-content/uploads/2013/03/zelda-207x300.png" width="207" height="300" /></a> Just a great game all around, the dungeons in this game keep that &#8220;I almost had it, just one more try&#8221; sort of game play alive and made for an exiting experience.<br />
<strong></strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>3. Super Mario Brothers 2</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/2362269-nes_supermariobros2.jpg"><img class="alignleft size-medium wp-image-51963" alt="2362269-nes_supermariobros2" src="http://randomlinux.com/wp-content/uploads/2013/03/2362269-nes_supermariobros2-218x300.jpg" width="218" height="300" /></a> Mario 2 is definitely the odd man out as it doesn&#8217;t follow the same game play as the other mario games but seeing how it was basically mario using some other japanesse games game mechanics and that it was still fun this can be over looked. Plus where else are you going to go up against a cross dressing dinosaur.<br />
<strong></strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>2. Teenage Muntant Ninja Turtles</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/220px-Tmnt-box.jpg"><img class="alignleft size-medium wp-image-51960" alt="220px-Tmnt-box" src="http://randomlinux.com/wp-content/uploads/2013/03/220px-Tmnt-box-210x300.jpg" width="210" height="300" /></a>  There was a point in my childhood where I wanted to be a ninja turtle and playing this game was about as close as that was going to get. This platformer was great fun with a lot of different environments and challenges (we all remember the bomb disarming in the sewer) kept the game play interesting.<br />
<strong></strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>1. Final Fantasy</strong></p>
<p><a href="http://randomlinux.com/wp-content/uploads/2013/03/final_fantasy_1_nes_usa3.jpg"><img class="alignleft size-medium wp-image-51969" alt="Final Fantasy" src="http://randomlinux.com/wp-content/uploads/2013/03/final_fantasy_1_nes_usa3-213x300.jpg" width="213" height="300" /></a></p>
<p>Countless hours and days have been lost to this game. The starter of what is likely the longest running game franchise there has ever been. Building a team of adventures and fighting your way through the world. With endless ways to combine characters to do battle with made playing the game more interesting, the story lines in these games are also untouchable making a game more immersive  and making you part of the story.</p>
]]></content:encoded>
			<wfw:commentRss>http://randomlinux.com/video-games/top-25-nintendo-nes-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Aliases to your .bashrc</title>
		<link>http://randomlinux.com/general/adding-aliases-to-your-bashrc/</link>
		<comments>http://randomlinux.com/general/adding-aliases-to-your-bashrc/#comments</comments>
		<pubDate>Thu, 21 Mar 2013 15:01:21 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[.bashrc]]></category>
		<category><![CDATA[add alias]]></category>
		<category><![CDATA[alias]]></category>

		<guid isPermaLink="false">http://randomlinux.com/?p=51946</guid>
		<description><![CDATA[Ever wonder how you can make shortcuts for some of those long cumbersome Linux commands?  You can by making an alias for it.  What is an alias?  It is a shortcut, let me demonstrate.  Say you want to restart Gnome Network Manager.  To do that you would type the following in a terminal: sudo /etc/init.d/networking [...]]]></description>
				<content:encoded><![CDATA[<p><big><br />
<small>Ever wonder how you can make shortcuts for some of those long cumbersome Linux commands?  You can by making an alias for it.  What is an alias?  It is a shortcut, let me demonstrate.  Say you want to restart Gnome Network Manager.  To do that you would type the following in a terminal:</small></big></p>
<p>sudo /etc/init.d/networking restart<br />
<big><small><br />
Now you could make an alias called </small></big><big><small>netre</small></big><big><small> to save yourself some typing and this tutorial will show you how.</small></big></p>
<p>Remember this tutorial is for BASH and not SH, CSH, Korn, etc. and more specifically for use with Ubuntu.  I cannot guarantee that this will work with other Linux distributions.</p>
<p>The first thing you will need to do if open your .bashrc file located in your home directory.  To do this type the following in a terminal:</p>
<p><big><small>gedit ~/.bashrc</small></big><big><small></small></big></p>
<p>This will bring up the Gedit text editor with the contents of the bashrc file.  Netx step is to locate the Alias definitions in the file.  You will need to uncomment the if statement to activate the alias definitions in a file or just add them directly in the .bashrc file.  The cleaner approach is to add them in a separate file for separation.  We will proceed with putting all your aliases in  separate file.  As you can see from the example listing I have uncommented the if statement to put all my definitions in a separate file.  Once this is done seave and exit gedit.</p>
<p><big><small># Alias definitions.<br />
# You may want to put all your additions into a separate file like<br />
# ~/.bash_aliases, instead of adding them here directly.<br />
# See /usr/share/doc/bash-doc/examples in the bash-doc package.</small></big></p>
<p>if [ -f ~/.bash_aliases ]; then<br />
. ~/.bash_aliases<br />
fi<big><small></small></big></p>
<p>The next step is to create a new file called .bash_aliases in your home directory.  You can substitute another name other than .bash_aliases if you like.  To create the new file type the following in a terminal:</p>
<p><big><small>gedit ~/.bash_aliases</small></big><big><small></small></big></p>
<p>This will once again bring up the Gedit text editor with a blank text file.  We can now sart adding aliases to the file.  The format for adding an alias is as follows:</p>
<p><big><small>alias &lt;desired alias&gt;=&#8217;&lt;linux_command&gt;&#8217;</small></big><big><small></small></big></p>
<p>Here is an example:</p>
<p><big><small>alias netre=&#8217;sudo /etc/init.d/networking restart&#8217;</small></big><big><small></small></big></p>
<p>Make sure you use the tick mark &#8216; when enclosing the linux command.  Once you are done adding the command hit the &#8220;Save&#8221; button.  Now the next time you bring up a terminal and type <big><small>netre</small></big><big><small> you will restart network manager.</small></big></p>
<p>You can add numerous alias commands to the file for your command line happiness.</p>
]]></content:encoded>
			<wfw:commentRss>http://randomlinux.com/general/adding-aliases-to-your-bashrc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Super Nintendo SNES Emulator For PSP (SNES9x Euphoria)</title>
		<link>http://randomlinux.com/video-games/super-nintendo-snes-emulator-for-psp-snes9x-euphoria/</link>
		<comments>http://randomlinux.com/video-games/super-nintendo-snes-emulator-for-psp-snes9x-euphoria/#comments</comments>
		<pubDate>Thu, 21 Mar 2013 14:55:21 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[VIdeo Games]]></category>
		<category><![CDATA[snes]]></category>
		<category><![CDATA[SNES emulation]]></category>
		<category><![CDATA[snes emulator]]></category>
		<category><![CDATA[snes9x]]></category>
		<category><![CDATA[snes9x euphoria]]></category>
		<category><![CDATA[super nintendo]]></category>
		<category><![CDATA[super nintendo emulator]]></category>
		<category><![CDATA[Super Nintendo SNES Emulator]]></category>

		<guid isPermaLink="false">http://randomlinux.com/?p=51940</guid>
		<description><![CDATA[Snes9x Euphoria is a very fast, portable Super Nintendo emulator. Thanks to Zack for releasing this and it is based off Laxer3a, YoyoFR, and Rukka&#8217;s SNES emulation effort.   This version is signed for OFW.  Copy the &#8220;Snes9x_Euphoria&#8221; directory to PSP/GAME, along with some roms under Snes9x_Euphoria/ROMS. Download: snes9x euphoria]]></description>
				<content:encoded><![CDATA[<p>Snes9x Euphoria is a very fast, portable Super Nintendo emulator. Thanks to Zack for releasing this and it is based off Laxer3a, YoyoFR, and Rukka&#8217;s SNES emulation effort.   This version is signed for OFW.  Copy the &#8220;Snes9x_Euphoria&#8221; directory to PSP/GAME, along with some roms under Snes9x_Euphoria/ROMS.</p>
<p style="text-align: center;"><a href="http://randomlinux.com/wp-content/uploads/2013/03/snes.jpg"><img class="alignnone size-medium wp-image-51941" alt="SNES9x" src="http://randomlinux.com/wp-content/uploads/2013/03/snes-300x170.jpg" width="300" height="170" /></a> <a href="http://randomlinux.com/wp-content/uploads/2013/03/frmbuf003fy7.jpg"><img class="alignnone size-medium wp-image-51942" alt="Super Mario World" src="http://randomlinux.com/wp-content/uploads/2013/03/frmbuf003fy7-300x170.jpg" width="300" height="170" /></a></p>
<p style="text-align: center;">Download: <a href="http://randomlinux.com/wp-content/uploads/2013/03/130117_snes9xeuphoria.zip">snes9x euphoria</a></p>
]]></content:encoded>
			<wfw:commentRss>http://randomlinux.com/video-games/super-nintendo-snes-emulator-for-psp-snes9x-euphoria/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MAME Emulator for PSP (Multiple Arcade Machine, MAME4ALL)</title>
		<link>http://randomlinux.com/video-games/mame-emulator-for-psp-multiple-arcade-machine-mame4all/</link>
		<comments>http://randomlinux.com/video-games/mame-emulator-for-psp-multiple-arcade-machine-mame4all/#comments</comments>
		<pubDate>Thu, 21 Mar 2013 12:39:15 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[VIdeo Games]]></category>
		<category><![CDATA[arcade emulator]]></category>
		<category><![CDATA[cps1 emulator]]></category>
		<category><![CDATA[cps1. cps2]]></category>
		<category><![CDATA[cps2 emulator]]></category>
		<category><![CDATA[emulator]]></category>
		<category><![CDATA[mame]]></category>
		<category><![CDATA[MAME arcade games]]></category>
		<category><![CDATA[MAME Emulator]]></category>
		<category><![CDATA[mame psp]]></category>
		<category><![CDATA[mame4all]]></category>
		<category><![CDATA[Multiple Arcade Machine]]></category>
		<category><![CDATA[Neogeo Emulator]]></category>
		<category><![CDATA[PSP emulator]]></category>
		<category><![CDATA[PSP memory stick]]></category>

		<guid isPermaLink="false">http://randomlinux.com/?p=51933</guid>
		<description><![CDATA[One of the operators of pspslimhacks.com has built an installer for the just released PSP MAME4ALL v4.9r2 Hires . This installer will easily install the files needed to get playing your favorite MAME arcade games. This is for the PSP Slim cfw 3.xx+ All that’s required your end is to point the installer to your [...]]]></description>
				<content:encoded><![CDATA[<p>One of the operators of pspslimhacks.com has built an installer for the just released <a title="PSP MAME4ALL v4.9r2 Hires" href="http://pspslimhacks.com/psp-mame4all-v49r2-hires/" rel="bookmark">PSP MAME4ALL v4.9r2 Hires </a>. This installer will easily install the files needed to get playing your favorite MAME arcade games. This is for the PSP Slim cfw 3.xx+ All that’s required your end is to point the installer to your PSP memory stick and then copy roms to the rom folder of this installation on your Playstation Portable. Easy as Pie!</p>
<p>A large number of machines including CPS1 CPS2 and Neogeo most notably.</p>
<p>*Credit to <a href="http://ttyman.free.fr/?p=15">TTYMan</a> for making this PSP emulator.</p>
<p>NOTE: This emulator will not function properly on 6.60 PRO 10 CFW, firmwares I know it has functioned on properly are<br />
CFW 6.20 PRO-B9<br />
CFW 6.39 PRO-B7<br />
CFW 6.38ME<br />
If you have run the emulator successfully with out crashes on other firmwares please leave a comment below including the CFW version.</p>
<p style="text-align: center;"><a href="http://randomlinux.com/wp-content/uploads/2013/03/mame.jpg"><img class="alignnone size-medium wp-image-51934" alt="mame" src="http://randomlinux.com/wp-content/uploads/2013/03/mame-300x225.jpg" width="300" height="225" /></a> <a href="http://randomlinux.com/wp-content/uploads/2013/03/DF5.png"><img class="alignnone size-medium wp-image-51935" alt="DF5" src="http://randomlinux.com/wp-content/uploads/2013/03/DF5.png" width="278" height="223" /></a> <a href="http://randomlinux.com/wp-content/uploads/2013/03/snowbros.gif"><img class="alignnone size-medium wp-image-51936" alt="snowbros" src="http://randomlinux.com/wp-content/uploads/2013/03/snowbros.gif" width="256" height="224" /></a></p>
<p style="text-align: center;">Download: <a href="http://randomlinux.com/wp-content/uploads/2013/03/psp-mame4all-v49r2-installer-for-psp-slim-3xx.exe">psp-mame4all-v49r2-installer-for-psp-slim-3xx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://randomlinux.com/video-games/mame-emulator-for-psp-multiple-arcade-machine-mame4all/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Atari Lynx Emulator For PSP (HandyPSP)</title>
		<link>http://randomlinux.com/video-games/atari-lynx-emulator-for-psp-handypsp/</link>
		<comments>http://randomlinux.com/video-games/atari-lynx-emulator-for-psp-handypsp/#comments</comments>
		<pubDate>Thu, 21 Mar 2013 12:01:13 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[VIdeo Games]]></category>
		<category><![CDATA[Atari]]></category>
		<category><![CDATA[atari emulator]]></category>
		<category><![CDATA[Atari Lynx]]></category>
		<category><![CDATA[Atari Lynx Emulator]]></category>
		<category><![CDATA[emulator]]></category>

		<guid isPermaLink="false">http://randomlinux.com/?p=51926</guid>
		<description><![CDATA[The Atari Lynx was Atari&#8217;s entrance and exit from the hand held market. While this system was largely overlooked and underdeveloped it did have some fun games in it&#8217;s limited line up. You can give a few of these gems a go now through emulation using HandyPSP Lynx emulator. You will need a lynxboot.img placed [...]]]></description>
				<content:encoded><![CDATA[<p>The Atari Lynx was Atari&#8217;s entrance and exit from the hand held market. While this system was largely overlooked and underdeveloped it did have some fun games in it&#8217;s limited line up. You can give a few of these gems a go now through emulation using HandyPSP Lynx emulator.</p>
<p>You will need a lynxboot.img placed in the emulators directory for this emulator to work.</p>
<p style="text-align: center;"><a href="http://randomlinux.com/wp-content/uploads/2013/03/handy.png"><img class="alignnone size-medium wp-image-51927" alt="handypsp" src="http://randomlinux.com/wp-content/uploads/2013/03/handy-300x170.png" width="300" height="170" /></a> <a href="http://randomlinux.com/wp-content/uploads/2013/03/lynx-batman-returns-usa-europe.png"><img class="alignnone size-medium wp-image-51928" alt="Batman Returns" src="http://randomlinux.com/wp-content/uploads/2013/03/lynx-batman-returns-usa-europe-300x191.png" width="300" height="191" /></a></p>
<p style="text-align: center;">Download: <a href="http://randomlinux.com/wp-content/uploads/2013/03/handy-0.95.1-1.0.zip">handyPSP-0.95.1-1.0</a></p>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://randomlinux.com/video-games/atari-lynx-emulator-for-psp-handypsp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Neogeo Pocket Color Emulater For PSP (Race! PSP)</title>
		<link>http://randomlinux.com/video-games/neogeo-pocket-color-race-psp/</link>
		<comments>http://randomlinux.com/video-games/neogeo-pocket-color-race-psp/#comments</comments>
		<pubDate>Thu, 21 Mar 2013 11:13:21 +0000</pubDate>
		<dc:creator>Johnny</dc:creator>
				<category><![CDATA[VIdeo Games]]></category>
		<category><![CDATA[Neo Geo Pocket]]></category>
		<category><![CDATA[Neogeo Pocket Color]]></category>
		<category><![CDATA[Neogeo Pocket Color Emulater]]></category>
		<category><![CDATA[Pocket Color Emulator]]></category>
		<category><![CDATA[pocket versions]]></category>

		<guid isPermaLink="false">http://randomlinux.com/?p=51916</guid>
		<description><![CDATA[RACE! PSP is a Neo Geo Pocket and Pocket Color Emulator for the PSP. The latest version is 2.16. Enjoy pocket versions of most all your favorite NEOGEO games in smooth and flawless emulation. RACE PSP 2.16 What&#8217;s New: Time Rewind feature: map ‘Special: Rewind’ to any PSP button in the Controls menu to enable. [...]]]></description>
				<content:encoded><![CDATA[<p><a title="Posts tagged with RACE! PSP" href="http://pspslimhacks.com/tag/race-psp/" rel="tag">RACE! PSP</a> is a Neo Geo Pocket and Pocket Color Emulator for the PSP. The latest version is 2.16. Enjoy pocket versions of most all your favorite NEOGEO games in smooth and flawless emulation.</p>
<p>RACE PSP 2.16 What&#8217;s New:</p>
<blockquote><p>Time Rewind feature: map ‘Special: Rewind’ to any PSP button in the Controls menu to enable. See documentation for more information<br />
Save state format has changed: <a title="Posts tagged with RACE! PSP" href="http://pspslimhacks.com/psp-emulators/tag/race-psp/" rel="tag">RACE! PSP</a> will still read the older save state format, but loading will be slightly slower</p>
<p>Not a new feature, but the documentation now includes a section on how to have <a title="Posts tagged with RACE! PSP" href="http://pspslimhacks.com/psp-emulators/tag/race-psp/" rel="tag">RACE! PSP</a> load a BIOS ROM file (instead of using the customized hardcoded version)</p></blockquote>
<p>Official page: <a href="http://psp.akop.org/race">RACE! PSP Official site</a></p>
<p style="text-align: center;"><a href="http://randomlinux.com/wp-content/uploads/2013/03/ui-051.png"><img class="alignnone size-medium wp-image-51918" alt="Save state" src="http://randomlinux.com/wp-content/uploads/2013/03/ui-051-300x170.png" width="300" height="170" /></a> <a href="http://randomlinux.com/wp-content/uploads/2013/03/ui-011.png"><img class="alignnone size-medium wp-image-51919" alt="rom loader" src="http://randomlinux.com/wp-content/uploads/2013/03/ui-011-300x170.png" width="300" height="170" /></a> <a href="http://randomlinux.com/wp-content/uploads/2013/03/game-16.png"><img class="alignnone size-medium wp-image-51920" alt="game-16" src="http://randomlinux.com/wp-content/uploads/2013/03/game-16-300x170.png" width="300" height="170" /></a></p>
<p style="text-align: center;">Download: <a href="http://randomlinux.com/wp-content/uploads/2013/03/race-2.16-1.0.zip">race-2.16-1.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://randomlinux.com/video-games/neogeo-pocket-color-race-psp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching using memcached
Object Caching 1154/1154 objects using memcached

 Served from: randomlinux.com @ 2013-05-23 02:17:20 by W3 Total Cache -->