<?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>Gnutiken</title>
	<atom:link href="http://blog.gnutiken.se/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.gnutiken.se</link>
	<description>Logistics for the resistance</description>
	<lastBuildDate>Mon, 09 Aug 2010 08:30:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Debian Day 2010</title>
		<link>http://blog.gnutiken.se/2010/08/09/debian-day-2010/</link>
		<comments>http://blog.gnutiken.se/2010/08/09/debian-day-2010/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 08:30:13 +0000</pubDate>
		<dc:creator>Patrik</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[birthday]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Debian Day 2010]]></category>

		<guid isPermaLink="false">http://blog.gnutiken.se/?p=200</guid>
		<description><![CDATA[Måndagen den 16:e augusti firar Debian 17 år och vi   tänkte att det kunde vara kul att samla ihop Debian-användare och ha en  liten fika runt 18:00 här på Gnutiken. Inget stort, inget fancy, bara en chans för alla som gillar Debian att samlas och gilla Debian tillsammans.

Välkomna!]]></description>
			<content:encoded><![CDATA[<p>Måndagen den 16:e augusti firar Debian 17 år och vi   tänkte att det kunde vara kul att samla ihop Debian-användare och ha en  liten fika runt 18:00 här på Gnutiken. Inget stort, inget fancy, bara en chans för alla som gillar Debian att samlas och gilla Debian tillsammans.</p>
<p>Välkomna!</p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.gnutiken.se/2010/08/09/debian-day-2010/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Creating a bootable USB memory stick with multiple GNU/Linux distros</title>
		<link>http://blog.gnutiken.se/2010/07/13/creating-a-bootable-usb-memory-stick-with-multiple-gnulinux-distros/</link>
		<comments>http://blog.gnutiken.se/2010/07/13/creating-a-bootable-usb-memory-stick-with-multiple-gnulinux-distros/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 13:35:29 +0000</pubDate>
		<dc:creator>martin</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[cfdisk]]></category>
		<category><![CDATA[fdisk]]></category>
		<category><![CDATA[qemu]]></category>
		<category><![CDATA[syslinux]]></category>
		<category><![CDATA[USB]]></category>

		<guid isPermaLink="false">http://blog.gnutiken.se/?p=190</guid>
		<description><![CDATA[Packages needed: syslinux, cfdisk (or fdisk if you're more comfortable with that), qemu (optional)

cd
dmesg # Look for USB device. Will probably be something like sdc.
sudo cfdisk /dev/sdc # WARNING! Make sure /dev/sdc is your memory stick before continuing!

Remove all partitions and create one new partition from the empty space. Set type to W95 FAT32 ...]]></description>
			<content:encoded><![CDATA[<p>Packages needed: <em>syslinux</em>, <em>cfdisk</em> (or <em>fdisk</em> if you&#8217;re more comfortable with that), <em>qemu</em> (optional)<br />
<code><br />
cd<br />
dmesg # Look for USB device. Will probably be something like sdc.<br />
sudo cfdisk /dev/sdc # <strong>WARNING! Make sure /dev/sdc is your memory stick before continuing!</strong><br />
</code><br />
Remove all partitions and create one new partition from the empty space. Set type to W95 FAT32 (0b), and set Bootable. Write and quit!</p>
<p>Create a fat32 filesystem on the memory stick<br />
<code><br />
sudo mkfs.vfat /dev/sdc1<br />
sudo mount /dev/sdc1 /mnt<br />
</code></p>
<p>Download a GNU/Linux dist iso, for example Debian Live<br />
<code><br />
mkdir debian<br />
wget http://cdimage.debian.org/cdimage/squeeze_live_alpha1/i386/iso-hybrid/debian-live-60alpha1-i386-standard.iso<br />
sudo mount -o loop debian-live-60alpha1-i386-standard.iso debian<br />
sudo cp -R debian/* /mnt<br />
cd /mnt<br />
sudo mv isolinux syslinux<br />
cd syslinux<br />
sudo mv isolinux.cfg syslinux.cfg<br />
sudo sed -i 's/isolinux/syslinux/g' syslinux.cfg<br />
sudo cp /usr/lib/syslinux/{vesa,}menu.c32 .<br />
</code></p>
<p>You should now have a working single dist bootable USB memory stick. Let&#8217;s try it<br />
<code><br />
sudo umount /mnt<br />
sudo qemu /dev/sdc  # this should present you with the boot menu of the dist you used, in this example debian live<br />
</code></p>
<p>All well so far, clean up and prepare for adding another dist to the USB memory stick.<br />
<code><br />
cd<br />
sudo umount debian<br />
rmdir debian<br />
</code></p>
<p>Adding a second dist to the USB memory stick. The following steps may be repeated with different dists until your memory stick is full!<br />
<code><br />
mkdir puppy<br />
wget http://ftp.nluug.nl/ftp/pub/os/Linux/distr/puppylinux/puppy-5.0.1/lupu-501.iso<br />
sudo mount -o loop lupu-501.iso puppy<br />
sudo mount /dev/sdc1 /mnt<br />
sudo mkdir /mnt/puppy<br />
sudo cp -R puppy/* /mnt/puppy<br />
</code></p>
<p>Now all we need to do is to add a menu entry for Puppy to the root syslinux menu<br />
<code><br />
vim /mnt/syslinux/syslinux.cfg<br />
</code></p>
<p>You can view the syslinux.cfg (or isolinux.cfg) to see what the dist uses for entries, for Puppy it is:<br />
<code><br />
label puppy<br />
kernel vmlinuz<br />
append initrd=initrd.gz pmedia=cd<br />
</code></p>
<p>Copy these lines and add them to the end of /mnt/syslinux/syslinux.cfg<br />
Also, change the two last lines to say<br />
<code><br />
kernel /puppy/vmlinuz<br />
append initrd=/puppy/initrd.gz pmedia=cd<br />
</code></p>
<p>That&#8217;s it, you now have a bootable USB memory stick with two different linux live dists. To test it out just umount and qemu<br />
Repeat the last steps (from &#8220;mkdir puppy&#8221;) to add more dists!</p>
<p>Update: corrections and emphasis on warnings</p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.gnutiken.se/2010/07/13/creating-a-bootable-usb-memory-stick-with-multiple-gnulinux-distros/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gnutiknic 2010</title>
		<link>http://blog.gnutiken.se/2010/06/15/gnutiknic-2010/</link>
		<comments>http://blog.gnutiken.se/2010/06/15/gnutiknic-2010/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 14:09:49 +0000</pubDate>
		<dc:creator>Patrik</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[linnéplatsen]]></category>
		<category><![CDATA[picnic]]></category>
		<category><![CDATA[slottskogen]]></category>

		<guid isPermaLink="false">http://blog.gnutiken.se/?p=183</guid>
		<description><![CDATA[
On the 24th of June, a hopefully sunny Thursday, we here at Gnutiken feel it is again time for a Gnutiknic.

Weather permitting, any and all who feel up for it are welcome to join us at Linnéplatsen around 17:00, from where we will then stroll into Slottskogen to find a sunny little spot where ...]]></description>
			<content:encoded><![CDATA[<div class='en' style='' lang='en' dir='LTR'>
<p>On the 24th of June, a hopefully sunny Thursday, we here at Gnutiken feel it is again time for a Gnutiknic.</p>
<p>Weather permitting, any and all who feel up for it are welcome to join us at Linnéplatsen around 17:00, from where we will then stroll into Slottskogen to find a sunny little spot where we&#8217;ll spend some time enjoying each others company.</p>
<p>See you there <img src='http://blog.gnutiken.se/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
</div>
<p>
<p><small>This Article is also available in <b>Svenska</b>.</small></p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.gnutiken.se/2010/06/15/gnutiknic-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Filmvisning &#8211; Patent Absurdity</title>
		<link>http://blog.gnutiken.se/2010/05/07/filmvisning-patent-absurdity/</link>
		<comments>http://blog.gnutiken.se/2010/05/07/filmvisning-patent-absurdity/#comments</comments>
		<pubDate>Fri, 07 May 2010 12:19:50 +0000</pubDate>
		<dc:creator>Stian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.gnutiken.se/?p=174</guid>
		<description><![CDATA[Torsdag 20 maj 18:00
Gnutiken, Övre Husargatan 27

Patent Absurdity utforskar fallet med programvarupatent och historien om den juridiska aktivism som ledde till dess uppgång, och skadan de orsakar programutvecklare och ekonomin som helhet. Filmen är baserad på en rad intervjuer som gjordes under USA:s Supreme Court's förhandlingar om fallet "re Bilski" — ett fall som ...]]></description>
			<content:encoded><![CDATA[<p>Torsdag 20 maj 18:00<br />
Gnutiken, Övre Husargatan 27</p>
<p>Patent Absurdity utforskar fallet med programvarupatent och historien om den juridiska aktivism som ledde till dess uppgång, och skadan de orsakar programutvecklare och ekonomin som helhet. Filmen är baserad på en rad intervjuer som gjordes under USA:s Supreme Court&#8217;s förhandlingar om fallet &#8220;re Bilski&#8221; — ett fall som kan få djupgående konsekvenser för patenteringen av datorprogram.</p>
<p>Filmen har finansierats med ett bidrag från Free Software Foundation och innehåller intervjuer med bland andra Eben Moglen, Dan Bricklin, Karen Sandler och Richard Stallman. Den är tillgänglig under Creative Commons BY-ND (Attribution-No Derivative Works) licensen, som uppmuntrar till delning och vidaredistribution av alla som vill, och är gjord med endast fria datorprogram.</p>
<p>USA. 29 min.<br />
Gratis inträde.<br />
Fika finns att köpa.</p>
<p>Arrangörer: Göteborg Fellowship of the Free Software Foundation Europe i samarbete med Gnutiken.</p>
<p><strong>Uppdatering:</strong> <a href="http://www.google.com/search?q=Jacob+Hallen++site:ffii.org&#038;hl=en&#038;start=0&#038;sa=N">Jacob Hallén</a>, som var med i mjukvarupatentstriden i EU, inledningstalar om hur det gick till att få EU-parlamentet att förkasta mjukvarupatent.</p>
<p>För mer information:<br />
<a href="http://patentabsurdity.com/">http://patentabsurdity.com/</a><br />
<a href="http://www.fsf.org/news/new-documentary-film-patent-absurdity">http://www.fsf.org/news/new-documentary-film-patent-absurdity</a></p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.gnutiken.se/2010/05/07/filmvisning-patent-absurdity/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Document Freedom DVD &#8211; International</title>
		<link>http://blog.gnutiken.se/2010/04/26/document-freedom-dvd-international/</link>
		<comments>http://blog.gnutiken.se/2010/04/26/document-freedom-dvd-international/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 14:57:01 +0000</pubDate>
		<dc:creator>Rikard</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[den fria dokumentdagen]]></category>
		<category><![CDATA[Document freedom day]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[free culture]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[fri kultur]]></category>
		<category><![CDATA[fri programvara]]></category>

		<guid isPermaLink="false">http://blog.gnutiken.se/?p=167</guid>
		<description><![CDATA[
Gnutiken har sammanställt en DVD-image med fri programvara och mängder med exempelfiler i fria format med anledning av Document Freedom Day nyligen. Vi provar att annonsera torrenten via torrage här (internationell) eller här (svensk variant). Låt oss få veta om det inte fungerar så löser vi det på annat sätt.


Innehåll:




Gnutiken has assembled a DVD ...]]></description>
			<content:encoded><![CDATA[
<div class='en' style='' lang='en' dir='LTR'>
<p>
Gnutiken has assembled a DVD image with free software and lots of free example files in free formats, in connection with the recently celebrated Document Freedom Day. We are testing to announce it using torrage <a href="http://torrage.com/torrent/E9F03512EB1A3E41898FBD6C662139175799A362.torrent">here (international)</a> or <a href="http://torrage.com/torrent/0F6BB6A9361BD7905FB30D6FBA7FC541F51C2836.torrent">here (Swedish edition)</a>. Please let us know if it doesn&#8217;t work, and we&#8217;ll publish it some other way.
</p>
<p>
Table of contents:
</p>
</div>
<pre>
DFD-International
├── E-Books
│   ├── CODE-FREE Magazine
│   │   ├── codefree1.pdf
│   │   ├── codefree2.pdf
│   │   ├── codefree-3.pdf
│   │   └── CODE-FREE.txt
│   └── FREE BEER.pdf
├── Music
│   └── The 2007 Magnatune Records Sampler
│       ├── 01-Westchester (The Seldon Plan)-Various Artists.ogg
│       ├── 02-Moonrise (Yongen)-Various Artists.ogg
│       ├── 03-In The Middle (Beight)-Various Artists.ogg
│       ├── 04-Sync Or Swim - Breakshop Studios Remix (Artemis)-Various .ogg
│       ├── 05-Mandschu (The Headroom Project)-Various Artists.ogg
│       ├── 06-Suerte Mijo (Arthur Yoria)-Various Artists.ogg
│       ├── 07-Impressions (The Kokoon)-Various Artists.ogg
│       ├── 08-Put Out The Flames (Ambient Teknology)-Various Artists.ogg
│       ├── 09-Artificial (The West Exit)-Various Artists.ogg
│       ├── 10-Spank You (The Marginal Prophets)-Various Artists.ogg
│       ├── 11-Roots Fi Cool (Burning Babylon)-Various Artists.ogg
│       ├── 12-Oui Mossieur Chuibelle (Dr Kuch)-Various Artists.ogg
│       ├── 13-Deploribus Unum (Mountain Mirrors-Various Artists.ogg
│       ├── 14-Phoenix (Justin Bianco)-Various Artists.ogg
│       ├── 15-An Angel Ameliorate (Falling You) -Various Artists.ogg
│       └── License.txt
├── Pictures
│   └── Wikimedia Commons - Pictures of the Year 2008
│       ├── 4-14_Marines_in_Fallujah
│       │   ├── 4-14_Marines_in_Fallujah.jpg
│       │   └── license.html
│       ├── 8-cell-simple
│       │   ├── 8-cell-simple.gif
│       │   └── license.html
│       ├── Alberi_AlpediSiusi
│       │   ├── Alberi_AlpediSiusi.JPG
│       │   └── license.html
│       ├── Biandintz_eta_zaldiak_-_modified2
│       │   ├── Biandintz_eta_zaldiak_-_modified2.jpg
│       │   └── license.html
│       ├── Blasting_frankfurt
│       │   ├── Blasting_frankfurt.jpg
│       │   └── license.html
│       ├── Caliphrodae_head
│       │   ├── Caliphrodae_head.jpg
│       │   └── license.html
│       ├── Chateau_de_Chenonceau_2008E
│       │   ├── Chateau_de_Chenonceau_2008E.jpg
│       │   └── license.html
│       ├── Cicada_molting_animated-2
│       │   ├── Cicada_molting_animated-2.gif
│       │   └── license.html
│       ├── Colibri-thalassinus-001-edit
│       │   ├── Colibri-thalassinus-001-edit.jpg
│       │   └── license.html
│       ├── Copenhagen_Metro_escalators
│       │   ├── Copenhagen_Metro_escalators.jpg
│       │   └── license.html
│       ├── Crepuscular_rays_in_ggp_2
│       │   ├── Crepuscular_rays_in_ggp_2.jpg
│       │   └── license.html
│       ├── Cyanistes_caeruleus_3_Luc_Viatour
│       │   ├── Cyanistes_caeruleus_3_Luc_Viatour.jpg
│       │   └── license.html
│       ├── Da_Vinci_Studies_of_Embryos_Luc_Viatour
│       │   ├── Da_Vinci_Studies_of_Embryos_Luc_Viatour.jpg
│       │   └── license.html
│       ├── Dew_on_grass_Luc_Viatour
│       │   ├── Dew_on_grass_Luc_Viatour.jpg
│       │   └── license.html
│       ├── Diving_emperor_penguin
│       │   ├── Diving_emperor_penguin.jpg
│       │   └── license.html
│       ├── Eastern_Tiger_Swallowtail_Papilio_glaucus_Female_2838px
│       │   ├── Eastern_Tiger_Swallowtail_Papilio_glaucus_Female_2838px.jpg
│       │   └── license.html
│       ├── Fire_breathing_2_Luc_Viatour
│       │   ├── Fire_breathing_2_Luc_Viatour.jpg
│       │   └── license.html
│       ├── FirePhotography
│       │   ├── FirePhotography.jpg
│       │   └── license.html
│       ├── Gordon_Dam
│       │   ├── Gordon_Dam.jpg
│       │   └── license.html
│       ├── Grand_Canyon_Horse_Shoe_Bend_MC
│       │   ├── Grand_Canyon_Horse_Shoe_Bend_MC.jpg
│       │   └── license.html
│       ├── Hong_Kong_Night_Skyline
│       │   ├── Hong_Kong_Night_Skyline.jpg
│       │   └── license.html
│       ├── Image-Disney_Concert_Hall_by_Carol_Highsmith_edit
│       │   ├── Image-Disney_Concert_Hall_by_Carol_Highsmith_edit.jpg
│       │   └── license.html
│       ├── IrvingJohnstonAground
│       │   ├── IrvingJohnstonAground.jpg
│       │   └── license.html
│       ├── Johannes_Vermeer_-_The_Girl_With_The_Pearl_Earring
│       │   ├── Johannes_Vermeer_(1632-1675)_-_The_Girl_With_The_Pearl_Earri.jpg
│       │   └── license.html
│       ├── Lange-MigrantMother02
│       │   ├── Lange-MigrantMother02.jpg
│       │   └── license.html
│       ├── Le_grand_foyer-2
│       │   ├── Le_grand_foyer-2.jpg
│       │   └── license.html
│       ├── LeopardMothBlueSpots_edit2
│       │   ├── LeopardMothBlueSpots_edit2.jpg
│       │   └── license.html
│       ├── Locomotives-Roundhouse2
│       │   ├── license.html
│       │   └── Locomotives-Roundhouse2.jpg
│       ├── London_Thames_Sunset_panorama_-_Feb_2008
│       │   ├── license.html
│       │   └── London_Thames_Sunset_panorama_-_Feb_2008.jpg
│       ├── Lubber
│       │   ├── license.html
│       │   └── Lubber.jpg
│       ├── Messier51_sRGB
│       │   ├── license.html
│       │   └── Messier51_sRGB.jpg
│       ├── Mount-Yamnuska2-Szmurlo
│       │   ├── license.html
│       │   └── Mount-Yamnuska2-Szmurlo.jpg
│       ├── Narzisse
│       │   ├── license.html
│       │   └── Narzisse.jpg
│       ├── Nelumno_nucifera_open_flower_-_botanic_garden_adelaide2
│       │   ├── license.html
│       │   └── Nelumno_nucifera_open_flower_-_botanic_garden_adelaide2.jpg
│       ├── Osteospermum_Flower_Power_Spider_Purple_2134px
│       │   ├── license.html
│       │   └── Osteospermum_Flower_Power_Spider_Purple_2134px.jpg
│       ├── Pahoeoe_fountain_edit2
│       │   ├── license.html
│       │   └── Pahoeoe_fountain_edit2.jpg
│       ├── Paris_Night
│       │   ├── license.html
│       │   └── Paris_Night.jpg
│       ├── PlatycryptusUndatusFemale
│       │   ├── license.html
│       │   └── PlatycryptusUndatusFemale.jpg
│       ├── Red-eyed_Tree_Frog_-_Litoria_chloris_edit1
│       │   ├── license.html
│       │   └── Red-eyed_Tree_Frog_-_Litoria_chloris_edit1.jpg
│       ├── Reflection_in_a_soap_bubble_edit
│       │   ├── license.html
│       │   └── Reflection_in_a_soap_bubble_edit.jpg
│       ├── Rust_Mite_-_Aceria_anthocoptes
│       │   ├── license.html
│       │   └── Rust_Mite,_Aceria_anthocoptes.jpg
│       ├── Schnepfenfliege_Rhagio_scolopaceus2
│       │   ├── license.html
│       │   └── Schnepfenfliege_Rhagio_scolopaceus2.jpg
│       ├── Simple_CV_Joint_animated
│       │   ├── license.html
│       │   └── Simple_CV_Joint_animated.gif
│       ├── Stunt_Pyrotechnics_Luc_Viatour
│       │   ├── license.html
│       │   └── Stunt_Pyrotechnics_Luc_Viatour.jpg
│       ├── Synchiropus_splendidus_2_Luc_Viatour
│       │   ├── license.html
│       │   └── Synchiropus_splendidus_2_Luc_Viatour.jpg
│       ├── Total_internal_reflection_of_Chelonia_mydas_
│       │   ├── license.html
│       │   └── Total_internal_reflection_of_Chelonia_mydas_.jpg
│       ├── UlvikfjordMountainsPanorama
│       │   ├── license.html
│       │   └── UlvikfjordMountainsPanorama.jpg
│       ├── Underwater_mcmurdo_sound
│       │   ├── license.html
│       │   └── Underwater_mcmurdo_sound.jpg
│       └── WTC-Fireman_requests_10_more_colleagesa
│           ├── license.html
│           └── WTC-Fireman_requests_10_more_colleagesa.jpg
├── Software
│   ├── Licenses
│   │   ├── GIMP-License.txt
│   │   ├── Handbrake-license.txt
│   │   ├── Inkscape-License.txt
│   │   ├── Miro-License.txt
│   │   ├── MuPDF-License.txt
│   │   ├── OpenOffice.org-License.txt
│   │   ├── Scribus-License.txt
│   │   └── VLC-License.txt
│   ├── Mac OS X
│   │   ├── GIMP-2.6.8-Leopard.dmg
│   │   ├── GIMP-2.6.8-p1-Snow-Leopard.dmg
│   │   ├── HandBrake-0.9.4-MacOSX.5_GUI_i386.dmg
│   │   ├── HandBrake-0.9.4-MacOSX.5_GUI_x86_64.dmg
│   │   ├── Inkscape-0.47-1.LEOPARD+.dmg
│   │   ├── Miro-3.0.dmg
│   │   ├── mupdf-0.5-macosx.tar.gz
│   │   ├── OOo_3.2.0_MacOSXIntel_install_en-US.dmg
│   │   ├── Scribus_1.3.5.1.dmg
│   │   └── vlc-1.0.5.dmg
│   ├── Source Code
│   │   ├── evince-2.29.92.tar.gz
│   │   ├── gimp-2.6.8.tar.bz2
│   │   ├── HandBrake-0.9.4.tar.bz2
│   │   ├── inkscape-0.47.tar.gz
│   │   ├── miro-3.0.tar.gz
│   │   ├── mupdf-0.5.tar.gz
│   │   ├── scribus-1.3.3.13.tar.bz2
│   │   └── vlc-1.0.5.tar.bz2
│   └── Windows
│       ├── evince-2.28.0.msi
│       ├── gimp-2.6.8-i686-setup.exe
│       ├── HandBrake-0.9.4-Win_GUI.exe
│       ├── Inkscape-0.47-3.exe
│       ├── Miro-3.0-Installer.exe
│       ├── OOo_3.2.0_Win32Intel_install_wJRE_en-US.exe
│       ├── scribus-1.3.3.14-win32-install.exe
│       └── vlc-1.0.5-win32.exe
└── Video
    ├── big_buck_bunny_720p_stereo.ogg
    └── Big-Buck-Bunny.txt
</pre>
<p>
<p><small>This Article is also available in <b>Svenska</b>.</small></p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.gnutiken.se/2010/04/26/document-freedom-dvd-international/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Go Green &#8211; Go Linux!</title>
		<link>http://blog.gnutiken.se/2010/04/19/go-green-go-linux/</link>
		<comments>http://blog.gnutiken.se/2010/04/19/go-green-go-linux/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 20:41:56 +0000</pubDate>
		<dc:creator>Rikard</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[green IT]]></category>
		<category><![CDATA[grön it]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.gnutiken.se/?p=159</guid>
		<description><![CDATA[  
You can also download the video or watch it in flash below.

]]></description>
			<content:encoded><![CDATA[<p><video width="640" height="385" controls="true" autobuffer="true">  <source src="http://gnutiken.se/files/Go_Linux.ogv" type="video/ogg" /></p>
<p>You can also <a href="http://gnutiken.se/files/Go_Linux.ogv">download the video</a> or watch it in flash below.</p>
<p></video><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/EShBCwg6Jc0&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube.com/v/EShBCwg6Jc0&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.gnutiken.se/2010/04/19/go-green-go-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://gnutiken.se/files/Go_Linux.ogv" length="6462602" type="video/ogg" />
		</item>
		<item>
		<title>April Fellowship meeting</title>
		<link>http://blog.gnutiken.se/2010/04/06/april-fellowship-meeting/</link>
		<comments>http://blog.gnutiken.se/2010/04/06/april-fellowship-meeting/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 20:22:30 +0000</pubDate>
		<dc:creator>Patrik</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Fellowship]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[FSFE]]></category>

		<guid isPermaLink="false">http://blog.gnutiken.se/?p=155</guid>
		<description><![CDATA[

The April fellowship meeting will be held this Thursday (8/4) at Gnutiken (Övre Husargatan 27, Göteborg).

All fellows (and all other people interested in free software as well, of course) are welcome to join us around 1800 hours.





Denna månadens fellowship-möte kommer hållas nu på torsdag (8/4) i Gnutikens lokaler (Övre Husargatan 27, Göteborg).

Alla fellows (och ...]]></description>
			<content:encoded><![CDATA[<div class='en' style='' lang='en' dir='LTR'>
<p>The April fellowship meeting will be held this Thursday (8/4) at Gnutiken (Övre Husargatan 27, Göteborg).</p>
<p>All fellows (and all other people interested in free software as well, of course) are welcome to join us around 1800 hours.</p>
</div>
<p>
<p><small>This Article is also available in <b>Svenska</b>.</small></p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.gnutiken.se/2010/04/06/april-fellowship-meeting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Release Party Ubuntu Lucid Lynx 29/4</title>
		<link>http://blog.gnutiken.se/2010/04/06/release-party-ubuntu-lucid-lynx-294/</link>
		<comments>http://blog.gnutiken.se/2010/04/06/release-party-ubuntu-lucid-lynx-294/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 10:35:40 +0000</pubDate>
		<dc:creator>Rikard</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[Lucid Lynx]]></category>
		<category><![CDATA[Release Party]]></category>
		<category><![CDATA[Releasefest]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu Lucid Lynx]]></category>

		<guid isPermaLink="false">http://blog.gnutiken.se/?p=148</guid>
		<description><![CDATA[
On April 29, Gnutiken will host the release party for the upcoming Ubuntu Lucid Lynx. Food will be served for about 100 SEK. Please send an email to Jari Saarelainen, ulsakh0@gmail.com, if you wish to attend. Mention whether you would like to order food.

Time: 6 PM
Place: Gnutiken, Övre Husargatan 27, Göteborg (Near Linnéplatsen)
Facebook event

Please ...]]></description>
			<content:encoded><![CDATA[<div class='en' style='' lang='en' dir='LTR'>
<p>On April 29, Gnutiken will host the release party for the upcoming Ubuntu Lucid Lynx. Food will be served for about 100 SEK. Please send an email to Jari Saarelainen, ulsakh0@gmail.com, if you wish to attend. Mention whether you would like to order food.</p>
<p>Time: 6 PM<br />
Place: Gnutiken, Övre Husargatan 27, Göteborg (Near Linnéplatsen)<br />
<a href="http://www.facebook.com/event.php?eid=114783788534366">Facebook event</a></p>
<p>Please help pushing this event! Download and print the <a href="http://gnutiken.se/pdf/lucid-release.pdf">poster</a>(CC-BY-SA) and put it on billboards near you! Link here and to <a href="http://www.facebook.com/event.php?eid=114783788534366">FB</a>. Bring your friends!</p>
<p>Welcome!</p>
</div>
<div id="attachment_149" class="wp-caption aligncenter" style="width: 277px"><a href="http://commons.wikimedia.org/wiki/File:Lynx_lynx.jpg"><img class="size-full wp-image-149" title="Lynx Lynx" src="http://blog.gnutiken.se/wp-content/uploads/2010/04/Lynx_lynx.jpg" alt="A Lynx" width="267" height="250" /></a><p class="wp-caption-text">Lynx Lynx!</p></div>
<p>
<p><small>This Article is also available in <b>Svenska</b>.</small></p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.gnutiken.se/2010/04/06/release-party-ubuntu-lucid-lynx-294/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Document Freedom Seminar March 31</title>
		<link>http://blog.gnutiken.se/2010/03/24/document-freedom-seminar-march-31/</link>
		<comments>http://blog.gnutiken.se/2010/03/24/document-freedom-seminar-march-31/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 15:47:19 +0000</pubDate>
		<dc:creator>Rikard</dc:creator>
				<category><![CDATA[Announcement]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[document]]></category>
		<category><![CDATA[Dokument]]></category>
		<category><![CDATA[filetypes]]></category>
		<category><![CDATA[format]]></category>
		<category><![CDATA[formats]]></category>
		<category><![CDATA[free documents]]></category>
		<category><![CDATA[fria format]]></category>
		<category><![CDATA[fria standarder]]></category>

		<guid isPermaLink="false">http://blog.gnutiken.se/?p=137</guid>
		<description><![CDATA[Liberate your documents!

Free seminar on free software and document freedom on Document Freedom Day, March 31 at 7PM.

To honor Document Freedom Day, we are proud to announce that there will be a seminar at Gnutiken in Gothenburg March 31 at 7PM. Please help advertise!

Poster (pdf)
Folder/flyer (pdf)

Co-organizers:

	Creative Commons
	Gnutiken
	Free Software Foundation Europe - FSFE
	Fellowship of FSFE
	Föreningen ...]]></description>
			<content:encoded><![CDATA[<div class='en' style='' lang='en' dir='LTR'>
Liberate your documents!</p>
<p>Free seminar on free software and document freedom on Document Freedom Day, March 31 at 7PM.</p>
<p>To honor <a href="http://www.documentfreedom.org/">Document Freedom Day</a>, we are proud to announce that there will be a seminar at Gnutiken in Gothenburg March 31 at 7PM. Please help advertise!</p>
<p><a href="http://gnutiken.se/pdf/DFD_Poster.pdf">Poster (pdf)</a><br />
<a href="http://gnutiken.se/pdf/documentfreedomdayfolder2.pdf">Folder/flyer (pdf)</a></p>
<p>Co-organizers:</p>
<ul>
<li><a href="http://www.creativecommons.se/">Creative Commons</a></li>
<li><a href="http://gnutiken.se">Gnutiken</a></li>
<li><a href="http://www.fsfe.org/">Free Software Foundation Europe &#8211; FSFE</a></li>
<li><a href="http://fellowship.fsfe.org/">Fellowship of FSFE</a></li>
<li><a href="http://ffkp.se">Föreningen Fri Kultur och Programvara &#8211; FFKP</a></li>
</ul>
</div>
<div id="attachment_140" class="wp-caption aligncenter" style="width: 430px"><a href="http://blog.gnutiken.se/wp-content/uploads/2010/03/2010-leaflet-front.png"><img class="size-full wp-image-140" title="2010-leaflet-front" src="http://blog.gnutiken.se/wp-content/uploads/2010/03/2010-leaflet-front.png" alt="DFD - Banner" width="420" height="595" /></a><p class="wp-caption-text">Document Freedom Day - Liberate your documents!</p></div>
<p>
<p><small>This Article is also available in <b>Svenska</b>.</small></p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.gnutiken.se/2010/03/24/document-freedom-seminar-march-31/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Document Freedom Day Planning</title>
		<link>http://blog.gnutiken.se/2010/03/19/document-freedom-day-planning/</link>
		<comments>http://blog.gnutiken.se/2010/03/19/document-freedom-day-planning/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 13:33:01 +0000</pubDate>
		<dc:creator>Rikard</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.gnutiken.se/?p=121</guid>
		<description><![CDATA[
On Monday, March 22 at 5PM, Gnutiken is hosting a planning meeting for the local Document Freedom Day activities by the Gothenburg chapter of the Fellowship of FSFE. Arranged by the Fellowship but open to the public. Welcome!

På måndag den 22 mars, kl 17.00, är det planeringsmöte för Document Freedom Day och de lokala ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.documentfreedom.org"><img class="alignleft size-full wp-image-133" title="dfdlogoforheader" src="http://blog.gnutiken.se/wp-content/uploads/2010/03/dfdlogoforheader.png" alt="Set your documents free" width="78" height="90" /></a>
<div class='en' style='' lang='en' dir='LTR'>
<p>On Monday, March 22 at 5PM, Gnutiken is hosting a planning meeting for the local <a href="http://www.documentfreedom.org/GothenburgFellows">Document Freedom Day</a> activities by the Gothenburg chapter of the Fellowship of FSFE. Arranged by the Fellowship but open to the public. Welcome!</p>
</div>
<div id="attachment_125" class="wp-caption alignright" style="width: 235px"><a href="http://fsfe.org"><img class="size-full wp-image-125 " title="gradient-plussy-medium" src="http://blog.gnutiken.se/wp-content/uploads/2010/03/gradient-plussy-medium.png" alt="" width="225" height="225" /></a><p class="wp-caption-text">Fellowship of the FSFE</p></div>
<p>
<p><small>This Article is also available in <b>Svenska</b>.</small></p>
<p class="wp-flattr-button"></p>]]></content:encoded>
			<wfw:commentRss>http://blog.gnutiken.se/2010/03/19/document-freedom-day-planning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

