]> pere.pagekite.me Git - homepage.git/blobdiff - blog/index.rss
More formatting.
[homepage.git] / blog / index.rss
index d0f798744cb153d83b28031abfa6adfd85cf184c..09c9ccd44f97120b98d39f054a36a867fa8bc925 100644 (file)
@@ -6,6 +6,493 @@
                 <link>http://people.skolelinux.org/pere/blog/</link>
                 <atom:link href="http://people.skolelinux.org/pere/blog/index.rss" rel="self" type="application/rss+xml" />
        
+       <item>
+               <title>Debian init.d boot script example for rsyslog</title>
+               <link>http://people.skolelinux.org/pere/blog/Debian_init_d_boot_script_example_for_rsyslog.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_init_d_boot_script_example_for_rsyslog.html</guid>
+                <pubDate>Sat, 2 Nov 2013 22:40:00 +0100</pubDate>
+               <description>&lt;p&gt;If one of the points of switching to a new init system in Debian is
+&lt;a href=&quot;http://thomas.goirand.fr/blog/?p=147&quot;&gt;to get rid of huge
+init.d scripts&lt;/a&gt;, I doubt we need to switch away from sysvinit and
+init.d scripts at all.  Here is an example init.d script, ie a rewrite
+of /etc/init.d/rsyslog:&lt;/p&gt;
+
+&lt;p&gt;&lt;pre&gt;
+#!/lib/init/init-d-script
+### BEGIN INIT INFO
+# Provides:          rsyslog
+# Required-Start:    $remote_fs $time
+# Required-Stop:     umountnfs $time
+# X-Stop-After:      sendsigs
+# Default-Start:     2 3 4 5
+# Default-Stop:      0 1 6
+# Short-Description: enhanced syslogd
+# Description:       Rsyslog is an enhanced multi-threaded syslogd.
+#                    It is quite compatible to stock sysklogd and can be 
+#                    used as a drop-in replacement.
+### END INIT INFO
+DESC=&quot;enhanced syslogd&quot;
+DAEMON=/usr/sbin/rsyslogd
+&lt;/pre&gt;&lt;/p&gt;
+
+&lt;p&gt;Pretty minimalistic to me... For the record, the original sysv-rc
+script was 137 lines, and the above is just 15 lines, most of it meta
+info/comments.&lt;/p&gt;
+
+&lt;p&gt;How to do this, you ask?  Well, one create a new script
+/lib/init/init-d-script looking something like this:
+
+&lt;p&gt;&lt;pre&gt;
+#!/bin/sh
+
+# Define LSB log_* functions.
+# Depend on lsb-base (&gt;= 3.2-14) to ensure that this file is present
+# and status_of_proc is working.
+. /lib/lsb/init-functions
+
+#
+# Function that starts the daemon/service
+
+#
+do_start()
+{
+       # Return
+       #   0 if daemon has been started
+       #   1 if daemon was already running
+       #   2 if daemon could not be started
+       start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test &gt; /dev/null \
+               || return 1
+       start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \
+               $DAEMON_ARGS \
+               || return 2
+       # Add code here, if necessary, that waits for the process to be ready
+       # to handle requests from services started subsequently which depend
+       # on this one.  As a last resort, sleep for some time.
+}
+
+#
+# Function that stops the daemon/service
+#
+do_stop()
+{
+       # Return
+       #   0 if daemon has been stopped
+       #   1 if daemon was already stopped
+       #   2 if daemon could not be stopped
+       #   other if a failure occurred
+       start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME
+       RETVAL=&quot;$?&quot;
+       [ &quot;$RETVAL&quot; = 2 ] &amp;&amp; return 2
+       # Wait for children to finish too if this is a daemon that forks
+       # and if the daemon is only ever run from this initscript.
+       # If the above conditions are not satisfied then add some other code
+       # that waits for the process to drop all resources that could be
+       # needed by services started subsequently.  A last resort is to
+       # sleep for some time.
+       start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON
+       [ &quot;$?&quot; = 2 ] &amp;&amp; return 2
+       # Many daemons don&#39;t delete their pidfiles when they exit.
+       rm -f $PIDFILE
+       return &quot;$RETVAL&quot;
+}
+
+#
+# Function that sends a SIGHUP to the daemon/service
+#
+do_reload() {
+       #
+       # If the daemon can reload its configuration without
+       # restarting (for example, when it is sent a SIGHUP),
+       # then implement that here.
+       #
+       start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME
+       return 0
+}
+
+SCRIPTNAME=$1
+scriptbasename=&quot;$(basename $1)&quot;
+echo &quot;SN: $scriptbasename&quot;
+if [ &quot;$scriptbasename&quot; != &quot;init-d-library&quot; ] ; then
+    script=&quot;$1&quot;
+    shift
+    . $script
+else
+    exit 0
+fi
+
+NAME=$(basename $DAEMON)
+PIDFILE=/var/run/$NAME.pid
+
+# Exit if the package is not installed
+#[ -x &quot;$DAEMON&quot; ] || exit 0
+
+# Read configuration variable file if it is present
+[ -r /etc/default/$NAME ] &amp;&amp; . /etc/default/$NAME
+
+# Load the VERBOSE setting and other rcS variables
+. /lib/init/vars.sh
+
+case &quot;$1&quot; in
+  start)
+       [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_daemon_msg &quot;Starting $DESC&quot; &quot;$NAME&quot;
+       do_start
+       case &quot;$?&quot; in
+               0|1) [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_end_msg 0 ;;
+               2) [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_end_msg 1 ;;
+       esac
+       ;;
+  stop)
+       [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_daemon_msg &quot;Stopping $DESC&quot; &quot;$NAME&quot;
+       do_stop
+       case &quot;$?&quot; in
+               0|1) [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_end_msg 0 ;;
+               2) [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_end_msg 1 ;;
+       esac
+       ;;
+  status)
+       status_of_proc &quot;$DAEMON&quot; &quot;$NAME&quot; &amp;&amp; exit 0 || exit $?
+       ;;
+  #reload|force-reload)
+       #
+       # If do_reload() is not implemented then leave this commented out
+       # and leave &#39;force-reload&#39; as an alias for &#39;restart&#39;.
+       #
+       #log_daemon_msg &quot;Reloading $DESC&quot; &quot;$NAME&quot;
+       #do_reload
+       #log_end_msg $?
+       #;;
+  restart|force-reload)
+       #
+       # If the &quot;reload&quot; option is implemented then remove the
+       # &#39;force-reload&#39; alias
+       #
+       log_daemon_msg &quot;Restarting $DESC&quot; &quot;$NAME&quot;
+       do_stop
+       case &quot;$?&quot; in
+         0|1)
+               do_start
+               case &quot;$?&quot; in
+                       0) log_end_msg 0 ;;
+                       1) log_end_msg 1 ;; # Old process is still running
+                       *) log_end_msg 1 ;; # Failed to start
+               esac
+               ;;
+         *)
+               # Failed to stop
+               log_end_msg 1
+               ;;
+       esac
+       ;;
+  *)
+       echo &quot;Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}&quot; &gt;&amp;2
+       exit 3
+       ;;
+esac
+
+:
+&lt;/pre&gt;&lt;/p&gt;
+
+&lt;p&gt;It is based on /etc/init.d/skeleton, and could be improved quite a
+lot.  I did not really polish the approach, so it might not always
+work out of the box, but you get the idea.  I did not try very hard to
+optimize it nor make it more robust either.&lt;/p&gt;
+
+&lt;p&gt;A better argument for switching init system in Debian than reducing
+the size of init scripts (which is a good thing to do anyway), is to
+get boot system that is able to handle the kernel events sensibly and
+robustly, and do not depend on the boot to run sequentially.  The boot
+and the kernel have not behaved sequentially in years.&lt;/p&gt;
+</description>
+       </item>
+       
+       <item>
+               <title>Browser plugin for SPICE (spice-xpi) uploaded to Debian</title>
+               <link>http://people.skolelinux.org/pere/blog/Browser_plugin_for_SPICE__spice_xpi__uploaded_to_Debian.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Browser_plugin_for_SPICE__spice_xpi__uploaded_to_Debian.html</guid>
+                <pubDate>Fri, 1 Nov 2013 11:00:00 +0100</pubDate>
+               <description>&lt;p&gt;&lt;a href=&quot;http://www.spice-space.org/&quot;&gt;The SPICE protocol&lt;/a&gt; for
+remote display access is the preferred solution with oVirt and RedHat
+Enterprise Virtualization, and I was sad to discover the other day
+that the browser plugin needed to use these systems seamlessly was
+missing in Debian.  The &lt;a href=&quot;http://bugs.debian.org/668284&quot;&gt;request
+for a package&lt;/a&gt; was from 2012-04-10 with no progress since
+2013-04-01, so I decided to wrap up a package based on the great work
+from Cajus Pollmeier and put it in a collab-maint maintained git
+repository to get a package I could use.  I would very much like
+others to help me maintain the package (or just take over, I do not
+mind), but as no-one had volunteered so far, I just uploaded it to
+NEW.  I hope it will be available in Debian in a few days.&lt;/p&gt;
+
+&lt;p&gt;The source is now available from
+&lt;a href=&quot;http://anonscm.debian.org/gitweb/?p=collab-maint/spice-xpi.git;a=summary&quot;&gt;http://anonscm.debian.org/gitweb/?p=collab-maint/spice-xpi.git;a=summary&lt;/a&gt;.&lt;/p&gt;
+</description>
+       </item>
+       
+       <item>
+               <title>Teaching vmdebootstrap to create Raspberry Pi SD card images</title>
+               <link>http://people.skolelinux.org/pere/blog/Teaching_vmdebootstrap_to_create_Raspberry_Pi_SD_card_images.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Teaching_vmdebootstrap_to_create_Raspberry_Pi_SD_card_images.html</guid>
+                <pubDate>Sun, 27 Oct 2013 17:00:00 +0100</pubDate>
+               <description>&lt;p&gt;The
+&lt;a href=&quot;http://packages.qa.debian.org/v/vmdebootstrap.html&quot;&gt;vmdebootstrap&lt;/a&gt;
+program is a a very nice system to create virtual machine images.  It
+create a image file, add a partition table, mount it and run
+debootstrap in the mounted directory to create a Debian system on a
+stick.  Yesterday, I decided to try to teach it how to make images for
+&lt;a href=&quot;https://wiki.debian.org/RaspberryPi&quot;&gt;Raspberry Pi&lt;/a&gt;, as part
+of a plan to simplify the build system for
+&lt;a href=&quot;https://wiki.debian.org/FreedomBox&quot;&gt;the FreedomBox
+project&lt;/a&gt;.  The FreedomBox project already uses vmdebootstrap for
+the virtualbox images, but its current build system made multistrap
+based system for Dreamplug images, and it is lacking support for
+Raspberry Pi.&lt;/p&gt;
+
+&lt;p&gt;Armed with the knowledge on how to build &quot;foreign&quot; (aka non-native
+architecture) chroots for Raspberry Pi, I dived into the vmdebootstrap
+code and adjusted it to be able to build armel images on my amd64
+Debian laptop.  I ended up giving vmdebootstrap five new options,
+allowing me to replicate the image creation process I use to make
+&lt;a href=&quot;http://people.skolelinux.org/pere/blog/A_Raspberry_Pi_based_batman_adv_Mesh_network_node.html&quot;&gt;Debian
+Jessie based mesh node images for the Raspberry Pi&lt;/a&gt;.  First, the
+&lt;tt&gt;--foreign /path/to/binfm_handler&lt;/tt&gt; option tell vmdebootstrap to
+call debootstrap with --foreign and to copy the handler into the
+generated chroot before running the second stage.  This allow
+vmdebootstrap to create armel images on an amd64 host.  Next I added
+two new options &lt;tt&gt;--bootsize size&lt;/tt&gt; and &lt;tt&gt;--boottype
+fstype&lt;/tt&gt; to teach it to create a separate /boot/ partition with the
+given file system type, allowing me to create an image with a vfat
+partition for the /boot/ stuff.  I also added a &lt;tt&gt;--variant
+variant&lt;/tt&gt; option to allow me to create smaller images without the
+Debian base system packages installed.  Finally, I added an option
+&lt;tt&gt;--no-extlinux&lt;/tt&gt; to tell vmdebootstrap to not install extlinux
+as a boot loader.  It is not needed on the Raspberry Pi and probably
+most other non-x86 architectures.  The changes were accepted by the
+upstream author of vmdebootstrap yesterday and today, and is now
+available from
+&lt;a href=&quot;http://git.liw.fi/cgi-bin/cgit/cgit.cgi/vmdebootstrap/&quot;&gt;the
+upstream project page&lt;/a&gt;.&lt;/p&gt;
+
+&lt;p&gt;To use it to build a Raspberry Pi image using Debian Jessie, first
+create a small script (the customize script) to add the non-free
+binary blob needed to boot the Raspberry Pi and the APT source
+list:&lt;/p&gt;
+
+&lt;p&gt;&lt;pre&gt;
+#!/bin/sh
+set -e # Exit on first error
+rootdir=&quot;$1&quot;
+cd &quot;$rootdir&quot;
+cat &amp;lt;&amp;lt;EOF &gt; etc/apt/sources.list
+deb http://http.debian.net/debian/ jessie main contrib non-free
+EOF
+# Install non-free binary blob needed to boot Raspberry Pi.  This
+# install a kernel somewhere too.
+wget https://raw.github.com/Hexxeh/rpi-update/master/rpi-update \
+    -O $rootdir/usr/bin/rpi-update
+chmod a+x $rootdir/usr/bin/rpi-update
+mkdir -p $rootdir/lib/modules
+touch $rootdir/boot/start.elf
+chroot $rootdir rpi-update
+&lt;/pre&gt;&lt;/p&gt;
+
+&lt;p&gt;Next, fetch the latest vmdebootstrap script and call it like this
+to build the image:&lt;/p&gt;
+
+&lt;pre&gt;
+sudo ./vmdebootstrap \
+    --variant minbase \
+    --arch armel \
+    --distribution jessie \
+    --mirror http://http.debian.net/debian \
+    --image test.img \
+    --size 600M \
+    --bootsize 64M \
+    --boottype vfat \
+    --log-level debug \
+    --verbose \
+    --no-kernel \
+    --no-extlinux \
+    --root-password raspberry \
+    --hostname raspberrypi \
+    --foreign /usr/bin/qemu-arm-static \
+    --customize `pwd`/customize \
+    --package netbase \
+    --package git-core \
+    --package binutils \
+    --package ca-certificates \
+    --package wget \
+    --package kmod
+&lt;/pre&gt;&lt;/p&gt;
+
+&lt;p&gt;The list of packages being installed are the ones needed by
+rpi-update to make the image bootable on the Raspberry Pi, with the
+exception of netbase, which is needed by debootstrap to find
+/etc/hosts with the minbase variant.  I really wish there was a way to
+set up an Raspberry Pi using only packages in the Debian archive, but
+that is not possible as far as I know, because it boots from the GPU
+using a non-free binary blob.&lt;/p&gt;
+
+&lt;p&gt;The build host need debootstrap, kpartx and qemu-user-static and
+probably a few others installed.  I have not checked the complete
+build dependency list.&lt;/p&gt;
+
+&lt;p&gt;The resulting image will not use the hardware floating point unit
+on the Raspberry PI, because the armel architecture in Debian is not
+optimized for that use.  So the images created will be a bit slower
+than &lt;a href=&quot;http://www.raspbian.org/&quot;&gt;Raspbian&lt;/a&gt; based images.&lt;/p&gt;
+</description>
+       </item>
+       
+       <item>
+               <title>Det er jo makta som er mest sårbar ved massiv overvåkning av Internett</title>
+               <link>http://people.skolelinux.org/pere/blog/Det_er_jo_makta_som_er_mest_s_rbar_ved_massiv_overv_kning_av_Internett.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Det_er_jo_makta_som_er_mest_s_rbar_ved_massiv_overv_kning_av_Internett.html</guid>
+                <pubDate>Sat, 26 Oct 2013 20:30:00 +0200</pubDate>
+               <description>&lt;p&gt;De siste måneders eksponering av
+&lt;a href=&quot;http://www.aftenposten.no/nyheter/uriks/Her-er-Edvard-Snowdens-mest-omtalte-avsloringer-7351734.html&quot;&gt;den
+totale overvåkningen som foregår i den vestlige verden dokumenterer
+hvor sårbare vi er&lt;/a&gt;.  Men det slår meg at de som er mest sårbare
+for dette, myndighetspersoner på alle nivåer, neppe har innsett at de
+selv er de mest interessante personene å lage profiler på, for å kunne
+påvirke dem.&lt;/p&gt;
+
+&lt;p&gt;For å ta et lite eksempel: Stortingets nettsted,
+&lt;a href=&quot;http://www.stortinget.no/&quot;&gt;www.stortinget.no&lt;/a&gt; (og
+forsåvidt også
+&lt;a href=&quot;http://data.stortinget.no/&quot;&gt;data.stortinget.no&lt;/a&gt;),
+inneholder informasjon om det som foregår på Stortinget, og jeg antar
+de største brukerne av informasjonen der er representanter og
+rådgivere på Stortinget.  Intet overraskende med det.  Det som derimot
+er mer skjult er at Stortingets nettsted bruker
+&lt;a href=&quot;http://en.wikipedia.org/wiki/Google_Analytics&quot;&gt;Google
+Analytics&lt;/a&gt;, hvilket gjør at enhver som besøker nettsidene der også
+rapporterer om besøket via Internett-linjer som passerer Sverige,
+England og videre til USA.  Det betyr at informasjon om ethvert besøk
+på stortingets nettsider kan snappes opp av svensk, britisk og USAs
+etterretningsvesen.  De kan dermed holde et øye med hvilke
+Stortingssaker stortingsrepresentantene synes er interessante å sjekke
+ut, og hvilke sider rådgivere og andre på stortinget synes er
+interessant å besøke, når de gjør det og hvilke andre representanter
+som sjekker de samme sidene omtrent samtidig.  Stortingets bruk av
+Google Analytics gjør det dermed enkelt for utenlands etteretning å
+spore representantenes aktivitet og interesse.  Hvis noen av
+representantene bruker Google Mail eller noen andre tjenestene som
+krever innlogging, så vil det være enda enklere å finne ut nøyaktig
+hvilke personer som bruker hvilke nettlesere og dermed knytte
+informasjonen opp til enkeltpersoner på Stortinget.&lt;/p&gt;
+
+&lt;p&gt;Og jo flere nettsteder som bruker Google Analytics, jo bedre
+oversikt over stortingsrepresentantenes lesevaner og interesse blir
+tilgjengelig for svensk, britisk og USAs etterretning.  Hva de kan
+bruke den informasjonen til overlater jeg til leseren å undres
+over.&lt;/p&gt;
+</description>
+       </item>
+       
+       <item>
+               <title>A Raspberry Pi based batman-adv Mesh network node</title>
+               <link>http://people.skolelinux.org/pere/blog/A_Raspberry_Pi_based_batman_adv_Mesh_network_node.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_Raspberry_Pi_based_batman_adv_Mesh_network_node.html</guid>
+                <pubDate>Mon, 21 Oct 2013 11:40:00 +0200</pubDate>
+               <description>&lt;p&gt;The last few days I have been experimenting with
+&lt;a href=&quot;http://www.open-mesh.org/projects/batman-adv/wiki&quot;&gt;the
+batman-adv mesh technology&lt;/a&gt;.  I want to gain some experience to see
+if it will fit &lt;a href=&quot;https://wiki.debian.org/FreedomBox&quot;&gt;the
+Freedombox project&lt;/a&gt;, and together with my neighbors try to build a
+mesh network around the park where I live.  Batman-adv is a layer 2
+mesh system (&quot;ethernet&quot; in other words), where the mesh network appear
+as if all the mesh clients are connected to the same switch.&lt;/p&gt;
+
+&lt;p&gt;My hardware of choice was the Linksys WRT54GL routers I had lying
+around, but I&#39;ve been unable to get them working with batman-adv.  So
+instead, I started playing with a
+&lt;a href=&quot;http://www.raspberrypi.org/&quot;&gt;Raspberry Pi&lt;/a&gt;, and tried to
+get it working as a mesh node.  My idea is to use it to create a mesh
+node which function as a switch port, where everything connected to
+the Raspberry Pi ethernet plug is connected (bridged) to the mesh
+network.  This allow me to hook a wifi base station like the Linksys
+WRT54GL to the mesh by plugging it into a Raspberry Pi, and allow
+non-mesh clients to hook up to the mesh.  This in turn is useful for
+Android phones using &lt;a href=&quot;http://servalproject.org/&quot;&gt;the Serval
+Project&lt;/a&gt; voip client, allowing every one around the playground to
+phone and message each other for free.  The reason is that Android
+phones do not see ad-hoc wifi networks (they are filtered away from
+the GUI view), and can not join the mesh without being rooted.  But if
+they are connected using a normal wifi base station, they can talk to
+every client on the local network.&lt;/p&gt;
+
+&lt;p&gt;To get this working, I&#39;ve created a debian package
+&lt;a href=&quot;https://github.com/petterreinholdtsen/meshfx-node&quot;&gt;meshfx-node&lt;/a&gt;
+and a script
+&lt;a href=&quot;https://github.com/petterreinholdtsen/meshfx-node/blob/master/build-rpi-mesh-node&quot;&gt;build-rpi-mesh-node&lt;/a&gt;
+to create the Raspberry Pi boot image.  I&#39;m using Debian Jessie (and
+not Raspbian), to get more control over the packages available.
+Unfortunately a huge binary blob need to be inserted into the boot
+image to get it booting, but I&#39;ll ignore that for now.  Also, as
+Debian lack support for the CPU features available in the Raspberry
+Pi, the system do not use the hardware floating point unit.  I hope
+the routing performance isn&#39;t affected by the lack of hardware FPU
+support.&lt;/p&gt;
+
+&lt;p&gt;To create an image, run the following with a sudo enabled user
+after inserting the target SD card into the build machine:&lt;/p&gt;
+
+&lt;p&gt;&lt;pre&gt;
+% wget -O build-rpi-mesh-node \
+    https://raw.github.com/petterreinholdtsen/meshfx-node/master/build-rpi-mesh-node
+% sudo bash -x ./build-rpi-mesh-node &gt; build.log 2&gt;&amp;1
+% dd if=/root/rpi/rpi_basic_jessie_$(date +%Y%m%d).img of=/dev/mmcblk0 bs=1M
+%
+&lt;/pre&gt;&lt;/p&gt;
+
+&lt;p&gt;Booting with the resulting SD card on a Raspberry PI with a USB
+wifi card inserted should give you a mesh node.  At least it does for
+me with a the wifi card I am using. The default mesh settings are the
+ones used by the Oslo mesh project at Hackeriet, as I mentioned in
+&lt;a href=&quot;http://people.skolelinux.org/pere/blog/Oslo_community_mesh_network___with_NUUG_and_Hackeriet_at_Hausmania.html&quot;&gt;an
+earlier blog post about this mesh testing&lt;/a&gt;.&lt;/p&gt;
+
+&lt;p&gt;The mesh node was not horribly expensive either.  I bought
+everything over the counter in shops nearby.  If I had ordered online
+from the lowest bidder, the price should be significantly lower:&lt;/p&gt;
+
+&lt;p&gt;&lt;table&gt;
+
+&lt;tr&gt;&lt;th&gt;Supplier&lt;/th&gt;&lt;th&gt;Model&lt;/th&gt;&lt;th&gt;NOK&lt;/th&gt;&lt;/tr&gt;
+&lt;tr&gt;&lt;td&gt;Teknikkmagasinet&lt;/td&gt;&lt;td&gt;Raspberry Pi model B&lt;/td&gt;&lt;td&gt;349.90&lt;/td&gt;&lt;/tr&gt;
+&lt;tr&gt;&lt;td&gt;Teknikkmagasinet&lt;/td&gt;&lt;td&gt;Raspberry Pi type B case&lt;/td&gt;&lt;td&gt;99.90&lt;/td&gt;&lt;/tr&gt;
+&lt;tr&gt;&lt;td&gt;Lefdal&lt;/td&gt;&lt;td&gt;Jensen Air:Link 25150&lt;/td&gt;&lt;td&gt;295.-&lt;/td&gt;&lt;/tr&gt;
+&lt;tr&gt;&lt;td&gt;Clas Ohlson&lt;/td&gt;&lt;td&gt;Kingston 16 GB SD card&lt;/td&gt;&lt;td&gt;199.-&lt;/td&gt;&lt;/tr&gt;
+&lt;tr&gt;&lt;td&gt;Total cost&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;943.80&lt;/td&gt;&lt;/tr&gt;
+
+&lt;/table&gt;&lt;/p&gt;
+
+&lt;p&gt;Now my mesh network at home consist of one laptop in the basement
+connected to my production network, one Raspberry Pi node on the 1th
+floor that can be seen by my neighbor across the park, and one
+play-node I use to develop the image building script.  And some times
+I hook up my work horse laptop to the mesh to test it.  I look forward
+to figuring out what kind of latency the batman-adv setup will give,
+and how much packet loss we will experience around the park. :)&lt;/p&gt;
+</description>
+       </item>
+       
+       <item>
+               <title>Perl library to control the Spykee robot moved to github</title>
+               <link>http://people.skolelinux.org/pere/blog/Perl_library_to_control_the_Spykee_robot_moved_to_github.html</link>
+               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Perl_library_to_control_the_Spykee_robot_moved_to_github.html</guid>
+                <pubDate>Sat, 19 Oct 2013 10:20:00 +0200</pubDate>
+               <description>&lt;p&gt;Back in 2010, I created a Perl library to talk to
+&lt;a href=&quot;http://en.wikipedia.org/wiki/Spykee&quot;&gt;the Spykee robot&lt;/a&gt;
+(with two belts, wifi, USB and Linux) and made it available from my
+web page.  Today I concluded that it should move to a site that is
+easier to use to cooperate with others, and moved it to github.  If
+you got a Spykee robot, you might want to check out
+&lt;a href=&quot;https://github.com/petterreinholdtsen/libspykee-perl&quot;&gt;the
+libspykee-perl github repository&lt;/a&gt;.&lt;/p&gt;
+</description>
+       </item>
+       
        <item>
                <title>Good causes: Debian Outreach Program for Women, EFF documenting the spying and Open access in Norway</title>
                <link>http://people.skolelinux.org/pere/blog/Good_causes__Debian_Outreach_Program_for_Women__EFF_documenting_the_spying_and_Open_access_in_Norway.html</link>
@@ -24,9 +511,10 @@ earmarked&lt;/a&gt; for this initiative.  I donated a few minutes ago, and
 hope you will to. :)&lt;/p&gt;
 
 &lt;p&gt;And the Electronic Frontier Foundation just announced plans to
-create video documentaries about the excessive spying on every
-Internet user that take place these days, and their need to fund the
-work.  I&#39;ve already donated.  Are you next?&lt;/p&gt;
+create &lt;a href=&quot;https://supporters.eff.org/donate/nsa-videos&quot;&gt;video
+documentaries about the excessive spying&lt;/a&gt; on every Internet user that
+take place these days, and their need to fund the work.  I&#39;ve already
+donated.  Are you next?&lt;/p&gt;
 
 &lt;p&gt;For my Norwegian audience, the organisation Studentenes og
 Akademikernes Internasjonale Hjelpefond is collecting signatures for a
@@ -225,756 +713,5 @@ lvresize + resize2fs in tty 2 while installing).&lt;/p&gt;
 </description>
        </item>
        
-       <item>
-               <title>Videos about the Freedombox project - for inspiration and learning</title>
-               <link>http://people.skolelinux.org/pere/blog/Videos_about_the_Freedombox_project___for_inspiration_and_learning.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Videos_about_the_Freedombox_project___for_inspiration_and_learning.html</guid>
-                <pubDate>Fri, 27 Sep 2013 14:10:00 +0200</pubDate>
-               <description>&lt;p&gt;The &lt;a href=&quot;http://www.freedomboxfoundation.org/&quot;&gt;Freedombox
-project&lt;/a&gt; have been going on for a while, and have presented the
-vision, ideas and solution several places.  Here is a little
-collection of videos of talks and presentation of the project.&lt;/p&gt;
-
-&lt;ul&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=ukvUz5taxvA&quot;&gt;FreedomBox -
-2,5 minute marketing film&lt;/a&gt; (Youtube)&lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=SzW25QTVWsE&quot;&gt;Eben Moglen
-discusses the Freedombox on CBS news 2011&lt;/a&gt; (Youtube)&lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=Ae8SZbxfE0g&quot;&gt;Eben Moglen -
-Freedom in the Cloud - Software Freedom, Privacy and and Security for
-Web 2.0 and Cloud computing at ISOC-NY Public Meeting 2010&lt;/a&gt;
-(Youtube)&lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=vNaIji_3xBE&quot;&gt;Fosdem 2011
-Keynote by Eben Moglen presenting the Freedombox&lt;/a&gt; (Youtube)&lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=9bDDUyJSQ9s&quot;&gt;Presentation of
-the Freedombox by James Vasile at Elevate in Gratz 2011&lt;/a&gt; (Youtube)&lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=zQTmnk27g9s&quot;&gt; Freedombox -
-Discovery, Identity, and Trust by Nick Daly at Freedombox Hackfest New
-York City in 2012&lt;/a&gt; (Youtube)&lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=tkbSB4Ba7Ck&quot;&gt;Introduction
-to the Freedombox at Freedombox Hackfest New York City in 2012&lt;/a&gt;
-(Youtube)&lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=z-P2Jaeg0aQ&quot;&gt;Freedom, Out
-of the Box! by Bdale Garbee at linux.conf.au Ballarat, 2012&lt;/a&gt; (Youtube) &lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;https://archive.fosdem.org/2013/schedule/event/freedombox/&quot;&gt;Freedombox
-1.0 by Eben Moglen and Bdale Garbee at Fosdem 2013&lt;/a&gt; (FOSDEM) &lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=e1LpYX2zVYg&quot;&gt;What is the
-FreedomBox today by Bdale Garbee at Debconf13 in Vaumarcus
-2013&lt;/a&gt; (Youtube)&lt;/li&gt;
-
-&lt;/ul&gt;
-
-&lt;p&gt;A larger list is available from
-&lt;a href=&quot;https://wiki.debian.org/FreedomBox/TalksAndPresentations&quot;&gt;the
-Freedombox Wiki&lt;/a&gt;.&lt;/p&gt;
-
-&lt;p&gt;On other news, I am happy to report that Freedombox based on Debian
-Jessie is coming along quite well, and soon both Owncloud and using
-Tor should be available for testers of the Freedombox solution. :) In
-a few weeks I hope everything needed to test it is included in Debian.
-The withsqlite package is already in Debian, and the plinth package is
-pending in NEW.  The third and vital part of that puzzle is the
-metapackage/setup framework, which is still pending an upload.  Join
-us on &lt;a href=&quot;irc://irc.debian.org:6667/%23freedombox&quot;&gt;IRC
-(#freedombox on irc.debian.org)&lt;/a&gt; and
-&lt;a href=&quot;http://lists.alioth.debian.org/mailman/listinfo/freedombox-discuss&quot;&gt;the
-mailing list&lt;/a&gt; if you want to help make this vision come true.&lt;/p&gt;
-</description>
-       </item>
-       
-       <item>
-               <title>Third and probably last beta release of Debian Edu Wheezy</title>
-               <link>http://people.skolelinux.org/pere/blog/Third_and_probably_last_beta_release_of_Debian_Edu_Wheezy.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Third_and_probably_last_beta_release_of_Debian_Edu_Wheezy.html</guid>
-                <pubDate>Mon, 16 Sep 2013 21:30:00 +0200</pubDate>
-               <description>&lt;p&gt;The third wheezy based beta release of Debian Edu was wrapped up
-today.  This is the release announcement from Holger Levsen:&lt;/p&gt;
-
-&lt;blockquote&gt;
-&lt;p&gt;Hi,&lt;/p&gt;
-
-&lt;p&gt;it is my pleasure to announce the third beta release (beta 2 for
-short) of &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
-Skolelinux&lt;/a&gt; based on Debian Wheezy!&lt;/p&gt;
-
-&lt;p&gt;Please test these images extensivly, if no new problems are found
-we plan to do this final Debian Edu Wheezy release this coming
-weekend.  We are not aware of any major problems or blockers in beta2,
-if you find something, please notify us immediately!&lt;/p&gt;
-
-&lt;p&gt;(More about the remaining steps for the Edu Wheezy release in
-another mail to the edu list tonight or tomorrow...)&lt;/p&gt;
-
-&lt;p&gt;Noteworthy changes and software updates for Debian Edu 7.1+edu0~b2
-compared to beta1:&lt;/p&gt;
-
-&lt;ul&gt;
-
-&lt;li&gt;The KDE proxy setup has been adjusted to use the provided wpad.dat. This
-also gets Chromium to use this proxy.&lt;/li&gt;
-&lt;li&gt;Install kdepim-groupware with KDE desktops to make sure korganizer
-understand ical/dav sources.&lt;/li&gt;
-&lt;li&gt;Increased default maximum size of /var/spool/squid and /skole/backup on the
-main server.&lt;/li&gt;
-&lt;li&gt;A source DVD image containing all source packages is now available as well.&lt;/li&gt;
-&lt;li&gt;Updates for chromium (29.0.1547.57-1~deb7u1), imagemagick
-(6.7.7.10-5+deb7u2), php5 (5.4.4-14+deb7u4), libmodplug
-(0.8.8.4-3+deb7u1+git20130828), tiff (4.0.2-6+deb7u2), linux-image
-(3.2.0-4-486_3.2.46-1+deb7u1).&lt;/li&gt;
-
-&lt;/ul&gt;
-
-&lt;p&gt;Where to get it:&lt;/p&gt;
-
-&lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
-
-&lt;ul&gt;
-&lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-CD.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-CD.iso&lt;/a&gt;&lt;/li&gt;
-&lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-CD.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-CD.iso&lt;/a&gt;&lt;/li&gt;
-&lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-CD.iso .&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;p&gt;The SHA1SUM of this image is:  3a1c89f4666df80eebcd46c5bf5fedb866f9472f&lt;/p&gt;
-
-&lt;p&gt;To download the multiarch USB stick ISO release you can use
-&lt;ul&gt;
-&lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-USB.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-USB.iso&lt;/a&gt;&lt;/li&gt;
-&lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-USB.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-USB.iso&lt;/a&gt;&lt;/li&gt;
-&lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-USB.iso .&lt;/li&gt;
-&lt;/ul&gt;
-
-&lt;p&gt;The SHA1SUM of this image is: 702d1718548f401c74bfa6df9f032cc3ee16597e&lt;/p&gt;
-
-&lt;p&gt;The Source DVD image has the filename
-debian-edu-7.1+edu0~b2-source-DVD.iso and the SHA1SUM
-089eed8b3f962db47aae1f6a9685e9bb2fa30ca5 and is available the same way
-as the other isos.&lt;/p&gt;
-
-&lt;p&gt;How to report bugs&lt;/p&gt;
-
-&lt;p&gt;For information how to report bugs please see
-&lt;br&gt;&lt;a href=&quot;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&quot;&gt;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&lt;/a&gt;&lt;/p&gt;
-
-
-&lt;p&gt;About Debian Edu and Skolelinux&lt;/p&gt;
-
-&lt;p&gt;Debian Edu, also known as Skolelinux, is a Linux distribution based
-on Debian providing an out-of-the box environment of a completely
-configured school network. Immediately after installation a school
-server running all services needed for a school network is set up just
-waiting for users and machines being added via GOsa², a comfortable
-Web-UI. A netbooting environment is prepared using PXE, so after
-initial installation of the main server from CD or USB stick all other
-machines can be installed via the network. The provided school server
-provides LDAP database and Kerberos authentication service,
-centralized home directories, DHCP server, web proxy and many other
-services.  The desktop contains more than 60 educational software
-packages and more are available from the Debian archive, and schools
-can choose between KDE, Gnome, LXDE and Xfce desktop environment.&lt;/p&gt;
-
-&lt;p&gt;This is the seventh test release based on Debian Wheezy. Basically
-this is an updated and slightly improved version compared to the
-Squeeze release.&lt;/p&gt;
-
-&lt;p&gt;Notes for upgrades from Alpha Prereleases&lt;/p&gt;
-
-&lt;p&gt;Alpha based installations should reinstall or downgrade the
-versions of gosa and libpam-mklocaluser to the ones used in this beta
-release. Both alpha and beta0 based installations should reinstall or
-deal with gosa.conf manually; there are two options: (1) Keep
-gosa.conf and edit this file as outlined on the mailing list. (2)
-Accept the new version of gosa.conf and replace both contained admin
-password placeholders with the password hashes found in the old one
-(backup copy!). In both cases all users need to change their password
-to make sure a password is set for CIFS access to their home
-directory.&lt;/p&gt;
-
-
-&lt;p&gt;cheers,
-&lt;br&gt;        Holger&lt;/p&gt;
-&lt;/blockquote&gt;
-</description>
-       </item>
-       
-       <item>
-               <title>Recipe to test the Freedombox project on amd64 or Raspberry Pi</title>
-               <link>http://people.skolelinux.org/pere/blog/Recipe_to_test_the_Freedombox_project_on_amd64_or_Raspberry_Pi.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Recipe_to_test_the_Freedombox_project_on_amd64_or_Raspberry_Pi.html</guid>
-                <pubDate>Tue, 10 Sep 2013 14:20:00 +0200</pubDate>
-               <description>&lt;p&gt;I was introduced to the
-&lt;a href=&quot;http://www.freedomboxfoundation.org/&quot;&gt;Freedombox project&lt;/a&gt;
-in 2010, when Eben Moglen presented his vision about serving the need
-of non-technical people to keep their personal information private and
-within the legal protection of their own homes.  The idea is to give
-people back the power over their network and machines, and return
-Internet back to its intended peer-to-peer architecture.  Instead of
-depending on a central service, the Freedombox will give everyone
-control over their own basic infrastructure.&lt;/p&gt;
-
-&lt;p&gt;I&#39;ve intended to join the effort since then, but other tasks have
-taken priority.  But this summers nasty news about the misuse of trust
-and privilege exercised by the &quot;western&quot; intelligence gathering
-communities increased my eagerness to contribute to a point where I
-actually started working on the project a while back.&lt;/p&gt;
-
-&lt;p&gt;The &lt;a href=&quot;https://alioth.debian.org/projects/freedombox/&quot;&gt;initial
-Debian initiative&lt;/a&gt; based on the vision from Eben Moglen, is to
-create a simple and cheap Debian based appliance that anyone can hook
-up in their home and get access to secure and private services and
-communication.  The initial deployment platform have been the
-&lt;a href=&quot;http://www.globalscaletechnologies.com/t-dreamplugdetails.aspx&quot;&gt;Dreamplug&lt;/a&gt;,
-which is a piece of hardware I do not own.  So to be able to test what
-the current Freedombox setup look like, I had to come up with a way to install
-it on some hardware I do have access to.  I have rewritten the
-&lt;a href=&quot;https://github.com/NickDaly/freedom-maker&quot;&gt;freedom-maker&lt;/a&gt;
-image build framework to use .deb packages instead of only copying
-setup into the boot images, and thanks to this rewrite I am able to
-set up any machine supported by Debian Wheezy as a Freedombox, using
-the previously mentioned deb (and a few support debs for packages
-missing in Debian).&lt;/p&gt;
-
-&lt;p&gt;The current Freedombox setup consist of a set of bootstrapping
-scripts
-(&lt;a href=&quot;https://github.com/petterreinholdtsen/freedombox-setup&quot;&gt;freedombox-setup&lt;/a&gt;),
-and a administrative web interface
-(&lt;a href=&quot;https://github.com/NickDaly/Plinth&quot;&gt;plinth&lt;/a&gt; + exmachina +
-withsqlite), as well as a privacy enhancing proxy based on
-&lt;a href=&quot;http://packages.qa.debian.org/privoxy&quot;&gt;privoxy&lt;/a&gt;
-(freedombox-privoxy).  There is also a web/javascript based XMPP
-client (&lt;a href=&quot;http://packages.qa.debian.org/jwchat&quot;&gt;jwchat&lt;/a&gt;)
-trying (unsuccessfully so far) to talk to the XMPP server
-(&lt;a href=&quot;http://packages.qa.debian.org/ejabberd&quot;&gt;ejabberd&lt;/a&gt;).  The
-web interface is pluggable, and the goal is to use it to enable OpenID
-services, mesh network connectivity, use of TOR, etc, etc.  Not much of
-this is really working yet, see
-&lt;a href=&quot;https://github.com/NickDaly/freedombox-todos/blob/master/TODO&quot;&gt;the
-project TODO&lt;/a&gt; for links to GIT repositories.  Most of the code is
-on github at the moment.  The HTTP proxy is operational out of the
-box, and the admin web interface can be used to add/remove plinth
-users.  I&#39;ve not been able to do anything else with it so far, but
-know there are several branches spread around github and other places
-with lots of half baked features.&lt;/p&gt;
-
-&lt;p&gt;Anyway, if you want to have a look at the current state, the
-following recipes should work to give you a test machine to poke
-at.&lt;/p&gt;
-
-&lt;p&gt;&lt;strong&gt;Debian Wheezy amd64&lt;/strong&gt;&lt;/p&gt;
-
-&lt;ol&gt;
-
-&lt;li&gt;Fetch normal Debian Wheezy installation ISO.&lt;/li&gt;
-&lt;li&gt;Boot from it, either as CD or USB stick.&lt;/li&gt;
-&lt;li&gt;&lt;p&gt;Press [tab] on the boot prompt and add this as a boot argument
-to the Debian installer:&lt;p&gt;
-&lt;pre&gt;url=&lt;a href=&quot;http://www.reinholdtsen.name/freedombox/preseed-wheezy.dat&quot;&gt;http://www.reinholdtsen.name/freedombox/preseed-wheezy.dat&lt;/a&gt;&lt;/pre&gt;&lt;/li&gt;
-
-&lt;li&gt;Answer the few language/region/password questions and pick disk to
-install on.&lt;/li&gt;
-
-&lt;li&gt;When the installation is finished and the machine have rebooted a
-few times, your Freedombox is ready for testing.&lt;/li&gt;
-
-&lt;/ol&gt;
-
-&lt;p&gt;&lt;strong&gt;Raspberry Pi Raspbian&lt;/strong&gt;&lt;/p&gt;
-
-&lt;ol&gt;
-
-&lt;li&gt;Fetch a Raspbian SD card image, create SD card.&lt;/li&gt;
-&lt;li&gt;Boot from SD card, extend file system to fill the card completely.&lt;/li&gt;
-&lt;li&gt;&lt;p&gt;Log in and add this to /etc/sources.list:&lt;/p&gt;
-&lt;pre&gt;
-deb &lt;a href=&quot;http://www.reinholdtsen.name/freedombox/&quot;&gt;http://www.reinholdtsen.name/freedombox&lt;/a&gt; wheezy main
-&lt;/pre&gt;&lt;/li&gt;
-&lt;li&gt;&lt;p&gt;Run this as root:&lt;/p&gt;
-&lt;pre&gt;
-wget -O - http://www.reinholdtsen.name/freedombox/BE1A583D.asc | \
-   apt-key add -
-apt-get update
-apt-get install freedombox-setup
-/usr/lib/freedombox/setup
-&lt;/pre&gt;&lt;/li&gt;
-&lt;li&gt;Reboot into your freshly created Freedombox.&lt;/li&gt;
-
-&lt;/ol&gt;
-
-&lt;p&gt;You can test it on other architectures too, but because the
-freedombox-privoxy package is binary, it will only work as intended on
-the architectures where I have had time to build the binary and put it
-in my APT repository.  But do not let this stop you.  It is only a
-short &quot;&lt;tt&gt;apt-get source -b freedombox-privoxy&lt;/tt&gt;&quot; away. :)&lt;/p&gt;
-
-&lt;p&gt;Note that by default Freedombox is a DHCP server on the
-192.168.1.0/24 subnet, so if this is your subnet be careful and turn
-off the DHCP server by running &quot;&lt;tt&gt;update-rc.d isc-dhcp-server
-disable&lt;/tt&gt;&quot; as root.&lt;/p&gt;
-
-&lt;p&gt;Please let me know if this works for you, or if you have any
-problems.  We gather on the IRC channel
-&lt;a href=&quot;irc://irc.debian.org:6667/%23freedombox&quot;&gt;#freedombox&lt;/a&gt; on
-irc.debian.org and the
-&lt;a href=&quot;http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/freedombox-discuss&quot;&gt;project
-mailing list&lt;/a&gt;.&lt;/p&gt;
-
-&lt;p&gt;Once you get your freedombox operational, you can visit
-&lt;tt&gt;http://your-host-name:8001/&lt;/tt&gt; to see the state of the plint
-welcome screen (dead end - do not be surprised if you are unable to
-get past it), and next visit &lt;tt&gt;http://your-host-name:8001/help/&lt;/tt&gt;
-to look at the rest of plinth.  The default user is &#39;admin&#39; and the
-default password is &#39;secret&#39;.&lt;/p&gt;
-</description>
-       </item>
-       
-       <item>
-               <title>Datalagringsdirektivet gjør at Oslo Høyre og Arbeiderparti ikke får min stemme i år</title>
-               <link>http://people.skolelinux.org/pere/blog/Datalagringsdirektivet_gj_r_at_Oslo_H_yre_og_Arbeiderparti_ikke_f_r_min_stemme_i__r.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Datalagringsdirektivet_gj_r_at_Oslo_H_yre_og_Arbeiderparti_ikke_f_r_min_stemme_i__r.html</guid>
-                <pubDate>Sun, 8 Sep 2013 20:40:00 +0200</pubDate>
-               <description>&lt;p&gt;I 2011 raderte et stortingsflertall bestående av Høyre og
-Arbeiderpartiet vekk en betydelig del av privatsfæren til det norske
-folk.  Det ble vedtatt at det skulle registreres og lagres i et halvt
-år hvor alle som bærer på en mobiltelefon befinner seg, hvem de
-snakker med og hvor lenge de snakket sammen.  Det skal også
-registreres hvem de sendte SMS-meldinger til, hvem en har sendt epost
-til, og hvilke nett-tjenere en besøkte.  Saken er kjent som
-&lt;a href=&quot;http://beta.holderdeord.no/issues/innfore-datalagringsdirektivet&quot;&gt;Datalagringsdirektivet
-(DLD)&lt;/a&gt;, og innebærer at alle innbyggerne og andre innenfor Norges
-grenser overvåkes døgnet rundt.  Det ble i praksis innført brev og
-besøkskontroll av hele befolkningen.  Rapporter fra de landene som
-allerede har innført slik total lagring av borgernes
-kommunikasjonsmønstre forteller at det ikke hjelper i
-kriminalitetsbekjempelsen.  Den norske prislappen blir mange hundre
-millioner, uten at det ser ut til å bidra positivt til politiets
-arbeide.  Jeg synes flere hundre millioner i stedet burde vært brukt
-på noe som kan dokumenteres å ha effekt i kriminalitetsbekjempelsen.
-Se mer på
-&lt;a href=&quot;http://no.wikipedia.org/wiki/Datalagringsdirektivet&quot;&gt;Wikipedia&lt;/a&gt;
-og &lt;a href=&quot;http://www.uhuru.biz/?cat=84&quot;&gt;Jon Wessel-Aas&lt;/a&gt;.&lt;/p&gt;
-
-&lt;p&gt;Hva er problemet, tenkter du kanskje?  Et åpenbart problem er at
-medienes kildevern i praksis blir radert ut.  Den innsamlede
-informasjonen gjør det mulig å finne ut hvem som har snakket med
-journalister på telefon, SMS og epost, og hvem som har vært i nærheten
-av journalister så sant begge bar med seg en telefon.  Et annet er at
-advokatvernet blir sterkt redusert, der politiet kan finne ut hvem
-som har snakket med en advokat når, eller vært i møter en med advokat.
-Et tredje er at svært personlig informasjon kan avledes fra hvilke
-nettsteder en har besøkt.  Har en besøkt hivnorge.no,
-swingersnorge.com eller andre sider som kan brukes til avlede
-interesser som hører til privatsfæren, vil denne informasjonen være
-tilgjengelig takket være datalagringsdirektivet.&lt;/p&gt;
-
-&lt;p&gt;De fleste partiene var mot, kun to partier stemte for.  Høyre og
-Arbeiderpartiet.  Og både Høyre og Arbeiderpartiet i Oslo har
-DLD-forkjempere på toppen av sine lister (har ikke sjekket de andre
-fylkene).  Det er dermed helt uaktuelt for meg å stemme på disse
-partiene.  Her er oversikten over partienes valglister i Oslo, med
-informasjon om hvem som stemte hva i første DLD-votering i Stortinget,
-basert på informasjon fra mine venner i 
-&lt;a href=&quot;http://beta.holderdeord.no/votes/1301946411e&quot;&gt;Holder de
-Ord&lt;/a&gt; samt &lt;a href=&quot;http://data.stortinget.no/&quot;&gt;data.stortinget.no&lt;/a&gt;.
-Først ut er stortingslista fra Høyre for Oslo:&lt;/p&gt;
-
-&lt;style type=&quot;text/css&quot;&gt;
-.for    {background-color:#F5A9A9;}
-.mot    {background-color:#A9F5BC;}
-.ukjent { }
-&lt;/style&gt;
-
-&lt;table&gt;
-&lt;tr&gt;&lt;th&gt;#&lt;/th&gt;&lt;th&gt;Navn, fødselsår og valgkrets&lt;/th&gt;&lt;th&gt;Stemme/kommentar&lt;/th&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;for&quot;&gt;&lt;td&gt;1.&lt;/td&gt;
-&lt;td&gt;Ine Marie Eriksen Søreide (1976), Gamle Oslo&lt;/td&gt;
-&lt;td&gt;Stemte for DLD&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;mot&quot;&gt;&lt;td&gt;2.&lt;/td&gt;
-&lt;td&gt;Nikolai Astrup (1978), Frogner&lt;/td&gt;
-&lt;td&gt;Stemte mot DLD&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;mot&quot;&gt;&lt;td&gt;3.&lt;/td&gt;
-&lt;td&gt;Michael Tetzschner (1954), Vestre Aker&lt;/td&gt;
-&lt;td&gt;Stemte mot DLD&lt;/td&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;4.&lt;/td&gt;
-&lt;td&gt;Kristin Vinje (1963), Nordre Aker&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;5.&lt;/td&gt;
-&lt;td&gt;Mudassar Hussain Kapur (1976), Nordstrand&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;6.&lt;/td&gt;
-&lt;td&gt;Stefan Magnus B. Heggelund (1984), Grünerløkka&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;7.&lt;/td&gt;
-&lt;td&gt;Heidi Nordby Lunde (1973), Grünerløkka&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;8.&lt;/td&gt;
-&lt;td&gt;Frode Helgerud (1950), Frogner&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;9.&lt;/td&gt;
-&lt;td&gt;Afshan Rafiq (1975), Stovner&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;10.&lt;/td&gt;
-&lt;td&gt;Astrid Nøklebye Heiberg (1936), Frogner&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;11.&lt;/td&gt;
-&lt;td&gt;Camilla Strandskog (1984) St.Hanshaugen&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;12.&lt;/td&gt;
-&lt;td&gt;John Christian Elden (1967), Ullern&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;13.&lt;/td&gt;
-&lt;td&gt;Berit Solli (1972), Alna&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;14.&lt;/td&gt;
-&lt;td&gt;Ola Kvisgaard (1963), Frogner&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;15.&lt;/td&gt;
-&lt;td&gt;James Stove Lorentzen (1957), Vestre Aker&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;16.&lt;/td&gt;
-&lt;td&gt;Gülsüm Koc (1987), Stovner&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;17.&lt;/td&gt;
-&lt;td&gt;Jon Ole Whist (1976), Grünerløkka&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;18.&lt;/td&gt;
-&lt;td&gt;Maren Eline Malthe-Sørenssen (1971), Vestre Aker&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;19.&lt;/td&gt;
-&lt;td&gt;Ståle Hagen (1968), Søndre Nordstrand&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;20.&lt;/td&gt;
-&lt;td&gt;Kjell Omdal Erichsen (1978), Sagene&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;21.&lt;/td&gt;
-&lt;td&gt;Saida R. Begum (1987), Grünerløkka&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;22.&lt;/td&gt;
-&lt;td&gt;Torkel Brekke (1970), Nordre Aker&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;23.&lt;/td&gt;
-&lt;td&gt;Sverre K. Seeberg (1950), Vestre Aker&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;24.&lt;/td&gt;
-&lt;td&gt;Julie Margrethe Brodtkorb (1974), Ullern&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt;25.&lt;/td&gt;
-&lt;td&gt;Fabian Stang (1955), Frogner&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;/table&gt;
-
-&lt;p&gt;Deretter har vi stortingslista fra Arbeiderpartiet for Oslo:&lt;/p&gt;
-
-&lt;table&gt;
-
-&lt;tr&gt;&lt;th&gt;#&lt;/th&gt;&lt;th&gt;Navn, fødselsår og valgkrets&lt;/th&gt;&lt;th&gt;Stemme/kommentar&lt;/th&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;for&quot;&gt;&lt;td&gt;1.&lt;/td&gt;
-&lt;td&gt;Jens Stoltenberg (1959), Frogner&lt;/td&gt;
-&lt;td&gt;Ikke til stede i Stortinget, leder av regjeringen som fremmet forslaget&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;for&quot;&gt;&lt;td&gt;2.&lt;/td&gt;
-&lt;td&gt;Hadia Tajik (1983), Grünerløkka&lt;/td&gt;
-&lt;td&gt;Stemte for DLD&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;for&quot;&gt;&lt;td&gt; 3.&lt;/td&gt;
-&lt;td&gt;Jonas Gahr Støre (1960), Vestre Aker&lt;/td&gt;
-&lt;td&gt;Ikke til stede i Stortinget, medlem av regjeringen som fremmet forslaget&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;for&quot;&gt;&lt;td&gt; 4.&lt;/td&gt;
-&lt;td&gt;Marianne Marthinsen (1980), Grünerløkka&lt;/td&gt;
-&lt;td&gt;Stemte for DLD&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;for&quot;&gt;&lt;td&gt; 5.&lt;/td&gt;
-&lt;td&gt;Jan Bøhler (1952), Alna&lt;/td&gt;
-&lt;td&gt;Stemte for DLD&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;for&quot;&gt;&lt;td&gt; 6.&lt;/td&gt;
-&lt;td&gt;Marit Nybakk (1947), Frogner&lt;/td&gt;
-&lt;td&gt;Stemte for DLD&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;for&quot;&gt;&lt;td&gt; 7.&lt;/td&gt;
-&lt;td&gt;Truls Wickholm (1978), Sagene&lt;/td&gt;
-&lt;td&gt;Stemte for DLD&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt; 8.&lt;/td&gt;
-&lt;td&gt;Prableen Kaur (1993), Grorud&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt; 9.&lt;/td&gt;
-&lt;td&gt;Vegard Grøslie Wennesland (1983), St.Hanshaugen&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt; 10.&lt;/td&gt;
-&lt;td&gt;Inger Helene Vaaten (1975), Grorud&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt; 11.&lt;/td&gt;
-&lt;td&gt;Ivar Leveraas (1939), Alna&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt; 12.&lt;/td&gt;
-&lt;td&gt;Grete Haugdal (1971), Gamle Oslo&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt; 13.&lt;/td&gt;
-&lt;td&gt;Olav Tønsberg (1948), Alna&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt; 14.&lt;/td&gt;
-&lt;td&gt;Khamshajiny Gunaratnam (1988), Grorud&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt; 15.&lt;/td&gt;
-&lt;td&gt;Fredrik Mellem (1969), Sagene&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt; 16.&lt;/td&gt;
-&lt;td&gt;Brit Axelsen (1945), Stovner&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt; 17.&lt;/td&gt;
-&lt;td&gt;Dag Bayegan-Harlem (1977), Ullern&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt; 18.&lt;/td&gt;
-&lt;td&gt;Kristin Sandaker (1963), Østeinsjø&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt; 19.&lt;/td&gt;
-&lt;td&gt;Bashe Musse (1965), Grünerløkka&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt; 20.&lt;/td&gt;
-&lt;td&gt;Torunn Kanutte Husvik (1983), St. Hanshaugen&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt; 21.&lt;/td&gt;
-&lt;td&gt;Steinar Andersen (1947), Nordstrand&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt; 22.&lt;/td&gt;
-&lt;td&gt;Anne Cathrine Berger (1972), Sagene&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt; 23.&lt;/td&gt;
-&lt;td&gt;Khalid Mahmood (1959), Østensjø&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt; 24.&lt;/td&gt;
-&lt;td&gt;Munir Jaber (1990), Alna&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;tr class=&quot;ukjent&quot;&gt;&lt;td&gt; 25.&lt;/td&gt;
-&lt;td&gt;Libe Solberg Rieber-Mohn (1965), Frogner&lt;/td&gt;
-&lt;td&gt;Ikke til stede&lt;/td&gt;&lt;/tr&gt;
-
-&lt;/table&gt;
-
-&lt;p&gt;Hvilket parti får så min stemme i år.  Jeg tror det blir
-&lt;a href=&quot;http://piratpartiet.no/&quot;&gt;Piratpartiet&lt;/a&gt;.  Hvis de kan bidra
-til at det kommer noen inn på Stortinget med teknisk peiling, så får
-kanskje ikke overvåkningsgalskapen like fritt spillerom som det har
-hatt så langt.&lt;/p&gt;
-
-</description>
-       </item>
-       
-       <item>
-               <title>Second beta release (beta 1) of Debian Edu/Skolelinux based on Debian Wheezy</title>
-               <link>http://people.skolelinux.org/pere/blog/Second_beta_release__beta_1__of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Second_beta_release__beta_1__of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</guid>
-                <pubDate>Thu, 22 Aug 2013 09:30:00 +0200</pubDate>
-               <description>&lt;p&gt;The second wheezy based beta release of Debian Edu was wrapped up
-today, slightly delayed because of some bugs in the initial Windows
-integration fixes .  This is the release announcement:&lt;/p&gt;
-
-&lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.1+edu0~b1 released 2013-08-22&lt;/strong&gt;&lt;/p&gt;
-
-&lt;p&gt;These are the release notes for Debian Edu / Skolelinux
-7.1+edu0~b1, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
-
-&lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
-
-&lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
-Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
-out-of-the box environment of a completely configured school
-network. Immediately after installation a school server running all
-services needed for a school network is set up just waiting for users
-and machines being added via GOsa², a comfortable Web-UI. A netbooting
-environment is prepared using PXE, so after initial installation of
-the main server from CD or USB stick all other machines can be
-installed via the network. The provided school server provides LDAP
-database and Kerberos authentication service, centralized home
-directories, DHCP server, web proxy and many other services. The
-desktop contains
-&lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;more
-than 60 educational software packages&lt;/a&gt; and more are available from
-the Debian archive, and schools can choose between KDE, Gnome, LXDE
-and Xfce desktop environment.&lt;/p&gt;
-
-&lt;p&gt;This is the sixth test release based on Debian Wheezy. Basically this
-is an updated and slightly improved version compared to the Squeeze
-release.&lt;/p&gt;
-
-&lt;p&gt;ALERT: Alpha based installations should reinstall or downgrade the
-versions of gosa and libpam-mklocaluser to the ones used in this beta
-release. Both alpha and beta0 based installations should reinstall or
-deal with gosa.conf manually; there are two options: (1) Keep
-gosa.conf and edit this file as outlined
-&lt;a href=&quot;http://lists.debian.org/debian-edu/2013/08/msg00127.html&quot;&gt;on
-the mailing list&lt;/a&gt;. (2) Accept the new version of gosa.conf and
-replace both contained admin password placeholders with the password
-hashes found in the old one (backup copy!). In both cases every user
-need to change their their password to make sure a password is set for
-CIFS access to their home directory.&lt;/p&gt;
-
-&lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
-
-&lt;ul&gt;
-
-&lt;li&gt;Added ssh askpass packages to default installation, to ensure ssh
-    work also without a attached tty.&lt;/li&gt;
-&lt;li&gt;Add the command-not-found package to the default installation to
-    make it easier to figure out where to find missing command line
-    tools. Please note, that the command &#39;update-command-not-found&#39;
-    has to be run as root to actually make it useful (internet access
-    required).&lt;/li&gt;
-
-&lt;/ul&gt;
-
-&lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
-
-&lt;ul&gt;
-
-&lt;li&gt;Adjusted the USB stick ISO image build to include every tool
-needed for desktop=xfce installations.&lt;/li&gt;
-&lt;li&gt;Adjust thin-client-server task to work when installing from USB
-stick ISO image.&lt;/li&gt;
-&lt;li&gt;Made new grub artwork (changed png from indexed to RGB format).&lt;/li&gt;
-&lt;li&gt;Minor cleanup in the CUPS setup.&lt;/li&gt;
-&lt;li&gt;Make sure that bootstrapping of the Samba domain really happens
-    during installation of the main server and adjust SID handling to
-    cope with this.&lt;/li&gt;
-&lt;li&gt;Make Samba passwords changeable (again) via GOsa².&lt;/li&gt;
-&lt;li&gt;Fix generation of LM and NT password hashes via GOsa² to avoid
-    empty password hashes.&lt;/li&gt;
-&lt;li&gt;Adapted Samba machine domain joining to latest change in the
-    smbldap-tools Perl package, fixing bugs blocking Windows machines
-    from joining the Samba domain.&lt;/li&gt;
-
-&lt;/ul&gt;
-
-&lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
-
-&lt;ul&gt;
-
-&lt;li&gt;KDE fails to understand the wpad.dat file provided, causing it to
-    not use the http proxy as it should.&lt;/li&gt;
-&lt;li&gt;Chromium also fails to use the proxy when using the KDE desktop
-    (using the KDE configuration).&lt;/li&gt;
-
-&lt;/ul&gt;
-
-&lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
-
-&lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
-
-&lt;ul&gt;
-
-&lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-CD.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-CD.iso&lt;/a&gt;&lt;/li&gt;
-
-&lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-CD.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-CD.iso&lt;/a&gt;&lt;/li&gt;
-
-&lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-CD.iso .&lt;/li&gt;
-
-&lt;/ul&gt;
-
-&lt;p&gt;The MD5SUM of this image is: 1e357f80b55e703523f2254adde6d78b
-&lt;br&gt;The SHA1SUM of this image is: 7157f9be5fd27c7694d713c6ecfed61c3edda3b2&lt;/p&gt;
-
-&lt;p&gt;To download the multiarch USB stick ISO release you can use&lt;/p&gt;
-
-&lt;ul&gt;
-
-&lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-USB.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-USB.iso&lt;/a&gt;&lt;/li&gt;
-&lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-USB.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-USB.iso&lt;/a&gt;&lt;/li&gt;
-&lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-USB.iso .&lt;/li&gt;
-
-&lt;/ul&gt;
-
-&lt;p&gt;The MD5SUM of this image is: 7a8408ead59cf7e3cef25afb6e91590b
-&lt;br&gt;The SHA1SUM of this image is: f1817c031f02790d5edb3bfa0dcf8451088ad119&lt;/p&gt;
-
-
-&lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
-
-&lt;p&gt;&lt;a href=&quot;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&quot;&gt;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&lt;/a&gt;
-</description>
-       </item>
-       
-       <item>
-               <title>Intel 180 SSD disk with Lenovo firmware can not use Intel firmware</title>
-               <link>http://people.skolelinux.org/pere/blog/Intel_180_SSD_disk_with_Lenovo_firmware_can_not_use_Intel_firmware.html</link>
-               <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Intel_180_SSD_disk_with_Lenovo_firmware_can_not_use_Intel_firmware.html</guid>
-                <pubDate>Sun, 18 Aug 2013 14:00:00 +0200</pubDate>
-               <description>&lt;p&gt;Earlier, I reported about
-&lt;a href=&quot;http://people.skolelinux.org/pere/blog/How_to_fix_a_Thinkpad_X230_with_a_broken_180_GB_SSD_disk.html&quot;&gt;my
-problems using an Intel SSD 520 Series 180 GB disk&lt;/a&gt;.  Friday I was
-told by IBM that the original disk should be thrown away.  And as
-there no longer was a problem if I bricked the firmware, I decided
-today to try to install Intel firmware to replace the Lenovo firmware
-currently on the disk.&lt;/p&gt;
-
-&lt;p&gt;I searched the Intel site for firmware, and found
-&lt;a href=&quot;https://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&amp;ProdId=3472&amp;DwnldID=18363&amp;ProductFamily=Solid-State+Drives+and+Caching&amp;ProductLine=Intel%c2%ae+High+Performance+Solid-State+Drive&amp;ProductProduct=Intel%c2%ae+SSD+520+Series+(180GB%2c+2.5in+SATA+6Gb%2fs%2c+25nm%2c+MLC)&amp;lang=eng&quot;&gt;issdfut_2.0.4.iso&lt;/a&gt;
-(aka Intel SATA Solid-State Drive Firmware Update Tool) which
-according to the site should contain the latest firmware for SSD
-disks.  I inserted the broken disk in one of my spare laptops and
-booted the ISO from a USB stick.  The disk was recognized, but the
-program claimed the newest firmware already were installed and refused
-to insert any Intel firmware.  So no change, and the disk is still
-unable to handle write load. :( I guess the only way to get them
-working would be if Lenovo releases new firmware.  No idea how likely
-that is.  Anyway, just blogging about this test for completeness.  I
-got a working Samsung disk, and see no point in spending more time on
-the broken disks.&lt;/p&gt;
-</description>
-       </item>
-       
         </channel>
 </rss>