<?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>VéloFille &#187; Linux</title>
	<atom:link href="http://velofille.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://velofille.com</link>
	<description>Blog of Liz Awesome Quilty</description>
	<lastBuildDate>Fri, 16 Dec 2011 01:31:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Finding a Flash video in chrome &#8211; Saving files open but deleted</title>
		<link>http://velofille.com/2011/05/19/finding-a-flash-video-in-chrome-saving-files-open-but-deleted/</link>
		<comments>http://velofille.com/2011/05/19/finding-a-flash-video-in-chrome-saving-files-open-but-deleted/#comments</comments>
		<pubDate>Thu, 19 May 2011 01:20:07 +0000</pubDate>
		<dc:creator>Liz Quilty</dc:creator>
				<category><![CDATA[Informative]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[file descriptor]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://velofille.com/?p=1261</guid>
		<description><![CDATA[Flash movies are online, but sometimes i want to save some for offline usage so i can watch them later or offline (laptops) etc. Often there is no way to save/download these files, but they are not held in the tmp dir or cache as they used to be due to changes in flash. In [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fvelofille.com%2F2011%2F05%2F19%2Ffinding-a-flash-video-in-chrome-saving-files-open-but-deleted%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fvelofille.com%2F2011%2F05%2F19%2Ffinding-a-flash-video-in-chrome-saving-files-open-but-deleted%2F&amp;source=velofille&amp;style=normal&amp;service=ow.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Flash movies are online, but sometimes i want to save some for offline usage so i can watch them later or offline (laptops) etc.<br />
Often there is no way to save/download these files, but they are not held in the tmp dir or cache as they used to be due to changes in flash. In Linux this is easy to overcome using the following methods. This also works for any file that&#8217;s been deleted but is still running in memory.</p>
<p>First, you need to find what or where the file is. For flash try</p>
<pre>
velofille@apple:~$ sudo lsof |grep Flash
npviewer.  8774  velofille   16u      REG                9,1 253092771     396153 /tmp/FlashXXDfgiS7 (deleted)
velofille@apple:~$
</pre>
<p>Bingo, i found my file! Of course the file /tmp/FlashXXDfgiS7 is deleted, so i cant just copy it like the good old days. Now i can copy that file from the proc filesystem using the following</p>
<pre>
cat /proc/8774/fd/16 > movie.flv
</pre>
<p>Now to breakdown where i got those parms from. The 8774 is the pid and 2nd number on the line, the 16 was from the &#8217;16u&#8217; which is the file descriptor . So when you do your lsof you can change those according to what you have open.<br />
To find files open from a particular app, use ps to find the pid, then use</p>
<pre>
lsof -p 8774
</pre>
<p>Output is something like this</p>
<pre>
chrome  26572 velofille  mem    REG                9,1  1285536   1836431 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
chrome  26572 velofille  mem    REG                9,1   141088   3146088 /lib/x86_64-linux-gnu/ld-2.13.so
chrome  26572 velofille  DEL    REG               0,16           34257353 /dev/shm/.com.google.chrome.i96CPN
chrome  26572 velofille  DEL    REG               0,16           34257687 /dev/shm/.com.google.chrome.W9M2O5
chrome  26572 velofille  mem    REG                9,1   377352   4587538 /opt/google/chrome/libppGoogleNaClPluginChrome.so
chrome  26572 velofille    0r   CHR                1,3      0t0      5778 /dev/null
chrome  26572 velofille    1u   REG               0,20   953173   5767170 /home/velofille/.xsession-errors
chrome  26572 velofille    2u   REG               0,20   953173   5767170 /home/velofille/.xsession-errors
chrome  26572 velofille    3u   REG               0,20   953173   5767170 /home/velofille/.xsession-errors
chrome  26572 velofille    4r  FIFO                0,8      0t0  34257284 pipe
chrome  26572 velofille    5u  unix 0xffff88002c61f740      0t0  34257940 socket
chrome  26572 velofille    6u  sock                0,7      0t0  34257281 can't identify protocol
chrome  26572 velofille    7u   CHR                1,9      0t0      5783 /dev/urandom
</pre>
<p>The only ones you can take like this are the ones with a file descriptor to play with.</p>
<p>Good luck, an have fun!</p>
<div class="plus-one-wrap"><g:plusone href="http://velofille.com/2011/05/19/finding-a-flash-video-in-chrome-saving-files-open-but-deleted/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://velofille.com/2011/05/19/finding-a-flash-video-in-chrome-saving-files-open-but-deleted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting the RT3070 USB wifi adapter working in linux</title>
		<link>http://velofille.com/2010/06/08/getting-the-rt3070-usb-wifi-adapter-working-in-linux/</link>
		<comments>http://velofille.com/2010/06/08/getting-the-rt3070-usb-wifi-adapter-working-in-linux/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 06:50:40 +0000</pubDate>
		<dc:creator>Liz Quilty</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[adapter]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ralink]]></category>
		<category><![CDATA[rt2870]]></category>
		<category><![CDATA[rt3070]]></category>
		<category><![CDATA[Support]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://velofille.com/?p=901</guid>
		<description><![CDATA[Ralink must be one of the shittiest Linux supported network cards ever. I have a friend who&#8217;s not so good on computers, to the point where after reinstalling every  week for 3 weeks i suggested linux. That sure saved me a lot of long drives to fix whatever went one, i could fix it with [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fvelofille.com%2F2010%2F06%2F08%2Fgetting-the-rt3070-usb-wifi-adapter-working-in-linux%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fvelofille.com%2F2010%2F06%2F08%2Fgetting-the-rt3070-usb-wifi-adapter-working-in-linux%2F&amp;source=velofille&amp;style=normal&amp;service=ow.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Ralink must be one of the shittiest Linux supported network cards ever. I have a friend who&#8217;s not so good on computers, to the point where after reinstalling every  week for 3 weeks i suggested linux.</p>
<p>That sure saved me a lot of long drives to fix whatever went one, i could fix it with SSH. This has worked out great for both of us, especially since i moved 200 km away. She began on linux and is used to how it works, she loved it when we moved to ubuntu and she could install and remove things herself, and run updates.</p>
<p>Anyway, i digress, shes moving house on the coming weekend, and has a few coins leftover, and she wants to move to a wireless network. I thought &#8220;great! Linux support for most usb wifi isn&#8217;t too shabby, ill get something that works &#8216;out of the box&#8217; if i can&#8221;. I went to ascent.co.nz and found this cheap card that said &#8216;Linux Compatible&#8221;. Well, I guess it was hoping for too much , but wasn&#8217;t expecting the problems i had.</p>
<p>The drivers on the cd wouldn&#8217;t compile because of the age/code/dependencies. I went to the ralink website and downloaded the latest drivers ( DPO_RT3070_LinuxSTA_V2.3.0.2_20100412 ). I ran into problems right away compiling for various reasons. Eventually i followed the following recipe to get this going.</p>
<p>unpackage it ;</p>
<pre>cd DPO_RT3070_LinuxSTA_V2.3.0.2_20100412/
vi os/linux/usb_main_dev.c</pre>
<p>Look for the following line<br />
<span style="color: #800000;"> MODULE_DESCRIPTION(&#8220;RT2870 Wireless Lan Linux Driver&#8221;);</span><br />
And add this one below it<br />
<span style="color: #ff0000;"> MODULE_LICENSE(&#8220;GPL&#8221;);</span></p>
<p>Exit the editor, then do the following</p>
<pre>sudo make
sudo cp RT2870STACard.dat RT3070STACard.dat
sudo cp RT2870STA.dat RT3070STA.dat
sudo make install
cd /etc/Wireless/
sudo ln -s RT3070STA RT2870STA
cd RT3070STA
sudo ln -s RT3070STA.dat RT2870STA.dat
sudo modprobe rt3070sta</pre>
<p>if that works, throw the module in /etc/modules  (just the name rt3070sta ) so it loads on boot.</p>
<p>Now the key to all this is that ralink are cheap. They give a chip a new name, even though its clearly the same as previous ones. They do a quick run over the code to change all instances of 2870 to 3070 and of course forget half them, this is why there are odd cp&#8217;s and having to link thinks to work.</p>
<p>It seems that debian based distros like/need the GNU in the file, which seems to have been moved into another file in these drivers and its not registering. By adding it in it will load and work.</p>
<p>Let me know if this has helped you <img src='http://velofille.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Refs : <a href="http://www.linuxforums.org/forum/wireless-internet/161550-rt3070sta-module-license-unspecified-taints-kernel-solved.html" target="_blank">http://www.linuxforums.org/forum/wireless-internet/161550-rt3070sta-module-license-unspecified-taints-kernel-solved.html</a></p>
<div class="plus-one-wrap"><g:plusone href="http://velofille.com/2010/06/08/getting-the-rt3070-usb-wifi-adapter-working-in-linux/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://velofille.com/2010/06/08/getting-the-rt3070-usb-wifi-adapter-working-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux/Tux Keyboard For Sale &#8211; Oxfam Fundraiser</title>
		<link>http://velofille.com/2010/02/05/linuxtux-keyboard-for-sale-oxfam-fundraiser/</link>
		<comments>http://velofille.com/2010/02/05/linuxtux-keyboard-for-sale-oxfam-fundraiser/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 04:00:16 +0000</pubDate>
		<dc:creator>Liz Quilty</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[bid]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[oftw]]></category>
		<category><![CDATA[oxfam]]></category>
		<category><![CDATA[sale]]></category>
		<category><![CDATA[trailwalker]]></category>
		<category><![CDATA[tux]]></category>
		<category><![CDATA[walk]]></category>

		<guid isPermaLink="false">http://velofille.com/?p=804</guid>
		<description><![CDATA[As most people may (or may not) know. I&#8217;m doing the Oxfam 100km walk. We need to raise $2,500 to donate to Oxfam to take part, plus our entry fees. Thanks to a lot of people we have $870 at this time, which is fantastic, but only 35% of the way there! Since I have [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fvelofille.com%2F2010%2F02%2F05%2Flinuxtux-keyboard-for-sale-oxfam-fundraiser%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fvelofille.com%2F2010%2F02%2F05%2Flinuxtux-keyboard-for-sale-oxfam-fundraiser%2F&amp;source=velofille&amp;style=normal&amp;service=ow.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>As most people may (or may not) know. I&#8217;m doing the <a href="http://www.oxfam.org.nz/events/teams.asp?a=show_team_pages&amp;eventid=24&amp;teamid=3865" target="_blank">Oxfam 100km walk.</a> We need to raise $2,500 to donate to Oxfam to take part, plus our entry fees.</p>
<p>Thanks to a lot of people <a href="http://www.oxfam.org.nz/events/teams.asp?a=show_team_pages&amp;eventid=24&amp;teamid=3865" target="_blank">we have $870</a> at this time, which is fantastic, but only 35% of the way there! Since I have a few cool toys I no longer need, I&#8217;ve decided to sell a few things here on my blog. I&#8217;m using my blog because other sites like trademe will a) take a cut of the proceeds and b) you can deposit the money <a href="http://www.oxfam.org.nz/events/teams.asp?a=show_team_pages&amp;eventid=24&amp;teamid=3865" target="_blank">right onto our Oxfam account</a> and i post it to you, and I have a fairly high technical/Linux following who will be more inclined to want it.</p>
<p>So to start it off, Im selling this AS NEW Linux Keyboard. Its a standard decent keyboard with low profile keys. The standard Windows key is non-existant and has been replaced with a Tux Key. Other than that its fairly average.</p>
<p style="text-align: center;"><a href="http://velofille.com/wp-content/uploads/2010/02/tux_keyboard_800.jpg"><img class="aligncenter size-full wp-image-805" title="tux_keyboard_800" src="http://velofille.com/wp-content/uploads/2010/02/tux_keyboard_800.jpg" alt="" width="560" height="190" /></a></p>
<p>I was given this by a visiting person from <a href="http://www.zareason.com/shop/product.php?productid=16206&amp;cat=251&amp;page=1" target="_blank">Zareason</a> who make and sell these along with other Linux specific hardware. I opened it, tried it, then never actually used it. If i can find the mouse I will throw that in as well (though its just a normal mouse). You can view the keyboard specs and more pics here <a href="http://www.zareason.com/shop/product.php?productid=16206&amp;cat=251&amp;page=1" target="_blank">http://www.zareason.com/shop/product.php?productid=16206&amp;cat=251&amp;page=1</a></p>
<p><a href="http://velofille.com/wp-content/uploads/2010/02/tux_keyboard_closeup_800.jpg"><img class="alignnone size-medium wp-image-806" title="tux_keyboard_closeup_800" src="http://velofille.com/wp-content/uploads/2010/02/tux_keyboard_closeup_800-300x300.jpg" alt="" width="300" height="300" /></a> <a href="http://velofille.com/wp-content/uploads/2010/02/tuxkeyboardhighres.jpg"><img class="alignnone size-medium wp-image-807" title="tuxkeyboardhighres" src="http://velofille.com/wp-content/uploads/2010/02/tuxkeyboardhighres-300x300.jpg" alt="" width="300" height="300" /></a></p>
<p>So please place your best bid in the comments. You can make as many as you want and fight it out. Bidding stops when the  nobody has bid for more than 2 days or when the trailwalker starts early April (in which case i hope like heck you pay!).</p>
<div class="plus-one-wrap"><g:plusone href="http://velofille.com/2010/02/05/linuxtux-keyboard-for-sale-oxfam-fundraiser/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://velofille.com/2010/02/05/linuxtux-keyboard-for-sale-oxfam-fundraiser/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Chrome OS install, hints and tips &amp; my first experience</title>
		<link>http://velofille.com/2009/11/22/chrome-os-install-hints-and-tips-my-first-experience/</link>
		<comments>http://velofille.com/2009/11/22/chrome-os-install-hints-and-tips-my-first-experience/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 09:15:16 +0000</pubDate>
		<dc:creator>Liz Quilty</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[eee]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[os]]></category>
		<category><![CDATA[user]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://velofille.com/?p=685</guid>
		<description><![CDATA[Horay! Chrome OS is out at http://www.chromium.org/ You can preview it a bit here http://www.engadget.com/2009/11/19/googles-chrome-os-revealed/ First you need to go to install all the pre-requisites to compile it on your Linux system listed here http://code.google.com/p/chromium/wiki/LinuxBuildInstructionsPrerequisites &#8211; OR If you run ubuntu just do this wget http://src.chromium.org/svn/trunk/src/build/install-build-deps.sh sh install-build-deps.sh (hit Y near the end when it [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fvelofille.com%2F2009%2F11%2F22%2Fchrome-os-install-hints-and-tips-my-first-experience%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fvelofille.com%2F2009%2F11%2F22%2Fchrome-os-install-hints-and-tips-my-first-experience%2F&amp;source=velofille&amp;style=normal&amp;service=ow.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Horay! Chrome OS is out at http://www.chromium.org/<br />
You can preview it a bit here http://www.engadget.com/2009/11/19/googles-chrome-os-revealed/</p>
<p>First you need to go to install all the pre-requisites to compile it on your Linux system listed here http://code.google.com/p/chromium/wiki/LinuxBuildInstructionsPrerequisites &#8211; OR<br />
If you run ubuntu just do this<br />
wget http://src.chromium.org/svn/trunk/src/build/install-build-deps.sh<br />
sh install-build-deps.sh (hit Y near the end when it wants to install binutils-gold ok?)</p>
<p>Download the tar.gz from here http://build.chromium.org/buildbot/archives/chromiumos-0.4.22.8.tar.gz<br />
Or grab the git repo </p>
<blockquote><p>sudo apt-get install git-core<br />
mkdir [chromiumos]<br />
cd [chromiumos]<br />
gclient config http://src.chromium.org/git/chromiumos.git<br />
gclient sync</p></blockquote>
<p>Note: This process may appear to hang while downloading the kernel source. It may take anywhere up to 10-20 minutes before you get more feedback </p>
<p>Follow the build instructions here http://sites.google.com/a/chromium.org/dev/chromium-os/building-chromium-os/build-instructions.</p>
<p>Once its booted up and running, you will realize very quickly its just a bootable web browser. There&#8217;s nothing else installed or to install. No logout button, no shutdown, no nothing.<br />
If you are cunning like me and want to play then nothing like a ctl+alt+t to bring up a terminal then use your sudo to get root access. (no tutorials on this, if you dont know the power of sudo you shouldn&#8217;t be messing with things!)</p>
<p>First thing i noticed was that the main root file system was mounted what seems to be read-only. This i can only presume is for speed (and it is blimmin fast!) amoung other things.</p>
<p>The home directory was mounted read-write however to allow for downloading etc.<br />
Package management or editing system files is impossible without remounting the root filesystem as read-write<br />
mount -o remount,rw /</p>
<p>It appears to be based on Ubuntu, and its so cut down nothing much is installed. However in saying this, its still 589MB on disk when installed, which considering the fact that its not actually running anything other than a web browser, that&#8217;s pretty shocking. I can get a full debian install with xwindows and basic apps in that size fairly easily. Perhaps they havn&#8217;t had time to strip more garbage from it yet?<br />
I noticed when its running that its using 653MB of my 1GB RAM, and has no swap at all. I presume its entirely running in RAM which contributes to its speed.</p>
<p>Catch 22, ChromeOS uses your google user/pass to login, if you use this then it will automatically log you in to your google acct at the same time, however, Wireless networking doesn&#8217;t come up until you are logged in (WPA key) .</p>
<p>I decided I wanted to add another offline user, so i did. My default username/password was chronos/chronos and i didn&#8217;t want that (yes downloaded a precompiled image). I added myself a user, then added my user to the admin,video,etc groups identical to the main user. I was still not able to login using this user which sucked, so i copied the homedir over from the first user to the second.</p>
<p>Still no go, so i checked in /etc for hard coded user names and found a few<br />
/etc/security/pam_mount.conf.xml had the homedir to be mounted hard coded into it<br />
/etc/init.d/start_login.sh has export USER=firstusername<br />
/etc/init.d/session_manager.sh has su firstusername -c &#8220;/etc/init.d/start_login.sh ${MCOOKIE}&#8221;<br />
/etc/acpi/lid.sh has export HOME=/home/firstusername</p>
<p>I edited all these to point to the new username, also copied the firstusername to secondusername homedir, chown&#8217;d all the files and grep -r&#8217;d and changed all instances of username hard coding.</p>
<p>Whilst editing these files i noticed that the pam_mount.conf contained information for mounting the home directory as an encrypted area.<br />
I rebooted and hoped like heck after editing it would all go well. I should mention here that I&#8217;m using my 701 EEE PC laptop here, its a great test bed for lots of things.</p>
<p>After reboot i was still unable to login as the new user, so i checked directories other than /etc and found /usr/lib/chomeos-cryptohome/common</p>
<p>At this point, im tired, its late on a sunday evening and i never quiet got it the other user going. Since i need that offline user account to login before my WPA key/WIFI works, i will pursue this one further, for now im heading to bed (may update post later)</p>
<div class="plus-one-wrap"><g:plusone href="http://velofille.com/2009/11/22/chrome-os-install-hints-and-tips-my-first-experience/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://velofille.com/2009/11/22/chrome-os-install-hints-and-tips-my-first-experience/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Software Freedom Day in New Zealand &#8211; Whats going on</title>
		<link>http://velofille.com/2009/09/17/software-freedom-day-in-new-zealand-whats-going-on/</link>
		<comments>http://velofille.com/2009/09/17/software-freedom-day-in-new-zealand-whats-going-on/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 00:54:11 +0000</pubDate>
		<dc:creator>Liz Quilty</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://velofille.com/?p=571</guid>
		<description><![CDATA[Auckland Friday 18th of September, 4pm onwards. Albany Senior High School, Cnr Albany Highway and Oakway Drive, Albany, Auckland 0752 http://maps.google.co.nz/maps?f=q&#38;source=s_q&#38;hl=en&#38;q=Albany+Senior+High+School,+Auckland+0632&#38;sll=-36.847385,174.765735&#38;sspn=0.040524,0.082312&#38;ie=UTF8&#38;cd=1&#38;geocode=FU-Lz_0daqdpCg&#38;split=0&#38;ll=-36.727672,174.695406&#38;spn=0.020294,0.041156&#38;z=15&#38;iwloc=A LAN party, Pizza, Presentations (Vik: RepRap, the future of technology, Nevyn: POINTS Promoters of Open INformation Technology in Schools, Graham Lauder: Open Office etc.), cd give aways, Installfest Sunday the 20th of September, 10:00-16:00 [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fvelofille.com%2F2009%2F09%2F17%2Fsoftware-freedom-day-in-new-zealand-whats-going-on%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fvelofille.com%2F2009%2F09%2F17%2Fsoftware-freedom-day-in-new-zealand-whats-going-on%2F&amp;source=velofille&amp;style=normal&amp;service=ow.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<h2>Auckland</h2>
<p>Friday 18th of September, 4pm onwards.</p>
<p>Albany Senior High School,<br />
Cnr Albany Highway and Oakway Drive,<br />
Albany,<br />
Auckland 0752<br />
<a href="http://maps.google.co.nz/maps?f=q&amp;source=s_q&amp;hl=en&amp;q=Albany+Senior+High+School,+Auckland+0632&amp;sll=-36.847385,174.765735&amp;sspn=0.040524,0.082312&amp;ie=UTF8&amp;cd=1&amp;geocode=FU-Lz_0daqdpCg&amp;split=0&amp;ll=-36.727672,174.695406&amp;spn=0.020294,0.041156&amp;z=15&amp;iwloc=A" target="_blank">http://maps.google.co.nz/maps?f=q&amp;source=s_q&amp;hl=en&amp;q=Albany+Senior+High+School,+Auckland+0632&amp;sll=-36.847385,174.765735&amp;sspn=0.040524,0.082312&amp;ie=UTF8&amp;cd=1&amp;geocode=FU-Lz_0daqdpCg&amp;split=0&amp;ll=-36.727672,174.695406&amp;spn=0.020294,0.041156&amp;z=15&amp;iwloc=A</a></p>
<p>LAN party, Pizza, Presentations (Vik: RepRap, the future of<br />
technology, Nevyn: POINTS Promoters of Open INformation Technology in<br />
Schools, Graham Lauder: Open Office etc.), cd give aways, Installfest</p>
<p><strong>Sunday the 20th of September, 10:00-16:00</strong><br />
Scispace, University of Auckland, City Campus (Building 303)<br />
<a href="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=104466971427416568906.00047341f6aff2bd75ede&amp;ll=-36.852707,174.768748&amp;spn=0.00294,0.006716&amp;t=h&amp;z=18" target="_blank">http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=104466971427416568906.00047341f6aff2bd75ede&amp;ll=-36.852707,174.768748&amp;spn=0.00294,0.006716&amp;t=h&amp;z=18</a><br />
A market day of commercial vendors, demos, presentations (the same<br />
ones as the Albany event), cd give aways.</p>
<h2>Hamilton</h2>
<p>September 19th 2009, 10am to 4pm Events room 1 &amp; 2 @ the HUB, Wintec</p>
<p>Free Giveaways, demos, prices, talks  and food/coffee!</p>
<h2>Wellington</h2>
<p><strong>Date:</strong><strong> Sunday 20th September 2009</strong><br />
<strong>Time: </strong>9am &#8211; 5pm (plus networking session post event!)<br />
<strong>Cost: </strong>Free! (but you need to <a href="http://www.softwarefreedomday.org.nz" target="_blank"><strong>register for the event</strong></a>)<br />
<strong>Location: </strong><a title="Link to Zoomin Map. " href="http://zoomin.co.nz/info/nz/wellington/wellington+central/-wellington+convention+centre+town+hall+michael+fowler+centre/" target="_self">Wellington Convention Center</a><br />
<strong>WiFi: </strong>Free all day tokens courtesy of <a href="http://www.cafenet.co.nz/" target="_self">CafeNET</a></p>
<h2>Christchurch</h2>
<p>10am to 4pm Saturday<br />
19 September 2009<br />
<a href="http://www.library.christchurch.org.nz/South/" target="_blank">South Learning Centre</a></p>
<p>South Christchurch Library66 Colombo Street, Beckenham</p>
<p>Linux Installfest, free software CD, internet security, PC tuition, DVD screenings, and more</p>
<div class="plus-one-wrap"><g:plusone href="http://velofille.com/2009/09/17/software-freedom-day-in-new-zealand-whats-going-on/"></g:plusone></div>]]></content:encoded>
			<wfw:commentRss>http://velofille.com/2009/09/17/software-freedom-day-in-new-zealand-whats-going-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

