<?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>The Exploits of Plouj &#187; hacks</title>
	<atom:link href="http://www.plouj.com/blog/tag/hacks/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.plouj.com/blog</link>
	<description>A blog by Michael Ploujnikov</description>
	<lastBuildDate>Wed, 01 Sep 2010 17:05:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Google Earth trip video capture in GNU/Linux with Yukon/Seom</title>
		<link>http://www.plouj.com/blog/2009/07/15/google-earth-trip-video-capture-in-gnulinux-with-yukonseom/</link>
		<comments>http://www.plouj.com/blog/2009/07/15/google-earth-trip-video-capture-in-gnulinux-with-yukonseom/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 17:21:55 +0000</pubDate>
		<dc:creator>plouj</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[capture]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[googleearth]]></category>
		<category><![CDATA[OpenGL]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[seom]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[yukon]]></category>

		<guid isPermaLink="false">http://www.plouj.com/blog/?p=385</guid>
		<description><![CDATA[This is documentation of how I used Yukon and Seom to video capture a Google Earth trip for a recent video project in Fedora 10. I used the official installation guide as a starting point. Compile the Seom library I choose to install both Seom and Yukon in a custom prefix /home/plouj/yukon, rather than the [...]]]></description>
			<content:encoded><![CDATA[<p>This is documentation of how I used <a href="https://devel.neopsis.com/projects/yukon/">Yukon and Seom</a> to video capture a <a href="http://earth.google.com/">Google Earth</a> <a href="http://earth.google.com/tour.html#v=4">trip</a> for a recent video project in <a href="http://fedoraproject.org/">Fedora</a> 10. I used the <a href="https://devel.neopsis.com/projects/yukon/wiki/HowTo/Install">official installation guide</a> as a starting point.</p>
<h2>Compile the Seom library</h2>
<p>I choose to install both Seom and Yukon in a custom prefix <em>/home/plouj/yukon</em>, rather than the system wide <em>/usr</em> or <em>/usr/local</em>.</p>
<pre>
$ svn co https://devel.neopsis.com/svn/seom/branches/packetized-stream seom
$ cd seom
$ ./configure --prefix=/home/plouj/yukon --arch="x86" --cflags="-W -Wall" &#038;&#038; \
make CC="gcc -m32" &#038;&#038; make install LIBDIR="lib"
</pre>
<p>Note that &#8220;&#8211;arch=&#8221;x86&#8243; and &#8220;-m32&#8243; are only necessary for me because my operating system is 64bit and I need 32bit versions of seom and yukon (to work with 32bit Google Earth).</p>
<h2>Compile and install Yukon</h2>
<pre>
$ svn co https://devel.neopsis.com/svn/yukon/branches/rewrite yukon
$ cd yukon
$ ./configure --prefix=/home/plouj/yukon/ --libdir="lib" --arch="x86" &#038;&#038; \
make CC="gcc -L/home/plouj/yukon/lib -I/home/plouj/yukon/include -m32" &#038;&#038; \
make install
</pre>
<h2>Install Google Earth for Linux</h2>
<p>Obviously get it here: <a href="http://earth.google.com/">http://earth.google.com/</a></p>
<h2>Modify the Google Earth startup script</h2>
<p>Since I chose <em>/home/plouj/bin/</em> as the &#8220;Binary path&#8221; for Google Earth I was editing <em>/home/plouj/bin/googleearth</em>. All I had to do was to add yukon/seom library and executable paths at the end of the script:</p>
<pre>
...
cd "${GOOGLEEARTH_DATA_PATH}/"
LD_LIBRARY_PATH=/home/plouj/yukon/lib/:$LD_LIBRARY_PATH \
PATH=/home/plouj/yukon/bin:$PATH exec yukon "./googleearth-bin" "$@"
</pre>
<p>instead of the original:</p>
<pre>
cd "${GOOGLEEARTH_DATA_PATH}/"
exec "./googleearth-bin" "$@"
</pre>
<h2>Capture</h2>
<p>Finally, the <a href="https://devel.neopsis.com/projects/yukon/wiki/HowTo/Capture">capture</a> process is well documented on the Yukon website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.plouj.com/blog/2009/07/15/google-earth-trip-video-capture-in-gnulinux-with-yukonseom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quake1 demo recorded on the Wii</title>
		<link>http://www.plouj.com/blog/2008/08/19/quake1-demo-recorded-on-the-wii/</link>
		<comments>http://www.plouj.com/blog/2008/08/19/quake1-demo-recorded-on-the-wii/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 03:12:40 +0000</pubDate>
		<dc:creator>plouj</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[darkplaces]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[e1m1]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[homebrew]]></category>
		<category><![CDATA[nintendo]]></category>
		<category><![CDATA[quake]]></category>
		<category><![CDATA[wii]]></category>
		<category><![CDATA[zapper]]></category>

		<guid isPermaLink="false">http://www.plouj.com/blog/?p=87</guid>
		<description><![CDATA[I wastedspent today&#8217;s evening playing around with Quake1 which I installed on my brother&#8217;s Wii through the Homebrew channel. One cool thing that I managed to get working relatively painlessly was demo recording. Since there is no keyboard support in Quake1 yet, I had to add the following bind to the /id1/config.cfg file on the [...]]]></description>
			<content:encoded><![CDATA[<p>I <del datetime="2008-08-20T02:56:34+00:00">wasted</del>spent today&#8217;s evening playing around with <a href="http://code.google.com/p/quake-gamecube/">Quake1</a> which I <a href="http://wiibrew.org/w/index.php?title=Twilight_Hack">installed</a> on my brother&#8217;s <a href="http://www.amazon.ca/gp/product/B0009VXBAQ?ie=UTF8&amp;tag=plouj-20&amp;linkCode=as2&amp;camp=15121&amp;creative=330641&amp;creativeASIN=B0009VXBAQ">Wii</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.ca/e/ir?t=plouj-20&amp;l=as2&amp;o=15&amp;a=B0009VXBAQ" border="0" alt="" width="1" height="1" /> through the <a href="http://hbc.hackmii.com/">Homebrew channel</a>. One cool thing that I managed to get working relatively painlessly was demo recording.</p>
<p>Since there is <a href="http://code.google.com/p/quake-gamecube/issues/detail?id=11">no keyboard support in Quake1 yet</a>, I had to add the following bind to the /id1/config.cfg file on the SD card using a desktop computer:</p>
<pre>bind "UPARROW" "disconnect; skill 3; record wii; map e1m1"</pre>
<p>This allowed me to simply press the up arrow button on the Wii remote and Quake1 would start recording a demo of me playing the <a href="http://www.google.ca/search?q=e1m1">first level of the first episode</a> on Nightmare difficulty.</p>
<p>So far, I haven&#8217;t been able to play the game as quickly and as precisely as I can on a computer with a mouse. Not that I&#8217;m a great Quake player to begin with. However, I still had a lot of fun, especially after I started using the <a href="http://www.amazon.ca/gp/product/B000W5Y49G?ie=UTF8&amp;tag=plouj-20&amp;linkCode=as2&amp;camp=15121&amp;creative=330641&amp;creativeASIN=B000W5Y49G">Wii Zapper</a><img style="border:none !important; margin:0px !important;" src="http://www.assoc-amazon.ca/e/ir?t=plouj-20&amp;l=as2&amp;o=15&amp;a=B000W5Y49G" border="0" alt="" width="1" height="1" />. It gave me a nice sensation of holding boom stick, but didn&#8217;t improve my aim.</p>
<p>Here is the actual <a href="http://www.plouj.com/blog/wp-content/uploads/2008/08/wiidem.bz2">demo bzip2 archive</a> for those who really want to watch me get owned by zombies from another dimension for a few minutes. This demo should be playable with most Quake1 engines and original (full version or demo) game data from ID. I used my personal favourite &#8211; <a href="http://icculus.org/twilight/darkplaces/">Darkplaces</a>:</p>
<p><a href="http://www.plouj.com/blog/wp-content/uploads/2008/08/000831_dp000018.jpg"><img class="alignnone size-medium wp-image-125" title="wii demo shot 1" src="http://www.plouj.com/blog/wp-content/uploads/2008/08/000831_dp000018-300x240.jpg" alt="" width="300" height="240" /></a><br />
<a href="http://www.plouj.com/blog/wp-content/uploads/2008/08/dp000020.jpg"><img class="alignnone size-medium wp-image-91" title="wii demo shot 2" src="http://www.plouj.com/blog/wp-content/uploads/2008/08/dp000020-300x240.jpg" alt="" width="300" height="240" /></a>.<br />
These screenshots sort-of show that I&#8217;m shooting at stuff which is not directly under my cross-hair because of the way Wii remote look works. In the actual Wii Quake, the gun model also moves around the screen.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.plouj.com/blog/2008/08/19/quake1-demo-recorded-on-the-wii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TAP that DHCP bridge for some Qemu TUN in Fedora</title>
		<link>http://www.plouj.com/blog/2008/07/29/tap-that-dhcp-bridge-for-some-qemu-tun-in-fedora/</link>
		<comments>http://www.plouj.com/blog/2008/07/29/tap-that-dhcp-bridge-for-some-qemu-tun-in-fedora/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 23:22:40 +0000</pubDate>
		<dc:creator>plouj</dc:creator>
				<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[bridge]]></category>
		<category><![CDATA[DHCP]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Qemu]]></category>
		<category><![CDATA[Redhat]]></category>
		<category><![CDATA[sysconfig]]></category>
		<category><![CDATA[TAP]]></category>
		<category><![CDATA[TUN]]></category>

		<guid isPermaLink="false">http://www.plouj.com/blog/?p=20</guid>
		<description><![CDATA[The other day I needed to setup bridged networking for a Qemu virtual machine. Although I found a rather well written generic TAP interfaces guide on Wikibooks. It only explained how to configure a network bridge on a host machine with a static IP. I wanted to do this on a host that used DHCP. [...]]]></description>
			<content:encoded><![CDATA[<p>The other day I needed to setup bridged networking for a Qemu virtual machine. Although I found a rather well written generic <a href="http://en.wikibooks.org/wiki/QEMU/Networking#TAP_interfaces">TAP interfaces guide on Wikibooks</a>. It only explained how to configure a network bridge on a host machine with a static IP. I wanted to do this on a host that used DHCP. Plus I wanted to keep all configuration in Fedora specific places. Having discovered a good way to do this through experimentation after a few fruitless Google searches I thought it would be useful for myself and others to have the configuration documented here.</p>
<h2>ifcfg-eth0</h2>
<p>First, I changed the host&#8217;s (auto-generated) <code>/etc/sysconfig/network-scripts/ifcfg-eth0</code> script from this:</p>
<pre># Attansic Technology Corp. L1 Gigabit Ethernet Adapter
DEVICE=eth0
BOOTPROTO=dhcp
HWADDR=00:1D:60:35:A7:64
ONBOOT=yes</pre>
<p>to this:</p>
<pre># Attansic Technology Corp. L1 Gigabit Ethernet Adapter
DEVICE=eth0
TYPE=Ethernet
BRIDGE=br0
ONBOOT=yes</pre>
<p>This turns off DHCP on the physical Ethernet device and just specifies that it will be connected to or a part of a bridge.</p>
<h2>ifcfg-br0</h2>
<p>Second, I created <code>/etc/sysconfig/network-scripts/ifcfg-br0</code>, which will be called to setup a bridge device:</p>
<pre>DEVICE=br0
TYPE=Bridge
BOOTPROTO=dhcp
HWADDR=00:1D:60:35:A7:64
ONBOOT=yes
DELAY=0
STP=off</pre>
<p>As you can see, most of this configuration is copied from eth0 plus the bridge configuration as per the Qemu Wikibook.</p>
<h2>qemu-ifup/down</h2>
<p>Third, I shortened the <code>/etc/qemu-ifup</code> and <code>/etc/qemu-ifdown</code> from Wikibooks to get this:</p>
<p><em>/etc/qemu-ifup:</em></p>
<pre>#!/bin/sh
USER=$(id -un)
sudo /usr/sbin/openvpn --mktun --dev $1 --user "$USER"
sudo /sbin/ifconfig $1 0.0.0.0 promisc up
sudo /usr/sbin/brctl addif br0 $1</pre>
<p><em>/etc/qemu-ifdown:</em></p>
<pre>#!/bin/sh
sudo /sbin/ifconfig $1 down
sudo /usr/sbin/brctl delif br0 $1
sudo /usr/sbin/openvpn --rmtun --dev $1</pre>
<p>Here I basically removed all of the configuration that is taken care of in the sysconfig scripts. I also made explicit use of sudo simply because that is my preference.</p>
<h2>Final steps</h2>
<p>Now I can simply run <code>/etc/qemu-ifup tap0</code> once to create a TAP device, and use something like: <code>qemu-kvm -hda /virtual-machines/fedora9.disk -m 512 -net nic -net tap,ifname=tap0,script=no</code> to start a virtual machine. When I&#8217;m done running the virtual machine, I can run <code>/etc/qemu-ifdown tap0</code> to remove the TAP device.</p>
<p>All this sounds simple now that it&#8217;s working, but initially it took a lot of guessing on my part so I&#8217;m documenting it here for the future.</p>
<p>I would appreciate it if someone can point me to the official Redhat/Fedora documentation on editing <code>/etc/sysconfig/network-scripts/</code> scripts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.plouj.com/blog/2008/07/29/tap-that-dhcp-bridge-for-some-qemu-tun-in-fedora/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>HOWTO: run rTorrent from Cron inside Screen at boot</title>
		<link>http://www.plouj.com/blog/2008/03/31/howto-run-rtorrent-from-cron-inside-screen/</link>
		<comments>http://www.plouj.com/blog/2008/03/31/howto-run-rtorrent-from-cron-inside-screen/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 17:13:48 +0000</pubDate>
		<dc:creator>plouj</dc:creator>
				<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[bittorrent]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[p2p]]></category>
		<category><![CDATA[screen]]></category>

		<guid isPermaLink="false">http://www.plouj.com/blog/?p=3</guid>
		<description><![CDATA[Once I figured out how to do QoS on my openwrt router I decided that I would make use of the bandwidth provided to me by my ISP to seed some nice legal torrents as long as I can without interrupting my Internet browsing. Since I was already using rTorrent, it seemed like a good [...]]]></description>
			<content:encoded><![CDATA[<p>Once I figured out how to do <a href="http://wiki.openwrt.org/MiniHowtos/QoSHowto">QoS on my openwrt router</a> I decided that I would make use of the bandwidth provided to me by my ISP to seed some nice legal torrents as long as I can without interrupting my Internet browsing. Since I was already using rTorrent, it seemed like a good choice for a console application running inside screen that would be started by cron each time my computer boots. In theory that was true, but in practice the lack of documentation of various peculiarities cost me a few hours of digging and asking around before I had a properly working solution. In this post I will document my solution.</p>
<p>Right away I knew that I wanted to be able to easily attach to the bittorrent screen session at any time, so I used an easy to remember name for it:</p>
<pre>screen -s torrent</pre>
<p>I also knew that for screen to work with cron it had to start in a &#8220;detached&#8221; mode. Thankfully, the screen manual told me how to do that:</p>
<pre>screen -d m</pre>
<p>During my research I came across different people mentioning a <a href="http://www.google.ca/search?q=cron+screen+%22-dmS%22">short form</a> for all of the above switches:</p>
<pre>screen -dmS torrent</pre>
<p>Since I like to simplify things I immediately adopted it and unfortunately paid dearly in the end. In fact, this was one of those attractive in theory but poorly executed features that cause other things to fail and waste my time with unhelpful error messages. It took me a few hours to figure out that it was causing screen to keep failing to start from inside cron with a &#8220;Must be connected to a terminal.&#8221; error.</p>
<p>Once I got over that hurdle I tried the full command without cron:</p>
<pre>screen -d -m -S torrent /usr/bin/rtorrent</pre>
<p>Everything was good until I noticed that I couldn&#8217;t use any rTorrent keyboard commands. I couldn&#8217;t even quit it apart from killing it from a separate terminal. According to the <a href="http://libtorrent.rakshasa.no/wiki/RTorrentUserGuide">rTorrent user guide</a> this was a result of a flow control conflict with screen. Thankfully screen also had a switch -fa just for that:</p>
<pre>screen -fa -d -m -S torrent /usr/bin/rtorrent</pre>
<p>To be on the safe side I used an absolute path to screen in the cron job:</p>
<pre>/usr/bin/screen -fa -d -m -S torrent /usr/bin/rtorrent</pre>
<p>Making sure cron starts this each time my computer boots was easy with the @reboot directive so this is exactly what should go in the crontab:</p>
<pre>@reboot /usr/bin/screen -fa -d -m -S torrent /usr/bin/rtorrent</pre>
<p>After running rTorrent like this for a few days I noticed that it was a bit unstable and would crash sometimes so I came up with a simple Bash script to keep it running:</p>
<pre>
$ cat ~/bin/myrtorrent
#!/bin/bash
PROGRAM="/usr/bin/rtorrent"
GRACE_DELAY=15
while true;
do
    "$PROGRAM"
    RETURNED=$?
    if [ $RETURNED -ne 0 ]
    then
	echo "$PROGRAM did not exit cleanly with status code $RETURNED"
	echo "pausing for $GRACE_DELAY seconds before restarting $PROGRAM"
	sleep $GRACE_DELAY;
    else
	echo "$PROGRAM exited cleanly. It will not be restarted automatically"
	exit 0
    fi
done
</pre>
<p>The final cronjob looks like this now:</p>
<pre>
@reboot /usr/bin/screen -fa -d -m -S torrent $HOME/bin/myrtorrent
</pre>
<p>Sadly, the usefullness of this setup is questionable since <a href="http://arstechnica.com/news.ars/post/20080325-canadian-isps-furious-about-bell-canadas-traffic-throttling.html">Bell is throttling DSL resellers&#8217; peer-to-peer traffic</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.plouj.com/blog/2008/03/31/howto-run-rtorrent-from-cron-inside-screen/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
