<?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>Schadenfreude &#187; guide</title>
	<atom:link href="http://www.ralree.com/tag/guide/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ralree.com</link>
	<description>Malicious enjoyment derived from observing someone else's misfortune</description>
	<lastBuildDate>Thu, 09 Feb 2012 01:49:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Finding the best apt mirror in Ubuntu</title>
		<link>http://www.ralree.com/2008/03/22/finding-the-best-apt-mirror-in-ubuntu/</link>
		<comments>http://www.ralree.com/2008/03/22/finding-the-best-apt-mirror-in-ubuntu/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 16:27:00 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apt]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[gutsy]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[repositories]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.ralree.info/2008/03/22/finding-the-best-apt-mirror-in-ubuntu</guid>
		<description><![CDATA[I wanted to speed up package downloading to set up my apt-proxy today in Gutsy, so I decided to find the correct way to find the fastest Ubuntu mirror. It&#8217;s actually done like so (stolen from here): Click on &#8220;System &#124; Administration &#124; Software Sources&#8221; Under &#8220;Ubuntu Sotware&#8221; tab, choose &#8220;Other&#8221; in the &#8220;Download from&#8221; list box. Choose your country and then click &#8220;Select Best Server&#8221; and choose the recommendation. This automatically updates the /etc/apt/sources.lst file. The same utility can [...]]]></description>
			<content:encoded><![CDATA[<p>I wanted to speed up package downloading to set up my <a href="https://help.ubuntu.com/community/AptProxy">apt-proxy</a> today in Gutsy, so I decided to find the correct way to find the fastest Ubuntu mirror.  It&#8217;s actually done like so (stolen from <a href="http://ubuntuforums.org/showpost.php?p=2348479&amp;postcount=1">here</a>):</p>
<ol>
<li>Click on &#8220;System | Administration | Software Sources&#8221;</li>
<li>Under &#8220;Ubuntu Sotware&#8221; tab, choose &#8220;Other&#8221; in the &#8220;Download from&#8221; list box.</li>
<li>Choose your country and then click &#8220;Select Best Server&#8221; and choose the recommendation.</li>
</ol>
<p>This automatically updates the /etc/apt/sources.lst file.  The same utility can also be reached from the Synaptic Package Manager, through &#8220;Settings | Repositories&#8221;.<br />
In action:</p>
<p><img src="http://ralree.com/assets/2008/3/22/screenshot1.png" alt=""/></p>
<p>It says <strong><code>mirrors.rit.edu</code></strong> is the best one for me.  Makes sense.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ralree.com/2008/03/22/finding-the-best-apt-mirror-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to make a Flash Line Chart in Rails using Ziya</title>
		<link>http://www.ralree.com/2008/02/16/how-to-make-a-flash-line-chart-in-rails-using-ziya/</link>
		<comments>http://www.ralree.com/2008/02/16/how-to-make-a-flash-line-chart-in-rails-using-ziya/#comments</comments>
		<pubDate>Sat, 16 Feb 2008 22:58:15 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[charts]]></category>
		<category><![CDATA[graphs]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ziya]]></category>

		<guid isPermaLink="false">http://www.ralree.info/2007/10/13/how-to-make-a-flash-line-chart-in-rails-using-ziya</guid>
		<description><![CDATA[Ziya is pretty cool, and the documentation is slowly starting to surface. I was annoyed that I couldn’t find a good example paste of how to make a line chart. Then I watched the screencast. It’s the first example he does, so I’m posting it here so those who can’t watch it can actually find out how to do it. I’m going to operate on the precondition that you’ve installed Ziya and included it in your controller properly. Do the [...]]]></description>
			<content:encoded><![CDATA[<p>Ziya is pretty cool, and the documentation is slowly starting to surface.  I was annoyed that I couldn’t find a good example paste of how to make a line chart.  Then I watched the <a href="http://www.youtube.com/watch?v=axIMmMHdXzo">screencast</a>.  It’s the first example he does, so I’m posting it here so those who can’t watch it can actually find out how to do it.</p>
<p>I’m going to operate on the precondition that you’ve installed Ziya and included it in your controller properly.  Do the bar chart example before going any further.</p>
<p>Now, make this function in your controller:</p>
<pre><code>
def refresh_chart
  chart = ZIya::Charts::Line.new
  render :text =&gt; chart
end
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.ralree.com/2008/02/16/how-to-make-a-flash-line-chart-in-rails-using-ziya/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wxWASTE on Ubuntu Gutsy Gibbon</title>
		<link>http://www.ralree.com/2007/11/11/wxwaste-on-ubuntu-gutsy-gibbon/</link>
		<comments>http://www.ralree.com/2007/11/11/wxwaste-on-ubuntu-gutsy-gibbon/#comments</comments>
		<pubDate>Sun, 11 Nov 2007 05:42:00 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[file sharing]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[gutsy]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[waste]]></category>

		<guid isPermaLink="false">http://www.ralree.info/2007/12/05/wxwaste-on-ubuntu-gutsy-gibbon</guid>
		<description><![CDATA[Installing the package Most people will want this. Add the following to your /etc/apt/sources.list at the bottom: # Hankzilla deb http://modzer0.cs.uaf.edu/~hardwarehank/deb binary/ Then run a sudo apt-get update. Then install it with sudo apt-get install wxwaste. Run it with waste. Building from source Get it Install some dependencies: # Checkinstall is optional, but it makes it nice since removal is just thru apt. sudo apt-get install wx-common libwxgtk2.6-dev wx2.6-headers checkinstall Unpack the source, then ./configure &#38;&#38; make &#38;&#38; sudo checkinstall [...]]]></description>
			<content:encoded><![CDATA[<h2>Installing the package</h2>
<p>Most people will want this.  Add the following to your <code>/etc/apt/sources.list</code> at the bottom:</p>
<pre><code>
# Hankzilla
deb http://modzer0.cs.uaf.edu/~hardwarehank/deb binary/
</code></pre>
<p>Then run a <code>sudo apt-get update</code>.  Then install it with <code>sudo apt-get install wxwaste</code>.  Run it with <code>waste</code>.</p>
<h2>Building from source</h2>
<ul>
<li><a href="http://sourceforge.net/project/showfiles.php?group_id=82356&amp;package_id=147272">Get it</a></li>
<li>Install some dependencies:</li>
</ul>
<pre><code>
# Checkinstall is optional, but it makes it nice since removal is just thru apt.
sudo apt-get install wx-common libwxgtk2.6-dev wx2.6-headers checkinstall
</code></pre>
<ul>
<li>Unpack the source, then <code>./configure &amp;&amp; make &amp;&amp; sudo checkinstall</code></li>
<li>Add a nice menu listing:</li>
</ul>
<pre><code>
# Put this in /usr/share/applications/waste.desktop
[Desktop Entry]
Type=Application
Version=1.5b4
Name=WASTE
GenericName=Secure Filesharing
Comment=Facilitates encrypted filesharing between trusted clients
Icon=gnome-term-linux.png
TryExec=waste
Exec=waste
Terminal=false
Categories=GNOME;Application;Network;
</code></pre>
<ul>
<li>Configure and have fun!</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.ralree.com/2007/11/11/wxwaste-on-ubuntu-gutsy-gibbon/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hacking a WRT54G v8 With DD-WRT</title>
		<link>http://www.ralree.com/2007/10/06/hacking-a-wrt54g-v8-with-dd-wrt/</link>
		<comments>http://www.ralree.com/2007/10/06/hacking-a-wrt54g-v8-with-dd-wrt/#comments</comments>
		<pubDate>Sat, 06 Oct 2007 15:20:00 +0000</pubDate>
		<dc:creator>Erik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ddwrt]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://www.ralree.info/2007/10/20/hacking-a-wrt54g-v8-with-dd-wrt</guid>
		<description><![CDATA[So, last month sometime, BrainSlayer got DD-WRT working on version 8 of the WRT54G. Now this was great news to me when I read it since I’ve been wanting to get rid of the crappy LinkSys management from the beginning. Some of the procedure worked, and some of it didn’t for me. Do not try this if you don’t know exactly what you’re getting into. So, last month sometime, BrainSlayer got DD-WRT working on version 8 of the WRT54G. Now [...]]]></description>
			<content:encoded><![CDATA[<p>So, last month sometime, BrainSlayer <a href="http://www.dd-wrt.com/phpBB2/viewtopic.php?t=20095">got DD-WRT working on version 8 of the WRT54G</a>.  Now this was great news to me when I read it since I’ve been wanting to get rid of the crappy LinkSys management from the beginning.  Some of the procedure worked, and some of it didn’t for me.</p>
<h2>Do not try this if you don’t know <strong>exactly</strong> what you’re getting into.</h2>
<p><span id="more-3914"></span></p>
<p>So, last month sometime, BrainSlayer <a href="http://www.dd-wrt.com/phpBB2/viewtopic.php?t=20095">got DD-WRT working on version 8 of the WRT54G</a>.  Now this was great news to me when I read it since I’ve been wanting to get rid of the crappy LinkSys management from the beginning.  Some of the procedure worked, and some of it didn’t for me.</p>
<h2>Do not try this if you don’t know <strong>exactly</strong> what you’re getting into.</h2>
<p>Here’s what I ended up doing:</p>
<ul>
<li>Go <a href="http://www.dd-wrt.com/dd-wrtv2/down.php?path=downloads%2Frelease+candidates%2FDD-WRT+v24+RC3%2FGENERIC+BROADCOM+%28Linksys%2C+Asus+etc.%29%2FWRT54Gv8%2C+WRT54GSv7/">here</a> and look at the state of things.</li>
<li>Read flashing.txt.  It helped me immensely.</li>
<li>Download <a href="http://www.dd-wrt.com/dd-wrtv2/downloads/release%20candidates/DD-WRT%20v24%20RC3/GENERIC%20BROADCOM%20(Linksys,%20Asus%20etc.)/WRT54Gv8,%20WRT54GSv7/dd-wrt.v24_micro_wrt54gv8.bin">the DD-WRT firmware</a> and the <a href="http://www.dd-wrt.com/dd-wrtv2/downloads/release%20candidates/DD-WRT%20v24%20RC3/GENERIC%20BROADCOM%20(Linksys,%20Asus%20etc.)/WRT54Gv8,%20WRT54GSv7/vxworkskillerGv8.bin">version 8 VXWorks killer</a> and put them in a safe place</li>
<li>I use Ubuntu, so at this point I installed tftp:</li>
</ul>
<pre><code>
sudo apt-get install tftp
</code></pre>
<ul>
<li>Go to the flashing dialog and flash the VXWorks killer firmware you got.</li>
<li>Once the router reboots, get a beer while it warms up.  This should take 1 to 2 minutes.</li>
<li>Unplug the router and plug it back in.</li>
<li>Wait while it boots (20 seconds).</li>
<li>Set your ip and default gateway:</li>
</ul>
<pre><code>
# Replace &lt;interface&gt; with whichever network interface you're using.
sudo ifconfig &lt;interface&gt; 192.168.1.100
sudo route add default gw 192.168.1.1
</code></pre>
<ul>
<li>Ping the router.  Hopefully this works…</li>
</ul>
<pre><code>
hank@rofl:~$ ping 192.168.1.1
PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
64 bytes from 192.168.1.1: icmp_seq=1 ttl=64 time=0.792 ms
</code></pre>
<ul>
<li>Send the new firmware over.  Make sure to <strong><em>set your mode to octet!</em></strong><em></em> You should see a bunch of blinky lights on the router for a few seconds, then tftp should output the number of bytes transferred.</li>
</ul>
<pre><code>
hank@rofl:~$ tftp 192.168.1.1
tftp&gt; mode octet
tftp&gt; put dd-wrt.v24_micro_wrt54gv8.bin
</code></pre>
<ul>
<li>Get another beer.  While you do that, your firmware is being reflashed and DD-WRT is booting up.  You should see the power light go on, then off, then on again, then blink, then stay on.</li>
<li>You should be able to get DHCP now.  Try it:</li>
</ul>
<pre><code>
sudo dhclient &lt;interface&gt;
</code></pre>
<ul>
<li>If that worked, head over to http://192.168.1.1 to the admin console.</li>
<li>Change the settings to your liking.  <strong>The default account is root/admin</strong></li>
<li>Change the maximum connections to 4096 and the TCP and UDP timeouts to 90 each in the main Administration page.</li>
</ul>
<p>This should yield you an awesome setup.  I’m very happy with mine.</p>
<h3>References</h3>
<p><a href="http://lifehacker.com/software/router/hack-attack-turn-your-60-router-into-a-600-router-178132.php">Hack Attack: Turn your $60 router into a $600 router</a></p>
<h3>Files</h3>
<p>Oh, and just in case DD-WRT’s site goes down in the middle of the procedure (like it did to me), here are the files:</p>
<p><a href="http://ralree.info/assets/2007/10/6/dd-wrt.v24_micro_wrt54gv8.bin">Firmware</a><br />
<a href="http://ralree.info/assets/2007/10/6/vxworkskillerv8.bin">VXWorks Killer</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ralree.com/2007/10/06/hacking-a-wrt54g-v8-with-dd-wrt/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

