<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>The Rantings and Ravings of a Madman</title>
	
	<link>http://sirlagz.net</link>
	<description>My blog about tech, games, and linux.</description>
	<lastBuildDate>Thu, 23 May 2013 05:20:35 +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>
	<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=SirLagz&amp;popout=1&amp;url=http%3A%2F%2Fsirlagz.net%2F&amp;language=en_US&amp;category=text&amp;title=The+Rantings+and+Ravings+of+a+Madman&amp;description=My+blog+about+tech%2C+games%2C+and+linux.&amp;tags=blog%2C+MadMan" type="text/html" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/TheRantingsAndRavingsOfAMadman" /><feedburner:info uri="therantingsandravingsofamadman" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>How To : Use Motion To Generate Timelapse Videos</title>
		<link>http://feedproxy.google.com/~r/TheRantingsAndRavingsOfAMadman/~3/emAd1aV3kIU/</link>
		<comments>http://sirlagz.net/2013/05/21/how-to-use-motion-to-generate-timelapse-videos/#comments</comments>
		<pubDate>Tue, 21 May 2013 15:38:52 +0000</pubDate>
		<dc:creator>SirLagz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Motion]]></category>
		<category><![CDATA[Rpi]]></category>
		<category><![CDATA[timelapse]]></category>

		<guid isPermaLink="false">http://sirlagz.net/?p=931</guid>
		<description><![CDATA[I recently had an email from one of my readers enquiring about making timelapse videos with the Raspberry Pi. Since I already had a webcam connected to one of my Pis, I set about making it take timelapse shots. There are a myriad of ways to accomplish this, but I decided to use motion as <a href='http://sirlagz.net/2013/05/21/how-to-use-motion-to-generate-timelapse-videos/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>I recently had an email from one of my readers enquiring about making timelapse videos with the Raspberry Pi.</p>
<p>Since I already had a webcam connected to one of my Pis, I set about making it take timelapse shots.<br />
There are a myriad of ways to accomplish this, but I decided to use motion as it took the least configuration to get it to do what I wanted it to do.</p>
<p>Getting motion was as easy as <code>apt-get install motion</code> on my Raspbian powered Pi.<br />
I also needed <code>mencoder</code> to encode the resulting images into a video. Mencoder is also found in the repositories, so a quick apt-get later and I also had mencoder installed.</p>
<p>In order to get timelapse shots, I had to setup motion to take pictures at intervals.<br />
On line 295 in the default motion.conf, there is this following line<br />
<code><br />
snapshot_interval 0<br />
</code><br />
Change that to the number of seconds between each snapshot.<br />
<code><br />
snapshot_interval 5<br />
</code></p>
<p>I&#8217;m also allowing remote access to the webcam so that I can check in on it.<br />
On lines 413 and 429, change the webcam_localhost and control_localhost to off.</p>
<p>After changing those, I restarted the motion daemon for the changes to take effect.<br />
Once motion is started, you will start seeing files in /tmp/motion (or wherever you decided to save the files)<br />
The ones ending in -snapshot.jpg are the ones that we will be using for the timelapse movie.<br />
If you have motion detection activated, you will see other files in the directory but we can ignore those.</p>
<p>To create the movie, we are going to use mencoder. This part could also be done with ffmpeg, which I may cover in a later post.<br />
I wrote up a small script to run the mencoder command -<br />
<code><br />
#!/bin/bash<br />
mencoder mf:///tmp/motion/*-snapshot.jpg -mf w=320:h=240:fps=25:type=jpg -ovc copy -oac copy -o output.avi<br />
</code><br />
The resolution (-mf w=320:h=240) should match the resolution setup in motion.<br />
When the script is run, it will take all files in /tmp/motion/ that end in -snapshot.jpg and make a movie out of them. The output file is set by the -o switch, in this case I&#8217;ve used output.avi.<br />
Setting this script to run once a minute for example, will keep the timelapse video up-to-date to the last minute.</p>
<p>Once the file has been created, you&#8217;ll be able to view the file on another computer very easily.<br />
The only issue with this timelapse movie, is that it will keep getting longer and longer and longer, as there is nothing cleaning up the old files.</p>
<p>So what we&#8217;ll do, is add an extra line into the script to remove any files older than a certain time, and that way we can control the length of the timelapse movie.<br />
If we wanted to make the timelapse movie 10 minutes only, we&#8217;d add the following line before the mencoder line<br />
<code><br />
find /tmp/motion -name "*.jpg" -type f -mmin +10 -delete<br />
</code></p>
<p>Resulting in this<br />
<code><br />
#!/bin/bash<br />
find /tmp/motion -name "*.jpg" -type f -mmin +10 -delete<br />
mencoder mf:///tmp/motion/*-snapshot.jpg -mf w=320:h=240:fps=25:type=jpg -ovc copy -oac copy -o output.avi<br />
</code></p>
<p>That way, whenever the script is run, we&#8217;ll have a 10 minute long timelapse video !</p>
<div class="SPOSTARBUST-Related-Posts"><H5>Related Posts</H5><ul class="entry-meta"><li class="SPOSTARBUST-Related-Post"><a title="Quickie : Repairing the Raspberry Pi&#8217;s SD Card Socket" href="http://sirlagz.net/2013/02/11/quickie-repairing-the-raspberry-pis-sd-card-socket/" rel="bookmark">Quickie : Repairing the Raspberry Pi&#8217;s SD Card Socket</a></li>
<li class="SPOSTARBUST-Related-Post"><a title="How To : Use The Raspberry Pi As A Wireless Access Point/Router Part 3…B!" href="http://sirlagz.net/2013/02/10/how-to-use-the-raspberry-pi-as-a-wireless-access-pointrouter-part-3b/" rel="bookmark">How To : Use The Raspberry Pi As A Wireless Access Point/Router Part 3…B!</a></li>
<li class="SPOSTARBUST-Related-Post"><a title="Script : Activating / Deactivating Motion if device appears or disappears Part 2" href="http://sirlagz.net/2013/02/10/script-activating-deactivating-motion-if-device-appears-or-disappears-part-2/" rel="bookmark">Script : Activating / Deactivating Motion if device appears or disappears Part 2</a></li>
<li class="SPOSTARBUST-Related-Post"><a title="RaspAP WebGUI" href="http://sirlagz.net/2013/02/08/raspap-webgui/" rel="bookmark">RaspAP WebGUI</a></li>
<li class="SPOSTARBUST-Related-Post"><a title="Script : Web Configuration Page for Raspberry Pi" href="http://sirlagz.net/2013/02/06/script-web-configuration-page-for-raspberry-pi/" rel="bookmark">Script : Web Configuration Page for Raspberry Pi</a></li>
</ul></div><p><a class="a2a_button_facebook_like addtoany_special_service" data-href="http://sirlagz.net/2013/05/21/how-to-use-motion-to-generate-timelapse-videos/"></a><a class="a2a_button_twitter_tweet addtoany_special_service" data-count="none" data-url="http://sirlagz.net/2013/05/21/how-to-use-motion-to-generate-timelapse-videos/" data-text="How To : Use Motion To Generate Timelapse Videos"></a><a class="a2a_button_google_plus_share addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/05/21/how-to-use-motion-to-generate-timelapse-videos/"></a><a class="a2a_button_google_plusone addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/05/21/how-to-use-motion-to-generate-timelapse-videos/"></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F05%2F21%2Fhow-to-use-motion-to-generate-timelapse-videos%2F&amp;linkname=How%20To%20%3A%20Use%20Motion%20To%20Generate%20Timelapse%20Videos" title="Twitter" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F05%2F21%2Fhow-to-use-motion-to-generate-timelapse-videos%2F&amp;linkname=How%20To%20%3A%20Use%20Motion%20To%20Generate%20Timelapse%20Videos" title="Facebook" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_plus" href="http://www.addtoany.com/add_to/google_plus?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F05%2F21%2Fhow-to-use-motion-to-generate-timelapse-videos%2F&amp;linkname=How%20To%20%3A%20Use%20Motion%20To%20Generate%20Timelapse%20Videos" title="Google+" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/google_plus.png" width="16" height="16" alt="Google+"/></a><a class="a2a_button_linkedin" href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F05%2F21%2Fhow-to-use-motion-to-generate-timelapse-videos%2F&amp;linkname=How%20To%20%3A%20Use%20Motion%20To%20Generate%20Timelapse%20Videos" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a><a class="a2a_button_reddit" href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F05%2F21%2Fhow-to-use-motion-to-generate-timelapse-videos%2F&amp;linkname=How%20To%20%3A%20Use%20Motion%20To%20Generate%20Timelapse%20Videos" title="Reddit" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F05%2F21%2Fhow-to-use-motion-to-generate-timelapse-videos%2F&amp;linkname=How%20To%20%3A%20Use%20Motion%20To%20Generate%20Timelapse%20Videos" title="Delicious" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F05%2F21%2Fhow-to-use-motion-to-generate-timelapse-videos%2F&amp;linkname=How%20To%20%3A%20Use%20Motion%20To%20Generate%20Timelapse%20Videos" title="Digg" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsirlagz.net%2F2013%2F05%2F21%2Fhow-to-use-motion-to-generate-timelapse-videos%2F&amp;title=How%20To%20%3A%20Use%20Motion%20To%20Generate%20Timelapse%20Videos" id="wpa2a_2"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p> <p><a href="http://sirlagz.net/?flattrss_redirect&amp;id=931&amp;md5=1cb6674225d8c1ad1e7683013f9b2682" title="Flattr" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><img src="http://feeds.feedburner.com/~r/TheRantingsAndRavingsOfAMadman/~4/emAd1aV3kIU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sirlagz.net/2013/05/21/how-to-use-motion-to-generate-timelapse-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=SirLagz&amp;popout=1&amp;url=http%3A%2F%2Fsirlagz.net%2F2013%2F05%2F21%2Fhow-to-use-motion-to-generate-timelapse-videos%2F&amp;language=en_GB&amp;category=text&amp;title=How+To+%3A+Use+Motion+To+Generate+Timelapse+Videos&amp;description=I+recently+had+an+email+from+one+of+my+readers+enquiring+about+making+timelapse+videos+with+the+Raspberry+Pi.+Since+I+already+had+a+webcam+connected+to+one+of+my...&amp;tags=Motion%2CRaspberry+Pi%2CRpi%2Ctimelapse%2Cblog%2C+MadMan" type="text/html" />
	<feedburner:origLink>http://sirlagz.net/2013/05/21/how-to-use-motion-to-generate-timelapse-videos/</feedburner:origLink></item>
		<item>
		<title>How To : Use A RT5370 USB WiFi NIC In A Bridge</title>
		<link>http://feedproxy.google.com/~r/TheRantingsAndRavingsOfAMadman/~3/6tuH0g4Zqrc/</link>
		<comments>http://sirlagz.net/2013/05/16/how-to-use-a-rt5370-usb-wifi-nic-in-a-bridge/#comments</comments>
		<pubDate>Thu, 16 May 2013 15:52:29 +0000</pubDate>
		<dc:creator>SirLagz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Bridging]]></category>
		<category><![CDATA[Rpi]]></category>
		<category><![CDATA[RT5370]]></category>
		<category><![CDATA[WiFi]]></category>

		<guid isPermaLink="false">http://sirlagz.net/?p=916</guid>
		<description><![CDATA[So lately, I&#8217;ve been trying to use one of my Raspberry Pis as a WiFi bridge. That is connecting the Pi to a WiFi network, and sharing it out via the ethernet port. I was trying to do that with the RT5370 USB sticks that I was also using to broadcast hotspots. With the default <a href='http://sirlagz.net/2013/05/16/how-to-use-a-rt5370-usb-wifi-nic-in-a-bridge/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>So lately, I&#8217;ve been trying to use one of my Raspberry Pis as a WiFi bridge.<br />
That is connecting the Pi to a WiFi network, and sharing it out via the ethernet port.<br />
I was trying to do that with the RT5370 USB sticks that I was also using to broadcast hotspots.</p>
<p>With the default drivers in Raspbian however, trying to add wlan0 to a bridge results in this message<br />
<code><br />
can't add wlan0 to bridge br0: Operation not supported<br />
</code><br />
According the the drivers, wlan0 can&#8217;t do it.<br />
The only way to add the RT5370 NIC to a bridge is to activate 4addr (4 address frame) mode.<br />
<code><br />
iw wlan0 set 4addr on<br />
</code></p>
<p>However, once 4addr mode is on, traffic between the WiFi device and the AP seemed to stop altogether.</p>
<p>The solution to this issue, is to use the RALink drivers. The vendor drivers does not seem to use the Linux WiFi stack however, which means that those drivers can not be used to broadcast a hotspot using hostapd. So if you&#8217;re using a Pi as a WiFi repeater, you may have issues there, though that will be something I&#8217;m going to experiment with later as well.</p>
<h2>Preparation</h2>
<p>Before we can actually compile the drivers, we&#8217;re going to need to grab the kernel sources.<br />
I&#8217;m using Raspbian Server Edition, which uses the 3.6.11+ kernel. We&#8217;ll need the matching source from github.<br />
We&#8217;ll change to the /usr/src directory first, then wget the sources from github, and then untarball it with these commands.</p>
<p><strong>*Note*</strong> I&#8217;m doing it as root, so you can either prepend sudo to these commands, or run sudo bash before running these commands.<br />
<code><br />
cd /usr/src<br />
wget https://github.com/raspberrypi/linux/archive/rpi-3.6.y.tar.gz<br />
tar -xvzf rpi-3.6.y.tar.gz<br />
</code></p>
<p>Once the source is extracted, we&#8217;ll need to copy the current kernel configuration into the source directory.<br />
<code><br />
cd linux-rpi-3.6.y<br />
gzip -dc /proc/config.gz > .config<br />
</code></p>
<p>And then we need to create the files and symlinks neccesary for compiling external modules<br />
<code><br />
make modules_prepare<br />
ln -s /usr/src/rpi-3.6.y /lib/modules/3.6.11+/build<br />
</code></p>
<h2>Compiling the Vendor drivers</h2>
<p>In order to use the Vendor drivers, first we&#8217;ll need to get them.<br />
<a href="http://www.mediatek.com/_en/07_downloads/01_windows.php?sn=501">The drivers can be found here</a>.<br />
Download the ones for the RT5370 and transfer it to the Pi as we&#8217;ll need to compile the drivers ourselves.</p>
<p>Once we have the drivers on the Pi, we&#8217;ll move them to /usr/src and untar them to keep things nice and neat. Assuming the drivers are in /home/pi<br />
*Note* Again I&#8217;m doing everything as root.<br />
<code><br />
mv /home/pi/2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DP0.bz2 /usr/src<br />
cd /usr/src<br />
tar -xvjf 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DP0.bz2<br />
cd 2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DP0<br />
</code></p>
<p>Once it&#8217;s untarred, we&#8217;ll need to edit the file &#8216;os/linux/config.mk&#8217; to enable WPA support and to allow network managers to control the device.<br />
So find these lines, and change the n to y, then save and close the file.<br />
<code><br />
HAS_WPA_SUPPLICANT=n<br />
HAS_NATIVE_WPA_SUPPLICANT_SUPPORT=n<br />
</code></p>
<p>Now, we should still be in the /usr/src/2011_0719_RT3070_RT3370_RT5370_RT5372_Linux_STA_V2.5.0.3_DP0/ directory.<br />
Time to compile the drivers !<br />
To compile them, we just need to run the &#8216;make&#8217; command in the drivers directory as root.<br />
It took me just shy of 12 minutes to compile the drivers on a Class 4 SD Card on a non-overclocked pi.<br />
Once they are compiled, running &#8216;sudo make install&#8217; will install the drivers into the right spot</p>
<p>To make sure the drivers are installed properly, we&#8217;ll load the module to make sure no errors come up.<br />
*Note* Run this as root again<br />
<code><br />
modprobe rt5370a<br />
</code></p>
<p>If no errors come up, then that&#8217;s a good sign. Check that it&#8217;s been loaded by running lsmod and checking the output.<br />
<code><br />
root@raspberrypi:/home/pi# lsmod<br />
Module                  Size  Used by<br />
<SNIP><br />
rt5370sta             786186  0<br />
<SNIP><br />
</code></p>
<p>You should see the module rt5370sta in the list there.<br />
Lastly we&#8217;ll disable the rt2800 usb module and enable autoloading of the new rt5370sta module.<br />
We&#8217;ll need to edit /etc/modprobe.d/raspi-blacklist.conf and add the following line to the end<br />
<code><br />
blacklist rt2800usb<br />
</code><br />
And then we&#8217;ll need to edit the /etc/modules file to add the new module we&#8217;ve just compiled. Just need to add the module name to the end of the file<br />
<code><br />
rt5370sta<br />
</code></p>
<p>After the file has been modified, reboot the Pi and when it comes back up, run ifconfig -a and you should see something similar to the following -<br />
<code><br />
eth0      Link encap:Ethernet  HWaddr b8:27:eb:xx:xx:xx<br />
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1<br />
          RX packets:354 errors:0 dropped:0 overruns:0 frame:0<br />
          TX packets:181 errors:0 dropped:0 overruns:0 carrier:0<br />
          collisions:0 txqueuelen:1000<br />
          RX bytes:30609 (29.8 KiB)  TX bytes:25948 (25.3 KiB)</p>
<p>lo        Link encap:Local Loopback<br />
          inet addr:127.0.0.1  Mask:255.0.0.0<br />
          UP LOOPBACK RUNNING  MTU:16436  Metric:1<br />
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0<br />
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0<br />
          collisions:0 txqueuelen:0<br />
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)</p>
<p>ra0       Link encap:Ethernet  HWaddr 00:0f:54:xx:xx:xx<br />
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1<br />
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0<br />
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0<br />
          collisions:0 txqueuelen:1000<br />
          RX bytes:854641 (834.6 KiB)  TX bytes:44800 (43.7 KiB)<br />
</code></p>
<p>Notice the ra0 rather than wlan0. This shows that the Pi is using the new rt5370sta module rather than the old rt2800usb one. You can still use the ra0 interface to connect to wireless networks like normal.</p>
<div class="SPOSTARBUST-Related-Posts"><H5>Related Posts</H5><ul class="entry-meta"><li class="SPOSTARBUST-Related-Post"><a title="Raspberry Pi Case : The PiSU Part 2" href="http://sirlagz.net/2012/09/07/raspberry-pi-case-the-pisu-part-2/" rel="bookmark">Raspberry Pi Case : The PiSU Part 2</a></li>
<li class="SPOSTARBUST-Related-Post"><a title="Raspberry Pi Case: The PiSU Part 1" href="http://sirlagz.net/2012/09/05/raspberry-pi-case-the-pisu-part-1/" rel="bookmark">Raspberry Pi Case: The PiSU Part 1</a></li>
<li class="SPOSTARBUST-Related-Post"><a title="Planned : Script To Install WiFi Drivers and Configure WiFi !" href="http://sirlagz.net/2012/08/30/planned-script-to-install-wifi-drivers-and-configure-wifi/" rel="bookmark">Planned : Script To Install WiFi Drivers and Configure WiFi !</a></li>
<li class="SPOSTARBUST-Related-Post"><a title="How To : Use wpa_cli To Connect To A Wireless Network" href="http://sirlagz.net/2012/08/27/how-to-use-wpa_cli-to-connect-to-a-wireless-network/" rel="bookmark">How To : Use wpa_cli To Connect To A Wireless Network</a></li>
<li class="SPOSTARBUST-Related-Post"><a title="Raspbian Server Edition Version 2.1" href="http://sirlagz.net/2012/08/27/raspbian-server-edition-version-2-1/" rel="bookmark">Raspbian Server Edition Version 2.1</a></li>
</ul></div><p><a class="a2a_button_facebook_like addtoany_special_service" data-href="http://sirlagz.net/2013/05/16/how-to-use-a-rt5370-usb-wifi-nic-in-a-bridge/"></a><a class="a2a_button_twitter_tweet addtoany_special_service" data-count="none" data-url="http://sirlagz.net/2013/05/16/how-to-use-a-rt5370-usb-wifi-nic-in-a-bridge/" data-text="How To : Use A RT5370 USB WiFi NIC In A Bridge"></a><a class="a2a_button_google_plus_share addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/05/16/how-to-use-a-rt5370-usb-wifi-nic-in-a-bridge/"></a><a class="a2a_button_google_plusone addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/05/16/how-to-use-a-rt5370-usb-wifi-nic-in-a-bridge/"></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F05%2F16%2Fhow-to-use-a-rt5370-usb-wifi-nic-in-a-bridge%2F&amp;linkname=How%20To%20%3A%20Use%20A%20RT5370%20USB%20WiFi%20NIC%20In%20A%20Bridge" title="Twitter" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F05%2F16%2Fhow-to-use-a-rt5370-usb-wifi-nic-in-a-bridge%2F&amp;linkname=How%20To%20%3A%20Use%20A%20RT5370%20USB%20WiFi%20NIC%20In%20A%20Bridge" title="Facebook" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_plus" href="http://www.addtoany.com/add_to/google_plus?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F05%2F16%2Fhow-to-use-a-rt5370-usb-wifi-nic-in-a-bridge%2F&amp;linkname=How%20To%20%3A%20Use%20A%20RT5370%20USB%20WiFi%20NIC%20In%20A%20Bridge" title="Google+" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/google_plus.png" width="16" height="16" alt="Google+"/></a><a class="a2a_button_linkedin" href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F05%2F16%2Fhow-to-use-a-rt5370-usb-wifi-nic-in-a-bridge%2F&amp;linkname=How%20To%20%3A%20Use%20A%20RT5370%20USB%20WiFi%20NIC%20In%20A%20Bridge" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a><a class="a2a_button_reddit" href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F05%2F16%2Fhow-to-use-a-rt5370-usb-wifi-nic-in-a-bridge%2F&amp;linkname=How%20To%20%3A%20Use%20A%20RT5370%20USB%20WiFi%20NIC%20In%20A%20Bridge" title="Reddit" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F05%2F16%2Fhow-to-use-a-rt5370-usb-wifi-nic-in-a-bridge%2F&amp;linkname=How%20To%20%3A%20Use%20A%20RT5370%20USB%20WiFi%20NIC%20In%20A%20Bridge" title="Delicious" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F05%2F16%2Fhow-to-use-a-rt5370-usb-wifi-nic-in-a-bridge%2F&amp;linkname=How%20To%20%3A%20Use%20A%20RT5370%20USB%20WiFi%20NIC%20In%20A%20Bridge" title="Digg" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsirlagz.net%2F2013%2F05%2F16%2Fhow-to-use-a-rt5370-usb-wifi-nic-in-a-bridge%2F&amp;title=How%20To%20%3A%20Use%20A%20RT5370%20USB%20WiFi%20NIC%20In%20A%20Bridge" id="wpa2a_6"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p> <p><a href="http://sirlagz.net/?flattrss_redirect&amp;id=916&amp;md5=0d082b3003b8cae25052e89745dad9b3" title="Flattr" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><img src="http://feeds.feedburner.com/~r/TheRantingsAndRavingsOfAMadman/~4/6tuH0g4Zqrc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sirlagz.net/2013/05/16/how-to-use-a-rt5370-usb-wifi-nic-in-a-bridge/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=SirLagz&amp;popout=1&amp;url=http%3A%2F%2Fsirlagz.net%2F2013%2F05%2F16%2Fhow-to-use-a-rt5370-usb-wifi-nic-in-a-bridge%2F&amp;language=en_GB&amp;category=text&amp;title=How+To+%3A+Use+A+RT5370+USB+WiFi+NIC+In+A+Bridge&amp;description=So+lately%2C+I%26%238217%3Bve+been+trying+to+use+one+of+my+Raspberry+Pis+as+a+WiFi+bridge.+That+is+connecting+the+Pi+to+a+WiFi+network%2C+and+sharing+it+out+via...&amp;tags=Bridging%2CRaspberry+Pi%2CRpi%2CRT5370%2CWiFi%2Cblog%2C+MadMan" type="text/html" />
	<feedburner:origLink>http://sirlagz.net/2013/05/16/how-to-use-a-rt5370-usb-wifi-nic-in-a-bridge/</feedburner:origLink></item>
		<item>
		<title>PiParted v0.04</title>
		<link>http://feedproxy.google.com/~r/TheRantingsAndRavingsOfAMadman/~3/GnQgPAyzh54/</link>
		<comments>http://sirlagz.net/2013/04/24/piparted-v0-04/#comments</comments>
		<pubDate>Tue, 23 Apr 2013 18:15:06 +0000</pubDate>
		<dc:creator>SirLagz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[GParted]]></category>
		<category><![CDATA[Parted]]></category>
		<category><![CDATA[PiParted]]></category>
		<category><![CDATA[Rpi]]></category>

		<guid isPermaLink="false">http://sirlagz.net/?p=906</guid>
		<description><![CDATA[Another update to PiParted Fixed up non-appearing SD Cards Also added a backup option, at the moment it can only backup ~4GB SD Cards as it reads it to ram for now. Your computer will also need at least 4 GB of ram to backup the SD Card. Grab it here ! SHA1 Hash &#8211; <a href='http://sirlagz.net/2013/04/24/piparted-v0-04/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>Another update to PiParted</p>
<p>Fixed up non-appearing SD Cards<br />
Also added a backup option, at the moment it can only backup ~4GB SD Cards as it reads it to ram for now. Your computer will also need at least 4 GB of ram to backup the SD Card.</p>
<p>Grab it <a href="http://sirlagz.net/wp-content/plugins/download-monitor/download.php?id=20"> here !</a></p>
<p>SHA1 Hash &#8211; 2fa25e4f9e9260a3612129a1b0291fca3e3fd628  PiParted-0.04.iso</p>
<p>Comments / feedback would be very welcome !</p>
<div class="SPOSTARBUST-Related-Posts"><H5>Related Posts</H5><ul class="entry-meta"><li class="SPOSTARBUST-Related-Post"><a title="New Raspberry Pi Ram Selector Script &#8211; Version 4" href="http://sirlagz.net/2012/07/31/new-raspberry-pi-ram-selector-script-version-4/" rel="bookmark">New Raspberry Pi Ram Selector Script &#8211; Version 4</a></li>
<li class="SPOSTARBUST-Related-Post"><a title="How To Run A Raspberry Pi Off A 16MB SD Card" href="http://sirlagz.net/2012/07/31/how-to-run-a-raspberry-pi-off-a-16mb-sd-card/" rel="bookmark">How To Run A Raspberry Pi Off A 16MB SD Card</a></li>
<li class="SPOSTARBUST-Related-Post"><a title="Image File Mounting Script" href="http://sirlagz.net/2012/07/01/image-file-mounting-script/" rel="bookmark">Image File Mounting Script</a></li>
<li class="SPOSTARBUST-Related-Post"><a title="How To : Resize Partitions in an Image File" href="http://sirlagz.net/2012/06/20/how-to-resize-partitions-on-an-image-file/" rel="bookmark">How To : Resize Partitions in an Image File</a></li>
<li class="SPOSTARBUST-Related-Post"><a title="APC: VIA&#8217;s Reply To The Raspberry Pi" href="http://sirlagz.net/2012/05/24/apc-vias-reply-to-the-raspberry-pi/" rel="bookmark">APC: VIA&#8217;s Reply To The Raspberry Pi</a></li>
</ul></div><p><a class="a2a_button_facebook_like addtoany_special_service" data-href="http://sirlagz.net/2013/04/24/piparted-v0-04/"></a><a class="a2a_button_twitter_tweet addtoany_special_service" data-count="none" data-url="http://sirlagz.net/2013/04/24/piparted-v0-04/" data-text="PiParted v0.04"></a><a class="a2a_button_google_plus_share addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/04/24/piparted-v0-04/"></a><a class="a2a_button_google_plusone addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/04/24/piparted-v0-04/"></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F24%2Fpiparted-v0-04%2F&amp;linkname=PiParted%20v0.04" title="Twitter" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F24%2Fpiparted-v0-04%2F&amp;linkname=PiParted%20v0.04" title="Facebook" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_plus" href="http://www.addtoany.com/add_to/google_plus?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F24%2Fpiparted-v0-04%2F&amp;linkname=PiParted%20v0.04" title="Google+" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/google_plus.png" width="16" height="16" alt="Google+"/></a><a class="a2a_button_linkedin" href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F24%2Fpiparted-v0-04%2F&amp;linkname=PiParted%20v0.04" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a><a class="a2a_button_reddit" href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F24%2Fpiparted-v0-04%2F&amp;linkname=PiParted%20v0.04" title="Reddit" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F24%2Fpiparted-v0-04%2F&amp;linkname=PiParted%20v0.04" title="Delicious" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F24%2Fpiparted-v0-04%2F&amp;linkname=PiParted%20v0.04" title="Digg" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F24%2Fpiparted-v0-04%2F&amp;title=PiParted%20v0.04" id="wpa2a_10"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p> <p><a href="http://sirlagz.net/?flattrss_redirect&amp;id=906&amp;md5=b1a0430a341537d63db79b6f0f169d50" title="Flattr" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><img src="http://feeds.feedburner.com/~r/TheRantingsAndRavingsOfAMadman/~4/GnQgPAyzh54" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sirlagz.net/2013/04/24/piparted-v0-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=SirLagz&amp;popout=1&amp;url=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F24%2Fpiparted-v0-04%2F&amp;language=en_GB&amp;category=text&amp;title=PiParted+v0.04&amp;description=Another+update+to+PiParted+Fixed+up+non-appearing+SD+Cards+Also+added+a+backup+option%2C+at+the+moment+it+can+only+backup+%7E4GB+SD+Cards+as+it+reads+it+to+ram...&amp;tags=GParted%2CParted%2CPiParted%2CRaspberry+Pi%2CRpi%2Cblog%2C+MadMan" type="text/html" />
	<feedburner:origLink>http://sirlagz.net/2013/04/24/piparted-v0-04/</feedburner:origLink></item>
		<item>
		<title>PiParted v0.03</title>
		<link>http://feedproxy.google.com/~r/TheRantingsAndRavingsOfAMadman/~3/nuddk-5TxTc/</link>
		<comments>http://sirlagz.net/2013/04/19/piparted-v0-03/#comments</comments>
		<pubDate>Thu, 18 Apr 2013 18:49:21 +0000</pubDate>
		<dc:creator>SirLagz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[GParted]]></category>
		<category><![CDATA[Parted]]></category>
		<category><![CDATA[PiParted]]></category>
		<category><![CDATA[Rpi]]></category>

		<guid isPermaLink="false">http://sirlagz.net/?p=907</guid>
		<description><![CDATA[Just finished up with PiParted v0.03 Changes - No longer needs 4 gigs of ram as it will uncompress and image on the fly. Tested it on a laptop with 1.5 gigs of ram and it worked ok. Installing from SD Card - Works with both zip and .gz file, haven&#8217;t tested properly with .tar.gz <a href='http://sirlagz.net/2013/04/19/piparted-v0-03/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>Just finished up with PiParted v0.03</p>
<p>Changes -<br />
No longer needs 4 gigs of ram as it will uncompress and image on the fly.<br />
Tested it on a laptop with 1.5 gigs of ram and it worked ok.</p>
<p>Installing from SD Card -<br />
Works with both zip and .gz file, haven&#8217;t tested properly with .tar.gz but should still work</p>
<p>Also checks SHA1 hash when downloaded from the Pi site.</p>
<p>Incremental update really.<br />
<a href="http://sirlagz.net/wp-content/plugins/download-monitor/download.php?id=19">Download it from here</a><br />
SHA1 Hash &#8211;<br />
f91e53df56aec6cc7d1b27041e0750b0f4763bfd  PiParted-0.03.iso</p>
<p><a class="a2a_button_facebook_like addtoany_special_service" data-href="http://sirlagz.net/2013/04/19/piparted-v0-03/"></a><a class="a2a_button_twitter_tweet addtoany_special_service" data-count="none" data-url="http://sirlagz.net/2013/04/19/piparted-v0-03/" data-text="PiParted v0.03"></a><a class="a2a_button_google_plus_share addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/04/19/piparted-v0-03/"></a><a class="a2a_button_google_plusone addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/04/19/piparted-v0-03/"></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F19%2Fpiparted-v0-03%2F&amp;linkname=PiParted%20v0.03" title="Twitter" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F19%2Fpiparted-v0-03%2F&amp;linkname=PiParted%20v0.03" title="Facebook" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_plus" href="http://www.addtoany.com/add_to/google_plus?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F19%2Fpiparted-v0-03%2F&amp;linkname=PiParted%20v0.03" title="Google+" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/google_plus.png" width="16" height="16" alt="Google+"/></a><a class="a2a_button_linkedin" href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F19%2Fpiparted-v0-03%2F&amp;linkname=PiParted%20v0.03" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a><a class="a2a_button_reddit" href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F19%2Fpiparted-v0-03%2F&amp;linkname=PiParted%20v0.03" title="Reddit" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F19%2Fpiparted-v0-03%2F&amp;linkname=PiParted%20v0.03" title="Delicious" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F19%2Fpiparted-v0-03%2F&amp;linkname=PiParted%20v0.03" title="Digg" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F19%2Fpiparted-v0-03%2F&amp;title=PiParted%20v0.03" id="wpa2a_14"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p> <p><a href="http://sirlagz.net/?flattrss_redirect&amp;id=907&amp;md5=443e9b44a99d888ab667a752bbee75e2" title="Flattr" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><img src="http://feeds.feedburner.com/~r/TheRantingsAndRavingsOfAMadman/~4/nuddk-5TxTc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sirlagz.net/2013/04/19/piparted-v0-03/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=SirLagz&amp;popout=1&amp;url=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F19%2Fpiparted-v0-03%2F&amp;language=en_GB&amp;category=text&amp;title=PiParted+v0.03&amp;description=Just+finished+up+with+PiParted+v0.03+Changes+-+No+longer+needs+4+gigs+of+ram+as+it+will+uncompress+and+image+on+the+fly.+Tested+it+on+a+laptop+with...&amp;tags=GParted%2CParted%2CPiParted%2CRaspberry+Pi%2CRpi%2Cblog%2C+MadMan" type="text/html" />
	<feedburner:origLink>http://sirlagz.net/2013/04/19/piparted-v0-03/</feedburner:origLink></item>
		<item>
		<title>PiParted v0.02</title>
		<link>http://feedproxy.google.com/~r/TheRantingsAndRavingsOfAMadman/~3/-_Ft_Q6rGno/</link>
		<comments>http://sirlagz.net/2013/04/08/piparted-v0-02/#comments</comments>
		<pubDate>Sun, 07 Apr 2013 19:39:51 +0000</pubDate>
		<dc:creator>SirLagz</dc:creator>
				<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[GParted]]></category>
		<category><![CDATA[Parted]]></category>
		<category><![CDATA[PiParted]]></category>
		<category><![CDATA[Rpi]]></category>

		<guid isPermaLink="false">http://sirlagz.net/?p=903</guid>
		<description><![CDATA[After some tweaking, I have improved PiParted. Please note this is a very early testing version, so some things may break or not work properly. Download it here ! New features - Flash OS from zip file on SD Card: If the SD card only has one partition, and there is one zip file on <a href='http://sirlagz.net/2013/04/08/piparted-v0-02/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>After some tweaking, I have improved PiParted.<br />
Please note this is a very early testing version, so some things may break or not work properly.</p>
<p>Download it <a href="http://sirlagz.net/wp-content/plugins/download-monitor/download.php?id=18">here !</a></p>
<p>New features -<br />
Flash OS from zip file on SD Card:<br />
If the SD card only has one partition, and there is one zip file on that partition, the script will use that to flash an OS on.</p>
<p>Reset SD Card:<br />
This will format an SD Card back to defaults, i.e. one vfat partition.</p>
<p>dd will now show it&#8217;s status when it&#8217;s flashing a SD card.</p>
<p>I&#8217;m looking for testers, so if anyone tries this out, please give me some feedback, either on this post or in the forum thread @ http://www.raspberrypi.org/phpBB3/viewtopic.php?f=63&#038;t=39160</p>
<p><a class="a2a_button_facebook_like addtoany_special_service" data-href="http://sirlagz.net/2013/04/08/piparted-v0-02/"></a><a class="a2a_button_twitter_tweet addtoany_special_service" data-count="none" data-url="http://sirlagz.net/2013/04/08/piparted-v0-02/" data-text="PiParted v0.02"></a><a class="a2a_button_google_plus_share addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/04/08/piparted-v0-02/"></a><a class="a2a_button_google_plusone addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/04/08/piparted-v0-02/"></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F08%2Fpiparted-v0-02%2F&amp;linkname=PiParted%20v0.02" title="Twitter" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F08%2Fpiparted-v0-02%2F&amp;linkname=PiParted%20v0.02" title="Facebook" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_plus" href="http://www.addtoany.com/add_to/google_plus?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F08%2Fpiparted-v0-02%2F&amp;linkname=PiParted%20v0.02" title="Google+" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/google_plus.png" width="16" height="16" alt="Google+"/></a><a class="a2a_button_linkedin" href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F08%2Fpiparted-v0-02%2F&amp;linkname=PiParted%20v0.02" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a><a class="a2a_button_reddit" href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F08%2Fpiparted-v0-02%2F&amp;linkname=PiParted%20v0.02" title="Reddit" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F08%2Fpiparted-v0-02%2F&amp;linkname=PiParted%20v0.02" title="Delicious" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F08%2Fpiparted-v0-02%2F&amp;linkname=PiParted%20v0.02" title="Digg" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F08%2Fpiparted-v0-02%2F&amp;title=PiParted%20v0.02" id="wpa2a_18"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p> <p><a href="http://sirlagz.net/?flattrss_redirect&amp;id=903&amp;md5=c1986b8df25bec07b84b2508ab0396d7" title="Flattr" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><img src="http://feeds.feedburner.com/~r/TheRantingsAndRavingsOfAMadman/~4/-_Ft_Q6rGno" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sirlagz.net/2013/04/08/piparted-v0-02/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=SirLagz&amp;popout=1&amp;url=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F08%2Fpiparted-v0-02%2F&amp;language=en_GB&amp;category=text&amp;title=PiParted+v0.02&amp;description=After+some+tweaking%2C+I+have+improved+PiParted.+Please+note+this+is+a+very+early+testing+version%2C+so+some+things+may+break+or+not+work+properly.+Download+it+here+%21+New...&amp;tags=GParted%2CParted%2CPiParted%2CRaspberry+Pi%2CRpi%2Cblog%2C+MadMan" type="text/html" />
	<feedburner:origLink>http://sirlagz.net/2013/04/08/piparted-v0-02/</feedburner:origLink></item>
		<item>
		<title>PiParted</title>
		<link>http://feedproxy.google.com/~r/TheRantingsAndRavingsOfAMadman/~3/WU_QtOsPl-U/</link>
		<comments>http://sirlagz.net/2013/04/02/896/#comments</comments>
		<pubDate>Mon, 01 Apr 2013 18:39:38 +0000</pubDate>
		<dc:creator>SirLagz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[GParted]]></category>
		<category><![CDATA[Parted]]></category>
		<category><![CDATA[PiParted]]></category>
		<category><![CDATA[Rpi]]></category>

		<guid isPermaLink="false">http://sirlagz.net/?p=896</guid>
		<description><![CDATA[After going through the forums, I recently had an idea that hopefully will make installing distros onto an SD card much easier. A lot of issues come from people not knowing how to do it right, e.g. just dropping the img file onto an SD card. So I&#8217;ve customised a GParted LiveCD ISO and written <a href='http://sirlagz.net/2013/04/02/896/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>After going through the forums, I recently had an idea that hopefully will make installing distros onto an SD card much easier.</p>
<p>A lot of issues come from people not knowing how to do it right, e.g. just dropping the img file onto an SD card.<br />
So I&#8217;ve customised a GParted LiveCD ISO and written up a custom script to *hopefully* install a distro straight onto an SD card.<br />
This is a very early iteration of this idea, but hopefully will develop into something useful.</p>
<p>At the moment, essentially what it will do is</p>
<p>1. Grab the list of Distros from the RPI Download page<br />
2. Let the user select which distro he wants to install<br />
3. Select the Disk device that he wants to install it onto<br />
4. dd the image onto the disk device.</p>
<p>Later on, I&#8217;m hoping to add more functionality including -<br />
resizing image files<br />
resizing sd card partitions<br />
wiping SD cards back to a normal usable (by windows) state<br />
Installing distributions from other sites<br />
auto-resizing of the root partition after installing a distribution</p>
<p>Grab the iso from <a href="http://sirlagz.net/wp-content/plugins/download-monitor/download.php?id=17">here</a></p>
<p>Feedback can be left here or on the <a href="http://www.raspberrypi.org/phpBB3/viewtopic.php?f=63&#038;t=39160">forum topic</a></p>
<p><a class="a2a_button_facebook_like addtoany_special_service" data-href="http://sirlagz.net/2013/04/02/896/"></a><a class="a2a_button_twitter_tweet addtoany_special_service" data-count="none" data-url="http://sirlagz.net/2013/04/02/896/" data-text="PiParted"></a><a class="a2a_button_google_plus_share addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/04/02/896/"></a><a class="a2a_button_google_plusone addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/04/02/896/"></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F02%2F896%2F&amp;linkname=PiParted" title="Twitter" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F02%2F896%2F&amp;linkname=PiParted" title="Facebook" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_plus" href="http://www.addtoany.com/add_to/google_plus?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F02%2F896%2F&amp;linkname=PiParted" title="Google+" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/google_plus.png" width="16" height="16" alt="Google+"/></a><a class="a2a_button_linkedin" href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F02%2F896%2F&amp;linkname=PiParted" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a><a class="a2a_button_reddit" href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F02%2F896%2F&amp;linkname=PiParted" title="Reddit" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F02%2F896%2F&amp;linkname=PiParted" title="Delicious" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F02%2F896%2F&amp;linkname=PiParted" title="Digg" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F02%2F896%2F&amp;title=PiParted" id="wpa2a_22"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p> <p><a href="http://sirlagz.net/?flattrss_redirect&amp;id=896&amp;md5=863eff8f7a2a6cc86e339d4b23c47014" title="Flattr" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><img src="http://feeds.feedburner.com/~r/TheRantingsAndRavingsOfAMadman/~4/WU_QtOsPl-U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sirlagz.net/2013/04/02/896/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=SirLagz&amp;popout=1&amp;url=http%3A%2F%2Fsirlagz.net%2F2013%2F04%2F02%2F896%2F&amp;language=en_GB&amp;category=text&amp;title=PiParted&amp;description=After+going+through+the+forums%2C+I+recently+had+an+idea+that+hopefully+will+make+installing+distros+onto+an+SD+card+much+easier.+A+lot+of+issues+come+from+people+not...&amp;tags=GParted%2CParted%2CPiParted%2CRaspberry+Pi%2CRpi%2Cblog%2C+MadMan" type="text/html" />
	<feedburner:origLink>http://sirlagz.net/2013/04/02/896/</feedburner:origLink></item>
		<item>
		<title>Running Out Of Bandwidth !</title>
		<link>http://feedproxy.google.com/~r/TheRantingsAndRavingsOfAMadman/~3/aHx4LdKi8uQ/</link>
		<comments>http://sirlagz.net/2013/03/22/running-out-of-bandwidth-2/#comments</comments>
		<pubDate>Fri, 22 Mar 2013 02:00:20 +0000</pubDate>
		<dc:creator>SirLagz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://sirlagz.net/?p=887</guid>
		<description><![CDATA[Hi everyone, sorry for the lack of updates ! Been a bit busy at home but I&#8217;ll try and post up a few of my ideas in the coming weeks. I am also running low on bandwidth Hopefully my blog will last until the end of the month ! At the moment I have the <a href='http://sirlagz.net/2013/03/22/running-out-of-bandwidth-2/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>Hi everyone, sorry for the lack of updates !<br />
Been a bit busy at home but I&#8217;ll try and post up a few of my ideas in the coming weeks.<br />
I am also running low on bandwidth <img src='http://sirlagz.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Hopefully my blog will last until the end of the month !</p>
<p>At the moment I have the below ideas on my to-do list of blog posts, if anyone wants anything similar to these, please don&#8217;t hesitate to drop me a request in the comments <img src='http://sirlagz.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Video ideas -<br />
Mounting a USB stick as the root partition</p>
<p>Post ideas -<br />
Mounting a USB stick as the root partition<br />
Pi as a ADSL router<br />
Pi as a wifi client bridge<br />
Pi as a standalone wifi point with a welcome page<br />
Readonly Pi</p>
<p>I&#8217;ll keep this list updated as I think of more ideas, at least in the meantime <img src='http://sirlagz.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><a class="a2a_button_facebook_like addtoany_special_service" data-href="http://sirlagz.net/2013/03/22/running-out-of-bandwidth-2/"></a><a class="a2a_button_twitter_tweet addtoany_special_service" data-count="none" data-url="http://sirlagz.net/2013/03/22/running-out-of-bandwidth-2/" data-text="Running Out Of Bandwidth !"></a><a class="a2a_button_google_plus_share addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/03/22/running-out-of-bandwidth-2/"></a><a class="a2a_button_google_plusone addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/03/22/running-out-of-bandwidth-2/"></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F22%2Frunning-out-of-bandwidth-2%2F&amp;linkname=Running%20Out%20Of%20Bandwidth%20%21" title="Twitter" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F22%2Frunning-out-of-bandwidth-2%2F&amp;linkname=Running%20Out%20Of%20Bandwidth%20%21" title="Facebook" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_plus" href="http://www.addtoany.com/add_to/google_plus?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F22%2Frunning-out-of-bandwidth-2%2F&amp;linkname=Running%20Out%20Of%20Bandwidth%20%21" title="Google+" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/google_plus.png" width="16" height="16" alt="Google+"/></a><a class="a2a_button_linkedin" href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F22%2Frunning-out-of-bandwidth-2%2F&amp;linkname=Running%20Out%20Of%20Bandwidth%20%21" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a><a class="a2a_button_reddit" href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F22%2Frunning-out-of-bandwidth-2%2F&amp;linkname=Running%20Out%20Of%20Bandwidth%20%21" title="Reddit" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F22%2Frunning-out-of-bandwidth-2%2F&amp;linkname=Running%20Out%20Of%20Bandwidth%20%21" title="Delicious" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F22%2Frunning-out-of-bandwidth-2%2F&amp;linkname=Running%20Out%20Of%20Bandwidth%20%21" title="Digg" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F22%2Frunning-out-of-bandwidth-2%2F&amp;title=Running%20Out%20Of%20Bandwidth%20%21" id="wpa2a_26"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p> <p><a href="http://sirlagz.net/?flattrss_redirect&amp;id=887&amp;md5=ea9692fb921644379bc937cbd1ce856c" title="Flattr" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><img src="http://feeds.feedburner.com/~r/TheRantingsAndRavingsOfAMadman/~4/aHx4LdKi8uQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sirlagz.net/2013/03/22/running-out-of-bandwidth-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=SirLagz&amp;popout=1&amp;url=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F22%2Frunning-out-of-bandwidth-2%2F&amp;language=en_GB&amp;category=text&amp;title=Running+Out+Of+Bandwidth+%21&amp;description=Hi+everyone%2C+sorry+for+the+lack+of+updates+%21+Been+a+bit+busy+at+home+but+I%26%238217%3Bll+try+and+post+up+a+few+of+my+ideas+in+the+coming+weeks....&amp;tags=blog%2C+MadMan" type="text/html" />
	<feedburner:origLink>http://sirlagz.net/2013/03/22/running-out-of-bandwidth-2/</feedburner:origLink></item>
		<item>
		<title>Quickie : Streaming Audio And Video From A Webcam On The Raspberry Pi</title>
		<link>http://feedproxy.google.com/~r/TheRantingsAndRavingsOfAMadman/~3/NNS6WEoVDjQ/</link>
		<comments>http://sirlagz.net/2013/03/10/quickie-streaming-audio-and-video-from-a-webcam-on-the-raspberry-pi/#comments</comments>
		<pubDate>Sun, 10 Mar 2013 15:26:30 +0000</pubDate>
		<dc:creator>SirLagz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<category><![CDATA[Rpi]]></category>
		<category><![CDATA[Webcam]]></category>

		<guid isPermaLink="false">http://sirlagz.net/?p=882</guid>
		<description><![CDATA[I&#8217;ve had a few queries regarding streaming audio as well as video on the Raspberry Pi, so tonight I set up my little Raspberry Pi with a Logitech C110. This webcam also has a microphone integrated which the Pi can use to record audio. Everything has been setup as per part 3 of my ffmpeg <a href='http://sirlagz.net/2013/03/10/quickie-streaming-audio-and-video-from-a-webcam-on-the-raspberry-pi/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve had a few queries regarding streaming audio as well as video on the Raspberry Pi, so tonight I set up my little Raspberry Pi with a Logitech C110. This webcam also has a microphone integrated which the Pi can use to record audio.<br />
Everything has been setup as per <a href="http://sirlagz.net/2013/01/07/how-to-stream-a-webcam-from-the-raspberry-pi-part-3/">part 3</a> of my ffmpeg streaming guide.</p>
<p>A little investigation reveals which hardware device the microphone is recognised as.<br />
<code><br />
# arecord -l<br />
**** List of CAPTURE Hardware Devices ****<br />
card 1: C110 [Webcam C110], device 0: USB Audio [USB Audio]<br />
Subdevices: 1/1<br />
Subdevice #0: subdevice #0<br />
</code><br />
So the device is recognised as card 1. This comes in later when we are setting up the audio part of the streaming.</p>
<p>I&#8217;ve updated the webcam.sh script to reflect the fact that we are now recording sound -<br />
<code><br />
ffserver -f /root/ff.conf &amp; ffmpeg -vcodec mjpeg -v verbose -r 15 -s 176x128 -f video4linux2 -i /dev/video0 -f alsa -ac 1 -i hw:1 http://localhost:81/webcam.ffm<br />
</code></p>
<p>And I also need to update ff.conf with the new streaming settings<br />
The Stream webcam section has now turned into this -<br />
<code>&lt;Stream webcam.avi&gt;<br />
Feed webcam.ffm<br />
Format avi<br />
VideoSize 176x128<br />
VideoFrameRate 15<br />
VideoBufferSize 40<br />
VideoBitRate 64<br />
AudioBitRate 32<br />
AudioChannels 1<br />
AudioSampleRate 11025<br />
VideoQMin 1<br />
VideoQMax 20<br />
</code></p>
<p>With this configuration, I could start ffmpeg with audio and video streaming. However I could not get my laptop with vlc to connect to it for now, so I&#8217;ll have to keep investigating that.<br />
Hopefully this helps though.</p>
<hr />
Please support the continued development of any useful scripts and tutorials that you have found useful !</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="cmd" value="_s-xclick" /><br />
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7----- " /><br />
<input type="image" name="submit" src="https://www.paypalobjects.com/en_AU/i/btn/btn_donateCC_LG.gif" alt="PayPal — The safer, easier way to pay online." /><br />
<img src="https://www.paypalobjects.com/en_AU/i/scr/pixel.gif" alt="" width="1" height="1" border="0" /></form>
<p><a class="a2a_button_facebook_like addtoany_special_service" data-href="http://sirlagz.net/2013/03/10/quickie-streaming-audio-and-video-from-a-webcam-on-the-raspberry-pi/"></a><a class="a2a_button_twitter_tweet addtoany_special_service" data-count="none" data-url="http://sirlagz.net/2013/03/10/quickie-streaming-audio-and-video-from-a-webcam-on-the-raspberry-pi/" data-text="Quickie : Streaming Audio And Video From A Webcam On The Raspberry Pi"></a><a class="a2a_button_google_plus_share addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/03/10/quickie-streaming-audio-and-video-from-a-webcam-on-the-raspberry-pi/"></a><a class="a2a_button_google_plusone addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/03/10/quickie-streaming-audio-and-video-from-a-webcam-on-the-raspberry-pi/"></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F10%2Fquickie-streaming-audio-and-video-from-a-webcam-on-the-raspberry-pi%2F&amp;linkname=Quickie%20%3A%20Streaming%20Audio%20And%20Video%20From%20A%20Webcam%20On%20The%20Raspberry%20Pi" title="Twitter" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F10%2Fquickie-streaming-audio-and-video-from-a-webcam-on-the-raspberry-pi%2F&amp;linkname=Quickie%20%3A%20Streaming%20Audio%20And%20Video%20From%20A%20Webcam%20On%20The%20Raspberry%20Pi" title="Facebook" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_plus" href="http://www.addtoany.com/add_to/google_plus?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F10%2Fquickie-streaming-audio-and-video-from-a-webcam-on-the-raspberry-pi%2F&amp;linkname=Quickie%20%3A%20Streaming%20Audio%20And%20Video%20From%20A%20Webcam%20On%20The%20Raspberry%20Pi" title="Google+" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/google_plus.png" width="16" height="16" alt="Google+"/></a><a class="a2a_button_linkedin" href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F10%2Fquickie-streaming-audio-and-video-from-a-webcam-on-the-raspberry-pi%2F&amp;linkname=Quickie%20%3A%20Streaming%20Audio%20And%20Video%20From%20A%20Webcam%20On%20The%20Raspberry%20Pi" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a><a class="a2a_button_reddit" href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F10%2Fquickie-streaming-audio-and-video-from-a-webcam-on-the-raspberry-pi%2F&amp;linkname=Quickie%20%3A%20Streaming%20Audio%20And%20Video%20From%20A%20Webcam%20On%20The%20Raspberry%20Pi" title="Reddit" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F10%2Fquickie-streaming-audio-and-video-from-a-webcam-on-the-raspberry-pi%2F&amp;linkname=Quickie%20%3A%20Streaming%20Audio%20And%20Video%20From%20A%20Webcam%20On%20The%20Raspberry%20Pi" title="Delicious" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F10%2Fquickie-streaming-audio-and-video-from-a-webcam-on-the-raspberry-pi%2F&amp;linkname=Quickie%20%3A%20Streaming%20Audio%20And%20Video%20From%20A%20Webcam%20On%20The%20Raspberry%20Pi" title="Digg" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F10%2Fquickie-streaming-audio-and-video-from-a-webcam-on-the-raspberry-pi%2F&amp;title=Quickie%20%3A%20Streaming%20Audio%20And%20Video%20From%20A%20Webcam%20On%20The%20Raspberry%20Pi" id="wpa2a_30"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p> <p><a href="http://sirlagz.net/?flattrss_redirect&amp;id=882&amp;md5=c167823afc28385e1c20e2318611fbc0" title="Flattr" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><img src="http://feeds.feedburner.com/~r/TheRantingsAndRavingsOfAMadman/~4/NNS6WEoVDjQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sirlagz.net/2013/03/10/quickie-streaming-audio-and-video-from-a-webcam-on-the-raspberry-pi/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=SirLagz&amp;popout=1&amp;url=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F10%2Fquickie-streaming-audio-and-video-from-a-webcam-on-the-raspberry-pi%2F&amp;language=en_GB&amp;category=text&amp;title=Quickie+%3A+Streaming+Audio+And+Video+From+A+Webcam+On+The+Raspberry+Pi&amp;description=I%26%238217%3Bve+had+a+few+queries+regarding+streaming+audio+as+well+as+video+on+the+Raspberry+Pi%2C+so+tonight+I+set+up+my+little+Raspberry+Pi+with+a+Logitech+C110.+This...&amp;tags=ffmpeg%2CRaspberry+Pi%2CRpi%2CWebcam%2Cblog%2C+MadMan" type="text/html" />
	<feedburner:origLink>http://sirlagz.net/2013/03/10/quickie-streaming-audio-and-video-from-a-webcam-on-the-raspberry-pi/</feedburner:origLink></item>
		<item>
		<title>Script : Automatic RPi Image Downsizer</title>
		<link>http://feedproxy.google.com/~r/TheRantingsAndRavingsOfAMadman/~3/wpT4I24vJxY/</link>
		<comments>http://sirlagz.net/2013/03/10/script-automatic-rpi-image-downsizer/#comments</comments>
		<pubDate>Sat, 09 Mar 2013 18:43:29 +0000</pubDate>
		<dc:creator>SirLagz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[Bash Script]]></category>
		<category><![CDATA[dd]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Image File]]></category>
		<category><![CDATA[partition resize]]></category>
		<category><![CDATA[Rpi]]></category>

		<guid isPermaLink="false">http://sirlagz.net/?p=879</guid>
		<description><![CDATA[There&#8217;s been a few threads recently on the Raspberry Pi forums regarding SD Card images too big to fit on other SD cards. So I&#8217;ve come up with a script to automatically resize SD Cards to the smallest size possible. At the moment it is Linux only unfortunately, but I may release a windows version <a href='http://sirlagz.net/2013/03/10/script-automatic-rpi-image-downsizer/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>There&#8217;s been a few threads recently on the Raspberry Pi forums regarding  SD Card images too big to fit on other SD cards.<br />
So I&#8217;ve come up with a script to automatically resize SD Cards to the smallest size possible. At the moment it is Linux only unfortunately, but I may release a windows version if there&#8217;s demand.</p>
<p>The script can be downloaded from <a href="http://sirlagz.net/wp-content/plugins/download-monitor/download.php?id=16">here</a></p>
<p>or copied and pasted from here<br />
<code><br />
#!/bin/bash<br />
# Automatic Image file resizer<br />
# Written by SirLagz<br />
strImgFile=$1</code></p>
<p><code><br />
if [[ ! $(whoami) =~ "root" ]]; then<br />
echo ""<br />
echo "**********************************"<br />
echo "*** This should be run as root ***"<br />
echo "**********************************"<br />
echo ""<br />
exit<br />
fi</code></p>
<p><code>if [[ -z $1 ]]; then<br />
echo "Usage: ./autosizer.sh <Image File>"<br />
exit<br />
fi</code></p>
<p><code>if [[ ! -e $1 || ! $(file $1) =~ "x86" ]]; then<br />
echo "Error : Not an image file, or file doesn't exist"<br />
exit<br />
fi</code></p>
<p><code>partinfo=`parted -m $1 unit B print`<br />
partnumber=`echo "$partinfo" | grep ext4 | awk -F: ' { print $1 } '`<br />
partstart=`echo "$partinfo" | grep ext4 | awk -F: ' { print substr($2,0,length($2)-1) } '`<br />
loopback=`losetup -f --show -o $partstart $1`<br />
e2fsck -f $loopback<br />
minsize=`resize2fs -P $loopback | awk -F': ' ' { print $2 } '`<br />
minsize=`echo $minsize+1000 | bc`<br />
resize2fs -p $loopback $minsize<br />
sleep 1<br />
losetup -d $loopback<br />
partnewsize=`echo "$minsize * 4096" | bc`<br />
newpartend=`echo "$partstart + $partnewsize" | bc`<br />
part1=`parted $1 rm 2`<br />
part2=`parted $1 unit B mkpart primary $partstart $newpartend`<br />
endresult=`parted -m $1 unit B print free | tail -1 | awk -F: ' { print substr($2,0,length($2)-1) } '`<br />
truncate -s $endresult $1<br />
</code></p>
<hr />
Please support the continued development of any useful scripts and tutorials that you have found useful !</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="cmd" value="_s-xclick" /><br />
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7----- " /><br />
<input type="image" name="submit" src="https://www.paypalobjects.com/en_AU/i/btn/btn_donateCC_LG.gif" alt="PayPal — The safer, easier way to pay online." /><br />
<img src="https://www.paypalobjects.com/en_AU/i/scr/pixel.gif" alt="" width="1" height="1" border="0" /></form>
<p><a class="a2a_button_facebook_like addtoany_special_service" data-href="http://sirlagz.net/2013/03/10/script-automatic-rpi-image-downsizer/"></a><a class="a2a_button_twitter_tweet addtoany_special_service" data-count="none" data-url="http://sirlagz.net/2013/03/10/script-automatic-rpi-image-downsizer/" data-text="Script : Automatic RPi Image Downsizer"></a><a class="a2a_button_google_plus_share addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/03/10/script-automatic-rpi-image-downsizer/"></a><a class="a2a_button_google_plusone addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/03/10/script-automatic-rpi-image-downsizer/"></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F10%2Fscript-automatic-rpi-image-downsizer%2F&amp;linkname=Script%20%3A%20Automatic%20RPi%20Image%20Downsizer" title="Twitter" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F10%2Fscript-automatic-rpi-image-downsizer%2F&amp;linkname=Script%20%3A%20Automatic%20RPi%20Image%20Downsizer" title="Facebook" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_plus" href="http://www.addtoany.com/add_to/google_plus?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F10%2Fscript-automatic-rpi-image-downsizer%2F&amp;linkname=Script%20%3A%20Automatic%20RPi%20Image%20Downsizer" title="Google+" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/google_plus.png" width="16" height="16" alt="Google+"/></a><a class="a2a_button_linkedin" href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F10%2Fscript-automatic-rpi-image-downsizer%2F&amp;linkname=Script%20%3A%20Automatic%20RPi%20Image%20Downsizer" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a><a class="a2a_button_reddit" href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F10%2Fscript-automatic-rpi-image-downsizer%2F&amp;linkname=Script%20%3A%20Automatic%20RPi%20Image%20Downsizer" title="Reddit" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F10%2Fscript-automatic-rpi-image-downsizer%2F&amp;linkname=Script%20%3A%20Automatic%20RPi%20Image%20Downsizer" title="Delicious" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F10%2Fscript-automatic-rpi-image-downsizer%2F&amp;linkname=Script%20%3A%20Automatic%20RPi%20Image%20Downsizer" title="Digg" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F10%2Fscript-automatic-rpi-image-downsizer%2F&amp;title=Script%20%3A%20Automatic%20RPi%20Image%20Downsizer" id="wpa2a_34"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p> <p><a href="http://sirlagz.net/?flattrss_redirect&amp;id=879&amp;md5=ae95d9c27932e93119c03f1854ed6d4b" title="Flattr" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><img src="http://feeds.feedburner.com/~r/TheRantingsAndRavingsOfAMadman/~4/wpT4I24vJxY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sirlagz.net/2013/03/10/script-automatic-rpi-image-downsizer/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=SirLagz&amp;popout=1&amp;url=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F10%2Fscript-automatic-rpi-image-downsizer%2F&amp;language=en_GB&amp;category=text&amp;title=Script+%3A+Automatic+RPi+Image+Downsizer&amp;description=There%26%238217%3Bs+been+a+few+threads+recently+on+the+Raspberry+Pi+forums+regarding+SD+Card+images+too+big+to+fit+on+other+SD+cards.+So+I%26%238217%3Bve+come+up+with+a+script...&amp;tags=Bash+Script%2Cdd%2CImage%2CImage+File%2Cpartition+resize%2CRaspberry+Pi%2CRpi%2Cblog%2C+MadMan" type="text/html" />
	<feedburner:origLink>http://sirlagz.net/2013/03/10/script-automatic-rpi-image-downsizer/</feedburner:origLink></item>
		<item>
		<title>Raspbian Server Edition Version 2.3 1GB Image</title>
		<link>http://feedproxy.google.com/~r/TheRantingsAndRavingsOfAMadman/~3/zIGkcRC7Nvc/</link>
		<comments>http://sirlagz.net/2013/03/04/raspbian-server-edition-version-2-3-1gb-image/#comments</comments>
		<pubDate>Mon, 04 Mar 2013 15:30:29 +0000</pubDate>
		<dc:creator>SirLagz</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[Raspbian]]></category>
		<category><![CDATA[Raspbian Server Edition]]></category>
		<category><![CDATA[RSE]]></category>

		<guid isPermaLink="false">http://sirlagz.net/?p=867</guid>
		<description><![CDATA[A few people wanted a 1 GB image for Raspbian Server Edition, and I finally got around to putting it together ! It&#8217;s the same 2GB image that has been repackaged into a 1GB image. It has been resized so it should fit any 1GB SD card in existence. You can Download it here ! <a href='http://sirlagz.net/2013/03/04/raspbian-server-edition-version-2-3-1gb-image/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>A few people wanted a 1 GB image for Raspbian Server Edition, and I finally got around to putting it together !</p>
<p>It&#8217;s the same 2GB image that has been repackaged into a 1GB image.<br />
It has been resized so it should fit any 1GB SD card in existence.</p>
<p>You can <a href="http://sirlagz.net/wp-content/plugins/download-monitor/download.php?id=15">Download it here !</a></p>
<p>SHA1 hash -<br />
74abe17fdea4dc862e0aa6d68a33daa434934cc5  1gbRSEv2.3.img.gz</p>
<hr />
Please support the continued development of Raspbian Server Edition by donating !</p>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"><input type="hidden" name="cmd" value="_s-xclick" /><br />
<input type="hidden" name="encrypted" value="-----BEGIN PKCS7-----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-----END PKCS7----- " /><br />
<input type="image" name="submit" src="https://www.paypalobjects.com/en_AU/i/btn/btn_donateCC_LG.gif" alt="PayPal — The safer, easier way to pay online." /><br />
<img src="https://www.paypalobjects.com/en_AU/i/scr/pixel.gif" alt="" width="1" height="1" border="0" /></form>
<p><a class="a2a_button_facebook_like addtoany_special_service" data-href="http://sirlagz.net/2013/03/04/raspbian-server-edition-version-2-3-1gb-image/"></a><a class="a2a_button_twitter_tweet addtoany_special_service" data-count="none" data-url="http://sirlagz.net/2013/03/04/raspbian-server-edition-version-2-3-1gb-image/" data-text="Raspbian Server Edition Version 2.3 1GB Image"></a><a class="a2a_button_google_plus_share addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/03/04/raspbian-server-edition-version-2-3-1gb-image/"></a><a class="a2a_button_google_plusone addtoany_special_service" data-annotation="none" data-href="http://sirlagz.net/2013/03/04/raspbian-server-edition-version-2-3-1gb-image/"></a><a class="a2a_button_twitter" href="http://www.addtoany.com/add_to/twitter?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F04%2Fraspbian-server-edition-version-2-3-1gb-image%2F&amp;linkname=Raspbian%20Server%20Edition%20Version%202.3%201GB%20Image" title="Twitter" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/twitter.png" width="16" height="16" alt="Twitter"/></a><a class="a2a_button_facebook" href="http://www.addtoany.com/add_to/facebook?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F04%2Fraspbian-server-edition-version-2-3-1gb-image%2F&amp;linkname=Raspbian%20Server%20Edition%20Version%202.3%201GB%20Image" title="Facebook" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/facebook.png" width="16" height="16" alt="Facebook"/></a><a class="a2a_button_google_plus" href="http://www.addtoany.com/add_to/google_plus?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F04%2Fraspbian-server-edition-version-2-3-1gb-image%2F&amp;linkname=Raspbian%20Server%20Edition%20Version%202.3%201GB%20Image" title="Google+" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/google_plus.png" width="16" height="16" alt="Google+"/></a><a class="a2a_button_linkedin" href="http://www.addtoany.com/add_to/linkedin?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F04%2Fraspbian-server-edition-version-2-3-1gb-image%2F&amp;linkname=Raspbian%20Server%20Edition%20Version%202.3%201GB%20Image" title="LinkedIn" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/linkedin.png" width="16" height="16" alt="LinkedIn"/></a><a class="a2a_button_reddit" href="http://www.addtoany.com/add_to/reddit?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F04%2Fraspbian-server-edition-version-2-3-1gb-image%2F&amp;linkname=Raspbian%20Server%20Edition%20Version%202.3%201GB%20Image" title="Reddit" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/reddit.png" width="16" height="16" alt="Reddit"/></a><a class="a2a_button_delicious" href="http://www.addtoany.com/add_to/delicious?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F04%2Fraspbian-server-edition-version-2-3-1gb-image%2F&amp;linkname=Raspbian%20Server%20Edition%20Version%202.3%201GB%20Image" title="Delicious" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/delicious.png" width="16" height="16" alt="Delicious"/></a><a class="a2a_button_digg" href="http://www.addtoany.com/add_to/digg?linkurl=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F04%2Fraspbian-server-edition-version-2-3-1gb-image%2F&amp;linkname=Raspbian%20Server%20Edition%20Version%202.3%201GB%20Image" title="Digg" rel="nofollow" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/icons/digg.png" width="16" height="16" alt="Digg"/></a><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F04%2Fraspbian-server-edition-version-2-3-1gb-image%2F&amp;title=Raspbian%20Server%20Edition%20Version%202.3%201GB%20Image" id="wpa2a_38"><img src="http://sirlagz.net/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p> <p><a href="http://sirlagz.net/?flattrss_redirect&amp;id=867&amp;md5=f4e994189df52c86bf40c3ec4883d002" title="Flattr" target="_blank"><img src="http://sirlagz.net/wp-content/plugins/flattr/img/flattr-badge-large.png" alt="flattr this!"/></a></p><img src="http://feeds.feedburner.com/~r/TheRantingsAndRavingsOfAMadman/~4/zIGkcRC7Nvc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://sirlagz.net/2013/03/04/raspbian-server-edition-version-2-3-1gb-image/feed/</wfw:commentRss>
		<slash:comments>32</slash:comments>
		<atom:link rel="payment" title="Flattr this!" href="https://flattr.com/submit/auto?user_id=SirLagz&amp;popout=1&amp;url=http%3A%2F%2Fsirlagz.net%2F2013%2F03%2F04%2Fraspbian-server-edition-version-2-3-1gb-image%2F&amp;language=en_GB&amp;category=text&amp;title=Raspbian+Server+Edition+Version+2.3+1GB+Image&amp;description=A+few+people+wanted+a+1+GB+image+for+Raspbian+Server+Edition%2C+and+I+finally+got+around+to+putting+it+together+%21+It%26%238217%3Bs+the+same+2GB+image+that+has+been...&amp;tags=Raspbian%2CRaspbian+Server+Edition%2CRSE%2Cblog%2C+MadMan" type="text/html" />
	<feedburner:origLink>http://sirlagz.net/2013/03/04/raspbian-server-edition-version-2-3-1gb-image/</feedburner:origLink></item>
	</channel>
</rss>
