]> pere.pagekite.me Git - homepage.git/blob - blog/tags/english/english.rss
fefb7e2fd9f3514ac3d17045e027bf4b170d9414
[homepage.git] / blog / tags / english / english.rss
1 <?xml version="1.0" encoding="utf-8"?>
2 <rss version='2.0' xmlns:lj='http://www.livejournal.org/rss/lj/1.0/'>
3 <channel>
4 <title>Petter Reinholdtsen - Entries tagged english</title>
5 <description>Entries tagged english</description>
6 <link>http://people.skolelinux.org/pere/blog/</link>
7
8
9 <item>
10 <title>Debian init.d boot script example for rsyslog</title>
11 <link>http://people.skolelinux.org/pere/blog/Debian_init_d_boot_script_example_for_rsyslog.html</link>
12 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_init_d_boot_script_example_for_rsyslog.html</guid>
13 <pubDate>Sat, 2 Nov 2013 22:40:00 +0100</pubDate>
14 <description>&lt;p&gt;If one of the points of switching to a new init system in Debian is
15 &lt;a href=&quot;http://thomas.goirand.fr/blog/?p=147&quot;&gt;to get rid of huge
16 init.d scripts&lt;/a&gt;, I doubt we need to switch away from sysvinit and
17 init.d scripts at all. Here is an example init.d script, ie a rewrite
18 of /etc/init.d/rsyslog:&lt;/p&gt;
19
20 &lt;p&gt;&lt;pre&gt;
21 #!/lib/init/init-d-script
22 ### BEGIN INIT INFO
23 # Provides: rsyslog
24 # Required-Start: $remote_fs $time
25 # Required-Stop: umountnfs $time
26 # X-Stop-After: sendsigs
27 # Default-Start: 2 3 4 5
28 # Default-Stop: 0 1 6
29 # Short-Description: enhanced syslogd
30 # Description: Rsyslog is an enhanced multi-threaded syslogd.
31 # It is quite compatible to stock sysklogd and can be
32 # used as a drop-in replacement.
33 ### END INIT INFO
34 DESC=&quot;enhanced syslogd&quot;
35 DAEMON=/usr/sbin/rsyslogd
36 &lt;/pre&gt;&lt;/p&gt;
37
38 &lt;p&gt;Pretty minimalistic to me... For the record, the original sysv-rc
39 script was 137 lines, and the above is just 15 lines, most of the meta
40 info/comments.&lt;/p&gt;
41
42 &lt;p&gt;How to do this, you ask? Well, one create a new script
43 /lib/init/init-d-script looking something like this:
44
45 &lt;p&gt;&lt;pre&gt;
46 #!/bin/sh
47
48 # Define LSB log_* functions.
49 # Depend on lsb-base (&gt;= 3.2-14) to ensure that this file is present
50 # and status_of_proc is working.
51 . /lib/lsb/init-functions
52
53 #
54 # Function that starts the daemon/service
55
56 #
57 do_start()
58 {
59 # Return
60 # 0 if daemon has been started
61 # 1 if daemon was already running
62 # 2 if daemon could not be started
63 start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test &gt; /dev/null \
64 || return 1
65 start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \
66 $DAEMON_ARGS \
67 || return 2
68 # Add code here, if necessary, that waits for the process to be ready
69 # to handle requests from services started subsequently which depend
70 # on this one. As a last resort, sleep for some time.
71 }
72
73 #
74 # Function that stops the daemon/service
75 #
76 do_stop()
77 {
78 # Return
79 # 0 if daemon has been stopped
80 # 1 if daemon was already stopped
81 # 2 if daemon could not be stopped
82 # other if a failure occurred
83 start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME
84 RETVAL=&quot;$?&quot;
85 [ &quot;$RETVAL&quot; = 2 ] &amp;&amp; return 2
86 # Wait for children to finish too if this is a daemon that forks
87 # and if the daemon is only ever run from this initscript.
88 # If the above conditions are not satisfied then add some other code
89 # that waits for the process to drop all resources that could be
90 # needed by services started subsequently. A last resort is to
91 # sleep for some time.
92 start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON
93 [ &quot;$?&quot; = 2 ] &amp;&amp; return 2
94 # Many daemons don&#39;t delete their pidfiles when they exit.
95 rm -f $PIDFILE
96 return &quot;$RETVAL&quot;
97 }
98
99 #
100 # Function that sends a SIGHUP to the daemon/service
101 #
102 do_reload() {
103 #
104 # If the daemon can reload its configuration without
105 # restarting (for example, when it is sent a SIGHUP),
106 # then implement that here.
107 #
108 start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME
109 return 0
110 }
111
112 SCRIPTNAME=$1
113 scriptbasename=&quot;$(basename $1)&quot;
114 echo &quot;SN: $scriptbasename&quot;
115 if [ &quot;$scriptbasename&quot; != &quot;init-d-library&quot; ] ; then
116 script=&quot;$1&quot;
117 shift
118 . $script
119 else
120 exit 0
121 fi
122
123 NAME=$(basename $DAEMON)
124 PIDFILE=/var/run/$NAME.pid
125
126 # Exit if the package is not installed
127 #[ -x &quot;$DAEMON&quot; ] || exit 0
128
129 # Read configuration variable file if it is present
130 [ -r /etc/default/$NAME ] &amp;&amp; . /etc/default/$NAME
131
132 # Load the VERBOSE setting and other rcS variables
133 . /lib/init/vars.sh
134
135 case &quot;$1&quot; in
136 start)
137 [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_daemon_msg &quot;Starting $DESC&quot; &quot;$NAME&quot;
138 do_start
139 case &quot;$?&quot; in
140 0|1) [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_end_msg 0 ;;
141 2) [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_end_msg 1 ;;
142 esac
143 ;;
144 stop)
145 [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_daemon_msg &quot;Stopping $DESC&quot; &quot;$NAME&quot;
146 do_stop
147 case &quot;$?&quot; in
148 0|1) [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_end_msg 0 ;;
149 2) [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_end_msg 1 ;;
150 esac
151 ;;
152 status)
153 status_of_proc &quot;$DAEMON&quot; &quot;$NAME&quot; &amp;&amp; exit 0 || exit $?
154 ;;
155 #reload|force-reload)
156 #
157 # If do_reload() is not implemented then leave this commented out
158 # and leave &#39;force-reload&#39; as an alias for &#39;restart&#39;.
159 #
160 #log_daemon_msg &quot;Reloading $DESC&quot; &quot;$NAME&quot;
161 #do_reload
162 #log_end_msg $?
163 #;;
164 restart|force-reload)
165 #
166 # If the &quot;reload&quot; option is implemented then remove the
167 # &#39;force-reload&#39; alias
168 #
169 log_daemon_msg &quot;Restarting $DESC&quot; &quot;$NAME&quot;
170 do_stop
171 case &quot;$?&quot; in
172 0|1)
173 do_start
174 case &quot;$?&quot; in
175 0) log_end_msg 0 ;;
176 1) log_end_msg 1 ;; # Old process is still running
177 *) log_end_msg 1 ;; # Failed to start
178 esac
179 ;;
180 *)
181 # Failed to stop
182 log_end_msg 1
183 ;;
184 esac
185 ;;
186 *)
187 echo &quot;Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}&quot; &gt;&amp;2
188 exit 3
189 ;;
190 esac
191
192 :
193 &lt;/pre&gt;&lt;/p&gt;
194
195 &lt;p&gt;It is based on /etc/init.d/skeleton, and could be improved quite a
196 lot. I did not really polish the approach, so it might not always
197 work out of the box, but you get the idea. I did not try very hard to
198 optimize it nor make it more robust either.&lt;/p&gt;
199
200 &lt;p&gt;A better argument for switching init system in Debian than reducing
201 the size of init scripts (which is a good thing to do anyway), is to
202 get boot system that is able to handle the kernel events sensibly and
203 robustly, and do not depend on the boot to run sequentially. The boot
204 and the kernel have not behaved sequentially in year.&lt;/p&gt;
205 </description>
206 </item>
207
208 <item>
209 <title>Browser plugin for SPICE (spice-xpi) uploaded to Debian</title>
210 <link>http://people.skolelinux.org/pere/blog/Browser_plugin_for_SPICE__spice_xpi__uploaded_to_Debian.html</link>
211 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Browser_plugin_for_SPICE__spice_xpi__uploaded_to_Debian.html</guid>
212 <pubDate>Fri, 1 Nov 2013 11:00:00 +0100</pubDate>
213 <description>&lt;p&gt;&lt;a href=&quot;http://www.spice-space.org/&quot;&gt;The SPICE protocol&lt;/a&gt; for
214 remote display access is the preferred solution with oVirt and RedHat
215 Enterprise Virtualization, and I was sad to discover the other day
216 that the browser plugin needed to use these systems seamlessly was
217 missing in Debian. The &lt;a href=&quot;http://bugs.debian.org/668284&quot;&gt;request
218 for a package&lt;/a&gt; was from 2012-04-10 with no progress since
219 2013-04-01, so I decided to wrap up a package based on the great work
220 from Cajus Pollmeier and put it in a collab-maint maintained git
221 repository to get a package I could use. I would very much like
222 others to help me maintain the package (or just take over, I do not
223 mind), but as no-one had volunteered so far, I just uploaded it to
224 NEW. I hope it will be available in Debian in a few days.&lt;/p&gt;
225
226 &lt;p&gt;The source is now available from
227 &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;
228 </description>
229 </item>
230
231 <item>
232 <title>Teaching vmdebootstrap to create Raspberry Pi SD card images</title>
233 <link>http://people.skolelinux.org/pere/blog/Teaching_vmdebootstrap_to_create_Raspberry_Pi_SD_card_images.html</link>
234 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Teaching_vmdebootstrap_to_create_Raspberry_Pi_SD_card_images.html</guid>
235 <pubDate>Sun, 27 Oct 2013 17:00:00 +0100</pubDate>
236 <description>&lt;p&gt;The
237 &lt;a href=&quot;http://packages.qa.debian.org/v/vmdebootstrap.html&quot;&gt;vmdebootstrap&lt;/a&gt;
238 program is a a very nice system to create virtual machine images. It
239 create a image file, add a partition table, mount it and run
240 debootstrap in the mounted directory to create a Debian system on a
241 stick. Yesterday, I decided to try to teach it how to make images for
242 &lt;a href=&quot;https://wiki.debian.org/RaspberryPi&quot;&gt;Raspberry Pi&lt;/a&gt;, as part
243 of a plan to simplify the build system for
244 &lt;a href=&quot;https://wiki.debian.org/FreedomBox&quot;&gt;the FreedomBox
245 project&lt;/a&gt;. The FreedomBox project already uses vmdebootstrap for
246 the virtualbox images, but its current build system made multistrap
247 based system for Dreamplug images, and it is lacking support for
248 Raspberry Pi.&lt;/p&gt;
249
250 &lt;p&gt;Armed with the knowledge on how to build &quot;foreign&quot; (aka non-native
251 architecture) chroots for Raspberry Pi, I dived into the vmdebootstrap
252 code and adjusted it to be able to build armel images on my amd64
253 Debian laptop. I ended up giving vmdebootstrap five new options,
254 allowing me to replicate the image creation process I use to make
255 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/A_Raspberry_Pi_based_batman_adv_Mesh_network_node.html&quot;&gt;Debian
256 Jessie based mesh node images for the Raspberry Pi&lt;/a&gt;. First, the
257 &lt;tt&gt;--foreign /path/to/binfm_handler&lt;/tt&gt; option tell vmdebootstrap to
258 call debootstrap with --foreign and to copy the handler into the
259 generated chroot before running the second stage. This allow
260 vmdebootstrap to create armel images on an amd64 host. Next I added
261 two new options &lt;tt&gt;--bootsize size&lt;/tt&gt; and &lt;tt&gt;--boottype
262 fstype&lt;/tt&gt; to teach it to create a separate /boot/ partition with the
263 given file system type, allowing me to create an image with a vfat
264 partition for the /boot/ stuff. I also added a &lt;tt&gt;--variant
265 variant&lt;/tt&gt; option to allow me to create smaller images without the
266 Debian base system packages installed. Finally, I added an option
267 &lt;tt&gt;--no-extlinux&lt;/tt&gt; to tell vmdebootstrap to not install extlinux
268 as a boot loader. It is not needed on the Raspberry Pi and probably
269 most other non-x86 architectures. The changes were accepted by the
270 upstream author of vmdebootstrap yesterday and today, and is now
271 available from
272 &lt;a href=&quot;http://git.liw.fi/cgi-bin/cgit/cgit.cgi/vmdebootstrap/&quot;&gt;the
273 upstream project page&lt;/a&gt;.&lt;/p&gt;
274
275 &lt;p&gt;To use it to build a Raspberry Pi image using Debian Jessie, first
276 create a small script (the customize script) to add the non-free
277 binary blob needed to boot the Raspberry Pi and the APT source
278 list:&lt;/p&gt;
279
280 &lt;p&gt;&lt;pre&gt;
281 #!/bin/sh
282 set -e # Exit on first error
283 rootdir=&quot;$1&quot;
284 cd &quot;$rootdir&quot;
285 cat &amp;lt;&amp;lt;EOF &gt; etc/apt/sources.list
286 deb http://http.debian.net/debian/ jessie main contrib non-free
287 EOF
288 # Install non-free binary blob needed to boot Raspberry Pi. This
289 # install a kernel somewhere too.
290 wget https://raw.github.com/Hexxeh/rpi-update/master/rpi-update \
291 -O $rootdir/usr/bin/rpi-update
292 chmod a+x $rootdir/usr/bin/rpi-update
293 mkdir -p $rootdir/lib/modules
294 touch $rootdir/boot/start.elf
295 chroot $rootdir rpi-update
296 &lt;/pre&gt;&lt;/p&gt;
297
298 &lt;p&gt;Next, fetch the latest vmdebootstrap script and call it like this
299 to build the image:&lt;/p&gt;
300
301 &lt;pre&gt;
302 sudo ./vmdebootstrap \
303 --variant minbase \
304 --arch armel \
305 --distribution jessie \
306 --mirror http://http.debian.net/debian \
307 --image test.img \
308 --size 600M \
309 --bootsize 64M \
310 --boottype vfat \
311 --log-level debug \
312 --verbose \
313 --no-kernel \
314 --no-extlinux \
315 --root-password raspberry \
316 --hostname raspberrypi \
317 --foreign /usr/bin/qemu-arm-static \
318 --customize `pwd`/customize \
319 --package netbase \
320 --package git-core \
321 --package binutils \
322 --package ca-certificates \
323 --package wget \
324 --package kmod
325 &lt;/pre&gt;&lt;/p&gt;
326
327 &lt;p&gt;The list of packages being installed are the ones needed by
328 rpi-update to make the image bootable on the Raspberry Pi, with the
329 exception of netbase, which is needed by debootstrap to find
330 /etc/hosts with the minbase variant. I really wish there was a way to
331 set up an Raspberry Pi using only packages in the Debian archive, but
332 that is not possible as far as I know, because it boots from the GPU
333 using a non-free binary blob.&lt;/p&gt;
334
335 &lt;p&gt;The build host need debootstrap, kpartx and qemu-user-static and
336 probably a few others installed. I have not checked the complete
337 build dependency list.&lt;/p&gt;
338
339 &lt;p&gt;The resulting image will not use the hardware floating point unit
340 on the Raspberry PI, because the armel architecture in Debian is not
341 optimized for that use. So the images created will be a bit slower
342 than &lt;a href=&quot;http://www.raspbian.org/&quot;&gt;Raspbian&lt;/a&gt; based images.&lt;/p&gt;
343 </description>
344 </item>
345
346 <item>
347 <title>A Raspberry Pi based batman-adv Mesh network node</title>
348 <link>http://people.skolelinux.org/pere/blog/A_Raspberry_Pi_based_batman_adv_Mesh_network_node.html</link>
349 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_Raspberry_Pi_based_batman_adv_Mesh_network_node.html</guid>
350 <pubDate>Mon, 21 Oct 2013 11:40:00 +0200</pubDate>
351 <description>&lt;p&gt;The last few days I have been experimenting with
352 &lt;a href=&quot;http://www.open-mesh.org/projects/batman-adv/wiki&quot;&gt;the
353 batman-adv mesh technology&lt;/a&gt;. I want to gain some experience to see
354 if it will fit &lt;a href=&quot;https://wiki.debian.org/FreedomBox&quot;&gt;the
355 Freedombox project&lt;/a&gt;, and together with my neighbors try to build a
356 mesh network around the park where I live. Batman-adv is a layer 2
357 mesh system (&quot;ethernet&quot; in other words), where the mesh network appear
358 as if all the mesh clients are connected to the same switch.&lt;/p&gt;
359
360 &lt;p&gt;My hardware of choice was the Linksys WRT54GL routers I had lying
361 around, but I&#39;ve been unable to get them working with batman-adv. So
362 instead, I started playing with a
363 &lt;a href=&quot;http://www.raspberrypi.org/&quot;&gt;Raspberry Pi&lt;/a&gt;, and tried to
364 get it working as a mesh node. My idea is to use it to create a mesh
365 node which function as a switch port, where everything connected to
366 the Raspberry Pi ethernet plug is connected (bridged) to the mesh
367 network. This allow me to hook a wifi base station like the Linksys
368 WRT54GL to the mesh by plugging it into a Raspberry Pi, and allow
369 non-mesh clients to hook up to the mesh. This in turn is useful for
370 Android phones using &lt;a href=&quot;http://servalproject.org/&quot;&gt;the Serval
371 Project&lt;/a&gt; voip client, allowing every one around the playground to
372 phone and message each other for free. The reason is that Android
373 phones do not see ad-hoc wifi networks (they are filtered away from
374 the GUI view), and can not join the mesh without being rooted. But if
375 they are connected using a normal wifi base station, they can talk to
376 every client on the local network.&lt;/p&gt;
377
378 &lt;p&gt;To get this working, I&#39;ve created a debian package
379 &lt;a href=&quot;https://github.com/petterreinholdtsen/meshfx-node&quot;&gt;meshfx-node&lt;/a&gt;
380 and a script
381 &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;
382 to create the Raspberry Pi boot image. I&#39;m using Debian Jessie (and
383 not Raspbian), to get more control over the packages available.
384 Unfortunately a huge binary blob need to be inserted into the boot
385 image to get it booting, but I&#39;ll ignore that for now. Also, as
386 Debian lack support for the CPU features available in the Raspberry
387 Pi, the system do not use the hardware floating point unit. I hope
388 the routing performance isn&#39;t affected by the lack of hardware FPU
389 support.&lt;/p&gt;
390
391 &lt;p&gt;To create an image, run the following with a sudo enabled user
392 after inserting the target SD card into the build machine:&lt;/p&gt;
393
394 &lt;p&gt;&lt;pre&gt;
395 % wget -O build-rpi-mesh-node \
396 https://raw.github.com/petterreinholdtsen/meshfx-node/master/build-rpi-mesh-node
397 % sudo bash -x ./build-rpi-mesh-node &gt; build.log 2&gt;&amp;1
398 % dd if=/root/rpi/rpi_basic_jessie_$(date +%Y%m%d).img of=/dev/mmcblk0 bs=1M
399 %
400 &lt;/pre&gt;&lt;/p&gt;
401
402 &lt;p&gt;Booting with the resulting SD card on a Raspberry PI with a USB
403 wifi card inserted should give you a mesh node. At least it does for
404 me with a the wifi card I am using. The default mesh settings are the
405 ones used by the Oslo mesh project at Hackeriet, as I mentioned in
406 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Oslo_community_mesh_network___with_NUUG_and_Hackeriet_at_Hausmania.html&quot;&gt;an
407 earlier blog post about this mesh testing&lt;/a&gt;.&lt;/p&gt;
408
409 &lt;p&gt;The mesh node was not horribly expensive either. I bought
410 everything over the counter in shops nearby. If I had ordered online
411 from the lowest bidder, the price should be significantly lower:&lt;/p&gt;
412
413 &lt;p&gt;&lt;table&gt;
414
415 &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;
416 &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;
417 &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;
418 &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;
419 &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;
420 &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;
421
422 &lt;/table&gt;&lt;/p&gt;
423
424 &lt;p&gt;Now my mesh network at home consist of one laptop in the basement
425 connected to my production network, one Raspberry Pi node on the 1th
426 floor that can be seen by my neighbor across the park, and one
427 play-node I use to develop the image building script. And some times
428 I hook up my work horse laptop to the mesh to test it. I look forward
429 to figuring out what kind of latency the batman-adv setup will give,
430 and how much packet loss we will experience around the park. :)&lt;/p&gt;
431 </description>
432 </item>
433
434 <item>
435 <title>Perl library to control the Spykee robot moved to github</title>
436 <link>http://people.skolelinux.org/pere/blog/Perl_library_to_control_the_Spykee_robot_moved_to_github.html</link>
437 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Perl_library_to_control_the_Spykee_robot_moved_to_github.html</guid>
438 <pubDate>Sat, 19 Oct 2013 10:20:00 +0200</pubDate>
439 <description>&lt;p&gt;Back in 2010, I created a Perl library to talk to
440 &lt;a href=&quot;http://en.wikipedia.org/wiki/Spykee&quot;&gt;the Spykee robot&lt;/a&gt;
441 (with two belts, wifi, USB and Linux) and made it available from my
442 web page. Today I concluded that it should move to a site that is
443 easier to use to cooperate with others, and moved it to github. If
444 you got a Spykee robot, you might want to check out
445 &lt;a href=&quot;https://github.com/petterreinholdtsen/libspykee-perl&quot;&gt;the
446 libspykee-perl github repository&lt;/a&gt;.&lt;/p&gt;
447 </description>
448 </item>
449
450 <item>
451 <title>Good causes: Debian Outreach Program for Women, EFF documenting the spying and Open access in Norway</title>
452 <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>
453 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Good_causes__Debian_Outreach_Program_for_Women__EFF_documenting_the_spying_and_Open_access_in_Norway.html</guid>
454 <pubDate>Tue, 15 Oct 2013 21:30:00 +0200</pubDate>
455 <description>&lt;p&gt;The last few days I came across a few good causes that should get
456 wider attention. I recommend signing and donating to each one of
457 these. :)&lt;/p&gt;
458
459 &lt;p&gt;Via &lt;a href=&quot;http://www.debian.org/News/weekly/2013/18/&quot;&gt;Debian
460 Project News for 2013-10-14&lt;/a&gt; I came across the Outreach Program for
461 Women program which is a Google Summer of Code like initiative to get
462 more women involved in free software. One debian sponsor has offered
463 to match &lt;a href=&quot;http://debian.ch/opw2013&quot;&gt;any donation done to Debian
464 earmarked&lt;/a&gt; for this initiative. I donated a few minutes ago, and
465 hope you will to. :)&lt;/p&gt;
466
467 &lt;p&gt;And the Electronic Frontier Foundation just announced plans to
468 create &lt;a href=&quot;https://supporters.eff.org/donate/nsa-videos&quot;&gt;video
469 documentaries about the excessive spying&lt;/a&gt; on every Internet user that
470 take place these days, and their need to fund the work. I&#39;ve already
471 donated. Are you next?&lt;/p&gt;
472
473 &lt;p&gt;For my Norwegian audience, the organisation Studentenes og
474 Akademikernes Internasjonale Hjelpefond is collecting signatures for a
475 statement under the heading
476 &lt;a href=&quot;http://saih.no/Bloggers_United/&quot;&gt;Bloggers United for Open
477 Access&lt;/a&gt; for those of us asking for more focus on open access in the
478 Norwegian government. So far 499 signatures. I hope you will sign it
479 too.&lt;/p&gt;
480 </description>
481 </item>
482
483 <item>
484 <title>Oslo community mesh network - with NUUG and Hackeriet at Hausmania</title>
485 <link>http://people.skolelinux.org/pere/blog/Oslo_community_mesh_network___with_NUUG_and_Hackeriet_at_Hausmania.html</link>
486 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Oslo_community_mesh_network___with_NUUG_and_Hackeriet_at_Hausmania.html</guid>
487 <pubDate>Fri, 11 Oct 2013 14:10:00 +0200</pubDate>
488 <description>&lt;p&gt;Wireless mesh networks are self organising and self healing
489 networks that can be used to connect computers across small and large
490 areas, depending on the radio technology used. Normal wifi equipment
491 can be used to create home made radio networks, and there are several
492 successful examples like
493 &lt;a href=&quot;http://www.freifunk.net/&quot;&gt;Freifunk&lt;/a&gt; and
494 &lt;a href=&quot;http://www.awmn.net/&quot;&gt;Athens Wireless Metropolitan Network&lt;/a&gt;
495 (see
496 &lt;a href=&quot;http://en.wikipedia.org/wiki/List_of_wireless_community_networks_by_region#Greece&quot;&gt;wikipedia
497 for a large list&lt;/a&gt;) around the globe. To give you an idea how it
498 work, check out the nice overview of the Kiel Freifunk community which
499 can be seen from their
500 &lt;a href=&quot;http://freifunk.in-kiel.de/ffmap/nodes.html&quot;&gt;dynamically
501 updated node graph and map&lt;/a&gt;, where one can see how the mesh nodes
502 automatically handle routing and recover from nodes disappearing.
503 There is also a small community mesh network group in Oslo, Norway,
504 and that is the main topic of this blog post.&lt;/p&gt;
505
506 &lt;p&gt;I&#39;ve wanted to check out mesh networks for a while now, and hoped
507 to do it as part of my involvement with the &lt;a
508 href=&quot;http://www.nuug.no/&quot;&gt;NUUG member organisation&lt;/a&gt; community, and
509 my recent involvement in
510 &lt;a href=&quot;https://wiki.debian.org/FreedomBox&quot;&gt;the Freedombox project&lt;/a&gt;
511 finally lead me to give mesh networks some priority, as I suspect a
512 Freedombox should use mesh networks to connect neighbours and family
513 when possible, given that most communication between people are
514 between those nearby (as shown for example by research on Facebook
515 communication patterns). It also allow people to communicate without
516 any central hub to tap into for those that want to listen in on the
517 private communication of citizens, which have become more and more
518 important over the years.&lt;/p&gt;
519
520 &lt;p&gt;So far I have only been able to find one group of people in Oslo
521 working on community mesh networks, over at the hack space
522 &lt;a href=&quot;http://hackeriet.no/&quot;&gt;Hackeriet&lt;/a&gt; at Husmania. They seem to
523 have started with some Freifunk based effort using OLSR, called
524 &lt;a href=&quot;http://oslo.freifunk.net/index.php?title=Main_Page&quot;&gt;the Oslo
525 Freifunk project&lt;/a&gt;, but that effort is now dead and the people
526 behind it have moved on to a batman-adv based system called
527 &lt;a href=&quot;http://meshfx.org/trac&quot;&gt;meshfx&lt;/a&gt;. Unfortunately the wiki
528 site for the Oslo Freifunk project is no longer possible to update to
529 reflect this fact, so the old project page can&#39;t be updated to point to
530 the new project. A while back, the people at Hackeriet invited people
531 from the Freifunk community to Oslo to talk about mesh networks. I
532 came across this video where Hans Jørgen Lysglimt interview the
533 speakers about this talk (from
534 &lt;a href=&quot;https://www.youtube.com/watch?v=N2Kd7CLkhSY&quot;&gt;youtube&lt;/a&gt;):&lt;/p&gt;
535
536 &lt;p&gt;&lt;iframe width=&quot;420&quot; height=&quot;315&quot; src=&quot;https://www.youtube.com/embed/N2Kd7CLkhSY&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;&lt;/p&gt;
537
538 &lt;p&gt;I mentioned OLSR and batman-adv, which are mesh routing protocols.
539 There are heaps of different protocols, and I am still struggling to
540 figure out which one would be &quot;best&quot; for some definitions of best, but
541 given that the community mesh group in Oslo is so small, I believe it
542 is best to hook up with the existing one instead of trying to create a
543 completely different setup, and thus I have decided to focus on
544 batman-adv for now. It sure help me to know that the very cool
545 &lt;a href=&quot;http://www.servalproject.org/&quot;&gt;Serval project in Australia&lt;/a&gt;
546 is using batman-adv as their meshing technology when it create a self
547 organizing and self healing telephony system for disaster areas and
548 less industrialized communities. Check out this cool video presenting
549 that project (from
550 &lt;a href=&quot;https://www.youtube.com/watch?v=30qNfzJCQOA&quot;&gt;youtube&lt;/a&gt;):&lt;/p&gt;
551
552 &lt;p&gt;&lt;iframe width=&quot;560&quot; height=&quot;315&quot; src=&quot;https://www.youtube.com/embed/30qNfzJCQOA&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;&lt;/p&gt;
553
554 &lt;p&gt;According to the wikipedia page on
555 &lt;a href=&quot;http://en.wikipedia.org/wiki/Wireless_mesh_network&quot;&gt;Wireless
556 mesh network&lt;/a&gt; there are around 70 competing schemes for routing
557 packets across mesh networks, and OLSR, B.A.T.M.A.N. and
558 B.A.T.M.A.N. advanced are protocols used by several free software
559 based community mesh networks.&lt;/p&gt;
560
561 &lt;p&gt;The batman-adv protocol is a bit special, as it provide layer 2
562 (as in ethernet ) routing, allowing ipv4 and ipv6 to work on the same
563 network. One way to think about it is that it provide a mesh based
564 vlan you can bridge to or handle like any other vlan connected to your
565 computer. The required drivers are already in the Linux kernel at
566 least since Debian Wheezy, and it is fairly easy to set up. A
567 &lt;a href=&quot;http://www.open-mesh.org/projects/batman-adv/wiki/Quick-start-guide&quot;&gt;good
568 introduction&lt;/a&gt; is available from the Open Mesh project. These are
569 the key settings needed to join the Oslo meshfx network:&lt;/p&gt;
570
571 &lt;p&gt;&lt;table&gt;
572 &lt;tr&gt;&lt;th&gt;Setting&lt;/th&gt;&lt;th&gt;Value&lt;/th&gt;&lt;/tr&gt;
573 &lt;tr&gt;&lt;td&gt;Protocol / kernel module&lt;/td&gt;&lt;td&gt;batman-adv&lt;/td&gt;&lt;/tr&gt;
574 &lt;tr&gt;&lt;td&gt;ESSID&lt;/td&gt;&lt;td&gt;meshfx@hackeriet&lt;/td&gt;&lt;/tr&gt;
575 &lt;td&gt;Channel / Frequency&lt;/td&gt;&lt;td&gt;11 / 2462&lt;/td&gt;&lt;/tr&gt;
576 &lt;td&gt;Cell ID&lt;/td&gt;&lt;td&gt;02:BA:00:00:00:01&lt;/td&gt;
577 &lt;/table&gt;&lt;/p&gt;
578
579 &lt;p&gt;The reason for setting ad-hoc wifi Cell ID is to work around bugs
580 in firmware used in wifi card and wifi drivers. (See a nice post from
581 VillageTelco about
582 &quot;&lt;a href=&quot;http://tiebing.blogspot.no/2009/12/ad-hoc-cell-splitting-re-post-original.html&quot;&gt;Information
583 about cell-id splitting, stuck beacons, and failed IBSS merges!&lt;/a&gt;
584 for details.) When these settings are activated and you have some
585 other mesh node nearby, your computer will be connected to the mesh
586 network and can communicate with any mesh node that is connected to
587 any of the nodes in your network of nodes. :)&lt;/p&gt;
588
589 &lt;p&gt;My initial plan was to reuse my old Linksys WRT54GL as a mesh node,
590 but that seem to be very hard, as I have not been able to locate a
591 firmware supporting batman-adv. If anyone know how to use that old
592 wifi access point with batman-adv these days, please let me know.&lt;/p&gt;
593
594 &lt;p&gt;If you find this project interesting and want to join, please join
595 us on IRC, either channel
596 &lt;a href=&quot;irc://irc.freenode.net/#oslohackerspace&quot;&gt;#oslohackerspace&lt;/a&gt;
597 or &lt;a href=&quot;irc://irc.freenode.net/#nuug&quot;&gt;#nuug&lt;/a&gt; on
598 irc.freenode.net.&lt;/p&gt;
599
600 &lt;p&gt;While investigating mesh networks in Oslo, I came across an old
601 research paper from the university of Stavanger and Telenor Research
602 and Innovation called
603 &lt;a href=&quot;http://folk.uio.no/paalee/publications/netrel-egeland-iswcs-2008.pdf&quot;&gt;The
604 reliability of wireless backhaul mesh networks&lt;/a&gt; and elsewhere
605 learned that Telenor have been experimenting with mesh networks at
606 Grünerløkka in Oslo. So mesh networks are also interesting for
607 commercial companies, even though Telenor discovered that it was hard
608 to figure out a good business plan for mesh networking and as far as I
609 know have closed down the experiment. Perhaps Telenor or others would
610 be interested in a cooperation?&lt;/p&gt;
611
612 &lt;p&gt;&lt;strong&gt;Update 2013-10-12&lt;/strong&gt;: I was just
613 &lt;a href=&quot;http://lists.alioth.debian.org/pipermail/freedombox-discuss/2013-October/005900.html&quot;&gt;told
614 by the Serval project developers&lt;/a&gt; that they no longer use
615 batman-adv (but are compatible with it), but their own crypto based
616 mesh system.&lt;/p&gt;
617 </description>
618 </item>
619
620 <item>
621 <title>Skolelinux / Debian Edu 7.1 install and overview video from Marcelo Salvador</title>
622 <link>http://people.skolelinux.org/pere/blog/Skolelinux___Debian_Edu_7_1_install_and_overview_video_from_Marcelo_Salvador.html</link>
623 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux___Debian_Edu_7_1_install_and_overview_video_from_Marcelo_Salvador.html</guid>
624 <pubDate>Tue, 8 Oct 2013 17:10:00 +0200</pubDate>
625 <description>&lt;p&gt;The other day I was pleased and surprised to discover that Marcelo
626 Salvador had published a
627 &lt;a href=&quot;https://www.youtube.com/watch?v=w-GgpdqgLFc&quot;&gt;video on
628 Youtube&lt;/a&gt; showing how to install the standalone Debian Edu /
629 Skolelinux profile. This is the profile intended for use at home or
630 on laptops that should not be integrated into the provided network
631 services (no central home directory, no Kerberos / LDAP directory etc,
632 in other word a single user machine). The result is 11 minutes long,
633 and show some user applications (seem to be rather randomly picked).
634 Missed a few of my favorites like celestia, planets and chromium
635 showing the &lt;a href=&quot;http://www.zygotebody.com/&quot;&gt;Zygote Body 3D model
636 of the human body&lt;/a&gt;, but I guess he did not know about those or find
637 other programs more interesting. :) And the video do not show the
638 advantages I believe is one of the most valuable featuers in Debian
639 Edu, its central school server making it possible to run hundreds of
640 computers without hard drives by installing one central
641 &lt;a href=&quot;http://www.ltsp.org/&quot;&gt;LTSP server&lt;/a&gt;.&lt;/p&gt;
642
643 &lt;p&gt;Anyway, check out the video, embedded below and linked to above:&lt;/p&gt;
644
645 &lt;iframe width=&quot;420&quot; height=&quot;315&quot; src=&quot;http://www.youtube.com/embed/w-GgpdqgLFc&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;
646
647 &lt;p&gt;Are there other nice videos demonstrating Skolelinux? Please let
648 me know. :)&lt;/p&gt;
649 </description>
650 </item>
651
652 <item>
653 <title>Finally, Debian Edu Wheezy is released today!</title>
654 <link>http://people.skolelinux.org/pere/blog/Finally__Debian_Edu_Wheezy_is_released_today_.html</link>
655 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Finally__Debian_Edu_Wheezy_is_released_today_.html</guid>
656 <pubDate>Sun, 29 Sep 2013 10:20:00 +0200</pubDate>
657 <description>&lt;p&gt;A few hours ago, the announcement for the first stable release of
658 Debian Edu Wheezy went out from the Debian publicity team. The
659 complete announcement text can be found at
660 &lt;a href=&quot;http://www.debian.org/News/2013/20130928&quot;&gt;the Debian News
661 section&lt;/a&gt;, translated to several languages. Please check it out.&lt;/p&gt;
662
663 &lt;p&gt;There is one minor known problem that we will fix very soon. One
664 can not install a amd64 Thin Client Server using PXE, as the /var/
665 partition is too small. A workaround is to extend the partition (use
666 lvresize + resize2fs in tty 2 while installing).&lt;/p&gt;
667 </description>
668 </item>
669
670 <item>
671 <title>Videos about the Freedombox project - for inspiration and learning</title>
672 <link>http://people.skolelinux.org/pere/blog/Videos_about_the_Freedombox_project___for_inspiration_and_learning.html</link>
673 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Videos_about_the_Freedombox_project___for_inspiration_and_learning.html</guid>
674 <pubDate>Fri, 27 Sep 2013 14:10:00 +0200</pubDate>
675 <description>&lt;p&gt;The &lt;a href=&quot;http://www.freedomboxfoundation.org/&quot;&gt;Freedombox
676 project&lt;/a&gt; have been going on for a while, and have presented the
677 vision, ideas and solution several places. Here is a little
678 collection of videos of talks and presentation of the project.&lt;/p&gt;
679
680 &lt;ul&gt;
681
682 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=ukvUz5taxvA&quot;&gt;FreedomBox -
683 2,5 minute marketing film&lt;/a&gt; (Youtube)&lt;/li&gt;
684
685 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=SzW25QTVWsE&quot;&gt;Eben Moglen
686 discusses the Freedombox on CBS news 2011&lt;/a&gt; (Youtube)&lt;/li&gt;
687
688 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=Ae8SZbxfE0g&quot;&gt;Eben Moglen -
689 Freedom in the Cloud - Software Freedom, Privacy and and Security for
690 Web 2.0 and Cloud computing at ISOC-NY Public Meeting 2010&lt;/a&gt;
691 (Youtube)&lt;/li&gt;
692
693 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=vNaIji_3xBE&quot;&gt;Fosdem 2011
694 Keynote by Eben Moglen presenting the Freedombox&lt;/a&gt; (Youtube)&lt;/li&gt;
695
696 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=9bDDUyJSQ9s&quot;&gt;Presentation of
697 the Freedombox by James Vasile at Elevate in Gratz 2011&lt;/a&gt; (Youtube)&lt;/li&gt;
698
699 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=zQTmnk27g9s&quot;&gt; Freedombox -
700 Discovery, Identity, and Trust by Nick Daly at Freedombox Hackfest New
701 York City in 2012&lt;/a&gt; (Youtube)&lt;/li&gt;
702
703 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=tkbSB4Ba7Ck&quot;&gt;Introduction
704 to the Freedombox at Freedombox Hackfest New York City in 2012&lt;/a&gt;
705 (Youtube)&lt;/li&gt;
706
707 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=z-P2Jaeg0aQ&quot;&gt;Freedom, Out
708 of the Box! by Bdale Garbee at linux.conf.au Ballarat, 2012&lt;/a&gt; (Youtube) &lt;/li&gt;
709
710 &lt;li&gt;&lt;a href=&quot;https://archive.fosdem.org/2013/schedule/event/freedombox/&quot;&gt;Freedombox
711 1.0 by Eben Moglen and Bdale Garbee at Fosdem 2013&lt;/a&gt; (FOSDEM) &lt;/li&gt;
712
713 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=e1LpYX2zVYg&quot;&gt;What is the
714 FreedomBox today by Bdale Garbee at Debconf13 in Vaumarcus
715 2013&lt;/a&gt; (Youtube)&lt;/li&gt;
716
717 &lt;/ul&gt;
718
719 &lt;p&gt;A larger list is available from
720 &lt;a href=&quot;https://wiki.debian.org/FreedomBox/TalksAndPresentations&quot;&gt;the
721 Freedombox Wiki&lt;/a&gt;.&lt;/p&gt;
722
723 &lt;p&gt;On other news, I am happy to report that Freedombox based on Debian
724 Jessie is coming along quite well, and soon both Owncloud and using
725 Tor should be available for testers of the Freedombox solution. :) In
726 a few weeks I hope everything needed to test it is included in Debian.
727 The withsqlite package is already in Debian, and the plinth package is
728 pending in NEW. The third and vital part of that puzzle is the
729 metapackage/setup framework, which is still pending an upload. Join
730 us on &lt;a href=&quot;irc://irc.debian.org:6667/%23freedombox&quot;&gt;IRC
731 (#freedombox on irc.debian.org)&lt;/a&gt; and
732 &lt;a href=&quot;http://lists.alioth.debian.org/mailman/listinfo/freedombox-discuss&quot;&gt;the
733 mailing list&lt;/a&gt; if you want to help make this vision come true.&lt;/p&gt;
734 </description>
735 </item>
736
737 <item>
738 <title>Third and probably last beta release of Debian Edu Wheezy</title>
739 <link>http://people.skolelinux.org/pere/blog/Third_and_probably_last_beta_release_of_Debian_Edu_Wheezy.html</link>
740 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Third_and_probably_last_beta_release_of_Debian_Edu_Wheezy.html</guid>
741 <pubDate>Mon, 16 Sep 2013 21:30:00 +0200</pubDate>
742 <description>&lt;p&gt;The third wheezy based beta release of Debian Edu was wrapped up
743 today. This is the release announcement from Holger Levsen:&lt;/p&gt;
744
745 &lt;blockquote&gt;
746 &lt;p&gt;Hi,&lt;/p&gt;
747
748 &lt;p&gt;it is my pleasure to announce the third beta release (beta 2 for
749 short) of &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
750 Skolelinux&lt;/a&gt; based on Debian Wheezy!&lt;/p&gt;
751
752 &lt;p&gt;Please test these images extensivly, if no new problems are found
753 we plan to do this final Debian Edu Wheezy release this coming
754 weekend. We are not aware of any major problems or blockers in beta2,
755 if you find something, please notify us immediately!&lt;/p&gt;
756
757 &lt;p&gt;(More about the remaining steps for the Edu Wheezy release in
758 another mail to the edu list tonight or tomorrow...)&lt;/p&gt;
759
760 &lt;p&gt;Noteworthy changes and software updates for Debian Edu 7.1+edu0~b2
761 compared to beta1:&lt;/p&gt;
762
763 &lt;ul&gt;
764
765 &lt;li&gt;The KDE proxy setup has been adjusted to use the provided wpad.dat. This
766 also gets Chromium to use this proxy.&lt;/li&gt;
767 &lt;li&gt;Install kdepim-groupware with KDE desktops to make sure korganizer
768 understand ical/dav sources.&lt;/li&gt;
769 &lt;li&gt;Increased default maximum size of /var/spool/squid and /skole/backup on the
770 main server.&lt;/li&gt;
771 &lt;li&gt;A source DVD image containing all source packages is now available as well.&lt;/li&gt;
772 &lt;li&gt;Updates for chromium (29.0.1547.57-1~deb7u1), imagemagick
773 (6.7.7.10-5+deb7u2), php5 (5.4.4-14+deb7u4), libmodplug
774 (0.8.8.4-3+deb7u1+git20130828), tiff (4.0.2-6+deb7u2), linux-image
775 (3.2.0-4-486_3.2.46-1+deb7u1).&lt;/li&gt;
776
777 &lt;/ul&gt;
778
779 &lt;p&gt;Where to get it:&lt;/p&gt;
780
781 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
782
783 &lt;ul&gt;
784 &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;
785 &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;
786 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-CD.iso .&lt;/li&gt;
787 &lt;/ul&gt;
788
789 &lt;p&gt;The SHA1SUM of this image is: 3a1c89f4666df80eebcd46c5bf5fedb866f9472f&lt;/p&gt;
790
791 &lt;p&gt;To download the multiarch USB stick ISO release you can use
792 &lt;ul&gt;
793 &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;
794 &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;
795 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-USB.iso .&lt;/li&gt;
796 &lt;/ul&gt;
797
798 &lt;p&gt;The SHA1SUM of this image is: 702d1718548f401c74bfa6df9f032cc3ee16597e&lt;/p&gt;
799
800 &lt;p&gt;The Source DVD image has the filename
801 debian-edu-7.1+edu0~b2-source-DVD.iso and the SHA1SUM
802 089eed8b3f962db47aae1f6a9685e9bb2fa30ca5 and is available the same way
803 as the other isos.&lt;/p&gt;
804
805 &lt;p&gt;How to report bugs&lt;/p&gt;
806
807 &lt;p&gt;For information how to report bugs please see
808 &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;
809
810
811 &lt;p&gt;About Debian Edu and Skolelinux&lt;/p&gt;
812
813 &lt;p&gt;Debian Edu, also known as Skolelinux, is a Linux distribution based
814 on Debian providing an out-of-the box environment of a completely
815 configured school network. Immediately after installation a school
816 server running all services needed for a school network is set up just
817 waiting for users and machines being added via GOsa², a comfortable
818 Web-UI. A netbooting environment is prepared using PXE, so after
819 initial installation of the main server from CD or USB stick all other
820 machines can be installed via the network. The provided school server
821 provides LDAP database and Kerberos authentication service,
822 centralized home directories, DHCP server, web proxy and many other
823 services. The desktop contains more than 60 educational software
824 packages and more are available from the Debian archive, and schools
825 can choose between KDE, Gnome, LXDE and Xfce desktop environment.&lt;/p&gt;
826
827 &lt;p&gt;This is the seventh test release based on Debian Wheezy. Basically
828 this is an updated and slightly improved version compared to the
829 Squeeze release.&lt;/p&gt;
830
831 &lt;p&gt;Notes for upgrades from Alpha Prereleases&lt;/p&gt;
832
833 &lt;p&gt;Alpha based installations should reinstall or downgrade the
834 versions of gosa and libpam-mklocaluser to the ones used in this beta
835 release. Both alpha and beta0 based installations should reinstall or
836 deal with gosa.conf manually; there are two options: (1) Keep
837 gosa.conf and edit this file as outlined on the mailing list. (2)
838 Accept the new version of gosa.conf and replace both contained admin
839 password placeholders with the password hashes found in the old one
840 (backup copy!). In both cases all users need to change their password
841 to make sure a password is set for CIFS access to their home
842 directory.&lt;/p&gt;
843
844
845 &lt;p&gt;cheers,
846 &lt;br&gt; Holger&lt;/p&gt;
847 &lt;/blockquote&gt;
848 </description>
849 </item>
850
851 <item>
852 <title>Recipe to test the Freedombox project on amd64 or Raspberry Pi</title>
853 <link>http://people.skolelinux.org/pere/blog/Recipe_to_test_the_Freedombox_project_on_amd64_or_Raspberry_Pi.html</link>
854 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Recipe_to_test_the_Freedombox_project_on_amd64_or_Raspberry_Pi.html</guid>
855 <pubDate>Tue, 10 Sep 2013 14:20:00 +0200</pubDate>
856 <description>&lt;p&gt;I was introduced to the
857 &lt;a href=&quot;http://www.freedomboxfoundation.org/&quot;&gt;Freedombox project&lt;/a&gt;
858 in 2010, when Eben Moglen presented his vision about serving the need
859 of non-technical people to keep their personal information private and
860 within the legal protection of their own homes. The idea is to give
861 people back the power over their network and machines, and return
862 Internet back to its intended peer-to-peer architecture. Instead of
863 depending on a central service, the Freedombox will give everyone
864 control over their own basic infrastructure.&lt;/p&gt;
865
866 &lt;p&gt;I&#39;ve intended to join the effort since then, but other tasks have
867 taken priority. But this summers nasty news about the misuse of trust
868 and privilege exercised by the &quot;western&quot; intelligence gathering
869 communities increased my eagerness to contribute to a point where I
870 actually started working on the project a while back.&lt;/p&gt;
871
872 &lt;p&gt;The &lt;a href=&quot;https://alioth.debian.org/projects/freedombox/&quot;&gt;initial
873 Debian initiative&lt;/a&gt; based on the vision from Eben Moglen, is to
874 create a simple and cheap Debian based appliance that anyone can hook
875 up in their home and get access to secure and private services and
876 communication. The initial deployment platform have been the
877 &lt;a href=&quot;http://www.globalscaletechnologies.com/t-dreamplugdetails.aspx&quot;&gt;Dreamplug&lt;/a&gt;,
878 which is a piece of hardware I do not own. So to be able to test what
879 the current Freedombox setup look like, I had to come up with a way to install
880 it on some hardware I do have access to. I have rewritten the
881 &lt;a href=&quot;https://github.com/NickDaly/freedom-maker&quot;&gt;freedom-maker&lt;/a&gt;
882 image build framework to use .deb packages instead of only copying
883 setup into the boot images, and thanks to this rewrite I am able to
884 set up any machine supported by Debian Wheezy as a Freedombox, using
885 the previously mentioned deb (and a few support debs for packages
886 missing in Debian).&lt;/p&gt;
887
888 &lt;p&gt;The current Freedombox setup consist of a set of bootstrapping
889 scripts
890 (&lt;a href=&quot;https://github.com/petterreinholdtsen/freedombox-setup&quot;&gt;freedombox-setup&lt;/a&gt;),
891 and a administrative web interface
892 (&lt;a href=&quot;https://github.com/NickDaly/Plinth&quot;&gt;plinth&lt;/a&gt; + exmachina +
893 withsqlite), as well as a privacy enhancing proxy based on
894 &lt;a href=&quot;http://packages.qa.debian.org/privoxy&quot;&gt;privoxy&lt;/a&gt;
895 (freedombox-privoxy). There is also a web/javascript based XMPP
896 client (&lt;a href=&quot;http://packages.qa.debian.org/jwchat&quot;&gt;jwchat&lt;/a&gt;)
897 trying (unsuccessfully so far) to talk to the XMPP server
898 (&lt;a href=&quot;http://packages.qa.debian.org/ejabberd&quot;&gt;ejabberd&lt;/a&gt;). The
899 web interface is pluggable, and the goal is to use it to enable OpenID
900 services, mesh network connectivity, use of TOR, etc, etc. Not much of
901 this is really working yet, see
902 &lt;a href=&quot;https://github.com/NickDaly/freedombox-todos/blob/master/TODO&quot;&gt;the
903 project TODO&lt;/a&gt; for links to GIT repositories. Most of the code is
904 on github at the moment. The HTTP proxy is operational out of the
905 box, and the admin web interface can be used to add/remove plinth
906 users. I&#39;ve not been able to do anything else with it so far, but
907 know there are several branches spread around github and other places
908 with lots of half baked features.&lt;/p&gt;
909
910 &lt;p&gt;Anyway, if you want to have a look at the current state, the
911 following recipes should work to give you a test machine to poke
912 at.&lt;/p&gt;
913
914 &lt;p&gt;&lt;strong&gt;Debian Wheezy amd64&lt;/strong&gt;&lt;/p&gt;
915
916 &lt;ol&gt;
917
918 &lt;li&gt;Fetch normal Debian Wheezy installation ISO.&lt;/li&gt;
919 &lt;li&gt;Boot from it, either as CD or USB stick.&lt;/li&gt;
920 &lt;li&gt;&lt;p&gt;Press [tab] on the boot prompt and add this as a boot argument
921 to the Debian installer:&lt;p&gt;
922 &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;
923
924 &lt;li&gt;Answer the few language/region/password questions and pick disk to
925 install on.&lt;/li&gt;
926
927 &lt;li&gt;When the installation is finished and the machine have rebooted a
928 few times, your Freedombox is ready for testing.&lt;/li&gt;
929
930 &lt;/ol&gt;
931
932 &lt;p&gt;&lt;strong&gt;Raspberry Pi Raspbian&lt;/strong&gt;&lt;/p&gt;
933
934 &lt;ol&gt;
935
936 &lt;li&gt;Fetch a Raspbian SD card image, create SD card.&lt;/li&gt;
937 &lt;li&gt;Boot from SD card, extend file system to fill the card completely.&lt;/li&gt;
938 &lt;li&gt;&lt;p&gt;Log in and add this to /etc/sources.list:&lt;/p&gt;
939 &lt;pre&gt;
940 deb &lt;a href=&quot;http://www.reinholdtsen.name/freedombox/&quot;&gt;http://www.reinholdtsen.name/freedombox&lt;/a&gt; wheezy main
941 &lt;/pre&gt;&lt;/li&gt;
942 &lt;li&gt;&lt;p&gt;Run this as root:&lt;/p&gt;
943 &lt;pre&gt;
944 wget -O - http://www.reinholdtsen.name/freedombox/BE1A583D.asc | \
945 apt-key add -
946 apt-get update
947 apt-get install freedombox-setup
948 /usr/lib/freedombox/setup
949 &lt;/pre&gt;&lt;/li&gt;
950 &lt;li&gt;Reboot into your freshly created Freedombox.&lt;/li&gt;
951
952 &lt;/ol&gt;
953
954 &lt;p&gt;You can test it on other architectures too, but because the
955 freedombox-privoxy package is binary, it will only work as intended on
956 the architectures where I have had time to build the binary and put it
957 in my APT repository. But do not let this stop you. It is only a
958 short &quot;&lt;tt&gt;apt-get source -b freedombox-privoxy&lt;/tt&gt;&quot; away. :)&lt;/p&gt;
959
960 &lt;p&gt;Note that by default Freedombox is a DHCP server on the
961 192.168.1.0/24 subnet, so if this is your subnet be careful and turn
962 off the DHCP server by running &quot;&lt;tt&gt;update-rc.d isc-dhcp-server
963 disable&lt;/tt&gt;&quot; as root.&lt;/p&gt;
964
965 &lt;p&gt;Please let me know if this works for you, or if you have any
966 problems. We gather on the IRC channel
967 &lt;a href=&quot;irc://irc.debian.org:6667/%23freedombox&quot;&gt;#freedombox&lt;/a&gt; on
968 irc.debian.org and the
969 &lt;a href=&quot;http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/freedombox-discuss&quot;&gt;project
970 mailing list&lt;/a&gt;.&lt;/p&gt;
971
972 &lt;p&gt;Once you get your freedombox operational, you can visit
973 &lt;tt&gt;http://your-host-name:8001/&lt;/tt&gt; to see the state of the plint
974 welcome screen (dead end - do not be surprised if you are unable to
975 get past it), and next visit &lt;tt&gt;http://your-host-name:8001/help/&lt;/tt&gt;
976 to look at the rest of plinth. The default user is &#39;admin&#39; and the
977 default password is &#39;secret&#39;.&lt;/p&gt;
978 </description>
979 </item>
980
981 <item>
982 <title>Second beta release (beta 1) of Debian Edu/Skolelinux based on Debian Wheezy</title>
983 <link>http://people.skolelinux.org/pere/blog/Second_beta_release__beta_1__of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</link>
984 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Second_beta_release__beta_1__of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</guid>
985 <pubDate>Thu, 22 Aug 2013 09:30:00 +0200</pubDate>
986 <description>&lt;p&gt;The second wheezy based beta release of Debian Edu was wrapped up
987 today, slightly delayed because of some bugs in the initial Windows
988 integration fixes . This is the release announcement:&lt;/p&gt;
989
990 &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;
991
992 &lt;p&gt;These are the release notes for Debian Edu / Skolelinux
993 7.1+edu0~b1, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
994
995 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
996
997 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
998 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
999 out-of-the box environment of a completely configured school
1000 network. Immediately after installation a school server running all
1001 services needed for a school network is set up just waiting for users
1002 and machines being added via GOsa², a comfortable Web-UI. A netbooting
1003 environment is prepared using PXE, so after initial installation of
1004 the main server from CD or USB stick all other machines can be
1005 installed via the network. The provided school server provides LDAP
1006 database and Kerberos authentication service, centralized home
1007 directories, DHCP server, web proxy and many other services. The
1008 desktop contains
1009 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;more
1010 than 60 educational software packages&lt;/a&gt; and more are available from
1011 the Debian archive, and schools can choose between KDE, Gnome, LXDE
1012 and Xfce desktop environment.&lt;/p&gt;
1013
1014 &lt;p&gt;This is the sixth test release based on Debian Wheezy. Basically this
1015 is an updated and slightly improved version compared to the Squeeze
1016 release.&lt;/p&gt;
1017
1018 &lt;p&gt;ALERT: Alpha based installations should reinstall or downgrade the
1019 versions of gosa and libpam-mklocaluser to the ones used in this beta
1020 release. Both alpha and beta0 based installations should reinstall or
1021 deal with gosa.conf manually; there are two options: (1) Keep
1022 gosa.conf and edit this file as outlined
1023 &lt;a href=&quot;http://lists.debian.org/debian-edu/2013/08/msg00127.html&quot;&gt;on
1024 the mailing list&lt;/a&gt;. (2) Accept the new version of gosa.conf and
1025 replace both contained admin password placeholders with the password
1026 hashes found in the old one (backup copy!). In both cases every user
1027 need to change their their password to make sure a password is set for
1028 CIFS access to their home directory.&lt;/p&gt;
1029
1030 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
1031
1032 &lt;ul&gt;
1033
1034 &lt;li&gt;Added ssh askpass packages to default installation, to ensure ssh
1035 work also without a attached tty.&lt;/li&gt;
1036 &lt;li&gt;Add the command-not-found package to the default installation to
1037 make it easier to figure out where to find missing command line
1038 tools. Please note, that the command &#39;update-command-not-found&#39;
1039 has to be run as root to actually make it useful (internet access
1040 required).&lt;/li&gt;
1041
1042 &lt;/ul&gt;
1043
1044 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
1045
1046 &lt;ul&gt;
1047
1048 &lt;li&gt;Adjusted the USB stick ISO image build to include every tool
1049 needed for desktop=xfce installations.&lt;/li&gt;
1050 &lt;li&gt;Adjust thin-client-server task to work when installing from USB
1051 stick ISO image.&lt;/li&gt;
1052 &lt;li&gt;Made new grub artwork (changed png from indexed to RGB format).&lt;/li&gt;
1053 &lt;li&gt;Minor cleanup in the CUPS setup.&lt;/li&gt;
1054 &lt;li&gt;Make sure that bootstrapping of the Samba domain really happens
1055 during installation of the main server and adjust SID handling to
1056 cope with this.&lt;/li&gt;
1057 &lt;li&gt;Make Samba passwords changeable (again) via GOsa².&lt;/li&gt;
1058 &lt;li&gt;Fix generation of LM and NT password hashes via GOsa² to avoid
1059 empty password hashes.&lt;/li&gt;
1060 &lt;li&gt;Adapted Samba machine domain joining to latest change in the
1061 smbldap-tools Perl package, fixing bugs blocking Windows machines
1062 from joining the Samba domain.&lt;/li&gt;
1063
1064 &lt;/ul&gt;
1065
1066 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
1067
1068 &lt;ul&gt;
1069
1070 &lt;li&gt;KDE fails to understand the wpad.dat file provided, causing it to
1071 not use the http proxy as it should.&lt;/li&gt;
1072 &lt;li&gt;Chromium also fails to use the proxy when using the KDE desktop
1073 (using the KDE configuration).&lt;/li&gt;
1074
1075 &lt;/ul&gt;
1076
1077 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
1078
1079 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
1080
1081 &lt;ul&gt;
1082
1083 &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;
1084
1085 &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;
1086
1087 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-CD.iso .&lt;/li&gt;
1088
1089 &lt;/ul&gt;
1090
1091 &lt;p&gt;The MD5SUM of this image is: 1e357f80b55e703523f2254adde6d78b
1092 &lt;br&gt;The SHA1SUM of this image is: 7157f9be5fd27c7694d713c6ecfed61c3edda3b2&lt;/p&gt;
1093
1094 &lt;p&gt;To download the multiarch USB stick ISO release you can use&lt;/p&gt;
1095
1096 &lt;ul&gt;
1097
1098 &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;
1099 &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;
1100 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-USB.iso .&lt;/li&gt;
1101
1102 &lt;/ul&gt;
1103
1104 &lt;p&gt;The MD5SUM of this image is: 7a8408ead59cf7e3cef25afb6e91590b
1105 &lt;br&gt;The SHA1SUM of this image is: f1817c031f02790d5edb3bfa0dcf8451088ad119&lt;/p&gt;
1106
1107
1108 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
1109
1110 &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;
1111 </description>
1112 </item>
1113
1114 <item>
1115 <title>Intel 180 SSD disk with Lenovo firmware can not use Intel firmware</title>
1116 <link>http://people.skolelinux.org/pere/blog/Intel_180_SSD_disk_with_Lenovo_firmware_can_not_use_Intel_firmware.html</link>
1117 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Intel_180_SSD_disk_with_Lenovo_firmware_can_not_use_Intel_firmware.html</guid>
1118 <pubDate>Sun, 18 Aug 2013 14:00:00 +0200</pubDate>
1119 <description>&lt;p&gt;Earlier, I reported about
1120 &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
1121 problems using an Intel SSD 520 Series 180 GB disk&lt;/a&gt;. Friday I was
1122 told by IBM that the original disk should be thrown away. And as
1123 there no longer was a problem if I bricked the firmware, I decided
1124 today to try to install Intel firmware to replace the Lenovo firmware
1125 currently on the disk.&lt;/p&gt;
1126
1127 &lt;p&gt;I searched the Intel site for firmware, and found
1128 &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;
1129 (aka Intel SATA Solid-State Drive Firmware Update Tool) which
1130 according to the site should contain the latest firmware for SSD
1131 disks. I inserted the broken disk in one of my spare laptops and
1132 booted the ISO from a USB stick. The disk was recognized, but the
1133 program claimed the newest firmware already were installed and refused
1134 to insert any Intel firmware. So no change, and the disk is still
1135 unable to handle write load. :( I guess the only way to get them
1136 working would be if Lenovo releases new firmware. No idea how likely
1137 that is. Anyway, just blogging about this test for completeness. I
1138 got a working Samsung disk, and see no point in spending more time on
1139 the broken disks.&lt;/p&gt;
1140 </description>
1141 </item>
1142
1143 <item>
1144 <title>90 percent done with the Norwegian draft translation of Free Culture</title>
1145 <link>http://people.skolelinux.org/pere/blog/90_percent_done_with_the_Norwegian_draft_translation_of_Free_Culture.html</link>
1146 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/90_percent_done_with_the_Norwegian_draft_translation_of_Free_Culture.html</guid>
1147 <pubDate>Fri, 2 Aug 2013 10:40:00 +0200</pubDate>
1148 <description>&lt;p&gt;It has been a while since my last update. Since last summer, I
1149 have worked on a Norwegian
1150 &lt;a href=&quot;http://www.docbook.org/&quot;&gt;docbook&lt;/a&gt; version of the 2004 book
1151 &lt;a href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; by Lawrence Lessig,
1152 to get a Norwegian text explaining the problems with the copyright
1153 law. Yesterday, I finally broken the 90% mark, when counting the
1154 number of strings to translate. Due to real life constraints, I have
1155 not had time to work on it since March, but when the summer broke out,
1156 I found time to work on it again. Still lots of work left, but the
1157 first draft is nearing completion. I created a graph to show the
1158 progress of the translation:&lt;/p&gt;
1159
1160 &lt;p&gt;&lt;img width=&quot;80%&quot; align=&quot;center&quot; src=&quot;https://github.com/petterreinholdtsen/free-culture-lessig/raw/master/progress.png&quot;&gt;&lt;/p&gt;
1161
1162 &lt;p&gt;When the first draft is done, the translated text need to be
1163 proof read, and the remaining formatting problems with images and SVG
1164 drawings need to be fixed. There are probably also some index entries
1165 missing that need to be added. This can be done by comparing the
1166 index entries listed in the SiSU version of the book, or comparing the
1167 English docbook version with the paper version. Last, the colophon
1168 page with ISBN numbers etc need to be wrapped up before the release is
1169 done. I should also figure out how to get correct Norwegian sorting
1170 of the index pages. All docbook tools I have tried so far (xmlto,
1171 docbook-xsl, dblatex) get the order of symbols and the special
1172 Norwegian letters ÆØÅ wrong.&lt;/p&gt;
1173
1174 &lt;p&gt;There is still need for translators and people with docbook
1175 knowledge, to be able to get a good looking book (I still struggle
1176 with dblatex, xmlto and docbook-xsl) as well as to do the draft
1177 translation and proof reading. And I would like the figures to be
1178 redrawn as SVGs to make it easy to translate them. Any SVG master
1179 around? There are also some legal terms that are unfamiliar to me.
1180 If you want to help, please get in touch with me, and check out the
1181 project files currently available from
1182 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;.&lt;/p&gt;
1183
1184 &lt;p&gt;If you are curious what the translated book currently look like,
1185 the updated
1186 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig/blob/master/archive/freeculture.nb.pdf?raw=true&quot;&gt;PDF&lt;/a&gt;
1187 and
1188 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig/blob/master/archive/freeculture.nb.epub?raw=true&quot;&gt;EPUB&lt;/a&gt;
1189 are published on github. The HTML version is published as well, but
1190 github hand it out with MIME type text/plain, confusing browsers, so I
1191 saw no point in linking to that version.&lt;/p&gt;
1192 </description>
1193 </item>
1194
1195 <item>
1196 <title>First beta release of Debian Edu/Skolelinux based on Debian Wheezy</title>
1197 <link>http://people.skolelinux.org/pere/blog/First_beta_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</link>
1198 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_beta_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</guid>
1199 <pubDate>Sat, 27 Jul 2013 20:30:00 +0200</pubDate>
1200 <description>&lt;p&gt;The first wheezy based beta release of Debian Edu was wrapped up
1201 today. This is the release announcement:&lt;/p&gt;
1202
1203 &lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.1+edu0~b0 released
1204 2013-07-27&lt;/strong&gt;&lt;/p&gt;
1205
1206 &lt;p&gt;These are the release notes for for Debian Edu / Skolelinux
1207 7.1+edu0~b0, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
1208
1209 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
1210
1211 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
1212 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
1213 out-of-the box environment of a completely configured school
1214 network. Immediately after installation a school server running all
1215 services needed for a school network is set up just waiting for users
1216 and machines being added via GOsa², a comfortable Web-UI. A netbooting
1217 environment is prepared using PXE, so after initial installation of
1218 the main server from CD, DVD or USB stick all other machines can be
1219 installed via the network. The provided school server provides LDAP
1220 database and Kerberos authentication service, centralized home
1221 directories, DHCP server, web proxy and many other services. The
1222 desktop contains
1223 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;more
1224 than 60 educational software packages&lt;/a&gt; and more are available from
1225 the Debian archive, and schools can choose between KDE, Gnome, LXDE
1226 and Xfce desktop environment.&lt;/p&gt;
1227
1228 &lt;p&gt;This is the fifth test release based on Debian Wheezy. Basically
1229 this is an updated and slightly improved version compared to the
1230 Squeeze release.&lt;/p&gt;
1231
1232 &lt;p&gt;ALERT: Alpha based installations should reinstall or downgrade the
1233 versions of gosa and libpam-mklocaluser to the ones used in this beta
1234 release.&lt;/p&gt;
1235
1236 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
1237
1238 &lt;ul&gt;
1239
1240 &lt;li&gt;Switched roaming workstation profiles from wicd to network-manager
1241 for network configuration, as wicd didn&#39;t work any more.&lt;/li&gt;
1242 &lt;li&gt;Changed version numbers of patched gosa and libpam-mklocaluser
1243 packages to make sure our locally patched versions will be replaced
1244 by the official packages when they are released from Debian. Those
1245 installing alpha version need to reinstall or manually downgrade gosa
1246 and libpam-mklocaluser.&lt;/li&gt;
1247 &lt;li&gt;Added bluetooth tools to the default desktop (bluedevil, blueman).&lt;/li&gt;
1248 &lt;li&gt;Added tools for sharing the desktop on KDE (krdc, krfb).&lt;/li&gt;
1249 &lt;li&gt;Added valgrind to the default installation for easier debugging of
1250 crash bugs.&lt;/li&gt;
1251
1252 &lt;/ul&gt;
1253
1254 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
1255
1256 &lt;ul&gt;
1257
1258 &lt;li&gt;Fixed artwork package to work with gnome, no longer break
1259 desktop=gnome installations.&lt;/li&gt;
1260 &lt;li&gt;Adjusted installer to now work when forced to use a proxy with the
1261 netinst CD.&lt;/li&gt;
1262 &lt;li&gt;Fixed code detecting and setting/loading hardware specific
1263 setup/firmware to work more robust out of the box.&lt;/li&gt;
1264 &lt;li&gt;Adjusted Kerberos setup to detect realm and server settings at
1265 install time instead of dynamically at run time. This avoid a crash
1266 with krb5-auth-dialog on diskless workstations without a DNS name.&lt;/li&gt;
1267 &lt;li&gt;Worked around misfeature in network-manager not calling the dhclient
1268 exit hooks, causing automatic proxy configuration and automatic host
1269 name setting at run time to work again.&lt;/li&gt;
1270 &lt;li&gt;Fixed feature setting the default Iceweasel start page from URL
1271 fetched from LDAP, to allow schools to set the global default by
1272 updating the dc=skole,dc=skolelinux,dc=no LDAP object.&lt;/li&gt;
1273 &lt;li&gt;Changed default host name on all networked machines to be unique
1274 (generated from MAC or reverse DNS) after boot.&lt;/li&gt;
1275 &lt;li&gt;Adjusted partition sizes to make sure they are big enough.&lt;/li&gt;
1276
1277 &lt;/ul&gt;
1278
1279 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
1280
1281 &lt;ul&gt;
1282
1283 &lt;li&gt;Grub is missing the new artwork.&lt;/li&gt;
1284 &lt;li&gt;KDE fail to understand the wpad.dat file provided, causing it to
1285 not use the http proxy as it should.&lt;/li&gt;
1286 &lt;li&gt;Chromium also fail to use the proxy.&lt;/li&gt;
1287
1288 &lt;/ul&gt;
1289
1290 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
1291
1292 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
1293
1294 &lt;ul&gt;
1295
1296 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-CD.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-CD.iso&lt;/a&gt;&lt;/li&gt;
1297
1298 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-CD.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-CD.iso&lt;/a&gt;&lt;/li&gt;
1299
1300 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-CD.iso .&lt;/li&gt;
1301
1302 &lt;/ul&gt;
1303
1304 &lt;p&gt;The MD5SUM of this image is: 55d5de9765b6dccd5d9ec33cf1a07109
1305 &lt;br&gt;The SHA1SUM of this image is: 996a1d9517740e4d627d100de2d12b23dd545a3f&lt;/p&gt;
1306
1307 &lt;p&gt;To download the multiarch USB stick ISO release you can use&lt;/p&gt;
1308
1309 &lt;ul&gt;
1310
1311 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-USB.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-USB.iso&lt;/a&gt;&lt;/li&gt;
1312 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-USB.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-USB.iso&lt;/a&gt;&lt;/li&gt;
1313 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-USB.iso .&lt;/li&gt;
1314
1315 &lt;/ul&gt;
1316
1317 &lt;p&gt;The MD5SUM of this image is: d8f0818c51a78d357de794066f289f69
1318 &lt;br&gt;The SHA1SUM of this image is: 49185ca354e8d0543240423746924f76a6cee733&lt;/p&gt;
1319
1320
1321 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
1322
1323 &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;
1324 </description>
1325 </item>
1326
1327 <item>
1328 <title>How to fix a Thinkpad X230 with a broken 180 GB SSD disk</title>
1329 <link>http://people.skolelinux.org/pere/blog/How_to_fix_a_Thinkpad_X230_with_a_broken_180_GB_SSD_disk.html</link>
1330 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_fix_a_Thinkpad_X230_with_a_broken_180_GB_SSD_disk.html</guid>
1331 <pubDate>Wed, 17 Jul 2013 23:50:00 +0200</pubDate>
1332 <description>&lt;p&gt;Today I switched to
1333 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html&quot;&gt;my
1334 new laptop&lt;/a&gt;. I&#39;ve previously written about the problems I had with
1335 my new Thinkpad X230, which was delivered with an
1336 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Intel_SSD_520_Series_180_GB_with_Lenovo_firmware_still_lock_up_from_sustained_writes.html&quot;&gt;180
1337 GB Intel SSD disk with Lenovo firmware&lt;/a&gt; that did not handle
1338 sustained writes. My hardware supplier have been very forthcoming in
1339 trying to find a solution, and after first trying with another
1340 identical 180 GB disks they decided to send me a 256 GB Samsung SSD
1341 disk instead to fix it once and for all. The Samsung disk survived
1342 the installation of Debian with encrypted disks (filling the disk with
1343 random data during installation killed the first two), and I thus
1344 decided to trust it with my data. I have installed it as a Debian Edu
1345 Wheezy roaming workstation hooked up with my Debian Edu Squeeze main
1346 server at home using Kerberos and LDAP, and will use it as my work
1347 station from now on.&lt;/p&gt;
1348
1349 &lt;p&gt;As this is a solid state disk with no moving parts, I believe the
1350 Debian Wheezy default installation need to be tuned a bit to increase
1351 performance and increase life time of the disk. The Linux kernel and
1352 user space applications do not yet adjust automatically to such
1353 environment. To make it easier for my self, I created a draft Debian
1354 package &lt;tt&gt;ssd-setup&lt;/tt&gt; to handle this tuning. The
1355 &lt;a href=&quot;http://anonscm.debian.org/gitweb/?p=collab-maint/ssd-setup.git&quot;&gt;source
1356 for the ssd-setup package&lt;/a&gt; is available from collab-maint, and it
1357 is set up to adjust the setup of the machine by just installing the
1358 package. If there is any non-SSD disk in the machine, the package
1359 will refuse to install, as I did not try to write any logic to sort
1360 file systems in SSD and non-SSD file systems.&lt;/p&gt;
1361
1362 &lt;p&gt;I consider the package a draft, as I am a bit unsure how to best
1363 set up Debian Wheezy with an SSD. It is adjusted to my use case,
1364 where I set up the machine with one large encrypted partition (in
1365 addition to /boot), put LVM on top of this and set up partitions on
1366 top of this again. See the README file in the package source for the
1367 references I used to pick the settings. At the moment these
1368 parameters are tuned:&lt;/p&gt;
1369
1370 &lt;ul&gt;
1371
1372 &lt;li&gt;Set up cryptsetup to pass TRIM commands to the physical disk
1373 (adding discard to /etc/crypttab)&lt;/li&gt;
1374
1375 &lt;li&gt;Set up LVM to pass on TRIM commands to the underlying device (in
1376 this case a cryptsetup partition) by changing issue_discards from
1377 0 to 1 in /etc/lvm/lvm.conf.&lt;/li&gt;
1378
1379 &lt;li&gt;Set relatime as a file system option for ext3 and ext4 file
1380 systems.&lt;/li&gt;
1381
1382 &lt;li&gt;Tell swap to use TRIM commands by adding &#39;discard&#39; to
1383 /etc/fstab.&lt;/li&gt;
1384
1385 &lt;li&gt;Change I/O scheduler from cfq to deadline using a udev rule.&lt;/li&gt;
1386
1387 &lt;li&gt;Run fstrim on every ext3 and ext4 file system every night (from
1388 cron.daily).&lt;/li&gt;
1389
1390 &lt;li&gt;Adjust sysctl values vm.swappiness to 1 and vm.vfs_cache_pressure
1391 to 50 to reduce the kernel eagerness to swap out processes.&lt;/li&gt;
1392
1393 &lt;/ul&gt;
1394
1395 &lt;p&gt;During installation, I cancelled the part where the installer fill
1396 the disk with random data, as this would kill the SSD performance for
1397 little gain. My goal with the encrypted file system is to ensure
1398 those stealing my laptop end up with a brick and not a working
1399 computer. I have no hope in keeping the really resourceful people
1400 from getting the data on the disk (see
1401 &lt;a href=&quot;http://xkcd.com/538/&quot;&gt;XKCD #538&lt;/a&gt; for an explanation why).
1402 Thus I concluded that adding the discard option to crypttab is the
1403 right thing to do.&lt;/p&gt;
1404
1405 &lt;p&gt;I considered using the noop I/O scheduler, as several recommended
1406 it for SSD, but others recommended deadline and a benchmark I found
1407 indicated that deadline might be better for interactive use.&lt;/p&gt;
1408
1409 &lt;p&gt;I also considered using the &#39;discard&#39; file system option for ext3
1410 and ext4, but read that it would give a performance hit ever time a
1411 file is removed, and thought it best to that that slowdown once a day
1412 instead of during my work.&lt;/p&gt;
1413
1414 &lt;p&gt;My package do not set up tmpfs on /var/run, /var/lock and /tmp, as
1415 this is already done by Debian Edu.&lt;/p&gt;
1416
1417 &lt;p&gt;I have not yet started on the user space tuning. I expect
1418 iceweasel need some tuning, and perhaps other applications too, but
1419 have not yet had time to investigate those parts.&lt;/p&gt;
1420
1421 &lt;p&gt;The package should work on Ubuntu too, but I have not yet tested it
1422 there.&lt;/p&gt;
1423
1424 &lt;p&gt;As for the answer to the question in the title of this blog post,
1425 as far as I know, the only solution I know about is to replace the
1426 disk. It might be possible to flash it with Intel firmware instead of
1427 the Lenovo firmware. But I have not tried and did not want to do so
1428 without approval from Lenovo as I wanted to keep the warranty on the
1429 disk until a solution was found and they wanted the broken disks
1430 back.&lt;/p&gt;
1431 </description>
1432 </item>
1433
1434 <item>
1435 <title>Intel SSD 520 Series 180 GB with Lenovo firmware still lock up from sustained writes</title>
1436 <link>http://people.skolelinux.org/pere/blog/Intel_SSD_520_Series_180_GB_with_Lenovo_firmware_still_lock_up_from_sustained_writes.html</link>
1437 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Intel_SSD_520_Series_180_GB_with_Lenovo_firmware_still_lock_up_from_sustained_writes.html</guid>
1438 <pubDate>Wed, 10 Jul 2013 13:30:00 +0200</pubDate>
1439 <description>&lt;p&gt;A few days ago, I wrote about
1440 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html&quot;&gt;the
1441 problems I experienced with my new X230 and its SSD disk&lt;/a&gt;, which
1442 was dying during installation because it is unable to cope with
1443 sustained write. My supplier is in contact with
1444 &lt;a href=&quot;http://www.lenovo.com/&quot;&gt;Lenovo&lt;/a&gt;, and they wanted to send a
1445 replacement disk to try to fix the problem. They decided to send an
1446 identical model, so my hopes for a permanent fix was slim.&lt;/p&gt;
1447
1448 &lt;p&gt;Anyway, today I got the replacement disk and tried to install
1449 Debian Edu Wheezy with encrypted disk on it. The new disk have the
1450 same firmware version as the original. This time my hope raised
1451 slightly as the installation progressed, as the original disk used to
1452 die after 4-7% of the disk was written to, while this time it kept
1453 going past 10%, 20%, 40% and even past 50%. But around 60%, the disk
1454 died again and I was back on square one. I still do not have a new
1455 laptop with a disk I can trust. I can not live with a disk that might
1456 lock up when I download a new
1457 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; ISO or
1458 other large files. I look forward to hearing from my supplier with
1459 the next proposal from Lenovo.&lt;/p&gt;
1460
1461 &lt;p&gt;The original disk is marked Intel SSD 520 Series 180 GB,
1462 11S0C38722Z1ZNME35X1TR, ISN: CVCV321407HB180EGN, SA: G57560302, FW:
1463 LF1i, 29MAY2013, PBA: G39779-300, LBA 351,651,888, LI P/N: 0C38722,
1464 Pb-free 2LI, LC P/N: 16-200366, WWN: 55CD2E40002756C4, Model:
1465 SSDSC2BW180A3L 2.5&quot; 6Gb/s SATA SSD 180G 5V 1A, ASM P/N 0C38732, FRU
1466 P/N 45N8295, P0C38732.&lt;/p&gt;
1467
1468 &lt;p&gt;The replacement disk is marked Intel SSD 520 Series 180 GB,
1469 11S0C38722Z1ZNDE34N0L0, ISN: CVCV315306RK180EGN, SA: G57560-302, FW:
1470 LF1i, 22APR2013, PBA: G39779-300, LBA 351,651,888, LI P/N: 0C38722,
1471 Pb-free 2LI, LC P/N: 16-200366, WWN: 55CD2E40000AB69E, Model:
1472 SSDSC2BW180A3L 2.5&quot; 6Gb/s SATA SSD 180G 5V 1A, ASM P/N 0C38732, FRU
1473 P/N 45N8295, P0C38732.&lt;/p&gt;
1474
1475 &lt;p&gt;The only difference is in the first number (serial number?), ISN,
1476 SA, date and WNPP values. Mentioning all the details here in case
1477 someone is able to use the information to find a way to identify the
1478 failing disk among working ones (if any such working disk actually
1479 exist).&lt;/p&gt;
1480 </description>
1481 </item>
1482
1483 <item>
1484 <title>July 13th: Debian/Ubuntu BSP and Skolelinux/Debian Edu developer gathering in Oslo</title>
1485 <link>http://people.skolelinux.org/pere/blog/July_13th__Debian_Ubuntu_BSP_and_Skolelinux_Debian_Edu_developer_gathering_in_Oslo.html</link>
1486 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/July_13th__Debian_Ubuntu_BSP_and_Skolelinux_Debian_Edu_developer_gathering_in_Oslo.html</guid>
1487 <pubDate>Tue, 9 Jul 2013 10:40:00 +0200</pubDate>
1488 <description>&lt;p&gt;The upcoming Saturday, 2013-07-13, we are organising a combined
1489 Debian Edu developer gathering and Debian and Ubuntu bug squashing
1490 party in Oslo. It is organised by &lt;a href=&quot;http://www.nuug.no/&quot;&gt;the
1491 member assosiation NUUG&lt;/a&gt; and
1492 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;the Debian Edu / Skolelinux
1493 project&lt;/a&gt; together with &lt;a href=&quot;http://bitraf.no/&quot;&gt;the hack space
1494 Bitraf&lt;/a&gt;.&lt;/p&gt;
1495
1496 &lt;p&gt;It starts 10:00 and continue until late evening. Everyone is
1497 welcome, and there is no fee to participate. There is on the other
1498 hand limited space, and only room for 30 people. Please put your name
1499 on &lt;a href=&quot;http://wiki.debian.org/BSP/2013/07/13/no/Oslo&quot;&gt;the event
1500 wiki page&lt;/a&gt; if you plan to join us.&lt;/p&gt;
1501 </description>
1502 </item>
1503
1504 <item>
1505 <title>The Thinkpad is dead, long live the Thinkpad X230?</title>
1506 <link>http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html</link>
1507 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html</guid>
1508 <pubDate>Fri, 5 Jul 2013 08:30:00 +0200</pubDate>
1509 <description>&lt;p&gt;Half a year ago, I reported that I had to find a
1510 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Thank_you_Thinkpad_X41__for_your_long_and_trustworthy_service.html&quot;&gt;replacement
1511 for my trusty old Thinkpad X41&lt;/a&gt;. Unfortunately I did not have much
1512 time to spend on it, and it took a while to find a model I believe
1513 will do the job, but two days ago the replacement finally arrived. I
1514 ended up picking a
1515 &lt;a href=&quot;http://www.linlap.com/lenovo_thinkpad_x230&quot;&gt;Thinkpad X230&lt;/a&gt;
1516 with SSD disk (NZDAJMN). I first test installed Debian Edu Wheezy as
1517 a roaming workstation, and it seemed to work flawlessly. But my
1518 second installation with encrypted disk was not as successful. More
1519 on that below.&lt;/p&gt;
1520
1521 &lt;p&gt;I had a hard time trying to track down a good laptop, as my most
1522 important requirements (robust and with a good keyboard) are never
1523 listed in the feature list. But I did get good help from the search
1524 feature at &lt;a href=&quot;http://www.prisjakt.no/&quot;&gt;Prisjakt&lt;/a&gt;, which
1525 allowed me to limit the list of interesting laptops based on my other
1526 requirements. A bit surprising that SSD disk are not disks according
1527 to that search interface, so I had to drop specifying the number of
1528 disks from my search parameters. I also asked around among friends to
1529 get their impression on keyboards and robustness.&lt;/p&gt;
1530
1531 &lt;p&gt;So the new laptop arrived, and it is quite a lot wider than the
1532 X41. I am not quite convinced about the keyboard, as it is
1533 significantly wider than my old keyboard, and I have to stretch my
1534 hand a lot more to reach the edges. But the key response is fairly
1535 good and the individual key shape is fairly easy to handle, so I hope
1536 I will get used to it. My old X40 was starting to fail, and I really
1537 needed a new laptop now. :)&lt;/p&gt;
1538
1539 &lt;p&gt;Turning off the touch pad was simple. All it took was a quick
1540 visit to the BIOS during boot it disable it.&lt;/p&gt;
1541
1542 &lt;p&gt;But there is a fatal problem with the laptop. The 180 GB SSD disk
1543 lock up during load. And this happen when installing Debian Wheezy
1544 with encrypted disk, while the disk is being filled with random data.
1545 I also tested to install Ubuntu Raring, and it happen there too if I
1546 reenable the code to fill the disk with random data (it is disabled by
1547 default in Ubuntu). And the bug with is already known. It was
1548 reported to Debian as &lt;a href=&quot;http://bugs.debian.org/691427&quot;&gt;BTS
1549 report #691427 2012-10-25&lt;/a&gt; (journal commit I/O error on brand-new
1550 Thinkpad T430s ext4 on lvm on SSD). It is also reported to the Linux
1551 kernel developers as
1552 &lt;a href=&quot;https://bugzilla.kernel.org/show_bug.cgi?id=51861&quot;&gt;Kernel bugzilla
1553 report #51861 2012-12-20&lt;/a&gt; (Intel SSD 520 stops working under load
1554 (SSDSC2BW180A3L in Lenovo ThinkPad T430s)). It is also reported on the
1555 Lenovo forums, both for
1556 &lt;a href=&quot;http://forums.lenovo.com/t5/T400-T500-and-newer-T-series/T430s-Intel-SSD-520-180GB-issue/m-p/1070549&quot;&gt;T430
1557 2012-11-10&lt;/a&gt; and for
1558 &lt;a href=&quot;http://forums.lenovo.com/t5/X-Series-ThinkPad-Laptops/x230-SATA-errors-with-180GB-Intel-520-SSD-under-heavy-write-load/m-p/1068147&quot;&gt;X230
1559 03-20-2013&lt;/a&gt;. The problem do not only affect installation. The
1560 reports state that the disk lock up during use if many writes are done
1561 on the disk, so it is much no use to work around the installation
1562 problem and end up with a computer that can lock up at any moment.
1563 There is even a
1564 &lt;a href=&quot;https://git.efficios.com/?p=test-ssd.git&quot;&gt;small C program
1565 available&lt;/a&gt; that will lock up the hard drive after running a few
1566 minutes by writing to a file.&lt;/p&gt;
1567
1568 &lt;p&gt;I&#39;ve contacted my supplier and asked how to handle this, and after
1569 contacting PCHELP Norway (request 01D1FDP) which handle support
1570 requests for Lenovo, his first suggestion was to upgrade the disk
1571 firmware. Unfortunately there is no newer firmware available from
1572 Lenovo, as my disk already have the most recent one (version LF1i). I
1573 hope to hear more from him today and hope the problem can be
1574 fixed. :)&lt;/p&gt;
1575 </description>
1576 </item>
1577
1578 <item>
1579 <title>The Thinkpad is dead, long live the Thinkpad X230</title>
1580 <link>http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230.html</link>
1581 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230.html</guid>
1582 <pubDate>Thu, 4 Jul 2013 09:20:00 +0200</pubDate>
1583 <description>&lt;p&gt;Half a year ago, I reported that I had to find a replacement for my
1584 trusty old Thinkpad X41. Unfortunately I did not have much time to
1585 spend on it, but today the replacement finally arrived. I ended up
1586 picking a &lt;a href=&quot;http://www.linlap.com/lenovo_thinkpad_x230&quot;&gt;Thinkpad
1587 X230&lt;/a&gt; with SSD disk (NZDAJMN). I first test installed Debian Edu
1588 Wheezy as a roaming workstation, and it worked flawlessly. As I write
1589 this, it is installing what I hope will be a more final installation,
1590 with a encrypted hard drive to ensure any dope head stealing it end up
1591 with an expencive door stop.&lt;/p&gt;
1592
1593 &lt;p&gt;I had a hard time trying to track down a good laptop, as my most
1594 important requirements (robust and with a good keyboard) are never
1595 listed in the feature list. But I did get good help from the search
1596 feature at &lt;ahref=&quot;http://www.prisjakt.no/&quot;&gt;Prisjakt&lt;/a&gt;, which
1597 allowed me to limit the list of interesting laptops based on my other
1598 requirements. A bit surprising that SSD disk are not disks, so I had
1599 to drop number of disks from my search parameters.&lt;/p&gt;
1600
1601 &lt;p&gt;I am not quite convinced about the keyboard, as it is significantly
1602 wider than my old keyboard, and I have to stretch my hand a lot more
1603 to reach the edges. But the key response is fairly good and the
1604 individual key shape is fairly easy to handle, so I hope I will get
1605 used to it. My old X40 was starting to fail, and I really needed a
1606 new laptop now. :)&lt;/p&gt;
1607
1608 &lt;p&gt;I look forward to figuring out how to turn off the touch pad.&lt;/p&gt;
1609 </description>
1610 </item>
1611
1612 <item>
1613 <title>Fourth alpha release of Debian Edu/Skolelinux based on Debian Wheezy</title>
1614 <link>http://people.skolelinux.org/pere/blog/Fourth_alpha_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</link>
1615 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Fourth_alpha_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</guid>
1616 <pubDate>Wed, 3 Jul 2013 14:00:00 +0200</pubDate>
1617 <description>&lt;p&gt;The fourth wheezy based alpha release of Debian Edu was wrapped up
1618 today. This is the release announcement:&lt;/p&gt;
1619
1620 &lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.1+edu0~alpha3 released
1621 2013-07-03&lt;/strong&gt;&lt;/p&gt;
1622
1623 &lt;p&gt;These are the release notes for for Debian Edu / Skolelinux
1624 7.1+edu0~alpha3, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
1625
1626 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
1627
1628 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
1629 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
1630 out-of-the box environment of a completely configured school
1631 network. Immediately after installation a school server running all
1632 services needed for a school network is set up just waiting for users
1633 and machines being added via GOsa², a comfortable Web-UI. A netbooting
1634 environment is prepared using PXE, so after initial installation of
1635 the main server from CD, DVD or USB stick all other machines can be
1636 installed via the network. The provided school server provides LDAP
1637 database and Kerberos authentication service, centralized home
1638 directories, DHCP server, web proxy and many other services. The
1639 desktop contains
1640 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;more
1641 than 60 educational software packages&lt;/a&gt; and more are available from
1642 the Debian archive, and schools can choose between KDE, Gnome, LXDE
1643 and Xfce desktop environment.&lt;/p&gt;
1644
1645 &lt;p&gt;This is the fourth test release based on Debian Wheezy. Basically
1646 this is an updated and slightly improved version compared to the
1647 Squeeze release.&lt;/p&gt;
1648
1649 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
1650 &lt;ul&gt;
1651 &lt;li&gt;Dropped ispell dictionaries from our default installation.&lt;/li&gt;
1652 &lt;li&gt;Dropped menu-xdg from the KDE desktop option, to drop the Debian
1653 submenu. It was not included with Gnome, LXDE or Xfce, so this
1654 brings KDE in line with the others.&lt;/li&gt;
1655 &lt;li&gt;Dropped xdrawchem, xjig and xsok from our default installation as
1656 they don&#39;t have a desktop menu entry and thus won&#39;t show up in the
1657 menu now that menu-xdg was removed.&lt;/li&gt;
1658 &lt;li&gt;Removed the killer system to kill left behind processes on
1659 multi-user machines, as it was no longer able to understand when a
1660 X display was in use and killed the processes of the active users
1661 too.&lt;/li&gt;
1662 &lt;li&gt;Dropped the golearn (from goplay) package as the debtags in wheezy
1663 are too few to make the package useful.&lt;/li&gt;
1664 &lt;/ul&gt;
1665 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
1666 &lt;ul&gt;
1667 &lt;li&gt;Updated artwork matching http://wiki.debian.org/DebianArt/Themes/Joy
1668 &lt;li&gt;Multi-arch i386/amd64 USB stick ISO available.&lt;/li&gt;
1669 &lt;li&gt;Got rid of ispell/wordlist related debconf questions that showed
1670 up for some language options.&lt;/li&gt;
1671 &lt;li&gt;Switched to using http.debian.net as APT source by default.&lt;/li&gt;
1672 &lt;li&gt;Fixed proxy configuration on Main Server installations.&lt;/li&gt;
1673 &lt;li&gt;Changed LTSP setup to ask dpkg to use force-unsafe-io the same way
1674 d-i is doing it.&lt;/li&gt;
1675 &lt;li&gt;Made sure root and user passwords were not left behind in the
1676 debconf database after installation on Main Server installations.&lt;/li&gt;
1677 &lt;li&gt;Made Roaming Workstation dynamic setup more robust and added draft
1678 script setup-ad-client to hook a Roaming Workstation up to a
1679 Active Directory server instead of a Debian Edu Main Server.&lt;/li&gt;
1680 &lt;li&gt;Update system to install needed firmware packages during
1681 installation, to work properly in Wheezy.&lt;/li&gt;
1682 &lt;li&gt;Update system to handle hardware quirks (debian-edu-hwsetup).&lt;/li&gt;
1683 &lt;li&gt;Corrected PXE installation setup to properly pass selected desktop
1684 and keymap settings to PXE installation clients.&lt;/li&gt;
1685 &lt;li&gt;LTSP diskless workstations use sshfs by default, allowing them to
1686 work without adding them to DNS and NIS netgroups for NFS access.&lt;/li&gt;
1687 &lt;/ul&gt;
1688 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
1689 &lt;ul&gt;
1690 &lt;li&gt;No mass import of user account data in GOsa (ldif or csv)
1691 available yet (698840).&lt;/li&gt;
1692 &lt;li&gt;Artwork not enabled for all desktops.&lt;/li&gt;
1693 &lt;/ul&gt;
1694 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
1695
1696 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
1697 &lt;ul&gt;
1698 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso&lt;/a&gt;&lt;/li&gt;
1699 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso&lt;/a&gt;&lt;/li&gt;
1700 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso .&lt;/li&gt;
1701 &lt;/ul&gt;
1702
1703 &lt;p&gt;The MD5SUM of this image is: 2b161a99d2a848c376d8d04e3854e30c
1704 &lt;br&gt;The SHA1SUM of this image is: 498922e9c508c0a7ee9dbe1dfe5bf830d779c3c8&lt;/p&gt;
1705
1706 &lt;p&gt;To download the multiarch USB stick ISO release you can use&lt;/p&gt;
1707 &lt;ul&gt;
1708 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso&lt;/a&gt;&lt;/li&gt;
1709 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso&lt;/a&gt;&lt;/li&gt;
1710 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso .&lt;/li&gt;
1711 &lt;/ul&gt;
1712
1713 &lt;p&gt;The MD5SUM of this image is: 25e808e403a4c15dbef1d13c37d572ac
1714 &lt;br&gt;The SHA1SUM of this image is: 15ecfc93eb6b4f453b7eb0bc04b6a279262d9721&lt;/p&gt;
1715
1716 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
1717
1718 &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;&lt;/p&gt;
1719 </description>
1720 </item>
1721
1722 <item>
1723 <title>Automatically locate and install required firmware packages on Debian (Isenkram 0.4)</title>
1724 <link>http://people.skolelinux.org/pere/blog/Automatically_locate_and_install_required_firmware_packages_on_Debian__Isenkram_0_4_.html</link>
1725 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatically_locate_and_install_required_firmware_packages_on_Debian__Isenkram_0_4_.html</guid>
1726 <pubDate>Tue, 25 Jun 2013 11:50:00 +0200</pubDate>
1727 <description>&lt;p&gt;It annoys me when the computer fail to do automatically what it is
1728 perfectly capable of, and I have to do it manually to get things
1729 working. One such task is to find out what firmware packages are
1730 needed to get the hardware on my computer working. Most often this
1731 affect the wifi card, but some times it even affect the RAID
1732 controller or the ethernet card. Today I pushed version 0.4 of the
1733 &lt;a href=&quot;http://packages.qa.debian.org/isenkram&quot;&gt;Isenkram package&lt;/a&gt;
1734 including a new script isenkram-autoinstall-firmware handling the
1735 process of asking all the loaded kernel modules what firmware files
1736 they want, find debian packages providing these files and install the
1737 debian packages. Here is a test run on my laptop:&lt;/p&gt;
1738
1739 &lt;p&gt;&lt;pre&gt;
1740 # isenkram-autoinstall-firmware
1741 info: kernel drivers requested extra firmware: ipw2200-bss.fw ipw2200-ibss.fw ipw2200-sniffer.fw
1742 info: fetching http://http.debian.net/debian/dists/squeeze/Contents-i386.gz
1743 info: locating packages with the requested firmware files
1744 info: Updating APT sources after adding non-free APT source
1745 info: trying to install firmware-ipw2x00
1746 firmware-ipw2x00
1747 firmware-ipw2x00
1748 Preconfiguring packages ...
1749 Selecting previously deselected package firmware-ipw2x00.
1750 (Reading database ... 259727 files and directories currently installed.)
1751 Unpacking firmware-ipw2x00 (from .../firmware-ipw2x00_0.28+squeeze1_all.deb) ...
1752 Setting up firmware-ipw2x00 (0.28+squeeze1) ...
1753 #
1754 &lt;/pre&gt;&lt;/p&gt;
1755
1756 &lt;p&gt;When all the requested firmware is present, a simple message is
1757 printed instead:&lt;/p&gt;
1758
1759 &lt;p&gt;&lt;pre&gt;
1760 # isenkram-autoinstall-firmware
1761 info: did not find any firmware files requested by loaded kernel modules. exiting
1762 #
1763 &lt;/pre&gt;&lt;/p&gt;
1764
1765 &lt;p&gt;It could use some polish, but it is already working well and saving
1766 me some time when setting up new machines. :)&lt;/p&gt;
1767
1768 &lt;p&gt;So, how does it work? It look at the set of currently loaded
1769 kernel modules, and look up each one of them using modinfo, to find
1770 the firmware files listed in the module meta-information. Next, it
1771 download the Contents file from a nearby APT mirror, and search for
1772 the firmware files in this file to locate the package with the
1773 requested firmware file. If the package is in the non-free section, a
1774 non-free APT source is added and the package is installed using
1775 &lt;tt&gt;apt-get install&lt;/tt&gt;. The end result is a slightly better working
1776 machine.&lt;/p&gt;
1777
1778 &lt;p&gt;I hope someone find time to implement a more polished version of
1779 this script as part of the hw-detect debian-installer module, to
1780 finally fix &lt;a href=&quot;http://bugs.debian.org/655507&quot;&gt;BTS report
1781 #655507&lt;/a&gt;. There really is no need to insert USB sticks with
1782 firmware during a PXE install when the packages already are available
1783 from the nearby Debian mirror.&lt;/p&gt;
1784 </description>
1785 </item>
1786
1787 <item>
1788 <title>The value of a good distro wide test suite...</title>
1789 <link>http://people.skolelinux.org/pere/blog/The_value_of_a_good_distro_wide_test_suite___.html</link>
1790 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_value_of_a_good_distro_wide_test_suite___.html</guid>
1791 <pubDate>Sat, 22 Jun 2013 07:00:00 +0200</pubDate>
1792 <description>&lt;p&gt;In the &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
1793 Skolelinux&lt;/a&gt; project, we include a post-installation test suite,
1794 which check that services are running, working, and return the
1795 expected results. It runs automatically just after the first boot on
1796 test installations (using test ISOs), but not on production
1797 installations (using non-test ISOs). It test that the LDAP service is
1798 operating, Kerberos is responding, DNS is replying, file systems are
1799 online resizable, etc, etc. And it check that the PXE service is
1800 configured, which is the topic of this post.&lt;/p&gt;
1801
1802 &lt;p&gt;The last week I&#39;ve fixed the DVD and USB stick ISOs for our Debian
1803 Edu Wheezy release. These ISOs are supposed to be able to install a
1804 complete system without any Internet connection, but for that to
1805 happen all the needed packages need to be on them. Thanks to our test
1806 suite, I discovered that we had forgotten to adjust our PXE setup to
1807 cope with the new names and paths used by the netboot d-i packages.
1808 When Internet connectivity was available, the installer fall back to
1809 using wget to fetch d-i boot images, but when offline it require
1810 working packages to get it working. And the packages changed name
1811 from debian-installer-6.0-netboot-$arch to
1812 debian-installer-7.0-netboot-$arch, we no longer pulled in the
1813 packages during installation. Without our test suite, I suspect we
1814 would never have discovered this before release. Now it is fixed
1815 right after we got the ISOs operational.&lt;/p&gt;
1816
1817 &lt;p&gt;Another by-product of the test suite is that we can ask system
1818 administrators with problems getting Debian Edu to work, to run the
1819 test suite using &lt;tt&gt;/usr/sbin/debian-edu-test-install&lt;/tt&gt; and see if
1820 any errors are detected. This usually pinpoint the subsystem causing
1821 the problem.&lt;/p&gt;
1822
1823 &lt;p&gt;If you want to help us help kids learn how to share and create,
1824 please join us on
1825 &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;#debian-edu on
1826 irc.debian.org&lt;/a&gt; and the
1827 &lt;a href=&quot;http://lists.debian.org/debian-edu/&quot;&gt;debian-edu@&lt;/a&gt; mailing
1828 list.&lt;/p&gt;
1829 </description>
1830 </item>
1831
1832 <item>
1833 <title>Debian Edu interview: Victor Nițu</title>
1834 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Victor_Ni_u.html</link>
1835 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Victor_Ni_u.html</guid>
1836 <pubDate>Mon, 17 Jun 2013 10:50:00 +0200</pubDate>
1837 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and
1838 Skolelinux&lt;/a&gt; distribution have users and contributors all around the
1839 globe. And a while back, an enterprising young man showed up on
1840 &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;our IRC channel
1841 #debian-edu&lt;/a&gt; and started asking questions about how Debian Edu
1842 worked. We answered as good as we could, and even convinced him to
1843 help us with translations. And today I managed to get an interview
1844 with him, to learn more about him.&lt;/p&gt;
1845
1846 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
1847
1848 &lt;p&gt;I&#39;m a 25 year old free software enthusiast, living in Romania,
1849 which is also my country of origin. Back in 2009, at a New Year&#39;s Eve
1850 party, I had a very nice &lt;strike&gt;beer&lt;/strike&gt; discussion with a
1851 friend, when we realized we have no organised Debian community in our
1852 country. A few days later, we put together the infrastructure for such
1853 community and even gathered a nice Debian-ish crowd. Since then, I
1854 began my quest as a free software hacker and activist and I am
1855 constantly trying to cover as much ground as possible on that
1856 field.&lt;/p&gt;
1857
1858 &lt;p&gt;A few years ago I founded a small web development company, which
1859 provided me the flexible schedule I needed so much for my
1860 activities. For the last 13 months, I have been the Technical Director
1861 of &lt;a href=&quot;http://ceata.org/&quot;&gt;Fundația Ceata&lt;/a&gt;, which is a free
1862 software activist organisation endorsed by the FSF and the FSFE, and
1863 the only one we have in our country.&lt;/p&gt;
1864
1865 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
1866 project?&lt;/strong&gt;&lt;/p&gt;
1867
1868 &lt;p&gt;The idea of participating in the Debian Edu project was a surprise
1869 even to me, since I never used it before I began getting involved in
1870 it. This year I had a great opportunity to deliver a talk on
1871 educational software, and I knew immediately where to look. It was a
1872 love at first sight, since I was previously involved with some of the
1873 technologies the project incorporates, and I rapidly found a lot of
1874 ways to contribute.&lt;/p&gt;
1875
1876 &lt;p&gt;My first contributions consisted in translating the installer and
1877 configuration dialogs, then I found some bugs to squash (I still
1878 haven&#39;t fixed them yet though), and I even got my eyes on some other
1879 areas where I can prove myself helpful. Since the appetite for free
1880 software in my country is pretty low, I&#39;ll be happy to be the first
1881 one around here advocating for the project&#39;s adoption in educational
1882 environments, and maybe even get my hands dirty in creating a flavour
1883 for our own needs. I am not used to make very advanced plannings, so
1884 from now on, time will tell what I&#39;ll be doing next, but I think I
1885 have a pretty consistent starting point.&lt;/p&gt;
1886
1887 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
1888 Edu?&lt;/strong&gt;&lt;/p&gt;
1889
1890 &lt;p&gt;Not a long time ago, I was in the position of configuring and
1891 maintaining a LDAP server on some Debian derivative, and I must say it
1892 took me a while. A long time ago, I was maintaining a bigger
1893 Samba-powered infrastructure, and I must say I spent quite a lot of
1894 time on it. I have similar stories about many of the services included
1895 with Skolelinux, and the main advantage I see about it is the
1896 out-of-the box availability of them, making it quite competitive when
1897 it comes to managing a school&#39;s network, for example.&lt;/p&gt;
1898
1899 &lt;p&gt;Of course, there is more to say about Skolelinux than the
1900 availability of the software included, its flexibility in various
1901 scenarios is something I can&#39;t wait to experiment &quot;into the wild&quot; (I
1902 only played with virtual machines so far). And I am sure there is a
1903 lot more I haven&#39;t discovered yet about it, being so new within the
1904 project.&lt;/p&gt;
1905
1906 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
1907 Edu?&lt;/strong&gt;&lt;/p&gt;
1908
1909 &lt;p&gt;As usual, when it comes to Debian Blends, I see as the biggest
1910 disadvantage the lack of a numerous team dedicated to the
1911 project. Every day I see the same names in the changelogs, and I have
1912 a constantly fear of the bus factor in this story. I&#39;d like to see
1913 Debian Edu advertised more as an entry point into the Debian
1914 ecosystem, especially amongst newcomers and students. IMHO there are a
1915 lot low-hanging fruits in terms of bug squashing, and enough
1916 opportunities to get the feeling of the Debian Project&#39;s dynamics. Not
1917 to mention it&#39;s a very fun blend to work on!&lt;/p&gt;
1918
1919 &lt;p&gt;Derived from the previous statement, is the delay in catching up
1920 with the main Debian release and documentation. This is common though
1921 to all blends and derivatives, but it&#39;s an issue we can all work
1922 on.&lt;/p&gt;
1923
1924 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
1925
1926 &lt;p&gt;I can hardly imagine myself spending a day without Vim, since my
1927 daily routine covers writing code and hacking configuration files. I
1928 am a fan of the Awesome window manager (but I also like the
1929 Enlightenment project a lot!),
1930 &lt;a href=&quot;http://www.claws-mail.org/‎&quot;&gt;Claws Mail&lt;/a&gt; due to its ease of
1931 use and very configurable behaviour. Recently I fell in love with
1932 &lt;a href=&quot;https://launchpad.net/redshift&quot;&gt;Redshift&lt;/a&gt;, which helps me
1933 get through the night without headaches. Of course, there is much more
1934 stuff in this bag, but I&#39;ll need a blog on my own for doing this!&lt;/p&gt;
1935
1936 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
1937 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
1938
1939 &lt;p&gt;Well, on this field, I cannot do much more than experiment right
1940 now. So, being far from having a recipe for success, I can only assume
1941 that:&lt;/p&gt;
1942
1943 &lt;ul&gt;
1944
1945 &lt;li&gt;schools would like to get rid of proprietary software&lt;/li&gt;
1946
1947 &lt;li&gt;students will love the openness of the system, and will want to
1948 experiment with it - maybe we need to harvest the native curiosity
1949 of teenagers more?&lt;/li&gt;
1950
1951 &lt;li&gt;there is no &quot;right one&quot; when it comes to strategies, but it would
1952 be useful to have some success stories published somewhere, so
1953 other can get some inspiration from them (I know I&#39;d promote
1954 them!)&lt;/li&gt;
1955
1956 &lt;li&gt;more active promotion - talks, conferences, even small school
1957 lectures can do magical things if they encounter at least one
1958 person interested. Who knows who that person might be? ;-)&lt;/li&gt;
1959
1960 &lt;/ul&gt;
1961
1962 &lt;p&gt;I also see some problems in getting Skolelinux into schools; for
1963 example, in our country we have a great deal of corruption issues, so
1964 it might be hard(er) to fight against proprietary solutions. Also,
1965 people who relied on commercial software for all their lives, would be
1966 very hard to convert against their will.&lt;/p&gt;
1967 </description>
1968 </item>
1969
1970 <item>
1971 <title>Debian Edu interview: Jonathan Carter</title>
1972 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Jonathan_Carter.html</link>
1973 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Jonathan_Carter.html</guid>
1974 <pubDate>Wed, 12 Jun 2013 09:50:00 +0200</pubDate>
1975 <description>&lt;p&gt;There is a certain cross-over between the
1976 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux
1977 project&lt;/a&gt; and &lt;a href=&quot;http://www.edubuntu.org/&quot;&gt;the Edubuntu
1978 project&lt;/a&gt;, and for example the LTSP packages in Debian are a joint
1979 effort between the projects. One person with a foot in both camps is
1980 Jonathan Carter, which I am now happy to present to you.&lt;/p&gt;
1981
1982 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
1983
1984 &lt;p&gt;I&#39;m a South-African free software geek who lives in Cape Town. My
1985 days vary quite a bit since I&#39;m involved in too many things. As I&#39;m
1986 getting older I&#39;m learning how to focus a bit more :)&lt;/p&gt;
1987
1988 &lt;p&gt;I&#39;m also an Edubuntu contributor and I love when there are
1989 opportunities for the Edubuntu and Debian Edu projects to benefit from
1990 each other.&lt;/p&gt;
1991
1992 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
1993 project?&lt;/strong&gt;&lt;/p&gt;
1994
1995 &lt;p&gt;I&#39;ve been somewhat familiar with the project before, but I think my
1996 first direct exposure to the project was when I met Petter
1997 [Reinholdtsen] and Knut [Yrvin] at the Edubuntu summit in 2005 in
1998 London. They provided great feedback that helped the bootstrapping of
1999 Edubuntu. Back then Edubuntu (and even Ubuntu) was still very new and
2000 it was great getting input from people who have been around longer. I
2001 was also still very excitable and said yes to everything and to this
2002 day I have a big todo list backlog that I&#39;m catching up with. I think
2003 over the years the relationship between Edubuntu and Debian-Edu has
2004 been gradually improving, although I think there&#39;s a lot that we could
2005 still improve on in terms of working together on packages. I&#39;m sure
2006 we&#39;ll get there one day.&lt;/p&gt;
2007
2008 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
2009 Edu?&lt;/strong&gt;&lt;/p&gt;
2010
2011 &lt;p&gt;Debian itself already has so many advantages. I could go on about
2012 it for pages, but in essence I love that it&#39;s a very honest project
2013 that puts its users first with no hidden agendas and also produces
2014 very high quality work.&lt;/p&gt;
2015
2016 &lt;p&gt;I think the advantage of Debian Edu is that it makes many common
2017 set-up tasks simpler so that administrators can get up and running
2018 with a lot less effort and frustration. At the same time I think it
2019 helps to standardise installations in schools so that it&#39;s easier for
2020 community members and commercial suppliers to support.&lt;/p&gt;
2021
2022 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
2023 Edu?&lt;/strong&gt;&lt;/p&gt;
2024
2025 &lt;p&gt;I had to re-type this one a few times because I&#39;m trying to
2026 separate &quot;disadvantages&quot; from &quot;areas that need improvement&quot; (which is
2027 what I originally rambled on about)&lt;/p&gt;
2028
2029 &lt;p&gt;The biggest disadvantage I can think of is lack of manpower. The
2030 project could do so much more if there were more good contributors. I
2031 think some of the problems are external too. Free software and free
2032 content in education is a no-brainer but it takes some time to catch
2033 on. When you&#39;ve been working with the same proprietary eco-system for
2034 years and have gotten used to it, it can be hard to adjust to some
2035 concepts in the free software world. It would be nice if there were
2036 more Debian Edu consultants across the world. I&#39;d love to be one
2037 myself but I&#39;m already so over-committed that it&#39;s just not possible
2038 currently.&lt;/p&gt;
2039
2040 &lt;p&gt;I think the best short-term solution to that large-scale problem is
2041 for schools to be pro-active and share their experiences and grow
2042 their skills in-house. I&#39;m often saddened to see how much money
2043 educational institutions spend on 3rd party solutions that they don&#39;t
2044 have access to after the service has ended and they could&#39;ve gotten so
2045 much more value otherwise by being more self-sustainable and
2046 autonomous.&lt;/p&gt;
2047
2048 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
2049
2050 &lt;p&gt;My main laptop dual-boots between Debian and Windows 7. I was
2051 Windows free for years but started dual-booting again last year for
2052 some games which help me focus and relax (Starcraft II in
2053 particular). Gaming support on Linux is improving in leaps and bounds
2054 so I suppose I&#39;ll soon be able to regain that disk space :)&lt;/p&gt;
2055
2056 &lt;p&gt;Besides that I rely on Icedove, Chromium, Terminator, Byobu, irssi,
2057 git, Tomboy, KVM, VLC and LibreOffice. Recently I&#39;ve been torn on
2058 which desktop environment I like and I&#39;m taking some refuge in Xfce
2059 while I figure that out. I like tools that keep things simple. I enjoy
2060 Python and shell scripting. I went to an Arduino workshop recently and
2061 it was awesome seeing how easy and simple the IDE software was to get
2062 up and running in Debian compared to the users running Windows and OS
2063 X.&lt;/p&gt;
2064
2065 &lt;p&gt;I also use mc which some people frown upon slightly. I got used to
2066 using Norton Commander in the early 90&#39;s and it stuck (I think the
2067 people who sneer at it is just jealous that they don&#39;t know how to use
2068 it :p)
2069
2070 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
2071 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
2072
2073 &lt;p&gt;I think trying to force it is unproductive. I also think that in
2074 many cases it&#39;s appropriate for schools to use non-free systems and I
2075 don&#39;t think that there&#39;s any particular moral or ethical problem with
2076 that.&lt;/p&gt;
2077
2078 &lt;p&gt;I do think though that free software can already solve so so many
2079 problems in educational institutions and it&#39;s just a shame not taking
2080 advantage of that.&lt;/p&gt;
2081
2082 &lt;p&gt;I also think that some curricula need serious review. For example,
2083 some areas of the world rely heavily on very specific versions of MS
2084 Office, teaching students to parrot menu items instead of learning the
2085 general concepts. I think that&#39;s very unproductive because firstly, MS
2086 Office&#39;s interface changes drastically every few years and on top of
2087 that it also locks in a generation to a product that might not be the
2088 best solution for them.&lt;/p&gt;
2089
2090 &lt;p&gt;To answer your question, I believe that the right strategy is to
2091 educate and inform, giving someone the information they require to
2092 make a decision that would work for them.&lt;/p&gt;
2093 </description>
2094 </item>
2095
2096 <item>
2097 <title>Fixing the Linux black screen of death on machines with Intel HD video</title>
2098 <link>http://people.skolelinux.org/pere/blog/Fixing_the_Linux_black_screen_of_death_on_machines_with_Intel_HD_video.html</link>
2099 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Fixing_the_Linux_black_screen_of_death_on_machines_with_Intel_HD_video.html</guid>
2100 <pubDate>Tue, 11 Jun 2013 11:00:00 +0200</pubDate>
2101 <description>&lt;p&gt;When installing RedHat, Fedora, Debian and Ubuntu on some machines,
2102 the screen just turn black when Linux boot, either during installation
2103 or on first boot from the hard disk. I&#39;ve seen it once in a while the
2104 last few years, but only recently understood the cause. I&#39;ve seen it
2105 on HP laptops, and on my latest acquaintance the Packard Bell laptop.
2106 The reason seem to be in the wiring of some laptops. The system to
2107 control the screen background light is inverted, so when Linux try to
2108 turn the brightness fully on, it end up turning it off instead. I do
2109 not know which Linux drivers are affected, but this post is about the
2110 i915 driver used by the
2111 &lt;a href=&quot;http://www.linlap.com/packard_bell_easynote_lv&quot;&gt;Packard Bell
2112 EasyNote LV&lt;/a&gt;, Thinkpad X40 and many other laptops.&lt;/p&gt;
2113
2114 &lt;p&gt;The problem can be worked around two ways. Either by adding
2115 i915.invert_brightness=1 as a kernel option, or by adding a file in
2116 /etc/modprobe.d/ to tell modprobe to add the invert_brightness=1
2117 option when it load the i915 kernel module. On Debian and Ubuntu, it
2118 can be done by running these commands as root:&lt;/p&gt;
2119
2120 &lt;pre&gt;
2121 echo options i915 invert_brightness=1 | tee /etc/modprobe.d/i915.conf
2122 update-initramfs -u -k all
2123 &lt;/pre&gt;
2124
2125 &lt;p&gt;Since March 2012 there is
2126 &lt;a href=&quot;http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=4dca20efb1a9c2efefc28ad2867e5d6c3f5e1955&quot;&gt;a
2127 mechanism in the Linux kernel&lt;/a&gt; to tell the i915 driver which
2128 hardware have this problem, and get the driver to invert the
2129 brightness setting automatically. To use it, one need to add a row in
2130 &lt;a href=&quot;http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/drivers/gpu/drm/i915/intel_display.c&quot;&gt;the
2131 intel_quirks array&lt;/a&gt; in the driver source
2132 &lt;tt&gt;drivers/gpu/drm/i915/intel_display.c&lt;/tt&gt; (look for &quot;&lt;tt&gt;static
2133 struct intel_quirk intel_quirks&lt;/tt&gt;&quot;), specifying the PCI device
2134 number (vendor number 8086 is assumed) and subdevice vendor and device
2135 number.&lt;/p&gt;
2136
2137 &lt;p&gt;My Packard Bell EasyNote LV got this output from &lt;tt&gt;lspci
2138 -vvnn&lt;/tt&gt; for the video card in question:&lt;/p&gt;
2139
2140 &lt;p&gt;&lt;pre&gt;
2141 00:02.0 VGA compatible controller [0300]: Intel Corporation \
2142 3rd Gen Core processor Graphics Controller [8086:0156] \
2143 (rev 09) (prog-if 00 [VGA controller])
2144 Subsystem: Acer Incorporated [ALI] Device [1025:0688]
2145 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- \
2146 ParErr- Stepping- SE RR- FastB2B- DisINTx+
2147 Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast &gt;TAbort- \
2148 &lt;TAbort- &lt;MAbort-&gt;SERR- &lt;PERR- INTx-
2149 Latency: 0
2150 Interrupt: pin A routed to IRQ 42
2151 Region 0: Memory at c2000000 (64-bit, non-prefetchable) [size=4M]
2152 Region 2: Memory at b0000000 (64-bit, prefetchable) [size=256M]
2153 Region 4: I/O ports at 4000 [size=64]
2154 Expansion ROM at &lt;unassigned&gt; [disabled]
2155 Capabilities: &lt;access denied&gt;
2156 Kernel driver in use: i915
2157 &lt;/pre&gt;&lt;/p&gt;
2158
2159 &lt;p&gt;The resulting intel_quirks entry would then look like this:&lt;/p&gt;
2160
2161 &lt;p&gt;&lt;pre&gt;
2162 struct intel_quirk intel_quirks[] = {
2163 ...
2164 /* Packard Bell EasyNote LV11HC needs invert brightness quirk */
2165 { 0x0156, 0x1025, 0x0688, quirk_invert_brightness },
2166 ...
2167 }
2168 &lt;/pre&gt;&lt;/p&gt;
2169
2170 &lt;p&gt;According to the kernel module instructions (as seen using
2171 &lt;tt&gt;modinfo i915&lt;/tt&gt;), information about hardware needing the
2172 invert_brightness flag should be sent to the
2173 &lt;a href=&quot;http://lists.freedesktop.org/mailman/listinfo/dri-devel&quot;&gt;dri-devel
2174 (at) lists.freedesktop.org&lt;/a&gt; mailing list to reach the kernel
2175 developers. But my email about the laptop sent 2013-06-03 have not
2176 yet shown up in
2177 &lt;a href=&quot;http://lists.freedesktop.org/archives/dri-devel/2013-June/thread.html&quot;&gt;the
2178 web archive for the mailing list&lt;/a&gt;, so I suspect they do not accept
2179 emails from non-subscribers. Because of this, I sent my patch also to
2180 the Debian bug tracking system instead as
2181 &lt;a href=&quot;http://bugs.debian.org/710938&quot;&gt;BTS report #710938&lt;/a&gt;, to make
2182 sure the patch is not lost.&lt;/p&gt;
2183
2184 &lt;p&gt;Unfortunately, it is not enough to fix the kernel to get Laptops
2185 with this problem working properly with Linux. If you use Gnome, your
2186 worries should be over at this point. But if you use KDE, there is
2187 something in KDE ignoring the invert_brightness setting and turning on
2188 the screen during login. I&#39;ve reported it to Debian as
2189 &lt;a href=&quot;http://bugs.debian.org/711237&quot;&gt;BTS report #711237&lt;/a&gt;, and
2190 have no idea yet how to figure out exactly what subsystem is doing
2191 this. Perhaps you can help? Perhaps you know what the Gnome
2192 developers did to handle this, and this can give a clue to the KDE
2193 developers? Or you know where in KDE the screen brightness is changed
2194 during login? If so, please update the BTS report (or get in touch if
2195 you do not know how to update BTS).&lt;/p&gt;
2196
2197 &lt;p&gt;Update 2013-07-19: The correct fix for this machine seem to be
2198 acpi_backlight=vendor, to disable ACPI backlight support completely,
2199 as the ACPI information on the machine is trash and it is better to
2200 leave it to the intel video driver to control the screen
2201 backlight.&lt;/p&gt;
2202 </description>
2203 </item>
2204
2205 <item>
2206 <title>Third alpha release of Debian Edu / Skolelinux based on Debian Wheezy</title>
2207 <link>http://people.skolelinux.org/pere/blog/Third_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</link>
2208 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Third_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</guid>
2209 <pubDate>Mon, 10 Jun 2013 22:50:00 +0200</pubDate>
2210 <description>&lt;p&gt;The third wheezy based alpha release of Debian Edu was wrapped up
2211 today. This is the release announcement:&lt;/p&gt;
2212
2213 &lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.0.0 alpha2 released
2214 2013-06-10&lt;/strong&gt;&lt;/p&gt;
2215
2216 &lt;p&gt;This is the release notes for for Debian Edu / Skolelinux 7.0.0 edu
2217 alpha2, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
2218
2219 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
2220
2221 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
2222 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
2223 out-of-the box environment of a completely configured school
2224 network. Immediately after installation a school server running all
2225 services needed for a school network is set up just waiting for users
2226 and machines being added via GOsa², a comfortable Web-UI. A netbooting
2227 environment is prepared using PXE, so after initial installation of
2228 the main server from CD, DVD or USB stick all other machines can be
2229 installed via the network. The provided school server provides LDAP
2230 database and Kerberos authentication service, centralized home
2231 directories, DHCP server, web proxy and many other services. The
2232 desktop contains
2233 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;more
2234 than 60 educational software packages&lt;/a&gt; and more are available from
2235 the Debian archive, and schools can choose between KDE, Gnome, LXDE
2236 and Xfce desktop environment.&lt;/p&gt;
2237
2238 &lt;p&gt;This is the third test release based on Debian Wheezy. Basically
2239 this is an updated and slightly improved version compared to the
2240 Squeeze release.&lt;/p&gt;
2241
2242 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
2243
2244 &lt;ul&gt;
2245
2246 &lt;li&gt;Iceweasel was updated from 10 to 17. (DSA 2699-1)
2247 &lt;li&gt;Updated libxv (DSA-2674), libxvmc (DSA-2675), libxfixes (DSA-2676), libxrender (DSA-2677), mesa (DSA-2678), xserver-xorg-video-openchrome (DSA-2679), libxt (DSA-2680), libxcursor (DSA-2681), libxext (DSA-2682), libxi (DSA-2683), libxrandr (DSA-2684), libxp (DSA-2685), libxcb (DSA-2686), libfs (DSA-2687), libxres (DSA-2688), libxtst (DSA-2689), libxxf86dga (DSA-2690), libxinerama (DSA-2691), libxxf86vm (DSA-2692), libx11 (DSA-2693), chromium-browser (DSA-2695), gnutls26 (DSA-2697), wireshark (DSA-2700), krb5 (DSA-2701), telepathy-gabble (DSA-2702) and subversion (DSA-2703).
2248 &lt;li&gt;Switched xrdp on thin client servers to use tightvncserver instead of xvnc4.
2249 &lt;li&gt;Now install software oscilloscope xoscope by default.
2250 &lt;li&gt;Now install music tools gtick, lingot and pianobooster by default.
2251
2252 &lt;/ul&gt;
2253
2254 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
2255
2256 &lt;ul&gt;
2257
2258 &lt;li&gt;The subnet-change script is now able to change all files needing a change on the main-server when changing the IP network used.
2259 &lt;li&gt;Updated translation of the installation.
2260 &lt;li&gt;New Romanian translation.
2261 &lt;li&gt;Fix security problem causing root and first user password to no longer show up in /var/cache/debconf/templates.dat.
2262 &lt;li&gt;Fix roaming workstation setup (Closed in libpam-mklocaluser/0.8, libpam-mklocaluser/0.8~deb7u1: #706753: libpam-mklocaluser: Fail to create local user during first login).
2263 &lt;li&gt;Made roaming workstation setup more robust in non-Debian Edu environments.
2264 &lt;li&gt;New script debian-edu-bless to transform a Debian installation to a Debian Edu profile.
2265 &lt;li&gt;Adjust Iceweasel setup to improve performance when $HOME is on NFS.
2266 &lt;li&gt;More testsuite tests.
2267 &lt;li&gt;Make automatic proxy configuration more robust.
2268 &lt;li&gt;Adjust GOsa² GUI configuration.
2269
2270 &lt;li&gt;Update thin client and diskless workstation setup to work with
2271 LTSP in Wheezy.&lt;/li&gt;
2272
2273 &lt;li&gt;Diskless workstations now run out of the box -- no need to set
2274 them up with GOsa².&lt;/li&gt;
2275
2276 &lt;li&gt;Update IMAP server setup. &lt;/li&gt;
2277
2278 &lt;li&gt;Fix login into Skolelinux Backup Tool (Closed in
2279 slbackup-php/0.4.4-1: #700257: slbackup-php: Fails to submit correctly
2280 entered password). &lt;/li&gt;
2281
2282 &lt;/ul&gt;
2283
2284 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
2285
2286 &lt;ul&gt;
2287
2288 &lt;li&gt;DVD binary and source images are not yet ready.&lt;/li&gt;
2289
2290 &lt;li&gt;No mass import of user account data in GOsa (ldif or csv)
2291 available yet (Open in gosa/2.7.4-4: #698840: gosa-plugin-ldapmanager:
2292 missing import feature).&lt;/li&gt;
2293
2294 &lt;li&gt;Missing artwork for the KDE desktop (and probably a few others). &lt;/li&gt;
2295
2296 &lt;li&gt;KDE Debian submenu lacks icons (Closed: #502192: menu-xdg: invents
2297 own icon names instead of using existing). This will remain
2298 unfixed.&lt;/li&gt;
2299
2300 &lt;/ul&gt;
2301
2302 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
2303
2304 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
2305
2306 &lt;ul&gt;
2307
2308 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.0+edu0~a2-CD.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.0+edu0~a2-CD.iso&lt;/a&gt;&lt;/li&gt;
2309
2310 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.0+edu0~a2-CD.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.0+edu0~a2-CD.iso&lt;/a&gt;&lt;/li&gt;
2311
2312 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.0+edu0~a2-CD.iso .&lt;/li&gt;
2313
2314 &lt;/ul&gt;
2315
2316 &lt;p&gt;The MD5SUM of this image is: 27bbcace407743382f3c42c08dbe8178
2317 &lt;br&gt;The SHA1SUM of this image is: e35f7d7908566cd3075375b3721fa10ee420d419&lt;/p&gt;
2318
2319 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
2320
2321 &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;
2322 </description>
2323 </item>
2324
2325 <item>
2326 <title>Is there a PHP expert in the building? Debian Edu need help!</title>
2327 <link>http://people.skolelinux.org/pere/blog/Is_there_a_PHP_expert_in_the_building___Debian_Edu_need_help_.html</link>
2328 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Is_there_a_PHP_expert_in_the_building___Debian_Edu_need_help_.html</guid>
2329 <pubDate>Wed, 5 Jun 2013 17:50:00 +0200</pubDate>
2330 <description>&lt;p&gt;Here is a call for help from the Debian Edu / Skolelinux project.
2331 We have two problems blocking the release of the Wheezy version we
2332 hope to get released soon. The two problems require some with PHP
2333 skills, and we seem to lack anyone with both time and PHP skills in
2334 the project:
2335
2336 &lt;ol&gt;
2337
2338 &lt;li&gt;It is impossible to log into the slbackup web interface
2339 (slbackup-php) using the root user and password. This is
2340 &lt;a href=&quot;http://bugs.debian.org/700257&quot;&gt;BTS report #700257&lt;/a&gt;.
2341 This used to work, but stopped working some time since Squeeze.
2342 Perhaps some obsolete PHP feature was used?&lt;/li&gt;
2343
2344 &lt;li&gt;It is not possible to &quot;mass import&quot; user lists in Gosa, neither
2345 using ldif nor using CSV files. The feature was disabled after a
2346 major rewrite of Gosa, and need to be ported to the new system.
2347 This is &lt;a href=&quot;http://bugs.debian.org/698840&quot;&gt;BTS report
2348 #698840&lt;/a&gt;.&lt;/li&gt;
2349
2350 &lt;/ol&gt;
2351
2352 &lt;p&gt;If you can help us, please join us on IRC
2353 (&lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;#debian-edu on
2354 irc.debian.org&lt;/a&gt;) and provide patches via the BTS.&lt;/p&gt;
2355 </description>
2356 </item>
2357
2358 <item>
2359 <title>Debian Edu interview: Cédric Boutillier</title>
2360 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__C_dric_Boutillier.html</link>
2361 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__C_dric_Boutillier.html</guid>
2362 <pubDate>Tue, 4 Jun 2013 10:30:00 +0200</pubDate>
2363 <description>&lt;p&gt;It has been a while since my last English
2364 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
2365 interview last November. But the developers and translators are still
2366 pulling along to get the Wheezy based release out the door, and this
2367 time I managed to get an interview from one of the French translators
2368 in the project, Cédric Boutillier.&lt;/p&gt;
2369
2370 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
2371
2372 &lt;p&gt;I am 34 year old. I live near Paris, France. I am an assistant
2373 professor in probability theory. I spend my daytime teaching
2374 mathematics at the university and doing fundamental research in
2375 probability in connexion with combinatorics and statistical physics.&lt;/p&gt;
2376
2377 &lt;p&gt;I have been involved in the Debian project for a couple of years
2378 and became Debian Developer a few months ago. I am working on Ruby
2379 packaging, publicity and translation.&lt;/p&gt;
2380
2381 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
2382 project?&lt;/strong&gt;&lt;/p&gt;
2383
2384 &lt;p&gt;I came to the Debian Edu project after a call for translation of
2385 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Manuals&quot;&gt;the
2386 Debian Edu manual&lt;/a&gt; for the release of Debian Edu Squeeze. Since
2387 then, I have been working on updating the French translation of the
2388 manual.
2389
2390 &lt;p&gt;I had the opportunity to make an installation of Debian Edu in a
2391 virtual machine when I was preparing localised version of some screen
2392 shots for the manual. I was amazed to see it worked out of the box and
2393 how comprehensive the list of software installed by default was.&lt;/p&gt;
2394
2395 &lt;p&gt;What amazed me was the complete network infrastructure directly
2396 ready to use, which can and the nice administration interface provided
2397 by &lt;a href=&quot;https://oss.gonicus.de/labs/gosa/&quot;&gt;GOsa²&lt;/a&gt;. What pleased
2398 me also was the fact that among the software installed by default,
2399 there were many &quot;traditional&quot; educative software to learn languages,
2400 to count, to program... but also software to develop creativity and
2401 artistic skills with music (&lt;a href=&quot;http://ardour.org/&quot;&gt;Ardour&lt;/a&gt;,
2402 &lt;a href=&quot;http://audacity.sourceforge.net/&quot;&gt;Audacity&lt;/a&gt;) and
2403 movies/animation (I was especially thinking of
2404 &lt;a href=&quot;http://linuxstopmotion.sourceforge.net/&quot;&gt;Stopmotion&lt;/a&gt;).&lt;/p&gt;
2405
2406 &lt;p&gt;I am following the development of Debian Edu and am hanging out on
2407 &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;#debian-edu&lt;/a&gt;.
2408 Unfortunately, I don&#39;t much time to get more involved in this
2409 beautiful project.&lt;/p&gt;
2410
2411 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
2412 Edu?&lt;/strong&gt;&lt;/p&gt;
2413
2414 &lt;p&gt;For me, the main advantages of Skolelinux/Debian Edu are its
2415 community of experts and its precise documentation, as well as the
2416 fact that it provides a solution ready to use.&lt;/p&gt;
2417
2418 &lt;p&gt;I would add also the fact that it is based on the rock solid Debian
2419 distribution, which ensures stability and provides a huge collection
2420 of educational free software.&lt;/p&gt;
2421
2422 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
2423 Edu?&lt;/strong&gt;&lt;/p&gt;
2424
2425 &lt;p&gt;Maybe the lack of manpower to do lobbying on the
2426 project. Sometimes, people who need to take decisions concerning IT do
2427 not have all the elements to evaluate properly free software
2428 solutions. The fact that support by a company may be difficult to find
2429 is probably a problem if the school does not have IT personnel.&lt;/p&gt;
2430
2431 &lt;p&gt;One can find support from a company by looking at
2432 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Help/ProfessionalHelp&quot;&gt;the
2433 wiki dokumentation&lt;/a&gt;, where some countries already have a number of
2434 companies providing support for Debian Edu, like Germany or
2435 Norway. This list is easy to find readily from the manual. However,
2436 for other countries, like France, the list is empty. I guess that
2437 consultants proposing support for Debian would be able to provide some
2438 support for Debian Edu as well.&lt;/p&gt;
2439
2440 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
2441
2442 &lt;p&gt;I am using the KDE Plasma Desktop. But the pieces of software I use
2443 most runs in a terminal: Mutt and OfflineIMAP for emails, latex for
2444 scientific documents, mpd for music. VIM is my editor of choice. I am
2445 also using the mathematical software
2446 &lt;a href=&quot;http://www.scilab.org/en/scilab/about‎&quot;&gt;Scilab&lt;/a&gt; and
2447 &lt;a href=&quot;http://www.sagemath.org/index.html‎&quot;&gt;Sage&lt;/a&gt; (built from
2448 source as not completely packaged for Debian, yet).
2449
2450 &lt;p&gt;&lt;strong&gt;Do you have any suggestions for teachers interested in
2451 using the free software in Debian to teach mathematics and
2452 statistics?&lt;/strong&gt;&lt;/p&gt;
2453
2454 &lt;p&gt;I do not have any &quot;nice&quot; recommendations for statistics. At our
2455 university, we use both &lt;a href=&quot;http://www.r-project.org/‎&quot;&gt;R&lt;/a&gt; and
2456 Scilab to teach statistics and probabilistic simulations. For
2457 geometry, there are nice programs:&lt;/p&gt;
2458
2459 &lt;ul&gt;
2460
2461 &lt;li&gt;&lt;a href=&quot;http://www.drgeo.eu/&quot;&gt;drgeo&lt;/a&gt; and
2462 &lt;a href=&quot;http://edu.kde.org/applications/all/kig‎&quot;&gt;kig&lt;/a&gt; to do
2463 constructions in planar geometry
2464
2465 &lt;li&gt;&lt;a href=&quot;http://www.geom.uiuc.edu/software/download/kali.html&quot;&gt;kali&lt;/a&gt;
2466 to discover symmetry groups (the so-called wallpapers and frieze
2467 groups), although the interface looks a bit old.&lt;/li&gt;
2468
2469 &lt;/ul&gt;
2470
2471 &lt;p&gt;I like also
2472 &lt;a href=&quot;http://edu.kde.org/applications/all/cantor&quot;&gt;cantor&lt;/a&gt;, which
2473 provides a uniform interface to SciLab, Sage,
2474 &lt;a href=&quot;http://directory.fsf.org/wiki/Octave‎&quot;&gt;Octave&lt;/a&gt;, etc...&lt;/p&gt;
2475
2476 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
2477 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
2478
2479 &lt;p&gt;My suggestions would be to&lt;/p&gt;
2480
2481 &lt;ul&gt;
2482
2483 &lt;li&gt;advertise the reduction of costs when free software is used.&lt;/li&gt;
2484
2485 &lt;li&gt;communicate about the quality of free software projects, using
2486 well known examples like Firefox, ThunderBird and
2487 OpenOffice.org/LibreOffice.&lt;/li&gt;
2488
2489 &lt;li&gt;advertise the living and strong community around the project.&lt;/li&gt;
2490
2491 &lt;li&gt;show that it is not more difficult to use than any other
2492 system.&lt;/li&gt;
2493
2494 &lt;/ul&gt;
2495 </description>
2496 </item>
2497
2498 <item>
2499 <title>Educational applications included in Debian Edu / Skolelinux (the screenshot collection :-)</title>
2500 <link>http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html</link>
2501 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html</guid>
2502 <pubDate>Sat, 1 Jun 2013 23:50:00 +0200</pubDate>
2503 <description>&lt;p&gt;Included in &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
2504 Skolelinux&lt;/a&gt;, there are quite a lot of educational software.
2505 Created to help teachers teach, and pupils learn. We have tried to
2506 tag them all using debtags use::learning and role::program, and using
2507 the debtags I was happy to be able to create a collage of the
2508 educational software packages installed by default, sorted by the
2509 debtag field. Here it is. Click on a image to learn more about the
2510 program.&lt;/p&gt;
2511
2512 &lt;!-- for f in $(debtags tagcat|grep field::|awk &#39;{print $2}&#39;); do echo; echo &quot;&lt;p&gt;&lt;strong&gt;$f&lt;/strong&gt;&lt;/p&gt;&quot;; echo &quot;&lt;p&gt;&quot;; ( for p in $(debtags search --names &quot;use::learning &amp;&amp; interface::x11 &amp;&amp; role::program &amp;&amp; $f&quot;); do img=&quot;&lt;img src=&#39;http://screenshots.debian.net/thumbnail/$p&#39; alt=&#39;$p&#39;&gt;&quot;; if dpkg -s $p &gt; /dev/null 2&gt;&amp;1; then echo &quot;&lt;a href=&#39;http://packages.qa.debian.org/$p&#39;&gt;$img&lt;/a&gt;&quot;; fi; done; ) | LANG=C sort; echo &quot;&lt;/p&gt;&quot;; done --&gt;
2513
2514 &lt;p&gt;&lt;strong&gt;field::arts&lt;/strong&gt;&lt;/p&gt;
2515 &lt;p&gt;
2516 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=audacity&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/audacity.png&#39; alt=&#39;audacity&#39;&gt;&lt;/a&gt;
2517 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=childsplay&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/childsplay.png&#39; alt=&#39;childsplay&#39;&gt;&lt;/a&gt;
2518 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=denemo&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/denemo.png&#39; alt=&#39;denemo&#39;&gt;&lt;/a&gt;
2519 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=freebirth&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/freebirth.png&#39; alt=&#39;freebirth&#39;&gt;&lt;/a&gt;
2520 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gcompris&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gcompris.png&#39; alt=&#39;gcompris&#39;&gt;&lt;/a&gt;
2521 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gimp&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gimp.png&#39; alt=&#39;gimp&#39;&gt;&lt;/a&gt;
2522 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=hydrogen&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/hydrogen.png&#39; alt=&#39;hydrogen&#39;&gt;&lt;/a&gt;
2523 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=lilypond&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/lilypond.png&#39; alt=&#39;lilypond&#39;&gt;&lt;/a&gt;
2524 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=lmms&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/lmms.png&#39; alt=&#39;lmms&#39;&gt;&lt;/a&gt;
2525 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=rosegarden&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/rosegarden.png&#39; alt=&#39;rosegarden&#39;&gt;&lt;/a&gt;
2526 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=scribus&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/scribus.png&#39; alt=&#39;scribus&#39;&gt;&lt;/a&gt;
2527 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=solfege&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/solfege.png&#39; alt=&#39;solfege&#39;&gt;&lt;/a&gt;
2528 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=stopmotion&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/stopmotion.png&#39; alt=&#39;stopmotion&#39;&gt;&lt;/a&gt;
2529 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=tuxpaint&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/tuxpaint.png&#39; alt=&#39;tuxpaint&#39;&gt;&lt;/a&gt;
2530 &lt;/p&gt;
2531
2532 &lt;p&gt;&lt;strong&gt;field::astronomy&lt;/strong&gt;&lt;/p&gt;
2533 &lt;p&gt;
2534 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=celestia-gnome&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/celestia-gnome.png&#39; alt=&#39;celestia-gnome&#39;&gt;&lt;/a&gt;
2535 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gpredict&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gpredict.png&#39; alt=&#39;gpredict&#39;&gt;&lt;/a&gt;
2536 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=kstars&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kstars.png&#39; alt=&#39;kstars&#39;&gt;&lt;/a&gt;
2537 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=planets&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/planets.png&#39; alt=&#39;planets&#39;&gt;&lt;/a&gt;
2538 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=stellarium&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/stellarium.png&#39; alt=&#39;stellarium&#39;&gt;&lt;/a&gt;
2539 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=xplanet&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/xplanet.png&#39; alt=&#39;xplanet&#39;&gt;&lt;/a&gt;
2540 &lt;/p&gt;
2541
2542 &lt;p&gt;&lt;strong&gt;field::biology:structural&lt;/strong&gt;&lt;/p&gt;
2543 &lt;p&gt;
2544 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=pymol&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/pymol.png&#39; alt=&#39;pymol&#39;&gt;&lt;/a&gt;
2545 &lt;/p&gt;
2546
2547 &lt;p&gt;&lt;strong&gt;field::chemistry&lt;/strong&gt;&lt;/p&gt;
2548 &lt;p&gt;
2549 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=atomix&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/atomix.png&#39; alt=&#39;atomix&#39;&gt;&lt;/a&gt;
2550 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=chemtool&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/chemtool.png&#39; alt=&#39;chemtool&#39;&gt;&lt;/a&gt;
2551 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=easychem&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/easychem.png&#39; alt=&#39;easychem&#39;&gt;&lt;/a&gt;
2552 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gchempaint&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gchempaint.png&#39; alt=&#39;gchempaint&#39;&gt;&lt;/a&gt;
2553 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gdis&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gdis.png&#39; alt=&#39;gdis&#39;&gt;&lt;/a&gt;
2554 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=ghemical&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/ghemical.png&#39; alt=&#39;ghemical&#39;&gt;&lt;/a&gt;
2555 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gperiodic&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gperiodic.png&#39; alt=&#39;gperiodic&#39;&gt;&lt;/a&gt;
2556 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=kalzium&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kalzium.png&#39; alt=&#39;kalzium&#39;&gt;&lt;/a&gt;
2557 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=pymol&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/pymol.png&#39; alt=&#39;pymol&#39;&gt;&lt;/a&gt;
2558 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=viewmol&#39;&gt;[viewmol]&lt;/a&gt;
2559 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=xdrawchem&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/xdrawchem.png&#39; alt=&#39;xdrawchem&#39;&gt;&lt;/a&gt;
2560 &lt;/p&gt;
2561
2562 &lt;p&gt;&lt;strong&gt;field::electronics&lt;/strong&gt;&lt;/p&gt;
2563 &lt;p&gt;
2564 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gcompris&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gcompris.png&#39; alt=&#39;gcompris&#39;&gt;&lt;/a&gt;
2565 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gpsim&#39;&gt;[gpsim]&lt;/a&gt;
2566 &lt;/p&gt;
2567
2568 &lt;p&gt;&lt;strong&gt;field::geography&lt;/strong&gt;&lt;/p&gt;
2569 &lt;p&gt;
2570 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=kgeography&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kgeography.png&#39; alt=&#39;kgeography&#39;&gt;&lt;/a&gt;
2571 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=marble&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/marble.png&#39; alt=&#39;marble&#39;&gt;&lt;/a&gt;
2572 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=xplanet&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/xplanet.png&#39; alt=&#39;xplanet&#39;&gt;&lt;/a&gt;
2573 &lt;/p&gt;
2574
2575 &lt;p&gt;&lt;strong&gt;field::linguistics&lt;/strong&gt;&lt;/p&gt;
2576 &lt;p&gt;
2577 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gcompris&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gcompris.png&#39; alt=&#39;gcompris&#39;&gt;&lt;/a&gt;
2578 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=kanagram&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kanagram.png&#39; alt=&#39;kanagram&#39;&gt;&lt;/a&gt;
2579 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=khangman&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/khangman.png&#39; alt=&#39;khangman&#39;&gt;&lt;/a&gt;
2580 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=klettres&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/klettres.png&#39; alt=&#39;klettres&#39;&gt;&lt;/a&gt;
2581 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=parley&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/parley.png&#39; alt=&#39;parley&#39;&gt;&lt;/a&gt;
2582 &lt;/p&gt;
2583
2584 &lt;p&gt;&lt;strong&gt;field::mathematics&lt;/strong&gt;&lt;/p&gt;
2585 &lt;p&gt;
2586 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=childsplay&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/childsplay.png&#39; alt=&#39;childsplay&#39;&gt;&lt;/a&gt;
2587 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=drgeo&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/drgeo.png&#39; alt=&#39;drgeo&#39;&gt;&lt;/a&gt;
2588 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gcompris&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gcompris.png&#39; alt=&#39;gcompris&#39;&gt;&lt;/a&gt;
2589 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=geogebra&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/geogebra.png&#39; alt=&#39;geogebra&#39;&gt;&lt;/a&gt;
2590 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=geomview&#39;&gt;[geomview]&lt;/a&gt;
2591 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=grace&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/grace.png&#39; alt=&#39;grace&#39;&gt;&lt;/a&gt;
2592 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=graphmonkey&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/graphmonkey.png&#39; alt=&#39;graphmonkey&#39;&gt;&lt;/a&gt;
2593 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=graphthing&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/graphthing.png&#39; alt=&#39;graphthing&#39;&gt;&lt;/a&gt;
2594 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=kalgebra&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kalgebra.png&#39; alt=&#39;kalgebra&#39;&gt;&lt;/a&gt;
2595 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=kbruch&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kbruch.png&#39; alt=&#39;kbruch&#39;&gt;&lt;/a&gt;
2596 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=kig&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kig.png&#39; alt=&#39;kig&#39;&gt;&lt;/a&gt;
2597 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=kmplot&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kmplot.png&#39; alt=&#39;kmplot&#39;&gt;&lt;/a&gt;
2598 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=mathwar&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/mathwar.png&#39; alt=&#39;mathwar&#39;&gt;&lt;/a&gt;
2599 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=rocs&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/rocs.png&#39; alt=&#39;rocs&#39;&gt;&lt;/a&gt;
2600 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=scratch&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/scratch.png&#39; alt=&#39;scratch&#39;&gt;&lt;/a&gt;
2601 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=tuxmath&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/tuxmath.png&#39; alt=&#39;tuxmath&#39;&gt;&lt;/a&gt;
2602 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=xabacus&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/xabacus.png&#39; alt=&#39;xabacus&#39;&gt;&lt;/a&gt;
2603 &lt;/p&gt;
2604
2605 &lt;p&gt;&lt;strong&gt;field::physics&lt;/strong&gt;&lt;/p&gt;
2606 &lt;p&gt;
2607 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gcompris&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gcompris.png&#39; alt=&#39;gcompris&#39;&gt;&lt;/a&gt;
2608 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=step&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/step.png&#39; alt=&#39;step&#39;&gt;&lt;/a&gt;
2609 &lt;/p&gt;
2610
2611 &lt;p&gt;&lt;strong&gt;field::TODO&lt;/strong&gt;&lt;/p&gt;
2612 &lt;p&gt;
2613 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=blinken&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/blinken.png&#39; alt=&#39;blinken&#39;&gt;&lt;/a&gt;
2614 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=cgoban&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/cgoban.png&#39; alt=&#39;cgoban&#39;&gt;&lt;/a&gt;
2615 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=childsplay&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/childsplay.png&#39; alt=&#39;childsplay&#39;&gt;&lt;/a&gt;
2616 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gcompris&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gcompris.png&#39; alt=&#39;gcompris&#39;&gt;&lt;/a&gt;
2617 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gnuchess&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gnuchess.png&#39; alt=&#39;gnuchess&#39;&gt;&lt;/a&gt;
2618 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gnugo&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gnugo.png&#39; alt=&#39;gnugo&#39;&gt;&lt;/a&gt;
2619 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=gtans&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gtans.png&#39; alt=&#39;gtans&#39;&gt;&lt;/a&gt;
2620 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=ktouch&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/ktouch.png&#39; alt=&#39;ktouch&#39;&gt;&lt;/a&gt;
2621 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=librecad&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/librecad.png&#39; alt=&#39;librecad&#39;&gt;&lt;/a&gt;
2622 &lt;a href=&#39;http://packages.debian.org/search?searchon=names&amp;exact=1&amp;suite=all&amp;section=all&amp;keywords=scratch&#39;&gt;&lt;img src=&#39;http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/scratch.png&#39; alt=&#39;scratch&#39;&gt;&lt;/a&gt;
2623 &lt;/p&gt;
2624
2625 &lt;p&gt;In total, 61 applications. 3 of them lacked screen shots on
2626 &lt;a href=&quot;http://screenshot.debian.net&quot;&gt;screenshot.debian.net&lt;/a&gt;. If
2627 you know of some packages we should install by default, please let us
2628 know on &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;IRC, #debian-edu
2629 on irc.debian.org&lt;/a&gt;, or our
2630 &lt;a href=&quot;http://lists.debian.org/debian-edu/&quot;&gt;mailing list
2631 debian-edu@&lt;/a&gt;.&lt;/p&gt;
2632 </description>
2633 </item>
2634
2635 <item>
2636 <title>How to install Linux on a Packard Bell Easynote LV preinstalled with Windows 8</title>
2637 <link>http://people.skolelinux.org/pere/blog/How_to_install_Linux_on_a_Packard_Bell_Easynote_LV_preinstalled_with_Windows_8.html</link>
2638 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_install_Linux_on_a_Packard_Bell_Easynote_LV_preinstalled_with_Windows_8.html</guid>
2639 <pubDate>Mon, 27 May 2013 15:20:00 +0200</pubDate>
2640 <description>&lt;p&gt;Two days ago, I asked
2641 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/How_can_I_install_Linux_on_a_Packard_Bell_Easynote_LV_preinstalled_with_Windows_8_.html&quot;&gt;how
2642 I could install Linux on a Packard Bell EasyNote LV computer
2643 preinstalled with Windows 8&lt;/a&gt;. I found a solution, but am horrified
2644 with the obstacles put in the way of Linux users on a laptop with UEFI
2645 and Windows 8.&lt;/p&gt;
2646
2647 &lt;p&gt;I never found out if the cause of my problems were the use of UEFI
2648 secure booting or fast boot. I suspect fast boot was the problem,
2649 causing the firmware to boot directly from HD without considering any
2650 key presses and alternative devices, but do not know UEFI settings
2651 enough to tell.&lt;/p&gt;
2652
2653 &lt;p&gt;There is no way to install Linux on the machine in question without
2654 opening the box and disconnecting the hard drive! This is as far as I
2655 can tell, the only way to get access to the firmware setup menu
2656 without accepting the Windows 8 license agreement. I am told (and
2657 found description on how to) that it is possible to configure the
2658 firmware setup once booted into Windows 8. But as I believe the terms
2659 of that agreement are completely unacceptable, accepting the license
2660 was never an alternative. I do not enter agreements I do not intend
2661 to follow.&lt;/p&gt;
2662
2663 &lt;p&gt;I feared I had to return the laptops and ask for a refund, and
2664 waste many hours on this, but luckily there was a way to get it to
2665 work. But I would not recommend it to anyone planning to run Linux on
2666 it, and I have become sceptical to Windows 8 certified laptops. Is
2667 this the way Linux will be forced out of the market place, by making
2668 it close to impossible for &quot;normal&quot; users to install Linux without
2669 accepting the Microsoft Windows license terms? Or at least not
2670 without risking to loose the warranty?&lt;/p&gt;
2671
2672 &lt;p&gt;I&#39;ve updated the
2673 &lt;a href=&quot;http://www.linlap.com/packard_bell_easynote_lv&quot;&gt;Linux Laptop
2674 wiki page for Packard Bell EasyNote LV&lt;/a&gt;, to ensure the next person
2675 do not have to struggle as much as I did to get Linux into the
2676 machine.&lt;/p&gt;
2677
2678 &lt;p&gt;Thanks to Bob Rosbag, Florian Weimer, Philipp Kern, Ben Hutching,
2679 Michael Tokarev and others for feedback and ideas.&lt;/p&gt;
2680 </description>
2681 </item>
2682
2683 <item>
2684 <title>How can I install Linux on a Packard Bell Easynote LV preinstalled with Windows 8?</title>
2685 <link>http://people.skolelinux.org/pere/blog/How_can_I_install_Linux_on_a_Packard_Bell_Easynote_LV_preinstalled_with_Windows_8_.html</link>
2686 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_can_I_install_Linux_on_a_Packard_Bell_Easynote_LV_preinstalled_with_Windows_8_.html</guid>
2687 <pubDate>Sat, 25 May 2013 18:20:00 +0200</pubDate>
2688 <description>&lt;p&gt;I&#39;ve run into quite a problem the last few days. I bought three
2689 new laptops for my parents and a few others. I bought Packard Bell
2690 Easynote LV to run Kubuntu on and use as their home computer. But I
2691 am completely unable to figure out how to install Linux on it. The
2692 computer is preinstalled with Windows 8, and I suspect it uses UEFI
2693 instead of a BIOS to boot.&lt;/p&gt;
2694
2695 &lt;p&gt;The problem is that I am unable to get it to PXE boot, and unable
2696 to get it to boot the Linux installer from my USB stick. I have yet
2697 to try the DVD install, and still hope it will work. when I turn on
2698 the computer, there is no information on what buttons to press to get
2699 the normal boot menu. I expect to get some boot menu to select PXE or
2700 USB stick booting. When booting, it first ask for the language to
2701 use, then for some regional settings, and finally if I will accept the
2702 Windows 8 terms of use. As these terms are completely unacceptable to
2703 me, I have no other choice but to turn off the computer and try again
2704 to get it to boot the Linux installer.&lt;/p&gt;
2705
2706 &lt;p&gt;I have gathered my findings so far on a Linlap page about the
2707 &lt;a href=&quot;http://www.linlap.com/packard_bell_easynote_lv&quot;&gt;Packard Bell
2708 EasyNote LV&lt;/a&gt; model. If you have any idea how to get Linux
2709 installed on this machine, please get in touch or update that wiki
2710 page. If I can&#39;t find a way to install Linux, I will have to return
2711 the laptop to the seller and find another machine for my parents.&lt;/p&gt;
2712
2713 &lt;p&gt;I wonder, is this the way Linux will be forced out of the market
2714 using UEFI and &quot;secure boot&quot; by making it impossible to install Linux
2715 on new Laptops?&lt;/p&gt;
2716 </description>
2717 </item>
2718
2719 <item>
2720 <title>How to transform a Debian based system to a Debian Edu installation</title>
2721 <link>http://people.skolelinux.org/pere/blog/How_to_transform_a_Debian_based_system_to_a_Debian_Edu_installation.html</link>
2722 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_transform_a_Debian_based_system_to_a_Debian_Edu_installation.html</guid>
2723 <pubDate>Fri, 17 May 2013 11:50:00 +0200</pubDate>
2724 <description>&lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; is
2725 an operating system based on Debian intended for use in schools. It
2726 contain a turn-key solution for the computer network provided to
2727 pupils in the primary schools. It provide both the central server,
2728 network boot servers and desktop environments with heaps of
2729 educational software. The project was founded almost 12 years ago,
2730 2001-07-02. If you want to support the project, which is in need for
2731 cash to fund developer gatherings and other project related activity,
2732 &lt;a href=&quot;http://www.linuxiskolen.no/slxdebianlabs/donations.html&quot;&gt;please
2733 donate some money&lt;/a&gt;.
2734
2735 &lt;p&gt;A topic that come up again and again on the Debian Edu mailing
2736 lists and elsewhere, is the question on how to transform a Debian or
2737 Ubuntu installation into a Debian Edu installation. It isn&#39;t very
2738 hard, and last week I wrote a script to replicate the steps done by
2739 the Debian Edu installer.&lt;/p&gt;
2740
2741 &lt;p&gt;The script,
2742 &lt;a href=&quot;http://anonscm.debian.org/viewvc/debian-edu/branches/wheezy/debian-edu-config/share/debian-edu-config/tools/debian-edu-bless?view=markup&quot;&gt;debian-edu-bless&lt;a/&gt;
2743 in the debian-edu-config package, will go through these six steps and
2744 transform an existing Debian Wheezy or Ubuntu (untested) installation
2745 into a Debian Edu Workstation:&lt;/p&gt;
2746
2747 &lt;ol&gt;
2748
2749 &lt;li&gt;Add skolelinux related APT sources.&lt;/li&gt;
2750 &lt;li&gt;Create /etc/debian-edu/config with the wanted configuration.&lt;/li&gt;
2751 &lt;li&gt;Install debian-edu-install to load preseeding values and pull in
2752 our configuration.&lt;/li&gt;
2753 &lt;li&gt;Preseed debconf database with profile setup in
2754 /etc/debian-edu/config, and run tasksel to install packages
2755 according to the profile specified in the config above,
2756 overriding some of the Debian automation machinery.&lt;/li&gt;
2757 &lt;li&gt;Run debian-edu-cfengine-D installation to configure everything
2758 that could not be done using preseeding.&lt;/li&gt;
2759 &lt;li&gt;Ask for a reboot to enable all the configuration changes.&lt;/li&gt;
2760
2761 &lt;/ol&gt;
2762
2763 &lt;p&gt;There are some steps in the Debian Edu installation that can not be
2764 replicated like this. Disk partitioning and LVM setup, for example.
2765 So this script just assume there is enough disk space to install all
2766 the needed packages.&lt;/p&gt;
2767
2768 &lt;p&gt;The script was created to help a Debian Edu student working on
2769 setting up &lt;a href=&quot;http://www.raspberrypi.org&quot;&gt;Raspberry Pi&lt;/a&gt; as a
2770 Debian Edu client, and using it he can take the existing
2771 &lt;a href=&quot;http://www.raspbian.org/FrontPage‎&quot;&gt;Raspbian&lt;/a&gt; installation and
2772 transform it into a fully functioning Debian Edu Workstation (or
2773 Roaming Workstation, or whatever :).&lt;/p&gt;
2774
2775 &lt;p&gt;The default setting in the script is to create a KDE Workstation.
2776 If a LXDE based Roaming workstation is wanted instead, modify the
2777 PROFILE and DESKTOP values at the top to look like this instead:&lt;/p&gt;
2778
2779 &lt;p&gt;&lt;pre&gt;
2780 PROFILE=&quot;Roaming-Workstation&quot;
2781 DESKTOP=&quot;lxde&quot;
2782 &lt;/pre&gt;&lt;/p&gt;
2783
2784 &lt;p&gt;The script could even become useful to set up Debian Edu servers in
2785 the cloud, by starting with a virtual Debian installation at some
2786 virtual hosting service and setting up all the services on first
2787 boot.&lt;/p&gt;
2788 </description>
2789 </item>
2790
2791 <item>
2792 <title>Second alpha release of Debian Edu / Skolelinux based on Debian Wheezy</title>
2793 <link>http://people.skolelinux.org/pere/blog/Second_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</link>
2794 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Second_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</guid>
2795 <pubDate>Tue, 14 May 2013 23:30:00 +0200</pubDate>
2796 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux
2797 project&lt;/a&gt; is making great progress and made its second Wheezy based
2798 release today. This is the release announcement:&lt;/p&gt;
2799
2800 &lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.0.0 alpha1 released
2801 2013-05-14&lt;/strong&gt;&lt;/p&gt;
2802
2803 &lt;p&gt;This is the release notes for for Debian Edu / Skolelinux 7.0.0 edu
2804 alpha1, based on &lt;a href=&quot;http://www.debian.org&quot;&gt;Debian&lt;/a&gt; with
2805 codename &quot;Wheezy&quot;.&lt;/p&gt;
2806
2807 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
2808
2809 &lt;p&gt;Debian Edu, also known as Skolelinux, is a Linux distribution based
2810 on Debian providing an out-of-the box environment of a completely
2811 configured school network. Immediatly after installation a school
2812 server running all services needed for a school network is set up just
2813 waiting for users and machines being added via GOsa², a comfortable
2814 Web-UI. A netbooting environment is prepared using PXE, so after
2815 initial installation of the main server from CD, DVD or USB stick all
2816 other machines can be installed via the network.&lt;/p&gt;
2817
2818 &lt;p&gt;This is the first test release based on Wheezy (which currently is
2819 not released yet). Basically this is an updated and slightly improved
2820 version compared to the Squeeze release.&lt;/p&gt;
2821
2822 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
2823 &lt;ul&gt;
2824 &lt;li&gt;Install freemind (0.9.0) by default, and stop installing vym by
2825 default.&lt;/li&gt;
2826 &lt;li&gt;Install chromium (26.0.1410.43) by default.&lt;/li&gt;
2827 &lt;li&gt;Install goplay (0.5-1.1) to make golearn available by default.&lt;/li&gt;
2828 &lt;li&gt;Updated support for Japanese input methods, now based on
2829 ibus-anthy.&lt;/li&gt;
2830 &lt;/ul&gt;
2831
2832 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
2833 &lt;ul&gt;
2834
2835 &lt;li&gt;Switched default file system from ext3 to ext4 for speed and
2836 reliability improvements.&lt;/li&gt;
2837 &lt;li&gt;Got rid of unwanted winbind daemon and PAM setup activated because
2838 of &lt;a href=&quot;http://bugs.debian.org/706434&quot;&gt;706434&lt;/a&gt;.&lt;/li&gt;
2839 &lt;li&gt;Extended and improved the testsuite tests to detect more possible
2840 problems.&lt;/li&gt;
2841 &lt;li&gt;Corrected proxy handling to not set http_proxy to a bogus
2842 direct:// URL.&lt;/li&gt;
2843 &lt;li&gt;Corrected proxy setup for diskless workstations.&lt;/li&gt;
2844 &lt;li&gt;Corrected PXE setup to use our updated udebs during installation.&lt;/li&gt;
2845 &lt;li&gt;Made installation handling of low entropy level more robust.&lt;/li&gt;
2846 &lt;li&gt;Create larger partitions for Roaming workstations and Thin client
2847 servers, to make room for all the software installed.&lt;/li&gt;
2848 &lt;li&gt;Fix bug in Roaming workstation PAM setup, making it impossible to
2849 log in (&lt;a href=&quot;http://bugs.debian.org/706753&quot;&gt;706753&lt;/a&gt;).&lt;/li&gt;
2850 &lt;/ul&gt;
2851
2852 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
2853 &lt;ul&gt;
2854
2855 &lt;li&gt;IP resolution for the local hostname give useless IPv6 address
2856 (&lt;a href=&quot;http://bugs.debian.org/705900&quot;&gt;705900&lt;/a&gt;). Only install
2857 libnss-myhostname on roaming workstations until it is fixed.&lt;/li&gt;
2858 &lt;li&gt;DVD images are not yet ready.&lt;/li&gt;
2859 &lt;li&gt;No mass import of user account data in GOsa (ldif or csv)
2860 available yet (&lt;a href=&quot;http://bugs.debian.org/698840&quot;&gt;698840&lt;/a&gt;).&lt;/li&gt;
2861 &lt;li&gt;Missing artwork for the KDE desktop (and probably a few others).&lt;/li&gt;
2862 &lt;li&gt;KDE Debian submenu lacks icons.&lt;/li&gt;
2863 &lt;li&gt;LXDE menu lacks entry for changing GOsa password
2864 (website). Installing gosa-desktop will be an option.&lt;/li&gt;
2865 &lt;li&gt;Backup configuration via web interface is impossible due to
2866 password submission problem
2867 (&lt;a href=&quot;http://bugs.debian.org/700257&quot;&gt;700257&lt;/a&gt;).&lt;/li&gt;
2868
2869 &lt;/ul&gt;
2870
2871 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
2872
2873 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
2874 &lt;ul&gt;
2875
2876 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu~7.0+edu0~a1-CD.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu~7.0+edu0~a1-CD.iso&lt;/a&gt;&lt;/li&gt;
2877 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu~7.0+edu0~a1-CD.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu~7.0+edu0~a1-CD.iso&lt;/a&gt;&lt;/li&gt;
2878 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu~7.0+edu0~a1-CD.iso debian-edu~7.0+edu0~a1-CD.iso&lt;/li&gt;
2879
2880 &lt;/ul&gt;
2881
2882 &lt;p&gt;The MD5SUM of this image is: 685ed76c1aa8e44b12d3fde21faf450b&lt;/p&gt;
2883
2884 &lt;p&gt;The SHA1SUM of this image is: 6c874de157024da13e115bab29c068080a11ec4c&lt;/p&gt;
2885
2886 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
2887
2888 &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;&lt;/p&gt;
2889 </description>
2890 </item>
2891
2892 <item>
2893 <title>Debian, the Linux distribution of choice for LEGO designers?</title>
2894 <link>http://people.skolelinux.org/pere/blog/Debian__the_Linux_distribution_of_choice_for_LEGO_designers_.html</link>
2895 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian__the_Linux_distribution_of_choice_for_LEGO_designers_.html</guid>
2896 <pubDate>Sat, 11 May 2013 20:30:00 +0200</pubDate>
2897 <description>&lt;P&gt;In January,
2898 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/New_IRC_channel_for_LEGO_designers_using_Debian.html&quot;&gt;I
2899 announced a&lt;/a&gt; new &lt;a href=&quot;irc://irc.debian.org/%23debian-lego&quot;&gt;IRC
2900 channel #debian-lego&lt;/a&gt;, for those of us in the Debian and Linux
2901 community interested in &lt;a href=&quot;http://www.lego.com/&quot;&gt;LEGO&lt;/a&gt;, the
2902 marvellous construction system from Denmark. We also created
2903 &lt;a href=&quot;http://wiki.debian.org/LegoDesigners&quot;&gt;a wiki page&lt;/a&gt; to have
2904 a place to take notes and write down our plans and hopes. And several
2905 people showed up to help. I was very happy to see the effect of my
2906 call. Since the small start, we have a debtags tag
2907 &lt;a href=&quot;http://debtags.debian.net/search/bytag?wl=hardware::hobby:lego&quot;&gt;hardware::hobby:lego&lt;/a&gt;
2908 tag for LEGO related packages, and now count 10 packages related to
2909 LEGO and &lt;a href=&quot;http://mindstorms.lego.com/&quot;&gt;Mindstorms&lt;/a&gt;:&lt;/p&gt;
2910
2911 &lt;p&gt;&lt;table&gt;
2912 &lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://packages.qa.debian.org/brickos&quot;&gt;brickos&lt;/a&gt;&lt;/td&gt;&lt;td&gt;alternative OS for LEGO Mindstorms RCX. Supports development in C/C++&lt;/td&gt;&lt;/tr&gt;
2913 &lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://packages.qa.debian.org/leocad&quot;&gt;leocad&lt;/a&gt;&lt;/td&gt;&lt;td&gt;virtual brick CAD software&lt;/td&gt;&lt;/tr&gt;
2914 &lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://packages.qa.debian.org/libnxt&quot;&gt;libnxt&lt;/a&gt;&lt;/td&gt;&lt;td&gt;utility library for talking to the LEGO Mindstorms NX&lt;/td&gt;&lt;/tr&gt;
2915 &lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://packages.qa.debian.org/lnpd&quot;&gt;lnpd&lt;/a&gt;&lt;/td&gt;&lt;td&gt;daemon for LNP communication with BrickOS&lt;/td&gt;&lt;/tr&gt;
2916 &lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://packages.qa.debian.org/nbc&quot;&gt;nbc&lt;/a&gt;&lt;/td&gt;&lt;td&gt;compiler for LEGO Mindstorms NXT bricks&lt;/td&gt;&lt;/tr&gt;
2917 &lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://packages.qa.debian.org/nqc&quot;&gt;nqc&lt;/a&gt;&lt;/td&gt;&lt;td&gt;Not Quite C compiler for LEGO Mindstorms RCX&lt;/td&gt;&lt;/tr&gt;
2918 &lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://packages.qa.debian.org/python-nxt&quot;&gt;python-nxt&lt;/a&gt;&lt;/td&gt;&lt;td&gt;python driver/interface/wrapper for the Lego Mindstorms NXT robot&lt;/td&gt;&lt;/tr&gt;
2919 &lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://packages.qa.debian.org/python-nxt-filer&quot;&gt;python-nxt-filer&lt;/a&gt;&lt;/td&gt;&lt;td&gt;simple GUI to manage files on a LEGO Mindstorms NXT&lt;/td&gt;&lt;/tr&gt;
2920 &lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://packages.qa.debian.org/scratch&quot;&gt;scratch&lt;/a&gt;&lt;/td&gt;&lt;td&gt;easy to use programming environment for ages 8 and up&lt;/td&gt;&lt;/tr&gt;
2921 &lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://packages.qa.debian.org/t2n&quot;&gt;t2n&lt;/a&gt;&lt;/td&gt;&lt;td&gt;simple command-line tool for Lego NXT&lt;/td&gt;&lt;/tr&gt;
2922 &lt;/table&gt;&lt;/p&gt;
2923
2924 &lt;p&gt;Some of these are available in Wheezy, and all but one are
2925 currently available in Jessie/testing. leocad is so far only
2926 available in experimental.&lt;/p&gt;
2927
2928 &lt;p&gt;If you care about LEGO in Debian, please join us on IRC and help
2929 adding the rest of the great free software tools available on Linux
2930 for LEGO designers.&lt;/p&gt;
2931 </description>
2932 </item>
2933
2934 <item>
2935 <title>Debian Wheezy is out - and Debian Edu / Skolelinux should soon follow! #newinwheezy</title>
2936 <link>http://people.skolelinux.org/pere/blog/Debian_Wheezy_is_out___and_Debian_Edu___Skolelinux_should_soon_follow___newinwheezy.html</link>
2937 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Wheezy_is_out___and_Debian_Edu___Skolelinux_should_soon_follow___newinwheezy.html</guid>
2938 <pubDate>Sun, 5 May 2013 07:40:00 +0200</pubDate>
2939 <description>&lt;p&gt;When I woke up this morning, I was very happy to see that the
2940 &lt;a href=&quot;http://www.debian.org/News/2013/20130504&quot;&gt;release announcement
2941 for Debian Wheezy&lt;/a&gt; was waiting in my mail box. This is a great
2942 Debian release, and I expect to move my machines at home over to it fairly
2943 soon.&lt;/p&gt;
2944
2945 &lt;p&gt;The new debian release contain heaps of new stuff, and one program
2946 in particular make me very happy to see included. The
2947 &lt;a href=&quot;http://scratch.mit.edu/&quot;&gt;Scratch&lt;/a&gt; program, made famous by
2948 the &lt;a href=&quot;http://www.code.org/&quot;&gt;Teach kids code&lt;/a&gt; movement, is
2949 included for the first time. Alongside similar programs like
2950 &lt;a href=&quot;http://edu.kde.org/kturtle/&quot;&gt;kturtle&lt;/a&gt; and
2951 &lt;a href=&quot;http://wiki.sugarlabs.org/go/Activities/Turtle_Art&quot;&gt;turtleart&lt;/a&gt;,
2952 it allow for visual programming where syntax errors can not happen,
2953 and a friendly programming environment for learning to control the
2954 computer. Scratch will also be included in the next release of Debian
2955 Edu.&lt;/a&gt;
2956
2957 &lt;p&gt;And now that Wheezy is wrapped up, we can wrap up the next Debian
2958 Edu/Skolelinux release too. The
2959 &lt;a href=&quot;http://lists.debian.org/debian-edu/2013/04/msg00132.html&quot;&gt;first
2960 alpha release&lt;/a&gt; went out last week, and the next should soon
2961 follow.&lt;p&gt;
2962 </description>
2963 </item>
2964
2965 <item>
2966 <title>First alpha release of Debian Edu / Skolelinux based on Debian Wheezy</title>
2967 <link>http://people.skolelinux.org/pere/blog/First_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</link>
2968 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</guid>
2969 <pubDate>Fri, 26 Apr 2013 08:30:00 +0200</pubDate>
2970 <description>&lt;p&gt;The Debian Edu / Skolelinux project is still going strong and made
2971 its first Wheezy based release today. This is the release
2972 announcement:&lt;/p&gt;
2973
2974 &lt;p&gt;&lt;strong&gt;New features for Debian Edu ~7.0.0 alpha0 released
2975 2013-04-26&lt;/strong&gt;&lt;/p&gt;
2976
2977 &lt;p&gt;This is the release notes for for Debian Edu / Skolelinux ~7.0.0
2978 edu alpha0, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
2979
2980 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
2981
2982 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
2983 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
2984 out-of-the box environment of a completely configured school
2985 network. Immediatly after installation a school server running all
2986 services needed for a school network is set up just waiting for users
2987 and machines being added via GOsa², a comfortable Web-UI. A netbooting
2988 environment is prepared using PXE, so after initial installation of
2989 the main server from CD, DVD or USB stick all other machines can be
2990 installed via the network.&lt;/p&gt;
2991
2992 &lt;p&gt;This is the first test release based on Wheezy (which currently is
2993 not released yet). Basically this is an updated and slightly improved
2994 version compared to the Squeeze release.&lt;/p&gt;
2995
2996 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
2997
2998 &lt;ul&gt;
2999 &lt;li&gt;Everything which is new in Debian Wheezy, eg:
3000 &lt;ul&gt;
3001 &lt;li&gt;Linux kernel 3.2.x&lt;/li&gt;
3002 &lt;li&gt;Desktop environments KDE &quot;Plasma&quot; 4.8.4, GNOME 3.4, and LXDE 4
3003 (KDE is installed by default; to choose GNOME or LXDE: see
3004 manual.)&lt;/li&gt;
3005 &lt;li&gt;Web browser Iceweasel 10 ESR&lt;/li&gt;
3006 &lt;li&gt;LibreOffice 3.5.4&lt;/li&gt;
3007 &lt;li&gt;LTSP 5.4.2&lt;/li&gt;
3008 &lt;li&gt;GOsa 2.7.4&lt;/li&gt;
3009 &lt;li&gt;CUPS print system 1.5.3&lt;/li&gt;
3010 &lt;li&gt;Educational toolbox GCompris 12.01&lt;/li&gt;
3011 &lt;li&gt;Music creator Rosegarden 12.04&lt;/li&gt;
3012 &lt;li&gt;Image editor Gimp 2.8.2&lt;/li&gt;
3013 &lt;li&gt;Virtual universe Celestia 1.6.1&lt;/li&gt;
3014 &lt;li&gt;Virtual stargazer Stellarium 0.11.3&lt;/li&gt;
3015 &lt;li&gt;Scratch visual programming environment 1.4.0.6&lt;/li&gt;
3016 &lt;li&gt;New version of debian-installer from Debian Wheezy, see
3017 &lt;a href=&quot;http://www.debian.org/releases/wheezy/installmanual&quot;&gt;installation
3018 manual&lt;/a&gt; for more details.&lt;/li&gt;
3019 &lt;li&gt;Debian Wheezy includes about 37000 packages available for
3020 installation.&lt;/li&gt;
3021 &lt;li&gt;More information about Debian Wheezy 7.0 is provided in the
3022 &lt;a href=&quot;http://www.debian.org/releases/wheezy/releasenotes&quot;&gt;release notes&lt;/a&gt; and the &lt;a href=&quot;http://www.debian.org/releases/wheezy/installmanual&quot;&gt;installation manual&lt;/a&gt;.&lt;/li&gt;
3023 &lt;/ul&gt;&lt;/li&gt;
3024 &lt;/ul&gt;
3025
3026 &lt;p&gt;&lt;strong&gt;Documentation&lt;/strong&gt;&lt;/p&gt;
3027 &lt;ul&gt;
3028 &lt;li&gt;The (&lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Wheezy&quot;&gt;English&lt;/a&gt;) Debian Edu Wheezy Manual is fully translated to
3029 German, French, Italian and Danish. Partly translated versions exist
3030 for Norwegian Bokmal and Spanish.&lt;/li&gt;
3031 &lt;/ul&gt;
3032
3033 &lt;p&gt;&lt;Strong&gt;LDAP related changes&lt;/strong&gt;&lt;/p&gt;
3034 &lt;ul&gt;
3035 &lt;li&gt;Slight changes to some objects and acls to have more types to
3036 choose from when adding systems in GOsa. Now systems can be of type
3037 server, workstation, printer, terminal or netdevice.&lt;/li&gt;
3038 &lt;/ul&gt;
3039
3040 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
3041 &lt;ul&gt;
3042 &lt;li&gt;LTSP clients start as diskless workstation / thin client can be
3043 configured via command line argument -- or individually adding an
3044 entry in lts.conf or LDAP.&lt;li&gt;
3045 &lt;li&gt;GOsa gui: Now some options that seemed to be available, but are non
3046 functional, are greyed out (or are not clickable). Some tabs are
3047 completely hidden to the end user, others even to the GOsa admin.&lt;/li&gt;
3048 &lt;/ul&gt;
3049
3050 &lt;p&gt;&lt;strong&gt;Regressions&lt;/strong&gt;&lt;/p&gt;
3051 &lt;ul&gt;
3052 &lt;li&gt;No mass import of user account data in GOsa (ldif or csv) available
3053 yet.&lt;/li&gt;
3054 &lt;/ul&gt;
3055
3056 &lt;p&gt;&lt;strong&gt;No updated artwork&lt;/strong&gt;&lt;/p&gt;
3057
3058 &lt;ul&gt;
3059 &lt;li&gt;Updated artwork which is visible during installation, in the login
3060 screen and as desktop wallpaper is still missing or the same as we
3061 had for our Squeeze based release.&lt;/li&gt;
3062 &lt;/ul&gt;
3063
3064 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
3065
3066 To download the multiarch netinstall CD release you can use
3067 &lt;ul&gt;
3068 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/&lt;/a&gt;&lt;/li&gt;
3069 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/wheezy/&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/wheezy/&lt;/a&gt;&lt;/li&gt;
3070 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/&lt;/li&gt;
3071 &lt;/ul&gt;
3072
3073 &lt;p&gt;The MD5SUM of this image is: c5e773ddafdaa4f48c409c682f598b6c&lt;/p&gt;
3074
3075 &lt;p&gt;The SHA1SUM of this image is: 25934fabb9b7d20235499a0a51f08ce6c54215f2&lt;/p&gt;
3076
3077 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
3078
3079 &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;&lt;/p&gt;
3080 </description>
3081 </item>
3082
3083 <item>
3084 <title>First Debian Edu / Skolelinux developer gathering in 2013 take place in Trondheim</title>
3085 <link>http://people.skolelinux.org/pere/blog/First_Debian_Edu___Skolelinux_developer_gathering_in_2013_take_place_in_Trondheim.html</link>
3086 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_Debian_Edu___Skolelinux_developer_gathering_in_2013_take_place_in_Trondheim.html</guid>
3087 <pubDate>Tue, 16 Apr 2013 15:00:00 +0200</pubDate>
3088 <description>&lt;p&gt;This years first &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux /
3089 Debian Edu&lt;/a&gt; developer gathering take place the coming weekend in Trondheim.
3090 Details about the gathering can be found
3091 &lt;a href=&quot;http://www.friprogramvareiskolen.no/Gathering/2013-04-19-21-Trondheim&quot;&gt;on
3092 the FRiSK wiki&lt;/a&gt;. The dates are 19-21th of April 2013, and online
3093 participation for those unable to make it in person is very welcome,
3094 and I plan to participate online myself as I could not leave Oslo this
3095 weekend.&lt;/p&gt;
3096
3097 &lt;p&gt;The focus of the gathering is to work on the web pages and project
3098 infrastructure, and to continue the work on the Wheezy based Debian
3099 Edu release.&lt;/p&gt;
3100
3101 &lt;p&gt;See you on &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;IRC, #debian-edu on irc.debian.org,&lt;/a&gt; then?&lt;/p&gt;
3102 </description>
3103 </item>
3104
3105 <item>
3106 <title>Isenkram 0.2 finally in the Debian archive</title>
3107 <link>http://people.skolelinux.org/pere/blog/Isenkram_0_2_finally_in_the_Debian_archive.html</link>
3108 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Isenkram_0_2_finally_in_the_Debian_archive.html</guid>
3109 <pubDate>Wed, 3 Apr 2013 23:40:00 +0200</pubDate>
3110 <description>&lt;p&gt;Today the &lt;a href=&quot;http://packages.qa.debian.org/isenkram&quot;&gt;Isenkram
3111 package&lt;/a&gt; finally made it into the archive, after lingering in NEW
3112 for many months. I uploaded it to the Debian experimental suite
3113 2013-01-27, and today it was accepted into the archive.&lt;/p&gt;
3114
3115 &lt;p&gt;Isenkram is a system for suggesting to users what packages to
3116 install to work with a pluggable hardware device. The suggestion pop
3117 up when the device is plugged in. For example if a Lego Mindstorm NXT
3118 is inserted, it will suggest to install the program needed to program
3119 the NXT controller. Give it a go, and report bugs and suggestions to
3120 BTS. :)&lt;/p&gt;
3121 </description>
3122 </item>
3123
3124 <item>
3125 <title>Change the font, save the world (and save some money in the process)</title>
3126 <link>http://people.skolelinux.org/pere/blog/Change_the_font__save_the_world__and_save_some_money_in_the_process_.html</link>
3127 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Change_the_font__save_the_world__and_save_some_money_in_the_process_.html</guid>
3128 <pubDate>Tue, 26 Mar 2013 15:10:00 +0100</pubDate>
3129 <description>&lt;p&gt;Would you like to help the environment and save money at the same
3130 time, without much sacrifice? A small step could be to change the
3131 font you use when printing.&lt;/p&gt;
3132
3133 &lt;p&gt;Three years ago,
3134 &lt;a href=&quot;http://arstechnica.com/business/2010/04/last-year-printer-comparison-website/&quot;&gt;Ars
3135 Technica&lt;/a&gt; reported how the University of Wisconsin-Green Bay
3136 changed their default front from
3137 &lt;a href=&quot;http://en.wikipedia.org/wiki/Arial&quot;&gt;Arial&lt;/a&gt; to
3138 &lt;a href=&quot;http://en.wikipedia.org/wiki/Century_Gothic&quot;&gt;Century
3139 Gothic&lt;/a&gt; to save money. The Century Gothic font uses 30% less toner
3140 than Arial to print the same text. In other word, you could cut your
3141 toner costs by 30% (or actually, increase your toner supply life time
3142 by more than 30%), by simply changing the default font used in your
3143 prints.&lt;/p&gt;
3144
3145 &lt;p&gt;But it is not quite obvious how much one will save by switching.
3146 The University of Wisconsin-Green Bay said it used $100,000 per year
3147 on ink and toner cartridges, according to
3148 &lt;a href=&quot;http://www.twincities.com/ci_14833097&quot;&gt;a report from
3149 TwinCities.com&lt;/a&gt;, and expected to save between $5,000 and $10,000
3150 per year by asking staff and students to use a different font. Not
3151 all PDFs and documents are created internally, and those from external
3152 sources will most likely still use a different font. Also, the
3153 Century Gothic font is slightly wider than Arial, and thus might use
3154 more sheets of paper to print the same text, so the total saving
3155 depend on the documents printed.&lt;/p&gt;
3156
3157 &lt;p&gt;But it is definitely something to consider, if you want to reduce
3158 the amount of trash, decrease the amount of toner used in the world,
3159 and save some money in the process.&lt;/p&gt;
3160
3161 &lt;p&gt;Update 2013-04-10: If you want to know how much ink/toner could be
3162 saved when switching between fonts, Inkfarm got a
3163 &lt;a href=&quot;http://www.inkfarm.com/What-the-Font&quot;&gt;service to calculate the
3164 difference between font pairs&lt;/a&gt;. They also
3165 &lt;a href=&quot;http://www.inkfarm.com/Recommended-Ink-Saving-Fonts---&quot;&gt;recommend
3166 which fonts to use&lt;/a&gt; to save ink. Check it out. :) While updating
3167 this blog post, I also came across a blog post from InkCloners,
3168 &lt;a href=&quot;http://inkcloners.com/blog/ink-cartridges/change-fonts-to-save-ink-costs/&quot;&gt;listing
3169 the fonts they recommend&lt;/a&gt;, with Centory Gothic at the top.&lt;/p&gt;
3170 </description>
3171 </item>
3172
3173 <item>
3174 <title>Typesetting a short story using docbook for PDF, HTML and EPUB</title>
3175 <link>http://people.skolelinux.org/pere/blog/Typesetting_a_short_story_using_docbook_for_PDF__HTML_and_EPUB.html</link>
3176 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Typesetting_a_short_story_using_docbook_for_PDF__HTML_and_EPUB.html</guid>
3177 <pubDate>Sun, 24 Mar 2013 17:30:00 +0100</pubDate>
3178 <description>&lt;p&gt;A few days ago, during a discussion in
3179 &lt;a href=&quot;http://www.efn.no/&quot;&gt;EFN&lt;/a&gt; about interesting books to read
3180 about copyright and the data retention directive, a suggestion to read
3181 the 1968 short story Kodémus by
3182 &lt;a href=&quot;http://web2.gyldendal.no/toraage/&quot;&gt;Tore Åge Bringsværd&lt;/a&gt;
3183 came up. The text was only available in old paper books, and thus not
3184 easily available for current and future generations. Some of the
3185 people participating in the discussion contacted the author, and
3186 reported back 2013-03-19 that the author was OK with releasing the
3187 short story using a &lt;a href=&quot;http://www.creativecommons.org/&quot;&gt;Creative
3188 Commons&lt;/a&gt; license. The text was quickly scanned and OCR-ed, and we
3189 were ready to start on the editing and typesetting.&lt;/p&gt;
3190
3191 &lt;p&gt;As I already had some experience formatting text in my project to
3192 provide a Norwegian version of the Free Culture book by Lawrence
3193 Lessig, I chipped in and set up a
3194 &lt;a href=&quot;http://www.docbook.org/&quot;&gt;DocBook&lt;/a&gt; processing framework to
3195 generate PDF, HTML and EPUB version of the short story. The tools to
3196 transform DocBook to different formats are already in my Linux
3197 distribution of choice, &lt;a href=&quot;http://www.debian.org/&quot;&gt;Debian&lt;/a&gt;, so
3198 all I had to do was to use the
3199 &lt;a href=&quot;http://dblatex.sourceforge.net/&quot;&gt;dblatex&lt;/a&gt;,
3200 &lt;a href=&quot;http://docbook.sourceforge.net/release/xsl/current/epub/README&quot;&gt;dbtoepub&lt;/a&gt;
3201 and &lt;a href=&quot;https://fedorahosted.org/xmlto/&quot;&gt;xmlto&lt;/a&gt; tools to do the
3202 conversion. After a few days, we decided to replace dblatex with
3203 xsltproc/fop (aka
3204 &lt;a href=&quot;http://wiki.docbook.org/DocBookXslStylesheets&quot;&gt;docbook-xsl&lt;/a&gt;),
3205 to get the copyright information to show up in the PDF and to get a
3206 nicer &amp;lt;variablelist&amp;gt; typesetting, but that is just a minor
3207 technical detail.&lt;/p&gt;
3208
3209 &lt;p&gt;There were a few challenges, of course. We want to typeset the
3210 short story to look like the original, and that require fairly good
3211 control over the layout. The original short story have three
3212 parts/scenes separated by a single horizontally centred star (*), and
3213 the paragraphs do not contain only flowing text, but dialogs and text
3214 that started on a new line in the middle of the paragraph.&lt;/p&gt;
3215
3216 &lt;p&gt;I initially solved the first challenge by using a paragraph with a
3217 single star in it, ie &amp;lt;para&amp;gt;*&amp;lt;/para&amp;gt;, but it made sure a
3218 placeholder indicated where the scene shifted. This did not look too
3219 good without the centring. The next approach was to create a new
3220 preprocessor directive &amp;lt;?newscene?&amp;gt;, mapping to &quot;&amp;lt;hr/&amp;gt;&quot;
3221 for HTML and &quot;&amp;lt;fo:block text-align=&quot;center&quot;&amp;gt;&amp;lt;fo:leader
3222 leader-pattern=&quot;rule&quot; rule-thickness=&quot;0.5pt&quot;/&amp;gt;&amp;lt;/fo:block&amp;gt;&quot;
3223 for FO/PDF output (did not try to implement this in dblatex, as we had
3224 switched at this time). The HTML XSL file looked like this:&lt;/p&gt;
3225
3226 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
3227 &amp;lt;?xml version=&#39;1.0&#39;?&amp;gt;
3228 &amp;lt;xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&#39;1.0&#39;&amp;gt;
3229 &amp;lt;xsl:template match=&quot;processing-instruction(&#39;newscene&#39;)&quot;&amp;gt;
3230 &amp;lt;hr/&amp;gt;
3231 &amp;lt;/xsl:template&amp;gt;
3232 &amp;lt;/xsl:stylesheet&amp;gt;
3233 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
3234
3235 &lt;p&gt;And the FO/PDF XSL file looked like this:&lt;/p&gt;
3236
3237 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
3238 &amp;lt;?xml version=&#39;1.0&#39;?&amp;gt;
3239 &amp;lt;xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&#39;1.0&#39;&amp;gt;
3240 &amp;lt;xsl:template match=&quot;processing-instruction(&#39;newscene&#39;)&quot;&amp;gt;
3241 &amp;lt;fo:block text-align=&quot;center&quot;&amp;gt;
3242 &amp;lt;fo:leader leader-pattern=&quot;rule&quot; rule-thickness=&quot;0.5pt&quot;/&amp;gt;
3243 &amp;lt;/fo:block&amp;gt;
3244 &amp;lt;/xsl:template&amp;gt;
3245 &amp;lt;/xsl:stylesheet&amp;gt;
3246 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
3247
3248 &lt;p&gt;Finally, I came across the &amp;lt;bridgehead&amp;gt; tag, which seem to be
3249 a good fit for the task at hand, and I replaced &amp;lt;?newscene?&amp;gt;
3250 with &amp;lt;bridgehead&amp;gt;*&amp;lt;/bridgehead&amp;gt;. It isn&#39;t centred, but we
3251 can fix it with some XSL rule if the current visual layout isn&#39;t
3252 enough.&lt;/p&gt;
3253
3254 &lt;p&gt;I did not find a good DocBook compliant way to solve the
3255 linebreak/paragraph challenge, so I ended up creating a new processor
3256 directive &amp;lt;?linebreak?&amp;gt;, mapping to &amp;lt;br/&amp;gt; in HTML, and
3257 &amp;lt;fo:block/&amp;gt; in FO/PDF. I suspect there are better ways to do
3258 this, and welcome ideas and patches on github. The HTML XSL file now
3259 look like this:&lt;/p&gt;
3260
3261 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
3262 &amp;lt;?xml version=&#39;1.0&#39;?&amp;gt;
3263 &amp;lt;xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&#39;1.0&#39;&amp;gt;
3264 &amp;lt;xsl:template match=&quot;processing-instruction(&#39;linebreak)&quot;&amp;gt;
3265 &amp;lt;br/&amp;gt;
3266 &amp;lt;/xsl:template&amp;gt;
3267 &amp;lt;/xsl:stylesheet&amp;gt;
3268 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
3269
3270 &lt;p&gt;And the FO/PDF XSL file looked like this:&lt;/p&gt;
3271
3272 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
3273 &amp;lt;?xml version=&#39;1.0&#39;?&amp;gt;
3274 &amp;lt;xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&#39;1.0&#39;
3275 xmlns:fo=&quot;http://www.w3.org/1999/XSL/Format&quot;&amp;gt;
3276 &amp;lt;xsl:template match=&quot;processing-instruction(&#39;linebreak)&quot;&amp;gt;
3277 &amp;lt;fo:block/&amp;gt;
3278 &amp;lt;/xsl:template&amp;gt;
3279 &amp;lt;/xsl:stylesheet&amp;gt;
3280 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
3281
3282 &lt;p&gt;One unsolved challenge is our wish to expose different ISBN numbers
3283 per publication format, while keeping all of them in some conditional
3284 structure in the DocBook source. No idea how to do this, so we ended
3285 up listing all the ISBN numbers next to their format in the colophon
3286 page.&lt;/p&gt;
3287
3288 &lt;p&gt;If you want to check out the finished result, check out the
3289 &lt;a href=&quot;https://github.com/sickel/kodemus&quot;&gt;source repository at
3290 github&lt;/a&gt;
3291 (&lt;a href=&quot;https://github.com/EFN/kodemus&quot;&gt;future/new/official
3292 repository&lt;/a&gt;). We expect it to be ready and announced in a few
3293 days.&lt;/p&gt;
3294 </description>
3295 </item>
3296
3297 <item>
3298 <title>Skolelinux 6 got a video review from Pcwizz</title>
3299 <link>http://people.skolelinux.org/pere/blog/Skolelinux_6_got_a_video_review_from_Pcwizz.html</link>
3300 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_6_got_a_video_review_from_Pcwizz.html</guid>
3301 <pubDate>Sun, 17 Mar 2013 10:30:00 +0100</pubDate>
3302 <description>&lt;p&gt;Via
3303 &lt;a href=&quot;https://twitter.com/pcwizz/status/313044373262716930&quot;&gt;twitter&lt;/a&gt;
3304 I just discovered that &lt;a href=&quot;http://pcwizz.net/&quot;&gt;Pcwizz&lt;/a&gt; have
3305 done a &lt;a href=&quot;http://www.youtube.com/watch?v=wPzTZ61Pcuc&quot;&gt;video
3306 review&lt;/a&gt; on Youtube of &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux
3307 / Debian Edu&lt;/a&gt; version 6. He installed the standalone profile and
3308 the video show a walk-through of of the menu content, demonstration of
3309 a few programs and his view of our distribution.&lt;/p&gt;
3310
3311 &lt;p&gt;There is also some really nice quotes (transcribed by me, might
3312 have heard wrong). While looking thought the Graphics menu:&lt;/p&gt;
3313
3314 &lt;blockquote&gt;
3315 &quot;Basically everything you ever need in a school environment.&quot;
3316 &lt;/blockquote&gt;
3317
3318 &lt;p&gt;And as a general evaluation of the entire distribution:&lt;/p&gt;
3319
3320 &lt;blockquote&gt;
3321 &quot;So, yeah, a bit bloated. It kept all the Debian stuff in there, just
3322 to keep it nice and GNU. So, I do not want to go on about it, but
3323 lets give it 7 out of 10. I am not going to use it. That is because
3324 I am not deploying a school network. There may be some mythical
3325 feature to help you deploy Skolelinux on a school network.&quot;
3326 &lt;/blockquote&gt;
3327
3328 &lt;p&gt;To bad he did not test the server profile, and discovered the PXE
3329 installation option. It make it possible to install only the main
3330 server from CD, and the rest of the machines via the net, and might be
3331 considered the mythical feature he talk about. :)&lt;/p&gt;
3332
3333 &lt;p&gt;While looking through the menus, there is also this funny comment
3334 about the part of the K menu generated from the Debian menu subsystem:
3335
3336 &lt;blockquote&gt;
3337 &quot;[The K menu] have a special Debian section for software that no-one
3338 is going to look at, because it contain lots of junky stuff that you
3339 actually don&#39;t need in the education distribution, but have just been
3340 included because it isn&#39;t stripped out for some reason.&quot;
3341 &lt;/blockquote&gt;
3342
3343 &lt;p&gt;I guess it is yet another argument for merging the Debian menu and
3344 Gnome/KDE desktop menu entries into
3345 &lt;a href=&quot;http://wiki.debian.org/Proposals/DebianMenuUsingDesktopEntries&quot;&gt;one
3346 consistent menu system&lt;/a&gt; instead of two incomplete and partly
3347 inconsistent menu systems.&lt;/p&gt;
3348
3349 &lt;p&gt;The entire video is available below for those accepting iframe
3350 embedding:&lt;/p&gt;
3351
3352 &lt;iframe width=&quot;560&quot; height=&quot;315&quot; src=&quot;http://www.youtube.com/embed/wPzTZ61Pcuc&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;
3353 </description>
3354 </item>
3355
3356 <item>
3357 <title>First Skolelinux / Debian Edu Squeeze update released</title>
3358 <link>http://people.skolelinux.org/pere/blog/First_Skolelinux___Debian_Edu_Squeeze_update_released.html</link>
3359 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_Skolelinux___Debian_Edu_Squeeze_update_released.html</guid>
3360 <pubDate>Fri, 8 Mar 2013 09:30:00 +0100</pubDate>
3361 <description>&lt;p&gt;Last Sunday, 2013-03-03,, Holger Levsen announced the first update
3362 of &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux / Debian Edu&lt;/a&gt;
3363 based on Debian Squeeze. This is the first update since
3364 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/03/msg00001.html&quot;&gt;the
3365 initial release 2012-03-11&lt;/a&gt;. This is the
3366 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2013/03/msg00000.html&quot;&gt;release
3367 announcement email from Holger&lt;/a&gt;:&lt;/p&gt;
3368
3369 &lt;blockquote&gt;&lt;p&gt;Hi,&lt;/p&gt;
3370
3371 &lt;p&gt;it&#39;s my pleasure to announce the immediate availability of Debian
3372 Edu 6.0.7+r1 (&quot;Debian Edu Squeeze&quot;).&lt;/p&gt;
3373
3374 &lt;p&gt;Debian Edu 6.0.7+r1 is an incremental update to Debian Edu
3375 6.0.4+r0, containing all the changes between Debian 6.0.4 and 6.0.7 as
3376 well Debian Edu specific bugfixes and enhancements. See below (in this
3377 mail) for the full list of (edu) changes. Please see
3378 &lt;a href=&quot;http://www.debian.org/News/2012/20120311&quot;&gt;http://www.debian.org/News/2012/20120311&lt;/a&gt;
3379 for more information on &quot;Debian Edu Squeeze&quot;.&lt;/p&gt;
3380
3381 &lt;p&gt;Images are available for download at
3382 &lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/&lt;/a&gt;&lt;/p&gt;
3383
3384 &lt;p&gt;md5sums:
3385 &lt;br&gt;1fe79eb4f0f9ae1c58fc318e26cc1e2e debian-edu-6.0.7+r1-CD.iso
3386 &lt;br&gt;a6ddd924a8bd9a1b5ca122e8fe1c34ec debian-edu-6.0.7+r1-DVD.iso
3387 &lt;br&gt;ac6c72cd7925ccec51bfbf58e2a7c69c debian-edu-6.0.7+r1-source-DVD.iso&lt;/p&gt;
3388
3389 &lt;p&gt;sha1sums:
3390 &lt;br&gt;a4b58233b672a99c7df8dc24fb6de3327654a5c3 debian-edu-6.0.7+r1-CD.iso
3391 &lt;br&gt;9b524915e0ff2aa793f13d93123e5bd2bab2dbaa debian-edu-6.0.7+r1-DVD.iso
3392 &lt;br&gt;43997614893fc5e9e59ad6ce066b05d07fd836fa debian-edu-6.0.7+r1-source-DVD.iso&lt;/p&gt;
3393
3394 &lt;p&gt;These images are suitable for amd64+i386.&lt;/p&gt;
3395
3396 &lt;p&gt;Changes for Debian Edu 6.0.7+r1 Codename &quot;Squeeze&quot;, released
3397 2013-03-03:&lt;/p&gt;
3398
3399 &lt;ul&gt;
3400 &lt;li&gt;sitesummary was updated from 0.1.3 to 0.1.8
3401 &lt;ul&gt;
3402 &lt;li&gt;Make Nagios configuration more robust and efficient&lt;/li&gt;
3403 &lt;li&gt;Comply with 3.X kernel&lt;/li&gt;
3404 &lt;/ul&gt;&lt;/li&gt;
3405 &lt;li&gt;debian-edu-doc from 1.4~20120310~6.0.4+r0 to 1.4~20130228~6.0.7+r1
3406 &lt;ul&gt;
3407 &lt;li&gt;Minor updates from the wiki&lt;/li&gt;
3408 &lt;li&gt;Danish translation now complete&lt;/li&gt;
3409 &lt;/ul&gt;&lt;/li&gt;
3410 &lt;li&gt;debian-edu-config from 1.453 to 1.455
3411 &lt;ul&gt;
3412 &lt;li&gt;Fix /etc/hosts for LTSP diskless workstations. Closes: #699880&lt;/li&gt;
3413 &lt;li&gt;Make ltsp_local_mount script work for multiple devices.&lt;/li&gt;
3414 &lt;li&gt;Correct Kerberos user policy: don&#39;t expire password after 2 days.
3415 Closes: #664596&lt;/li&gt;
3416 &lt;li&gt;Handle &#39;#&#39; characters in the root or first users password.
3417 Closes: #664976&lt;/li&gt;
3418 &lt;li&gt;Fixes for gosa-sync:
3419 &lt;ul&gt;
3420 &lt;li&gt;Don&#39;t fail if password contains &quot;&lt;/li&gt;
3421 &lt;li&gt;Don&#39;t disclose new password string in syslog&lt;/li&gt;
3422 &lt;/ul&gt;&lt;/li&gt;
3423 &lt;li&gt;Fixes for gosa-create:
3424 &lt;ul&gt;
3425 &lt;li&gt;Invalidate libnss cache before applying changes&lt;/li&gt;
3426 &lt;li&gt;Multiple failures during mass user import into GOsa²&lt;/li&gt;
3427 &lt;li&gt;gosa-netgroups plugin: don&#39;t erase entries of attribute type
3428 &quot;memberNisNetgroup&quot;. Closes: #687256&lt;/li&gt;
3429 &lt;li&gt;First user now uses the same Kerberos policy as all other users&lt;/li&gt;
3430 &lt;/ul&gt;&lt;/li&gt;
3431 &lt;li&gt;Add Danish web page&lt;/li&gt;
3432 &lt;/ul&gt;
3433 &lt;li&gt;debian-edu-install from 1.528 to 1.530
3434 &lt;ul&gt;
3435 &lt;li&gt;Improve preseeding support and documentation&lt;/li&gt;
3436 &lt;/ul&gt;&lt;/li&gt;
3437 &lt;/ul&gt;
3438
3439 &lt;p&gt;End-user documentation in English is available at
3440 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze/&quot;&gt;http://wiki.debian.org/DebianEdu/Documentation/Squeeze/&lt;/a&gt;
3441 - translations to French, Italian, Danish and German are available in
3442 the debian-edu-doc package. (Other languages could use your help!)&lt;/p&gt;
3443
3444 &lt;p&gt;If you want to contribute to Debian Edu, please join our
3445 mailinglist
3446 &lt;a href=&quot;http://lists.debian.org/debian-edu/&quot;&gt;debian-edu@lists.debian.org&lt;/a&gt;!
3447 &lt;/p&gt;&lt;/blockquote&gt;
3448
3449 &lt;p&gt;I am very happy to see the fruits of a year of hard work. :)&lt;/p&gt;
3450 </description>
3451 </item>
3452
3453 <item>
3454 <title>Frikanalen - Complete TV station organised using the web</title>
3455 <link>http://people.skolelinux.org/pere/blog/Frikanalen___Complete_TV_station_organised_using_the_web.html</link>
3456 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Frikanalen___Complete_TV_station_organised_using_the_web.html</guid>
3457 <pubDate>Sun, 3 Mar 2013 07:15:00 +0100</pubDate>
3458 <description>&lt;p&gt;Do you want to set up your own TV station, schedule videos and
3459 broadcast them on the air? Using free software? With video on demand
3460 support using
3461 &lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;free and
3462 open standards&lt;/a&gt;? Included a web based video stream as well? And
3463 administrate it all in your web browser from anywhere in the world? A
3464 few years now the Norwegian public access TV-channel
3465 &lt;a href=&quot;http://www.frikanalen.no/&quot;&gt;Frikanalen&lt;/a&gt; have been building a
3466 system to do just this. The source code for the solution is licensed
3467 using the GNU LGPL, and
3468 &lt;a href=&quot;http://github.com/Frikanalen&quot;&gt;available from github&lt;/a&gt;.&lt;/p&gt;
3469
3470 &lt;p&gt;The idea is simple. You upload a video file over the web, and
3471 attach meta information to the file. You select a time slot in the
3472 program schedule, and when the time come it is played on the air and
3473 in the web stream. It is also made available in a video on demand
3474 solution for anyone to see it also outside its scheduled time. All
3475 you need to run a TV station - using your web browser.&lt;/p&gt;
3476
3477 &lt;p&gt;There are several parts to this web based solution. I&#39;ll mention
3478 the three most important ones. The first part is the database of
3479 videos and the schedule. This is written in Django and include a REST
3480 API. The current database is SQLite, but the plan is to migrate it to
3481 PostgreSQL. At the moment this system can be tested on
3482 &lt;a href=&quot;http://beta.frikanalen.tv/&quot;&gt;beta.frikanalen.tv&lt;/a&gt;. The
3483 second part is the video playout, taking the schedule information from
3484 the database and providing a video stream to broadcast. This is done
3485 using &lt;a href=&quot;http://www.casparcg.com/&quot;&gt;CasparCG from SVT&lt;/a&gt; and
3486 &lt;a href=&quot;http://www.mltframework.org/&quot;&gt;Media Lovin&#39; Toolkit&lt;/a&gt;. Video
3487 signal distribution is handled using
3488 &lt;a href=&quot;http://www.ob-encoder.com/&quot;&gt;Open Broadcast Encoder&lt;/a&gt;. The
3489 third part is the converter, handling the transformation of uploaded
3490 video files to a format useful for broadcasting, streaming and video
3491 on demand. It is still very much work in progress, so it is not yet
3492 decided what it will end up using. Note that the source of the latter
3493 two parts are not yet pushed to github. The lead author want to clean
3494 them up a bit more first.&lt;/p&gt;
3495
3496 &lt;p&gt;The development is coordinated on the
3497 &lt;a href=&quot;irc://irc.freenode.net/%23frikanalen&quot;&gt;#frikanalen IRC
3498 channel&lt;/a&gt; (irc.freenode.net), and discussed on
3499 &lt;a href=&quot;http://lists.nuug.no/mailman/listinfo/frikanalen&quot;&gt;the
3500 frikanalen mailing list&lt;/a&gt;. The lead developer is Benjamin Bruheim
3501 (phed on IRC). Anyone is welcome to participate in the
3502 development.&lt;/p&gt;
3503 </description>
3504 </item>
3505
3506 <item>
3507 <title>Dr. Richard Stallman, founder of Free Software Foundation, give a talk in Oslo March 1st 2013</title>
3508 <link>http://people.skolelinux.org/pere/blog/Dr__Richard_Stallman__founder_of_Free_Software_Foundation__give_a_talk_in_Oslo_March_1st_2013.html</link>
3509 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Dr__Richard_Stallman__founder_of_Free_Software_Foundation__give_a_talk_in_Oslo_March_1st_2013.html</guid>
3510 <pubDate>Wed, 27 Feb 2013 20:20:00 +0100</pubDate>
3511 <description>&lt;p&gt;Dr. &lt;a href=&quot;http://www.stallman.org/&quot;&gt;Richard Stallman&lt;/a&gt;,
3512 founder of &lt;a href=&quot;http://www.fsf.org/&quot;&gt;Free Software Foundation&lt;/a&gt;,
3513 is giving &lt;a href=&quot;http://www.nuug.no/aktiviteter/20130301-rms/&quot;&gt;a
3514 talk in Oslo March 1st 2013 17:00 to 19:00&lt;/a&gt;. The event is public
3515 and organised by &lt;a href=&quot;&quot;&gt;Norwegian Unix Users Group (NUUG)&lt;/a&gt;
3516 (where I am the chair of the board) and
3517 &lt;a href=&quot;http://www.friprog.no/&quot;&gt;The Norwegian Open Source Competence
3518 Center&lt;/a&gt;. The title of the talk is «The Free Software Movement and
3519 GNU», with this description:
3520
3521 &lt;p&gt;&lt;blockquote&gt;
3522 The Free Software Movement campaigns for computer users&#39; freedom to
3523 cooperate and control their own computing. The Free Software Movement
3524 developed the GNU operating system, typically used together with the
3525 kernel Linux, specifically to make these freedoms possible.
3526 &lt;/blockquote&gt;&lt;/p&gt;
3527
3528 &lt;p&gt;The meeting is open for everyone. Due to space limitations, the
3529 doors opens for NUUG members at 16:15, and everyone else at 16:45. I
3530 am really curious how many will show up. See
3531 &lt;a href=&quot;http://www.nuug.no/aktiviteter/20130301-rms/&quot;&gt;the event
3532 page&lt;/a&gt; for the location details.&lt;/p&gt;
3533 </description>
3534 </item>
3535
3536 <item>
3537 <title>Frikart - Free Garmin maps for European countries based on OpenStreetmap</title>
3538 <link>http://people.skolelinux.org/pere/blog/Frikart___Free_Garmin_maps_for_European_countries_based_on_OpenStreetmap.html</link>
3539 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Frikart___Free_Garmin_maps_for_European_countries_based_on_OpenStreetmap.html</guid>
3540 <pubDate>Fri, 15 Feb 2013 09:30:00 +0100</pubDate>
3541 <description>&lt;p&gt;If you, like me, want an updated a map for your Garmin GPS, there is
3542 now a great source of free maps available from
3543 &lt;a href=&quot;http://www.frikart.no/garmin/index.html&quot;&gt;Frikart&lt;/a&gt;. To
3544 download a map, just click on the country you are interested in, and
3545 download the map type you want. There are 8 different maps available,
3546 using different colours and data selection. Pick one of Roadmap, Topo
3547 Summer, Topo Winter, Roadmap II, Topo Summer II, Topo Winter II,
3548 &quot;Trails - overlay map&quot; and &quot;Cross country - overlay map&quot; (see the web
3549 page for descriptions).&lt;/p&gt;
3550
3551 &lt;p&gt;The maps are updated weekly, so if you find something wrong in the
3552 map you can just edit the
3553 &lt;a href=&quot;http://www.openstreetmap.org/&quot;&gt;OpenStreetmap&lt;/a&gt; map source
3554 (anyone can contribute) and fetch a fixed map a week later. :)&lt;/p&gt;
3555 </description>
3556 </item>
3557
3558 <item>
3559 <title>&quot;Electronic&quot; paper invoices - using vCard in a QR code</title>
3560 <link>http://people.skolelinux.org/pere/blog/_Electronic__paper_invoices___using_vCard_in_a_QR_code.html</link>
3561 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/_Electronic__paper_invoices___using_vCard_in_a_QR_code.html</guid>
3562 <pubDate>Tue, 12 Feb 2013 10:30:00 +0100</pubDate>
3563 <description>&lt;p&gt;Here in Norway, electronic invoices are spreading, and the
3564 &lt;a href=&quot;http://www.anskaffelser.no/e-handel/faktura&quot;&gt;solution promoted
3565 by the Norwegian government&lt;/a&gt; require that invoices are sent through
3566 one of the approved facilitators, and it is not possible to send
3567 electronic invoices without an agreement with one of these
3568 facilitators. This seem like a needless limitation to be able to
3569 transfer invoice information between buyers and sellers. My preferred
3570 solution would be to just transfer the invoice information directly
3571 between seller and buyer, for example using SMTP, or some HTTP based
3572 protocol like REST or SOAP. But this might also be overkill, as the
3573 &quot;electronic&quot; information can be transferred using paper invoices too,
3574 using a simple bar code. My bar code encoding of choice would be QR
3575 codes, as this encoding can be read by any smart phone out there. The
3576 content of the code could be anything, but I would go with
3577 &lt;a href=&quot;http://en.wikipedia.org/wiki/VCard&quot;&gt;the vCard format&lt;/a&gt;, as
3578 it too is supported by a lot of computer equipment these days.&lt;/p&gt;
3579
3580 &lt;p&gt;The vCard format support extentions, and the invoice specific
3581 information can be included using such extentions. For example an
3582 invoice from SLX Debian Labs (picked because we
3583 &lt;a href=&quot;http://www.linuxiskolen.no/slxdebianlabs/donations.html&quot;&gt;ask
3584 for donations to the Debian Edu project&lt;/a&gt; and thus have bank account
3585 information publicly available) for NOK 1000.00 could have these extra
3586 fields:&lt;/p&gt;
3587
3588 &lt;p&gt;&lt;pre&gt;
3589 X-INVOICE-NUMBER:1
3590 X-INVOICE-AMOUNT:NOK1000.00
3591 X-INVOICE-KID:123412341234
3592 X-INVOICE-MSG:Donation to Debian Edu
3593 X-BANK-ACCOUNT-NUMBER:16040884339
3594 X-BANK-IBAN-NUMBER:NO8516040884339
3595 X-BANK-SWIFT-NUMBER:DNBANOKKXXX
3596 &lt;/pre&gt;&lt;/p&gt;
3597
3598 &lt;p&gt;The X-BANK-ACCOUNT-NUMBER field was proposed in a stackoverflow
3599 answer regarding
3600 &lt;a href=&quot;http://stackoverflow.com/questions/10045664/storing-bank-account-in-vcard-file&quot;&gt;how
3601 to put bank account information into a vCard&lt;/a&gt;. For payments in
3602 Norway, either X-INVOICE-KID (payment ID) or X-INVOICE-MSG could be
3603 used to pass on information to the seller when paying the invoice.&lt;/p&gt;
3604
3605 &lt;p&gt;The complete vCard could look like this:&lt;/p&gt;
3606
3607 &lt;p&gt;&lt;pre&gt;
3608 BEGIN:VCARD
3609 VERSION:2.1
3610 ORG:SLX Debian Labs Foundation
3611 ADR;WORK:;;Gunnar Schjelderups vei 29D;OSLO;;0485;Norway
3612 URL;WORK:http://www.linuxiskolen.no/slxdebianlabs/
3613 EMAIL;PREF;INTERNET:sdl-styret@rt.nuug.no
3614 REV:20130212T095000Z
3615 X-INVOICE-NUMBER:1
3616 X-INVOICE-AMOUNT:NOK1000.00
3617 X-INVOICE-MSG:Donation to Debian Edu
3618 X-BANK-ACCOUNT-NUMBER:16040884339
3619 X-BANK-IBAN-NUMBER:NO8516040884339
3620 X-BANK-SWIFT-NUMBER:DNBANOKKXXX
3621 END:VCARD
3622 &lt;/pre&gt;&lt;/p&gt;
3623
3624 &lt;p&gt;The resulting QR code created using
3625 &lt;a href=&quot;http://fukuchi.org/works/qrencode/&quot;&gt;qrencode&lt;/a&gt; would look
3626 like this, and should be readable (and thus checkable) by any smart
3627 phone, or for example the &lt;a href=&quot;http://zbar.sourceforge.net/&quot;&gt;zbar
3628 bar code reader&lt;/a&gt; and feed right into the approval and accounting
3629 system.&lt;/p&gt;
3630
3631 &lt;p&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2013-02-12-qr-invoice.png&quot;&gt;&lt;/p&gt;
3632
3633 &lt;p&gt;The extension fields will most likely not show up in any normal
3634 vCard reader, so those parts would have to go directly into a system
3635 handling invoices. I am a bit unsure how vCards without name parts
3636 are handled, but a simple test indicate that this work just fine.&lt;/p&gt;
3637
3638 &lt;p&gt;&lt;strong&gt;Update 2013-02-12 11:30&lt;/strong&gt;: Added KID to the proposal
3639 based on feedback from Sturle Sunde.&lt;/p&gt;
3640 </description>
3641 </item>
3642
3643 <item>
3644 <title>Sleep until morning - home automation for the kids</title>
3645 <link>http://people.skolelinux.org/pere/blog/Sleep_until_morning___home_automation_for_the_kids.html</link>
3646 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Sleep_until_morning___home_automation_for_the_kids.html</guid>
3647 <pubDate>Sun, 10 Feb 2013 12:50:00 +0100</pubDate>
3648 <description>&lt;p&gt;&lt;img align=&quot;left&quot; style=&quot;margin-right:25px;&quot; src=&quot;http://people.skolelinux.org/pere/blog/images/2013-02-10-morning-light.jpeg&quot;&gt;&lt;/p&gt;
3649
3650 &lt;p&gt;With kids in the house, one challenge is getting them to sleep
3651 during the night and wake up when it is morning. I mean, when I
3652 believe it is morning, and not two hours earlier. In our household we
3653 have decided that 07:00 is the turning point, but getting the kids to
3654 sleep until 07:00 is a small challenge every day. They have adapted
3655 quite well, and rarely wake up at 05:00 any more, but some times wake
3656 up at times like 05:50, 06:15, 06:30 or 06:45, and it is hard to put
3657 the awake one to bed again without disturbing and waking the rest.
3658 And I understand perfectly well that they fail to sleep until 07:00
3659 some times, as there is no way for them to know if it is before or
3660 after the magic moment without coming and asking us parents.&lt;/p&gt;
3661
3662 &lt;p&gt;But yesterday I came up with a method to solve this problem. It
3663 involve home automation. A few years ago I bought a
3664 &lt;a href=&quot;http://www.telldus.se/products/tellstick&quot;&gt;Tellstick&lt;/a&gt; and RF
3665 switches at the local &lt;a href=&quot;http://www.clasohlson.com/&quot;&gt;Clas
3666 Ohlson&lt;/a&gt; shop, allowing me to control lights and other electrical
3667 gadgets using my Linux server. When I moved from the old flat to a
3668 small house, I put away all this equipment as most of the lighting in
3669 the house was not using wall sockets and thus not easy to connect to
3670 the gadgets I had. But recently I bought a
3671 &lt;a href=&quot;http://www.telldus.se/products/tellstick_net&quot;&gt;Tellstick
3672 Net&lt;/a&gt; to be able to read sensor input as well as control power
3673 sockets. I want to control ovens in the basement to avoid the pipes
3674 to freeze, and monitor the humidity to detect flooding. The default
3675 setup for Tellstick Net is to be controlled by the vendor web service,
3676 which to me is a security problem, but it is also possible to build
3677 ones own
3678 &lt;a href=&quot;http://developer.telldus.com/blog/2012/03/02/help-us-develop-local-access-using-tellstick-net-build-your-own-firmware&quot;&gt;firmware
3679 with local access&lt;/A&gt; instead of being controlled by a Swedish
3680 company, thanks to the release of the GPL licensed firmware source
3681 code. I plan to get that running before I let it control anything
3682 important. But while working on this, one idea to make it easier for
3683 the kids came to me yesterday. We can set up a night light controlled
3684 by the computer, and turn it automatically on at 07:00. The kids can
3685 then check the light in the morning to know if they are supposed to
3686 get up or not. They joined me in setting everything up, and I
3687 repeated the concept several times before bed times to make sure they
3688 remembered to check the light before getting up in the morning.&lt;/p&gt;
3689
3690 &lt;p&gt;We tested it this morning, and all the kids stayed in bed until
3691 after 07:00, and every one of them commented on the fact that the
3692 &quot;morning light&quot; was turned on and signalled that the morning had
3693 arrived. So this look like a success, and I am excited to see how
3694 this develops the next few days. :) I really hope this can allow us
3695 all to sleep a bit longer in the morning.&lt;/p&gt;
3696
3697 &lt;p&gt;A nice advantage of this setup is that we can remote control when
3698 to tell the kids to get up. We do not have to wait until 07:00, and
3699 can also delay it if we want to.&lt;/p&gt;
3700 </description>
3701 </item>
3702
3703 <item>
3704 <title>Bitcoin GUI now available from Debian/unstable (and Ubuntu/raring)</title>
3705 <link>http://people.skolelinux.org/pere/blog/Bitcoin_GUI_now_available_from_Debian_unstable__and_Ubuntu_raring_.html</link>
3706 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Bitcoin_GUI_now_available_from_Debian_unstable__and_Ubuntu_raring_.html</guid>
3707 <pubDate>Sat, 2 Feb 2013 09:00:00 +0100</pubDate>
3708 <description>&lt;p&gt;My
3709 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/How_to_backport_bitcoin_qt_version_0_7_2_2_to_Debian_Squeeze.html&quot;&gt;last
3710 bitcoin related blog post&lt;/a&gt; mentioned that the new
3711 &lt;a href=&quot;http://packages.qa.debian.org/bitcoin&quot;&gt;bitcoin package&lt;/a&gt; for
3712 Debian was waiting in NEW. It was accepted by the Debian ftp-masters
3713 2013-01-19, and have been available in unstable since then. It was
3714 automatically copied to Ubuntu, and is available in their Raring
3715 version too.&lt;/p&gt;
3716
3717 &lt;p&gt;But there is a strange problem with the build that block this new
3718 version from being available on the i386 and kfreebsd-i386
3719 architectures. For some strange reason, the autobuilders in Debian
3720 for these architectures fail to run the test suite on these
3721 architectures (&lt;a href=&quot;http://bugs.debian.org/672524&quot;&gt;BTS #672524&lt;/a&gt;).
3722 We are so far unable to reproduce it when building it manually, and
3723 no-one have been able to propose a fix. If you got an idea what is
3724 failing, please let us know via the BTS.&lt;/p&gt;
3725
3726 &lt;p&gt;One feature that is annoying me with of the bitcoin client, because
3727 I often run low on disk space, is the fact that the client will exit
3728 if it run short on space (&lt;a href=&quot;http://bugs.debian.org/696715&quot;&gt;BTS
3729 #696715&lt;/a&gt;). So make sure you have enough disk space when you run
3730 it. :)&lt;/p&gt;
3731
3732 &lt;p&gt;As usual, if you use bitcoin and want to show your support of my
3733 activities, please send Bitcoin donations to my address
3734 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&amp;label=PetterReinholdtsenBlog&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
3735 </description>
3736 </item>
3737
3738 <item>
3739 <title>Welcome to the world, Isenkram!</title>
3740 <link>http://people.skolelinux.org/pere/blog/Welcome_to_the_world__Isenkram_.html</link>
3741 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Welcome_to_the_world__Isenkram_.html</guid>
3742 <pubDate>Tue, 22 Jan 2013 22:00:00 +0100</pubDate>
3743 <description>&lt;p&gt;Yesterday, I
3744 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/First_prototype_ready_making_hardware_easier_to_use_in_Debian.html&quot;&gt;asked
3745 for testers&lt;/a&gt; for my prototype for making Debian better at handling
3746 pluggable hardware devices, which I
3747 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Lets_make_hardware_dongles_easier_to_use_in_Debian.html&quot;&gt;set
3748 out to create&lt;/a&gt; earlier this month. Several valuable testers showed
3749 up, and caused me to really want to to open up the development to more
3750 people. But before I did this, I want to come up with a sensible name
3751 for this project. Today I finally decided on a new name, and I have
3752 renamed the project from hw-support-handler to this new name. In the
3753 process, I moved the source to git and made it available as a
3754 &lt;a href=&quot;http://anonscm.debian.org/gitweb/?p=collab-maint/isenkram.git&quot;&gt;collab-maint&lt;/a&gt;
3755 repository in Debian. The new name? It is &lt;strong&gt;Isenkram&lt;/strong&gt;.
3756 To fetch and build the latest version of the source, use&lt;/p&gt;
3757
3758 &lt;pre&gt;
3759 git clone http://anonscm.debian.org/git/collab-maint/isenkram.git
3760 cd isenkram &amp;&amp; git-buildpackage -us -uc
3761 &lt;/pre&gt;
3762
3763 &lt;p&gt;I have not yet adjusted all files to use the new name yet. If you
3764 want to hack on the source or improve the package, please go ahead.
3765 But please talk to me first on IRC or via email before you do major
3766 changes, to make sure we do not step on each others toes. :)&lt;/p&gt;
3767
3768 &lt;p&gt;If you wonder what &#39;isenkram&#39; is, it is a Norwegian word for iron
3769 stuff, typically meaning tools, nails, screws, etc. Typical hardware
3770 stuff, in other words. I&#39;ve been told it is the Norwegian variant of
3771 the German word eisenkram, for those that are familiar with that
3772 word.&lt;/p&gt;
3773
3774 &lt;p&gt;&lt;strong&gt;Update 2013-01-26&lt;/strong&gt;: Added -us -us to build
3775 instructions, to avoid confusing people with an error from the signing
3776 process.&lt;/p&gt;
3777
3778 &lt;p&gt;&lt;strong&gt;Update 2013-01-27&lt;/strong&gt;: Switch to HTTP URL for the git
3779 clone argument to avoid the need for authentication.&lt;/p&gt;
3780 </description>
3781 </item>
3782
3783 <item>
3784 <title>First prototype ready making hardware easier to use in Debian</title>
3785 <link>http://people.skolelinux.org/pere/blog/First_prototype_ready_making_hardware_easier_to_use_in_Debian.html</link>
3786 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_prototype_ready_making_hardware_easier_to_use_in_Debian.html</guid>
3787 <pubDate>Mon, 21 Jan 2013 12:00:00 +0100</pubDate>
3788 <description>&lt;p&gt;Early this month I set out to try to
3789 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Lets_make_hardware_dongles_easier_to_use_in_Debian.html&quot;&gt;improve
3790 the Debian support for pluggable hardware devices&lt;/a&gt;. Now my
3791 prototype is working, and it is ready for a larger audience. To test
3792 it, fetch the
3793 &lt;a href=&quot;http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/&quot;&gt;source
3794 from the Debian Edu subversion repository&lt;/a&gt;, build and install the
3795 package. You might have to log out and in again activate the
3796 autostart script.&lt;/p&gt;
3797
3798 &lt;p&gt;The design is simple:&lt;/p&gt;
3799
3800 &lt;ul&gt;
3801
3802 &lt;li&gt;Add desktop entry in /usr/share/autostart/ causing a program
3803 hw-support-handlerd to start when the user log in.&lt;/li&gt;
3804
3805 &lt;li&gt;This program listen for kernel events about new hardware (directly
3806 from the kernel like udev does), not using HAL dbus events as I
3807 initially did.&lt;/li&gt;
3808
3809 &lt;li&gt;When new hardware is inserted, look up the hardware modalias in
3810 the APT database, a database
3811 &lt;a href=&quot;http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/modaliases?view=markup&quot;&gt;available
3812 via HTTP&lt;/a&gt; and a database available as part of the package.&lt;/li&gt;
3813
3814 &lt;li&gt;If a package is mapped to the hardware in question, the package
3815 isn&#39;t installed yet and this is the first time the hardware was
3816 plugged in, show a desktop notification suggesting to install the
3817 package or packages.&lt;/li&gt;
3818
3819 &lt;li&gt;If the user click on the &#39;install package now&#39; button, ask
3820 aptdaemon via the PackageKit API to install the requrired package.&lt;/li&gt;
3821
3822 &lt;li&gt;aptdaemon ask for root password or sudo password, and install the
3823 package while showing progress information in a window.&lt;/li&gt;
3824
3825 &lt;/ul&gt;
3826
3827 &lt;p&gt;I still need to come up with a better name for the system. Here
3828 are some screen shots showing the prototype in action. First the
3829 notification, then the password request, and finally the request to
3830 approve all the dependencies. Sorry for the Norwegian Bokmål GUI.&lt;/p&gt;
3831
3832 &lt;p&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2013-01-21-hw-support-1-notification.png&quot;&gt;
3833 &lt;br&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2013-01-21-hw-support-2-password.png&quot;&gt;
3834 &lt;br&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2013-01-21-hw-support-3-dependencies.png&quot;&gt;
3835 &lt;br&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2013-01-21-hw-support-4-installing.png&quot;&gt;
3836 &lt;br&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2013-01-21-hw-support-5-installing-details.png&quot; width=&quot;70%&quot;&gt;&lt;/p&gt;
3837
3838 &lt;p&gt;The prototype still need to be improved with longer timeouts, but
3839 is already useful. The database of hardware to package mappings also
3840 need more work. It is currently compatible with the Ubuntu way of
3841 storing such information in the package control file, but could be
3842 changed to use other formats instead or in addition to the current
3843 method. I&#39;ve dropped the use of discover for this mapping, as the
3844 modalias approach is more flexible and easier to use on Linux as long
3845 as the Linux kernel expose its modalias strings directly.&lt;/p&gt;
3846
3847 &lt;p&gt;&lt;strong&gt;Update 2013-01-21 16:50&lt;/strong&gt;: Due to popular demand,
3848 here is the command required to check out and build the source: Use
3849 &#39;&lt;tt&gt;svn checkout
3850 svn://svn.debian.org/debian-edu/trunk/src/hw-support-handler/; cd
3851 hw-support-handler; debuild&lt;/tt&gt;&#39;. If you lack debuild, install the
3852 devscripts package.&lt;/p&gt;
3853
3854 &lt;p&gt;&lt;strong&gt;Update 2013-01-23 12:00&lt;/strong&gt;: The project is now
3855 renamed to Isenkram and the source moved from the Debian Edu
3856 subversion repository to a Debian collab-maint git repository. See
3857 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Welcome_to_the_world__Isenkram_.html&quot;&gt;build
3858 instructions&lt;/a&gt; for details.&lt;/p&gt;
3859 </description>
3860 </item>
3861
3862 <item>
3863 <title>Thank you Thinkpad X41, for your long and trustworthy service</title>
3864 <link>http://people.skolelinux.org/pere/blog/Thank_you_Thinkpad_X41__for_your_long_and_trustworthy_service.html</link>
3865 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Thank_you_Thinkpad_X41__for_your_long_and_trustworthy_service.html</guid>
3866 <pubDate>Sat, 19 Jan 2013 09:20:00 +0100</pubDate>
3867 <description>&lt;p&gt;This Christmas my trusty old laptop died. It died quietly and
3868 suddenly in bed. With a quiet whimper, it went completely quiet and
3869 black. The power button was no longer able to turn it on. It was a
3870 IBM Thinkpad X41, and the best laptop I ever had. Better than both
3871 Thinkpads X30, X31, X40, X60, X61 and X61S. Far better than the
3872 Compaq I had before that. Now I need to find a replacement. To keep
3873 going during Christmas, I moved the one year old SSD disk to my old
3874 X40 where it fitted (only one I had left that could use it), but it is
3875 not a durable solution.
3876
3877 &lt;p&gt;My laptop needs are fairly modest. This is my wishlist from when I
3878 got a new one more than 10 years ago. It still holds true.:)&lt;/p&gt;
3879
3880 &lt;ul&gt;
3881
3882 &lt;li&gt;Lightweight (around 1 kg) and small volume (preferably smaller
3883 than A4).&lt;/li&gt;
3884 &lt;li&gt;Robust, it will be in my backpack every day.&lt;/li&gt;
3885 &lt;li&gt;Three button mouse and a mouse pin instead of touch pad.&lt;/li&gt;
3886 &lt;li&gt;Long battery life time. Preferable a week.&lt;/li&gt;
3887 &lt;li&gt;Internal WIFI network card.&lt;/li&gt;
3888 &lt;li&gt;Internal Twisted Pair network card.&lt;/li&gt;
3889 &lt;li&gt;Some USB slots (2-3 is plenty)&lt;/li&gt;
3890 &lt;li&gt;Good keyboard - similar to the Thinkpad.&lt;/li&gt;
3891 &lt;li&gt;Video resolution at least 1024x768, with size around 12&quot; (A4 paper
3892 size).&lt;/li&gt;
3893 &lt;li&gt;Hardware supported by Debian Stable, ie the default kernel and
3894 X.org packages.&lt;/li&gt;
3895 &lt;li&gt;Quiet, preferably fan free (or at least not using the fan most of
3896 the time).
3897
3898 &lt;/ul&gt;
3899
3900 &lt;p&gt;You will notice that there are no RAM and CPU requirements in the
3901 list. The reason is simply that the specifications on laptops the
3902 last 10-15 years have been sufficient for my needs, and I have to look
3903 at other features to choose my laptop. But are there still made as
3904 robust laptops as my X41? The Thinkpad X60/X61 proved to be less
3905 robust, and Thinkpads seem to be heading in the wrong direction since
3906 Lenovo took over. But I&#39;ve been told that X220 and X1 Carbon might
3907 still be useful.&lt;/p&gt;
3908
3909 &lt;p&gt;Perhaps I should rethink my needs, and look for a pad with an
3910 external keyboard? I&#39;ll have to check the
3911 &lt;a href=&quot;http://www.linux-laptop.net/&quot;&gt;Linux Laptops site&lt;/a&gt; for
3912 well-supported laptops, or perhaps just buy one preinstalled from one
3913 of the vendors listed on the &lt;a href=&quot;http://linuxpreloaded.com/&quot;&gt;Linux
3914 Pre-loaded site&lt;/a&gt;.&lt;/p&gt;
3915 </description>
3916 </item>
3917
3918 <item>
3919 <title>How to find a browser plugin supporting a given MIME type</title>
3920 <link>http://people.skolelinux.org/pere/blog/How_to_find_a_browser_plugin_supporting_a_given_MIME_type.html</link>
3921 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_find_a_browser_plugin_supporting_a_given_MIME_type.html</guid>
3922 <pubDate>Fri, 18 Jan 2013 10:40:00 +0100</pubDate>
3923 <description>&lt;p&gt;Some times I try to figure out which Iceweasel browser plugin to
3924 install to get support for a given MIME type. Thanks to
3925 &lt;a href=&quot;https://wiki.ubuntu.com/MozillaTeam/Plugins&quot;&gt;specifications
3926 done by Ubuntu&lt;/a&gt; and Mozilla, it is possible to do this in Debian.
3927 Unfortunately, not very many packages provide the needed meta
3928 information, Anyway, here is a small script to look up all browser
3929 plugin packages announcing ther MIME support using this specification:&lt;/p&gt;
3930
3931 &lt;pre&gt;
3932 #!/usr/bin/python
3933 import sys
3934 import apt
3935 def pkgs_handling_mimetype(mimetype):
3936 cache = apt.Cache()
3937 cache.open(None)
3938 thepkgs = []
3939 for pkg in cache:
3940 version = pkg.candidate
3941 if version is None:
3942 version = pkg.installed
3943 if version is None:
3944 continue
3945 record = version.record
3946 if not record.has_key(&#39;Npp-MimeType&#39;):
3947 continue
3948 mime_types = record[&#39;Npp-MimeType&#39;].split(&#39;,&#39;)
3949 for t in mime_types:
3950 t = t.rstrip().strip()
3951 if t == mimetype:
3952 thepkgs.append(pkg.name)
3953 return thepkgs
3954 mimetype = &quot;audio/ogg&quot;
3955 if 1 &lt; len(sys.argv):
3956 mimetype = sys.argv[1]
3957 print &quot;Browser plugin packages supporting %s:&quot; % mimetype
3958 for pkg in pkgs_handling_mimetype(mimetype):
3959 print &quot; %s&quot; %pkg
3960 &lt;/pre&gt;
3961
3962 &lt;p&gt;It can be used like this to look up a given MIME type:&lt;/p&gt;
3963
3964 &lt;pre&gt;
3965 % ./apt-find-browserplug-for-mimetype
3966 Browser plugin packages supporting audio/ogg:
3967 gecko-mediaplayer
3968 % ./apt-find-browserplug-for-mimetype application/x-shockwave-flash
3969 Browser plugin packages supporting application/x-shockwave-flash:
3970 browser-plugin-gnash
3971 %
3972 &lt;/pre&gt;
3973
3974 &lt;p&gt;In Ubuntu this mechanism is combined with support in the browser
3975 itself to query for plugins and propose to install the needed
3976 packages. It would be great if Debian supported such feature too. Is
3977 anyone working on adding it?&lt;/p&gt;
3978
3979 &lt;p&gt;&lt;strong&gt;Update 2013-01-18 14:20&lt;/strong&gt;: The Debian BTS
3980 request for icweasel support for this feature is
3981 &lt;a href=&quot;http://bugs.debian.org/484010&quot;&gt;#484010&lt;/a&gt; from 2008 (and
3982 &lt;a href=&quot;http://bugs.debian.org/698426&quot;&gt;#698426&lt;/a&gt; from today). Lack
3983 of manpower and wish for a different design is the reason thus feature
3984 is not yet in iceweasel from Debian.&lt;/p&gt;
3985 </description>
3986 </item>
3987
3988 <item>
3989 <title>What is the most supported MIME type in Debian?</title>
3990 <link>http://people.skolelinux.org/pere/blog/What_is_the_most_supported_MIME_type_in_Debian_.html</link>
3991 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/What_is_the_most_supported_MIME_type_in_Debian_.html</guid>
3992 <pubDate>Wed, 16 Jan 2013 10:10:00 +0100</pubDate>
3993 <description>&lt;p&gt;The &lt;a href=&quot;http://wiki.debian.org/AppStreamDebianProposal&quot;&gt;DEP-11
3994 proposal to add AppStream information to the Debian archive&lt;/a&gt;, is a
3995 proposal to make it possible for a Desktop application to propose to
3996 the user some package to install to gain support for a given MIME
3997 type, font, library etc. that is currently missing. With such
3998 mechanism in place, it would be possible for the desktop to
3999 automatically propose and install leocad if some LDraw file is
4000 downloaded by the browser.&lt;/p&gt;
4001
4002 &lt;p&gt;To get some idea about the current content of the archive, I decided
4003 to write a simple program to extract all .desktop files from the
4004 Debian archive and look up the claimed MIME support there. The result
4005 can be found on the
4006 &lt;a href=&quot;http://ftp.skolelinux.org/pub/AppStreamTest&quot;&gt;Skolelinux FTP
4007 site&lt;/a&gt;. Using the collected information, it become possible to
4008 answer the question in the title. Here are the 20 most supported MIME
4009 types in Debian stable (Squeeze), testing (Wheezy) and unstable (Sid).
4010 The complete list is available from the link above.&lt;/p&gt;
4011
4012 &lt;p&gt;&lt;strong&gt;Debian Stable:&lt;/strong&gt;&lt;/p&gt;
4013
4014 &lt;pre&gt;
4015 count MIME type
4016 ----- -----------------------
4017 32 text/plain
4018 30 audio/mpeg
4019 29 image/png
4020 28 image/jpeg
4021 27 application/ogg
4022 26 audio/x-mp3
4023 25 image/tiff
4024 25 image/gif
4025 22 image/bmp
4026 22 audio/x-wav
4027 20 audio/x-flac
4028 19 audio/x-mpegurl
4029 18 video/x-ms-asf
4030 18 audio/x-musepack
4031 18 audio/x-mpeg
4032 18 application/x-ogg
4033 17 video/mpeg
4034 17 audio/x-scpls
4035 17 audio/ogg
4036 16 video/x-ms-wmv
4037 &lt;/pre&gt;
4038
4039 &lt;p&gt;&lt;strong&gt;Debian Testing:&lt;/strong&gt;&lt;/p&gt;
4040
4041 &lt;pre&gt;
4042 count MIME type
4043 ----- -----------------------
4044 33 text/plain
4045 32 image/png
4046 32 image/jpeg
4047 29 audio/mpeg
4048 27 image/gif
4049 26 image/tiff
4050 26 application/ogg
4051 25 audio/x-mp3
4052 22 image/bmp
4053 21 audio/x-wav
4054 19 audio/x-mpegurl
4055 19 audio/x-mpeg
4056 18 video/mpeg
4057 18 audio/x-scpls
4058 18 audio/x-flac
4059 18 application/x-ogg
4060 17 video/x-ms-asf
4061 17 text/html
4062 17 audio/x-musepack
4063 16 image/x-xbitmap
4064 &lt;/pre&gt;
4065
4066 &lt;p&gt;&lt;strong&gt;Debian Unstable:&lt;/strong&gt;&lt;/p&gt;
4067
4068 &lt;pre&gt;
4069 count MIME type
4070 ----- -----------------------
4071 31 text/plain
4072 31 image/png
4073 31 image/jpeg
4074 29 audio/mpeg
4075 28 application/ogg
4076 27 image/gif
4077 26 image/tiff
4078 26 audio/x-mp3
4079 23 audio/x-wav
4080 22 image/bmp
4081 21 audio/x-flac
4082 20 audio/x-mpegurl
4083 19 audio/x-mpeg
4084 18 video/x-ms-asf
4085 18 video/mpeg
4086 18 audio/x-scpls
4087 18 application/x-ogg
4088 17 audio/x-musepack
4089 16 video/x-ms-wmv
4090 16 video/x-msvideo
4091 &lt;/pre&gt;
4092
4093 &lt;p&gt;I am told that PackageKit can provide an API to access the kind of
4094 information mentioned in DEP-11. I have not yet had time to look at
4095 it, but hope the PackageKit people in Debian are on top of these
4096 issues.&lt;/p&gt;
4097
4098 &lt;p&gt;&lt;strong&gt;Update 2013-01-16 13:35&lt;/strong&gt;: Updated numbers after
4099 discovering a typo in my script.&lt;/p&gt;
4100 </description>
4101 </item>
4102
4103 <item>
4104 <title>Using modalias info to find packages handling my hardware</title>
4105 <link>http://people.skolelinux.org/pere/blog/Using_modalias_info_to_find_packages_handling_my_hardware.html</link>
4106 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Using_modalias_info_to_find_packages_handling_my_hardware.html</guid>
4107 <pubDate>Tue, 15 Jan 2013 08:00:00 +0100</pubDate>
4108 <description>&lt;p&gt;Yesterday, I wrote about the
4109 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Modalias_strings___a_practical_way_to_map__stuff__to_hardware.html&quot;&gt;modalias
4110 values provided by the Linux kernel&lt;/a&gt; following my hope for
4111 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Lets_make_hardware_dongles_easier_to_use_in_Debian.html&quot;&gt;better
4112 dongle support in Debian&lt;/a&gt;. Using this knowledge, I have tested how
4113 modalias values attached to package names can be used to map packages
4114 to hardware. This allow the system to look up and suggest relevant
4115 packages when I plug in some new hardware into my machine, and replace
4116 discover and discover-data as the database used to map hardware to
4117 packages.&lt;/p&gt;
4118
4119 &lt;p&gt;I create a modaliases file with entries like the following,
4120 containing package name, kernel module name (if relevant, otherwise
4121 the package name) and globs matching the relevant hardware
4122 modalias.&lt;/p&gt;
4123
4124 &lt;p&gt;&lt;blockquote&gt;
4125 Package: package-name
4126 &lt;br&gt;Modaliases: module(modaliasglob, modaliasglob, modaliasglob)&lt;/p&gt;
4127 &lt;/blockquote&gt;&lt;/p&gt;
4128
4129 &lt;p&gt;It is fairly trivial to write code to find the relevant packages
4130 for a given modalias value using this file.&lt;/p&gt;
4131
4132 &lt;p&gt;An entry like this would suggest the video and picture application
4133 cheese for many USB web cameras (interface bus class 0E01):&lt;/p&gt;
4134
4135 &lt;p&gt;&lt;blockquote&gt;
4136 Package: cheese
4137 &lt;br&gt;Modaliases: cheese(usb:v*p*d*dc*dsc*dp*ic0Eisc01ip*)&lt;/p&gt;
4138 &lt;/blockquote&gt;&lt;/p&gt;
4139
4140 &lt;p&gt;An entry like this would suggest the pcmciautils package when a
4141 CardBus bridge (bus class 0607) PCI device is present:&lt;/p&gt;
4142
4143 &lt;p&gt;&lt;blockquote&gt;
4144 Package: pcmciautils
4145 &lt;br&gt;Modaliases: pcmciautils(pci:v*d*sv*sd*bc06sc07i*)
4146 &lt;/blockquote&gt;&lt;/p&gt;
4147
4148 &lt;p&gt;An entry like this would suggest the package colorhug-client when
4149 plugging in a ColorHug with USB IDs 04D8:F8DA:&lt;/p&gt;
4150
4151 &lt;p&gt;&lt;blockquote&gt;
4152 Package: colorhug-client
4153 &lt;br&gt;Modaliases: colorhug-client(usb:v04D8pF8DAd*)&lt;/p&gt;
4154 &lt;/blockquote&gt;&lt;/p&gt;
4155
4156 &lt;p&gt;I believe the format is compatible with the format of the Packages
4157 file in the Debian archive. Ubuntu already uses their Packages file
4158 to store their mappings from packages to hardware.&lt;/p&gt;
4159
4160 &lt;p&gt;By adding a XB-Modaliases: header in debian/control, any .deb can
4161 announce the hardware it support in a way my prototype understand.
4162 This allow those publishing packages in an APT source outside the
4163 Debian archive as well as those backporting packages to make sure the
4164 hardware mapping are included in the package meta information. I&#39;ve
4165 tested such header in the pymissile package, and its modalias mapping
4166 is working as it should with my prototype. It even made it to Ubuntu
4167 Raring.&lt;/p&gt;
4168
4169 &lt;p&gt;To test if it was possible to look up supported hardware using only
4170 the shell tools available in the Debian installer, I wrote a shell
4171 implementation of the lookup code. The idea is to create files for
4172 each modalias and let the shell do the matching. Please check out and
4173 try the
4174 &lt;a href=&quot;http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/hw-support-lookup?view=co&quot;&gt;hw-support-lookup&lt;/a&gt;
4175 shell script. It run without any extra dependencies and fetch the
4176 hardware mappings from the Debian archive and the subversion
4177 repository where I currently work on my prototype.&lt;/p&gt;
4178
4179 &lt;p&gt;When I use it on a machine with a yubikey inserted, it suggest to
4180 install yubikey-personalization:&lt;/p&gt;
4181
4182 &lt;p&gt;&lt;blockquote&gt;
4183 % ./hw-support-lookup
4184 &lt;br&gt;yubikey-personalization
4185 &lt;br&gt;%
4186 &lt;/blockquote&gt;&lt;/p&gt;
4187
4188 &lt;p&gt;When I run it on my Thinkpad X40 with a PCMCIA/CardBus slot, it
4189 propose to install the pcmciautils package:&lt;/p&gt;
4190
4191 &lt;p&gt;&lt;blockquote&gt;
4192 % ./hw-support-lookup
4193 &lt;br&gt;pcmciautils
4194 &lt;br&gt;%
4195 &lt;/blockquote&gt;&lt;/p&gt;
4196
4197 &lt;p&gt;If you know of any hardware-package mapping that should be added to
4198 &lt;a href=&quot;http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/modaliases?view=co&quot;&gt;my
4199 database&lt;/a&gt;, please tell me about it.&lt;/p&gt;
4200
4201 &lt;p&gt;It could be possible to generate several of the mappings between
4202 packages and hardware. One source would be to look at packages with
4203 kernel modules, ie packages with *.ko files in /lib/modules/, and
4204 extract their modalias information. Another would be to look at
4205 packages with udev rules, ie packages with files in
4206 /lib/udev/rules.d/, and extract their vendor/model information to
4207 generate a modalias matching rule. I have not tested any of these to
4208 see if it work.&lt;/p&gt;
4209
4210 &lt;p&gt;If you want to help implementing a system to let us propose what
4211 packages to install when new hardware is plugged into a Debian
4212 machine, please send me an email or talk to me on
4213 &lt;a href=&quot;irc://irc.debian.org/%23debian-devel&quot;&gt;#debian-devel&lt;/a&gt;.&lt;/p&gt;
4214 </description>
4215 </item>
4216
4217 <item>
4218 <title>Modalias strings - a practical way to map &quot;stuff&quot; to hardware</title>
4219 <link>http://people.skolelinux.org/pere/blog/Modalias_strings___a_practical_way_to_map__stuff__to_hardware.html</link>
4220 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Modalias_strings___a_practical_way_to_map__stuff__to_hardware.html</guid>
4221 <pubDate>Mon, 14 Jan 2013 11:20:00 +0100</pubDate>
4222 <description>&lt;p&gt;While looking into how to look up Debian packages based on hardware
4223 information, to find the packages that support a given piece of
4224 hardware, I refreshed my memory regarding modalias values, and decided
4225 to document the details. Here are my findings so far, also available
4226 in
4227 &lt;a href=&quot;http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/&quot;&gt;the
4228 Debian Edu subversion repository&lt;/a&gt;:
4229
4230 &lt;p&gt;&lt;strong&gt;Modalias decoded&lt;/strong&gt;&lt;/p&gt;
4231
4232 &lt;p&gt;This document try to explain what the different types of modalias
4233 values stands for. It is in part based on information from
4234 &amp;lt;URL: &lt;a href=&quot;https://wiki.archlinux.org/index.php/Modalias&quot;&gt;https://wiki.archlinux.org/index.php/Modalias&lt;/a&gt; &amp;gt;,
4235 &amp;lt;URL: &lt;a href=&quot;http://unix.stackexchange.com/questions/26132/how-to-assign-usb-driver-to-device&quot;&gt;http://unix.stackexchange.com/questions/26132/how-to-assign-usb-driver-to-device&lt;/a&gt; &amp;gt;,
4236 &amp;lt;URL: &lt;a href=&quot;http://code.metager.de/source/history/linux/stable/scripts/mod/file2alias.c&quot;&gt;http://code.metager.de/source/history/linux/stable/scripts/mod/file2alias.c&lt;/a&gt; &amp;gt; and
4237 &amp;lt;URL: &lt;a href=&quot;http://cvs.savannah.gnu.org/viewvc/dmidecode/dmidecode.c?root=dmidecode&amp;view=markup&quot;&gt;http://cvs.savannah.gnu.org/viewvc/dmidecode/dmidecode.c?root=dmidecode&amp;view=markup&lt;/a&gt; &amp;gt;.
4238
4239 &lt;p&gt;The modalias entries for a given Linux machine can be found using
4240 this shell script:&lt;/p&gt;
4241
4242 &lt;pre&gt;
4243 find /sys -name modalias -print0 | xargs -0 cat | sort -u
4244 &lt;/pre&gt;
4245
4246 &lt;p&gt;The supported modalias globs for a given kernel module can be found
4247 using modinfo:&lt;/p&gt;
4248
4249 &lt;pre&gt;
4250 % /sbin/modinfo psmouse | grep alias:
4251 alias: serio:ty05pr*id*ex*
4252 alias: serio:ty01pr*id*ex*
4253 %
4254 &lt;/pre&gt;
4255
4256 &lt;p&gt;&lt;strong&gt;PCI subtype&lt;/strong&gt;&lt;/p&gt;
4257
4258 &lt;p&gt;A typical PCI entry can look like this. This is an Intel Host
4259 Bridge memory controller:&lt;/p&gt;
4260
4261 &lt;p&gt;&lt;blockquote&gt;
4262 pci:v00008086d00002770sv00001028sd000001ADbc06sc00i00
4263 &lt;/blockquote&gt;&lt;/p&gt;
4264
4265 &lt;p&gt;This represent these values:&lt;/p&gt;
4266
4267 &lt;pre&gt;
4268 v 00008086 (vendor)
4269 d 00002770 (device)
4270 sv 00001028 (subvendor)
4271 sd 000001AD (subdevice)
4272 bc 06 (bus class)
4273 sc 00 (bus subclass)
4274 i 00 (interface)
4275 &lt;/pre&gt;
4276
4277 &lt;p&gt;The vendor/device values are the same values outputted from &#39;lspci
4278 -n&#39; as 8086:2770. The bus class/subclass is also shown by lspci as
4279 0600. The 0600 class is a host bridge. Other useful bus values are
4280 0300 (VGA compatible card) and 0200 (Ethernet controller).&lt;/p&gt;
4281
4282 &lt;p&gt;Not sure how to figure out the interface value, nor what it
4283 means.&lt;/p&gt;
4284
4285 &lt;p&gt;&lt;strong&gt;USB subtype&lt;/strong&gt;&lt;/p&gt;
4286
4287 &lt;p&gt;Some typical USB entries can look like this. This is an internal
4288 USB hub in a laptop:&lt;/p&gt;
4289
4290 &lt;p&gt;&lt;blockquote&gt;
4291 usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00
4292 &lt;/blockquote&gt;&lt;/p&gt;
4293
4294 &lt;p&gt;Here is the values included in this alias:&lt;/p&gt;
4295
4296 &lt;pre&gt;
4297 v 1D6B (device vendor)
4298 p 0001 (device product)
4299 d 0206 (bcddevice)
4300 dc 09 (device class)
4301 dsc 00 (device subclass)
4302 dp 00 (device protocol)
4303 ic 09 (interface class)
4304 isc 00 (interface subclass)
4305 ip 00 (interface protocol)
4306 &lt;/pre&gt;
4307
4308 &lt;p&gt;The 0900 device class/subclass means hub. Some times the relevant
4309 class is in the interface class section. For a simple USB web camera,
4310 these alias entries show up:&lt;/p&gt;
4311
4312 &lt;p&gt;&lt;blockquote&gt;
4313 usb:v0AC8p3420d5000dcEFdsc02dp01ic01isc01ip00
4314 &lt;br&gt;usb:v0AC8p3420d5000dcEFdsc02dp01ic01isc02ip00
4315 &lt;br&gt;usb:v0AC8p3420d5000dcEFdsc02dp01ic0Eisc01ip00
4316 &lt;br&gt;usb:v0AC8p3420d5000dcEFdsc02dp01ic0Eisc02ip00
4317 &lt;/blockquote&gt;&lt;/p&gt;
4318
4319 &lt;p&gt;Interface class 0E01 is video control, 0E02 is video streaming (aka
4320 camera), 0101 is audio control device and 0102 is audio streaming (aka
4321 microphone). Thus this is a camera with microphone included.&lt;/p&gt;
4322
4323 &lt;p&gt;&lt;strong&gt;ACPI subtype&lt;/strong&gt;&lt;/p&gt;
4324
4325 &lt;p&gt;The ACPI type is used for several non-PCI/USB stuff. This is an IR
4326 receiver in a Thinkpad X40:&lt;/p&gt;
4327
4328 &lt;p&gt;&lt;blockquote&gt;
4329 acpi:IBM0071:PNP0511:
4330 &lt;/blockquote&gt;&lt;/p&gt;
4331
4332 &lt;p&gt;The values between the colons are IDs.&lt;/p&gt;
4333
4334 &lt;p&gt;&lt;strong&gt;DMI subtype&lt;/strong&gt;&lt;/p&gt;
4335
4336 &lt;p&gt;The DMI table contain lots of information about the computer case
4337 and model. This is an entry for a IBM Thinkpad X40, fetched from
4338 /sys/devices/virtual/dmi/id/modalias:&lt;/p&gt;
4339
4340 &lt;p&gt;&lt;blockquote&gt;
4341 dmi:bvnIBM:bvr1UETB6WW(1.66):bd06/15/2005:svnIBM:pn2371H4G:pvrThinkPadX40:rvnIBM:rn2371H4G:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
4342 &lt;/blockquote&gt;&lt;/p&gt;
4343
4344 &lt;p&gt;The values present are&lt;/p&gt;
4345
4346 &lt;pre&gt;
4347 bvn IBM (BIOS vendor)
4348 bvr 1UETB6WW(1.66) (BIOS version)
4349 bd 06/15/2005 (BIOS date)
4350 svn IBM (system vendor)
4351 pn 2371H4G (product name)
4352 pvr ThinkPadX40 (product version)
4353 rvn IBM (board vendor)
4354 rn 2371H4G (board name)
4355 rvr NotAvailable (board version)
4356 cvn IBM (chassis vendor)
4357 ct 10 (chassis type)
4358 cvr NotAvailable (chassis version)
4359 &lt;/pre&gt;
4360
4361 &lt;p&gt;The chassis type 10 is Notebook. Other interesting values can be
4362 found in the dmidecode source:&lt;/p&gt;
4363
4364 &lt;pre&gt;
4365 3 Desktop
4366 4 Low Profile Desktop
4367 5 Pizza Box
4368 6 Mini Tower
4369 7 Tower
4370 8 Portable
4371 9 Laptop
4372 10 Notebook
4373 11 Hand Held
4374 12 Docking Station
4375 13 All In One
4376 14 Sub Notebook
4377 15 Space-saving
4378 16 Lunch Box
4379 17 Main Server Chassis
4380 18 Expansion Chassis
4381 19 Sub Chassis
4382 20 Bus Expansion Chassis
4383 21 Peripheral Chassis
4384 22 RAID Chassis
4385 23 Rack Mount Chassis
4386 24 Sealed-case PC
4387 25 Multi-system
4388 26 CompactPCI
4389 27 AdvancedTCA
4390 28 Blade
4391 29 Blade Enclosing
4392 &lt;/pre&gt;
4393
4394 &lt;p&gt;The chassis type values are not always accurately set in the DMI
4395 table. For example my home server is a tower, but the DMI modalias
4396 claim it is a desktop.&lt;/p&gt;
4397
4398 &lt;p&gt;&lt;strong&gt;SerIO subtype&lt;/strong&gt;&lt;/p&gt;
4399
4400 &lt;p&gt;This type is used for PS/2 mouse plugs. One example is from my
4401 test machine:&lt;/p&gt;
4402
4403 &lt;p&gt;&lt;blockquote&gt;
4404 serio:ty01pr00id00ex00
4405 &lt;/blockquote&gt;&lt;/p&gt;
4406
4407 &lt;p&gt;The values present are&lt;/p&gt;
4408
4409 &lt;pre&gt;
4410 ty 01 (type)
4411 pr 00 (prototype)
4412 id 00 (id)
4413 ex 00 (extra)
4414 &lt;/pre&gt;
4415
4416 &lt;p&gt;This type is supported by the psmouse driver. I am not sure what
4417 the valid values are.&lt;/p&gt;
4418
4419 &lt;p&gt;&lt;strong&gt;Other subtypes&lt;/strong&gt;&lt;/p&gt;
4420
4421 &lt;p&gt;There are heaps of other modalias subtypes according to
4422 file2alias.c. There is the rest of the list from that source: amba,
4423 ap, bcma, ccw, css, eisa, hid, i2c, ieee1394, input, ipack, isapnp,
4424 mdio, of, parisc, pcmcia, platform, scsi, sdio, spi, ssb, vio, virtio,
4425 vmbus, x86cpu and zorro. I did not spend time documenting all of
4426 these, as they do not seem relevant for my intended use with mapping
4427 hardware to packages when new stuff is inserted during run time.&lt;/p&gt;
4428
4429 &lt;p&gt;&lt;strong&gt;Looking up kernel modules using modalias values&lt;/strong&gt;&lt;/p&gt;
4430
4431 &lt;p&gt;To check which kernel modules provide support for a given modalias,
4432 one can use the following shell script:&lt;/p&gt;
4433
4434 &lt;pre&gt;
4435 for id in $(find /sys -name modalias -print0 | xargs -0 cat | sort -u); do \
4436 echo &quot;$id&quot; ; \
4437 /sbin/modprobe --show-depends &quot;$id&quot;|sed &#39;s/^/ /&#39; ; \
4438 done
4439 &lt;/pre&gt;
4440
4441 &lt;p&gt;The output can look like this (only the first few entries as the
4442 list is very long on my test machine):&lt;/p&gt;
4443
4444 &lt;pre&gt;
4445 acpi:ACPI0003:
4446 insmod /lib/modules/2.6.32-5-686/kernel/drivers/acpi/ac.ko
4447 acpi:device:
4448 FATAL: Module acpi:device: not found.
4449 acpi:IBM0068:
4450 insmod /lib/modules/2.6.32-5-686/kernel/drivers/char/nvram.ko
4451 insmod /lib/modules/2.6.32-5-686/kernel/drivers/leds/led-class.ko
4452 insmod /lib/modules/2.6.32-5-686/kernel/net/rfkill/rfkill.ko
4453 insmod /lib/modules/2.6.32-5-686/kernel/drivers/platform/x86/thinkpad_acpi.ko
4454 acpi:IBM0071:PNP0511:
4455 insmod /lib/modules/2.6.32-5-686/kernel/lib/crc-ccitt.ko
4456 insmod /lib/modules/2.6.32-5-686/kernel/net/irda/irda.ko
4457 insmod /lib/modules/2.6.32-5-686/kernel/drivers/net/irda/nsc-ircc.ko
4458 [...]
4459 &lt;/pre&gt;
4460
4461 &lt;p&gt;If you want to help implementing a system to let us propose what
4462 packages to install when new hardware is plugged into a Debian
4463 machine, please send me an email or talk to me on
4464 &lt;a href=&quot;irc://irc.debian.org/%23debian-devel&quot;&gt;#debian-devel&lt;/a&gt;.&lt;/p&gt;
4465
4466 &lt;p&gt;&lt;strong&gt;Update 2013-01-15:&lt;/strong&gt; Rewrite &quot;cat $(find ...)&quot; to
4467 &quot;find ... -print0 | xargs -0 cat&quot; to make sure it handle directories
4468 in /sys/ with space in them.&lt;/p&gt;
4469 </description>
4470 </item>
4471
4472 <item>
4473 <title>Moved the pymissile Debian packaging to collab-maint</title>
4474 <link>http://people.skolelinux.org/pere/blog/Moved_the_pymissile_Debian_packaging_to_collab_maint.html</link>
4475 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Moved_the_pymissile_Debian_packaging_to_collab_maint.html</guid>
4476 <pubDate>Thu, 10 Jan 2013 20:40:00 +0100</pubDate>
4477 <description>&lt;p&gt;As part of my investigation on how to improve the support in Debian
4478 for hardware dongles, I dug up my old Mark and Spencer USB Rocket
4479 Launcher and updated the Debian package
4480 &lt;a href=&quot;http://packages.qa.debian.org/pymissile&quot;&gt;pymissile&lt;/a&gt; to make
4481 sure udev will fix the device permissions when it is plugged in. I
4482 also added a &quot;Modaliases&quot; header to test it in the Debian archive and
4483 hopefully make the package be proposed by jockey in Ubuntu when a user
4484 plug in his rocket launcher. In the process I moved the source to a
4485 git repository under collab-maint, to make it easier for any DD to
4486 contribute. &lt;a href=&quot;http://code.google.com/p/pymissile/&quot;&gt;Upstream&lt;/a&gt;
4487 is not very active, but the software still work for me even after five
4488 years of relative silence. The new git repository is not listed in
4489 the uploaded package yet, because I want to test the other changes a
4490 bit more before I upload the new version. If you want to check out
4491 the new version with a .desktop file included, visit the
4492 &lt;a href=&quot;http://anonscm.debian.org/gitweb/?p=collab-maint/pymissile.git&quot;&gt;gitweb
4493 view&lt;/a&gt; or use &quot;&lt;tt&gt;git clone
4494 git://anonscm.debian.org/collab-maint/pymissile.git&lt;/tt&gt;&quot;.&lt;/p&gt;
4495 </description>
4496 </item>
4497
4498 <item>
4499 <title>Lets make hardware dongles easier to use in Debian</title>
4500 <link>http://people.skolelinux.org/pere/blog/Lets_make_hardware_dongles_easier_to_use_in_Debian.html</link>
4501 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lets_make_hardware_dongles_easier_to_use_in_Debian.html</guid>
4502 <pubDate>Wed, 9 Jan 2013 15:40:00 +0100</pubDate>
4503 <description>&lt;p&gt;One thing that annoys me with Debian and Linux distributions in
4504 general, is that there is a great package management system with the
4505 ability to automatically install software packages by downloading them
4506 from the distribution mirrors, but no way to get it to automatically
4507 install the packages I need to use the hardware I plug into my
4508 machine. Even if the package to use it is easily available from the
4509 Linux distribution. When I plug in a LEGO Mindstorms NXT, it could
4510 suggest to automatically install the python-nxt, nbc and t2n packages
4511 I need to talk to it. When I plug in a Yubikey, it could propose the
4512 yubikey-personalization package. The information required to do this
4513 is available, but no-one have pulled all the pieces together.&lt;/p&gt;
4514
4515 &lt;p&gt;Some years ago, I proposed to
4516 &lt;a href=&quot;http://lists.debian.org/debian-devel/2010/05/msg01206.html&quot;&gt;use
4517 the discover subsystem to implement this&lt;/a&gt;. The idea is fairly
4518 simple:
4519
4520 &lt;ul&gt;
4521
4522 &lt;li&gt;Add a desktop entry in /usr/share/autostart/ pointing to a program
4523 starting when a user log in.&lt;/li&gt;
4524
4525 &lt;li&gt;Set this program up to listen for kernel events emitted when new
4526 hardware is inserted into the computer.&lt;/li&gt;
4527
4528 &lt;li&gt;When new hardware is inserted, look up the hardware ID in a
4529 database mapping to packages, and take note of any non-installed
4530 packages.&lt;/li&gt;
4531
4532 &lt;li&gt;Show a message to the user proposing to install the discovered
4533 package, and make it easy to install it.&lt;/li&gt;
4534
4535 &lt;/ul&gt;
4536
4537 &lt;p&gt;I am not sure what the best way to implement this is, but my
4538 initial idea was to use dbus events to discover new hardware, the
4539 discover database to find packages and
4540 &lt;a href=&quot;http://www.packagekit.org/&quot;&gt;PackageKit&lt;/a&gt; to install
4541 packages.&lt;/p&gt;
4542
4543 &lt;p&gt;Yesterday, I found time to try to implement this idea, and the
4544 draft package is now checked into
4545 &lt;a href=&quot;http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/&quot;&gt;the
4546 Debian Edu subversion repository&lt;/a&gt;. In the process, I updated the
4547 &lt;a href=&quot;http://packages.qa.debian.org/d/discover-data.html&quot;&gt;discover-data&lt;/a&gt;
4548 package to map the USB ids of LEGO Mindstorms and Yubikey devices to
4549 the relevant packages in Debian, and uploaded a new version
4550 2.2013.01.09 to unstable. I also discovered that the current
4551 &lt;a href=&quot;http://packages.qa.debian.org/d/discover.html&quot;&gt;discover&lt;/a&gt;
4552 package in Debian no longer discovered any USB devices, because
4553 /proc/bus/usb/devices is no longer present. I ported it to use
4554 libusb as a fall back option to get it working. The fixed package
4555 version 2.1.2-6 is now in experimental (didn&#39;t upload it to unstable
4556 because of the freeze).&lt;/p&gt;
4557
4558 &lt;p&gt;With this prototype in place, I can insert my Yubikey, and get this
4559 desktop notification to show up (only once, the first time it is
4560 inserted):&lt;/p&gt;
4561
4562 &lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2013-01-09-hw-autoinstall.png&quot;&gt;&lt;/p&gt;
4563
4564 &lt;p&gt;For this prototype to be really useful, some way to automatically
4565 install the proposed packages by pressing the &quot;Please install
4566 program(s)&quot; button should to be implemented.&lt;/p&gt;
4567
4568 &lt;p&gt;If this idea seem useful to you, and you want to help make it
4569 happen, please help me update the discover-data database with mappings
4570 from hardware to Debian packages. Check if &#39;discover-pkginstall -l&#39;
4571 list the package you would like to have installed when a given
4572 hardware device is inserted into your computer, and report bugs using
4573 reportbug if it isn&#39;t. Or, if you know of a better way to provide
4574 such mapping, please let me know.&lt;/p&gt;
4575
4576 &lt;p&gt;This prototype need more work, and there are several questions that
4577 should be considered before it is ready for production use. Is dbus
4578 the correct way to detect new hardware? At the moment I look for HAL
4579 dbus events on the system bus, because that is the events I could see
4580 on my Debian Squeeze KDE desktop. Are there better events to use?
4581 How should the user be notified? Is the desktop notification
4582 mechanism the best option, or should the background daemon raise a
4583 popup instead? How should packages be installed? When should they
4584 not be installed?&lt;/p&gt;
4585
4586 &lt;p&gt;If you want to help getting such feature implemented in Debian,
4587 please send me an email. :)&lt;/p&gt;
4588 </description>
4589 </item>
4590
4591 <item>
4592 <title>New IRC channel for LEGO designers using Debian</title>
4593 <link>http://people.skolelinux.org/pere/blog/New_IRC_channel_for_LEGO_designers_using_Debian.html</link>
4594 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/New_IRC_channel_for_LEGO_designers_using_Debian.html</guid>
4595 <pubDate>Wed, 2 Jan 2013 15:40:00 +0100</pubDate>
4596 <description>&lt;p&gt;During Christmas, I have worked a bit on the Debian support for
4597 &lt;a href=&quot;http://mindstorms.lego.com/en-us/Default.aspx&quot;&gt;LEGO Mindstorm
4598 NXT&lt;/a&gt;. My son and I have played a bit with my NXT set, and I
4599 discovered I had to build all the tools myself because none were
4600 already in Debian Squeeze. If Debian support for LEGO is something
4601 you care about, please join me on the IRC channel
4602 &lt;a href=&quot;irc://irc.debian.org/%23debian-lego&quot;&gt;#debian-lego&lt;/a&gt; (server
4603 irc.debian.org). There is a lot that could be done to improve the
4604 Debian support for LEGO designers. For example both CAD software
4605 and Mindstorm compilers are missing. :)&lt;/p&gt;
4606
4607 &lt;p&gt;Update 2012-01-03: A
4608 &lt;a href=&quot;http://wiki.debian.org/LegoDesigners&quot;&gt;project page&lt;/a&gt;
4609 including links to Lego related packages is now available.&lt;/p&gt;
4610 </description>
4611 </item>
4612
4613 <item>
4614 <title>A Christmas present for Skolelinux / Debian Edu</title>
4615 <link>http://people.skolelinux.org/pere/blog/A_Christmas_present_for_Skolelinux___Debian_Edu.html</link>
4616 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_Christmas_present_for_Skolelinux___Debian_Edu.html</guid>
4617 <pubDate>Fri, 28 Dec 2012 09:20:00 +0100</pubDate>
4618 <description>&lt;p&gt;I was happy to discover a few days ago that the
4619 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux / Debian Edu&lt;/a&gt;
4620 project also this year received a Christmas present from Another
4621 Agency in Trondheim. NOK 1000,- showed up on our donation account
4622 December 24th. I want to express our thanks for this very welcome
4623 present. As the Debian Edu / Skolelinux project is very short on
4624 funding these days, and thus lack the money to do regular developer
4625 gatherings, this donation was most welcome. One developer gathering
4626 cost around NOK 15&amp;nbsp;000,-, so we need quite a lot more to keep the
4627 development pace we want. Thus, I hope their example this year is
4628 followed by many others. :)&lt;/p&gt;
4629
4630 &lt;p&gt;The public list of donors can be found on
4631 &lt;a href=&quot;http://www.linuxiskolen.no/slxdebianlabs/donations.html&quot;&gt;the
4632 donation page&lt;/a&gt; for the project, which also contain instructions if
4633 you want to donate to the project.&lt;/p&gt;
4634 </description>
4635 </item>
4636
4637 <item>
4638 <title>How to backport bitcoin-qt version 0.7.2-2 to Debian Squeeze</title>
4639 <link>http://people.skolelinux.org/pere/blog/How_to_backport_bitcoin_qt_version_0_7_2_2_to_Debian_Squeeze.html</link>
4640 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_backport_bitcoin_qt_version_0_7_2_2_to_Debian_Squeeze.html</guid>
4641 <pubDate>Tue, 25 Dec 2012 20:50:00 +0100</pubDate>
4642 <description>&lt;p&gt;Let me start by wishing you all marry Christmas and a happy new
4643 year! I hope next year will prove to be a good year.&lt;/p&gt;
4644
4645 &lt;p&gt;&lt;a href=&quot;http://www.bitcoin.org/&quot;&gt;Bitcoin&lt;/a&gt;, the digital
4646 decentralised &quot;currency&quot; that allow people to transfer bitcoins
4647 between each other with minimal overhead, is a very interesting
4648 experiment. And as I wrote a few days ago, the bitcoin situation in
4649 &lt;a href=&quot;http://www.debian.org/&quot;&gt;Debian&lt;/a&gt; is about to improve a bit.
4650 The &lt;a href=&quot;http://packages.qa.debian.org/bitcoin&quot;&gt;new debian source
4651 package&lt;/a&gt; (version 0.7.2-2) was uploaded yesterday, and is waiting
4652 in &lt;a href=&quot;http://ftp-master.debian.org/new.html&quot;&gt;the NEW queue&lt;/A&gt;
4653 for one of the ftpmasters to approve the new bitcoin-qt package
4654 name.&lt;/p&gt;
4655
4656 &lt;p&gt;And thanks to the great work of Jonas and the rest of the bitcoin
4657 team in Debian, you can easily test the package in Debian Squeeze
4658 using the following steps to get a set of working packages:&lt;/p&gt;
4659
4660 &lt;blockquote&gt;&lt;pre&gt;
4661 git clone git://git.debian.org/git/collab-maint/bitcoin
4662 cd bitcoin
4663 DEB_MAINTAINER_MODE=1 DEB_BUILD_OPTIONS=noupnp fakeroot debian/rules clean
4664 DEB_BUILD_OPTIONS=noupnp git-buildpackage --git-ignore-new
4665 &lt;/pre&gt;&lt;/blockquote&gt;
4666
4667 &lt;p&gt;You might have to install some build dependencies as well. The
4668 list of commands should give you two packages, bitcoind and
4669 bitcoin-qt, ready for use in a Squeeze environment. Note that the
4670 client will download the complete set of bitcoin &quot;blocks&quot;, which need
4671 around 5.6 GiB of data on my machine at the moment. Make sure your
4672 ~/.bitcoin/ directory have lots of spare room if you want to download
4673 all the blocks. The client will warn if the disk is getting full, so
4674 there is not really a problem if you got too little room, but you will
4675 not be able to get all the features out of the client.&lt;/p&gt;
4676
4677 &lt;p&gt;As usual, if you use bitcoin and want to show your support of my
4678 activities, please send Bitcoin donations to my address
4679 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&amp;label=PetterReinholdtsenBlog&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
4680 </description>
4681 </item>
4682
4683 <item>
4684 <title>A word on bitcoin support in Debian</title>
4685 <link>http://people.skolelinux.org/pere/blog/A_word_on_bitcoin_support_in_Debian.html</link>
4686 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_word_on_bitcoin_support_in_Debian.html</guid>
4687 <pubDate>Fri, 21 Dec 2012 23:59:00 +0100</pubDate>
4688 <description>&lt;p&gt;It has been a while since I wrote about
4689 &lt;a href=&quot;http://www.bitcoin.org/&quot;&gt;bitcoin&lt;/a&gt;, the decentralised
4690 peer-to-peer based crypto-currency, and the reason is simply that I
4691 have been busy elsewhere. But two days ago, I started looking at the
4692 state of &lt;a href=&quot;http://packages.qa.debian.org/bitcoin&quot;&gt;bitcoin in
4693 Debian&lt;/a&gt; again to try to recover my old bitcoin wallet. The package
4694 is now maintained by a
4695 &lt;a href=&quot;https://alioth.debian.org/projects/pkg-bitcoin/&quot;&gt;team of
4696 people&lt;/a&gt;, and the grunt work had already been done by this team. We
4697 owe a huge thank you to all these team members. :)
4698 But I was sad to discover that the bitcoin client is missing in
4699 Wheezy. It is only available in Sid (and an outdated client from
4700 backports). The client had several RC bugs registered in BTS blocking
4701 it from entering testing. To try to help the team and improve the
4702 situation, I spent some time providing patches and triaging the bug
4703 reports. I also had a look at the bitcoin package available from Matt
4704 Corallo in a
4705 &lt;a href=&quot;https://launchpad.net/~bitcoin/+archive/bitcoin&quot;&gt;PPA for
4706 Ubuntu&lt;/a&gt;, and moved the useful pieces from that version into the
4707 Debian package.&lt;/p&gt;
4708
4709 &lt;p&gt;After checking with the main package maintainer Jonas Smedegaard on
4710 IRC, I pushed several patches into the collab-maint git repository to
4711 improve the package. It now contains fixes for the RC issues (not from
4712 me, but fixed by Scott Howard), build rules for a Qt GUI client
4713 package, konqueror support for the bitcoin: URI and bash completion
4714 setup. As I work on Debian Squeeze, I also created
4715 &lt;a href=&quot;http://lists.alioth.debian.org/pipermail/pkg-bitcoin-devel/Week-of-Mon-20121217/000041.html&quot;&gt;a
4716 patch to backport&lt;/a&gt; the latest version. Jonas is going to look at
4717 it and try to integrate it into the git repository before uploading a
4718 new version to unstable.
4719
4720 &lt;p&gt;I would very much like bitcoin to succeed, to get rid of the
4721 centralized control currently exercised in the monetary system. I
4722 find it completely unacceptable that the USA government is collecting
4723 transaction data for almost all international money transfers (most are done in USD and transaction logs shipped to the spooks), and
4724 that the major credit card companies can block legal money
4725 transactions to Wikileaks. But for bitcoin to succeed, more people
4726 need to use bitcoins, and more people need to accept bitcoins when
4727 they sell products and services. Improving the bitcoin support in
4728 Debian is a small step in the right direction, but not enough.
4729 Unfortunately the user experience when browsing the web and wanting to
4730 pay with bitcoin is still not very good. The bitcoin: URI is a step
4731 in the right direction, but need to work in most or every browser in
4732 use. Also the bitcoin-qt client is too heavy to fire up to do a
4733 quick transaction. I believe there are other clients available, but
4734 have not tested them.&lt;/p&gt;
4735
4736 &lt;p&gt;My
4737 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Now_accepting_bitcoins___anonymous_and_distributed_p2p_crypto_money.html&quot;&gt;experiment
4738 with bitcoins&lt;/a&gt; showed that at least some of my readers use bitcoin.
4739 I received 20.15 BTC so far on the address I provided in my blog two
4740 years ago, as can be
4741 &lt;a href=&quot;http://blockexplorer.com/address/15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&quot;&gt;seen
4742 on the blockexplorer service&lt;/a&gt;. Thank you everyone for your
4743 donation. The blockexplorer service demonstrates quite well that
4744 bitcoin is not quite anonymous and untracked. :) I wonder if the
4745 number of users have gone up since then. If you use bitcoin and want
4746 to show your support of my activity, please send Bitcoin donations to
4747 the same address as last time,
4748 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&amp;label=PetterReinholdtsenBlog&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
4749 </description>
4750 </item>
4751
4752 <item>
4753 <title>Ledger - double-entry accounting using text based storage format</title>
4754 <link>http://people.skolelinux.org/pere/blog/Ledger___double_entry_accounting_using_text_based_storage_format.html</link>
4755 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Ledger___double_entry_accounting_using_text_based_storage_format.html</guid>
4756 <pubDate>Tue, 18 Dec 2012 23:30:00 +0100</pubDate>
4757 <description>&lt;p&gt;A few days ago I came across
4758 &lt;a href=&quot;http://joeyh.name/blog/entry/hledger/&quot;&gt;a blog post from Joey
4759 Hess&lt;/a&gt; describing &lt;a href=&quot;http://ledger-cli.org/&quot;&gt;ledger&lt;/a&gt; and
4760 hledger, a text based system for double-entry accounting. I found it
4761 interesting, as I am involved with several organizations where
4762 accounting is an issue, and I have not really become too friendly with
4763 the different web based systems we use. I find it hard to find what I
4764 look for in the menus and even harder try to get sensible data out of
4765 the systems. Ledger seem different. The accounting data is kept in
4766 text files that can be stored in a version control system, and there
4767
4768 are at least &lt;a href=&quot;https://github.com/ledger/ledger/wiki/Ports&quot;&gt;five
4769 different implementations&lt;/a&gt; able to read the format. An example
4770 entry look like this, and is simple enough that it will be trivial to
4771 generate entries based on CVS files fetched from the bank:&lt;/p&gt;
4772
4773 &lt;blockquote&gt;&lt;pre&gt;
4774 2004-05-27 Book Store
4775 Expenses:Books $20.00
4776 Liabilities:Visa
4777 &lt;/pre&gt;&lt;/blockquote&gt;
4778
4779 &lt;p&gt;The concept seemed interesting enough for me to check it out and
4780 look for others using it. I found blog posts from
4781 &lt;a href=&quot;http://blog.spang.cc/posts/hledger_rocks_my_world/&quot;&gt;Christine
4782 Spang&lt;/a&gt;,
4783 &lt;a href=&quot;http://bugsplat.info/2010-05-23-keeping-finances-with-ledger.html&quot;&gt;Pete
4784 Keen&lt;/a&gt;,
4785 &lt;a href=&quot;http://blog.andrewcantino.com/blog/2010/11/06/command-line-accounting-with-ledger-and-reckon/&quot;&gt;Andrew
4786 Cantino&lt;/a&gt; and
4787 &lt;a href=&quot;http://blog.iphoting.com/blog/2012/11/29/command-line-double-entry-accounting/&quot;&gt;Ronald
4788 Ip&lt;/a&gt; describing how they use it, as well as a post from
4789 &lt;a href=&quot;https://groups.google.com/forum/?fromgroups=#!topic/ledger-cli/r0oWjwbQ9Bo&quot;&gt;Bradley
4790 M. Kuhn&lt;/a&gt; at the Software Freedom Conservancy. All seemed like good
4791 recommendations fitting my need.&lt;/p&gt;
4792
4793 &lt;p&gt;The &lt;a href=&quot;http://packages.qa.debian.org/l/ledger.html&quot;&gt;ledger&lt;/a&gt;
4794 package is available in Debian Squeeze, while the
4795 &lt;a href=&quot;http://packages.qa.debian.org/h/haskell-hledger.html&quot;&gt;hledger&lt;/a&gt;
4796 package only is available in Debian Sid. As I use Squeeze, ledger
4797 seemed the best choice to get started.&lt;/p&gt;
4798
4799 &lt;p&gt;To get some real data to test on, I wrote a
4800 &lt;a href=&quot;http://www.nuug.no/tools/lodo2ledger&quot;&gt;web scraper&lt;/a&gt; for
4801 &lt;a href=&quot;http://www.lodo.no/&quot;&gt;LODO&lt;/a&gt;, the accounting system used by
4802 the &lt;a href=&quot;http://www.nuug.no/&quot;&gt;NUUG&lt;/a&gt; association, and started to
4803 play with the data set. I&#39;m not really deeply into accounting, but I
4804 am able to get a simple balance and accounting status for example
4805 using the &quot;&lt;tt&gt;ledger balance&lt;/tt&gt;&quot; command. But I will have to
4806 gather more experience before I know if the ledger way is a good fit
4807 for the organisations I am involved in.&lt;/p&gt;
4808 </description>
4809 </item>
4810
4811 <item>
4812 <title>Scripting the Cerebrum/bofhd user administration system using XML-RPC</title>
4813 <link>http://people.skolelinux.org/pere/blog/Scripting_the_Cerebrum_bofhd_user_administration_system_using_XML_RPC.html</link>
4814 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Scripting_the_Cerebrum_bofhd_user_administration_system_using_XML_RPC.html</guid>
4815 <pubDate>Thu, 6 Dec 2012 10:30:00 +0100</pubDate>
4816 <description>&lt;p&gt;Where I work at the &lt;a href=&quot;http://www.uio.no/&quot;&gt;University of
4817 Oslo&lt;/a&gt;, we use the
4818 &lt;a href=&quot;http://sourceforge.net/projects/cerebrum/&quot;&gt;Cerebrum user
4819 administration system&lt;/a&gt; to maintain users, groups, DNS, DHCP, etc.
4820 I&#39;ve known since the system was written that the server is providing
4821 an &lt;a href=&quot;http://en.wikipedia.org/wiki/XML-RPC&quot;&gt;XML-RPC&lt;/a&gt; API, but
4822 I have never spent time to try to figure out how to use it, as we
4823 always use the bofh command line client at work. Until today. I want
4824 to script the updating of DNS and DHCP to make it easier to set up
4825 virtual machines. Here are a few notes on how to use it with
4826 Python.&lt;/p&gt;
4827
4828 &lt;p&gt;I started by looking at the source of the Java
4829 &lt;a href=&quot;http://cerebrum.svn.sourceforge.net/viewvc/cerebrum/trunk/cerebrum/clients/jbofh/&quot;&gt;bofh
4830 client&lt;/a&gt;, to figure out how it connected to the API server. I also
4831 googled for python examples on how to use XML-RPC, and found
4832 &lt;a href=&quot;http://tldp.org/HOWTO/XML-RPC-HOWTO/xmlrpc-howto-python.html&quot;&gt;a
4833 simple example in&lt;/a&gt; the XML-RPC howto.&lt;/p&gt;
4834
4835 &lt;p&gt;This simple example code show how to connect, get the list of
4836 commands (as a JSON dump), and how to get the information about the
4837 user currently logged in:&lt;/p&gt;
4838
4839 &lt;blockquote&gt;&lt;pre&gt;
4840 #!/usr/bin/env python
4841 import getpass
4842 import xmlrpclib
4843 server_url = &#39;https://cerebrum-uio.uio.no:8000&#39;;
4844 username = getpass.getuser()
4845 password = getpass.getpass()
4846 server = xmlrpclib.Server(server_url);
4847 #print server.get_commands(sessionid)
4848 sessionid = server.login(username, password)
4849 print server.run_command(sessionid, &quot;user_info&quot;, username)
4850 result = server.logout(sessionid)
4851 print result
4852 &lt;/pre&gt;&lt;/blockquote&gt;
4853
4854 &lt;p&gt;Armed with this knowledge I can now move forward and script the DNS
4855 and DHCP updates I wanted to do.&lt;/p&gt;
4856 </description>
4857 </item>
4858
4859 <item>
4860 <title>Why isn&#39;t the value of copyright taxed?</title>
4861 <link>http://people.skolelinux.org/pere/blog/Why_isn_t_the_value_of_copyright_taxed_.html</link>
4862 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Why_isn_t_the_value_of_copyright_taxed_.html</guid>
4863 <pubDate>Sat, 17 Nov 2012 11:30:00 +0100</pubDate>
4864 <description>&lt;p&gt;While working on a
4865 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;Norwegian
4866 translation of the Free Culture by Lawrence Lessig&lt;/a&gt; (76% done),
4867 which cover the problems with todays copyright law and how it stifles
4868 creativity, one idea occurred to me. The idea is to get the tax
4869 office to help make more works enter the public domain and also help
4870 make it easier to clear rights for using copyrighted works.&lt;/p&gt;
4871
4872 &lt;p&gt;I mentioned this idea briefly during Yesterdays
4873 &lt;a href=&quot;http://www.farmann.no/2012/11/14/john-perry-barlow-in-oslo-friday-nov-16
4874 -15-30-19-00/&quot;&gt;presentation
4875 by John Perry Barlow&lt;/a&gt;, and concluded that it was best to put it
4876 in writing for a wider audience. The idea is not really based on the
4877 argument that copyrighted works are &quot;intellectual property&quot;, as the
4878 core requirement is that copyrighted work have value for the copyright
4879 holder and the tax office like to collect their share from any value
4880 controlled by the citizens in a country. I&#39;m sharing the idea here to
4881 let others consider it and perhaps shoot it down with a fresh set of
4882 arguments.&lt;/p&gt;
4883
4884 &lt;p&gt;Most valuables are taxed by the government. At least here in
4885 Norway, the amount of money you have, the value of our land property,
4886 the value of your house, the value of your car, the value of our
4887 stocks and other valuables are all added together. If the tax value
4888 of these values exceed your debt, you have to pay the tax office some
4889 taxes for these values. And copyrighted work have value. It have
4890 value for the rights holder, who can earn money selling access to the
4891 work. But it is not included in the tax calculations? Why not?&lt;/p&gt;
4892
4893 &lt;p&gt;If the government want to tax copyrighted works, it would want to
4894 maintain a database of all the copyrighted works and who are the
4895 rights holders for a given works, to be able to associate the works
4896 value to the right citizen or company for tax purposes. If such
4897 database exist, it will become a lot easier to find out who to talk to
4898 for clearing permissions to use a copyrighted work, which is a very
4899 hard operation with todays copyright law. To ensure that copyright
4900 holders keep the database up-to-date, it would have to become a
4901 requirement to be able to collect money for granting access to
4902 copyrighted works that the work is listed in the database with the
4903 correct right holder.&lt;/p&gt;
4904
4905 &lt;p&gt;If copyright causes copyright holders to have to pay more taxes,
4906 they will have a small incentive to &quot;disown&quot; their copyright, and let
4907 the work enter the public domain. For works with several right holders
4908 one of the right holders could state (and get it registered in the
4909 database) that she do not need to be consulted when clearing rights to
4910 use the work in question and thus will not get any income from that
4911 work. Stating this would have to be impossible to revert and stop the
4912 tax office from adding the value of that work to the given citizens
4913 tax calculation. I assume the copyright law would stay the same,
4914 allowing creators to pick a license of their choosing, and also
4915 allowing them to put their work directly in the public domain. The
4916 existence of such database will make it even easier to clear rights,
4917 and if the right holders listed in the database is taxed, this system
4918 would increase the amount of works that enter the public domain.&lt;/p&gt;
4919
4920 &lt;p&gt;The effect would be that the tax office help to make it easier to
4921 get rights to use the works that have not yet entered the public
4922 domain and help to get more work into the public domain and .&lt;/p&gt;
4923
4924 &lt;p&gt;Why have such taxing not happened yet? I am sure the tax office
4925 would like to tax copyrighted work values if they could.&lt;/p&gt;
4926 </description>
4927 </item>
4928
4929 <item>
4930 <title>Debian Edu interview: Angela Fuß</title>
4931 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Angela_Fu_.html</link>
4932 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Angela_Fu_.html</guid>
4933 <pubDate>Wed, 14 Nov 2012 21:30:00 +0100</pubDate>
4934 <description>&lt;p&gt;Here is another interview with one of the people in the &lt;a
4935 href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
4936 community. I am running short on people willing to be interviewed, so
4937 if you know about someone I should interview, Please send me an email.
4938 After asking for many months, I finally managed to lure another one of
4939 the people behind the German
4940 &quot;&lt;a href=&quot;http://wiki.it-zukunft-schule.de/&quot;&gt;IT-Zukunft Schule&lt;/a&gt;&quot;
4941 project out from maternity leave to conduct an interview. Give a warm
4942 welcome to Angela Fuß. :)&lt;/p&gt;
4943
4944 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
4945
4946 &lt;p&gt;I am a 39-year-old woman living in the very north of Germany near
4947 Denmark. I live in a patchwork family with &quot;my man&quot; Mike Gabriel, my
4948 two daughters, Mikes daughter and Mikes and my rather newborn son.
4949
4950 &lt;p&gt;At the moment - because of our little baby - I am spending most of
4951 the day by being a caring and organising mom for all the kids.
4952 Besides that I am really involved into and occupied with several inner
4953 growth processes: New born souls always bring the whole familiar
4954 system into movement and that needs time and focus ;-). We are also
4955 in the middle of buying a house and moving to it.&lt;/p&gt;
4956
4957 &lt;p&gt;In 2013 I will work again in my job in a German foundation for
4958 nature conservation. I am doing public relation work there. Besides
4959 that - and that is the connection to Skolelinux / Debian Edu - I am
4960 working in our own school project &quot;IT-Zukunft Schule&quot; in North
4961 Germany. I am responsible for the quality assurance, the customer
4962 relationship management and the communication processes in the
4963 project.&lt;/p&gt;
4964
4965 &lt;p&gt;Since 2001 I constantly have been training myself in communication
4966 and leadership. Besides that I am a forester, a landscaping gardener
4967 and a yoga teacher.&lt;/p&gt;
4968
4969 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
4970 project?&lt;/strong&gt;&lt;/p&gt;
4971
4972 &lt;p&gt;I fell in love with Mike ;-).&lt;/p&gt;
4973
4974 &lt;p&gt;Very soon after getting to know him I was completely enrolled into
4975 Free Software. At this time Mike did IT-services for one newly
4976 founded school in Kiel. Other schools in Kiel needed concepts for
4977 their IT environment. Often when Mike came home from working at the
4978 newly founded school I found myself listening to his complaints about
4979 several points where the communication with the schools head or the
4980 teachers did not work. So we were clear that he would not work for
4981 one more school if we did not set up a structure for communication
4982 between him, the schools head, the teachers, the students and the
4983 parents.&lt;/p&gt;
4984
4985 &lt;p&gt;Together with our friend and hardware supplier Andreas Buchholz we
4986 started to get an overview of free software solutions suitable for
4987 schools. One day before Christmas 2010 Mike and I had a date with Kurt
4988 Gramlich in Gütersloh. As Kurt and I are really interested in building
4989 networks of people and in being in communication we dived into
4990 Skolelinux and brought it to the first grammar schools in Northern
4991 Germany.&lt;/p&gt;
4992
4993 &lt;p&gt;For information about our school project you can read
4994 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Mike_Gabriel.html&quot;&gt;the
4995 interview with Mike Gabriel&lt;/a&gt;.&lt;/p&gt;
4996
4997 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
4998 Edu?&lt;/strong&gt;&lt;/p&gt;
4999
5000 &lt;p&gt;First I have to say: I cannot answer this question technically. My
5001 answer comes rather from a social point of view.&lt;/p&gt;
5002
5003 &lt;p&gt;The biggest advantage of Skolelinux / Debian Edu I see is the large
5004 and strong international community of Debian Developers in the
5005 background which is very alive and connected over mailinglists, blogs
5006 and meetings. My constant feeling for the Debian Community is: If
5007 something does not work they will somehow fix it. All is well
5008 ;-). This is of course a user experience. What I also get as a big
5009 advantage of Skolelinux / Debian Edu is that everybody who uses it and
5010 works with it can also contribute to it - that includes students,
5011 teachers, parents...&lt;/p&gt;
5012
5013 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
5014 Edu?&lt;/strong&gt;&lt;/p&gt;
5015
5016 &lt;p&gt;I will answer this question relating to the internal structure of
5017 Skolelinux / Debian Edu.&lt;/p&gt;
5018
5019 &lt;p&gt;What I see as a major disadvantage is that there is a gap between
5020 the group of developers for Debian Edu and the people who make the
5021 marketing, that means the people that bring Skolelinux to the
5022 schools. There is a lack of communication between these two groups and
5023 I think that does not really work for Skolelinux / Debian Edu.&lt;/p&gt;
5024
5025 &lt;p&gt;Further I appreciate that Skolelinux / Debian Edu is known as a
5026 do-ocracy. Nevertheless I keep asking myself if at some points a
5027 democracy or some kind of hierarchical project structure would be good
5028 and helpful. I am also missing some kind of contact between the
5029 Skolelinux / Debian Edu communities in Europe or on an international
5030 level. I think it would be good if there was more sharing between the
5031 different countries using Skolelinux / Debian Edu.&lt;/p&gt;
5032
5033 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
5034
5035 &lt;p&gt;On my laptop I am still using an Ubuntu 10.04 with a Gnome Desktop
5036 on. As applications I use Openoffice.org, Gedit, Firefox, Pidgin,
5037 LaTeX and GnuCash. For mails I am using Horde. And I am really fond of
5038 my N900 running with Maemo.&lt;/p&gt;
5039
5040 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
5041 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
5042
5043 &lt;p&gt;I am really convinced that in our school project &quot;IT-Zukunft
5044 Schule&quot; we have developed (and keep developing) a great way to get
5045 schools to use Free Software. We have written a detailed concept for
5046 that so I cannot explain the whole thing here. But in a nutshell the
5047 strategy has three crucial pillars:&lt;/p&gt;
5048
5049 &lt;ul&gt;
5050
5051 &lt;li&gt;We really take time to get what sort of stories, questions and
5052 concerns the schools head and the teachers have about using different
5053 kinds of IT and we take time to enrol them into Free Software.&lt;/li&gt;
5054
5055 &lt;li&gt;Our solution for schools is never just technical. In the centre
5056 are always the people who are going to use the software. From the very
5057 beginning of the planning for a school, we tell the schools head that
5058 they are paying us not only for a technical solution for their school,
5059 they also pay us for leading all the communication processes
5060 needed. If they do not want that, we are not working with them because
5061 we cannot give a guarantee for the quality of our work then.&lt;/li&gt;
5062
5063 &lt;li&gt;Another focus lies in the training of teachers and students in
5064 co-administrating the IT-System at their school. They start getting in
5065 contact with the Skolelinux / Debian Edu community and they get the
5066 offer to become more and more independent from us.&lt;/li&gt;
5067
5068 &lt;/ul&gt;
5069 </description>
5070 </item>
5071
5072 <item>
5073 <title>The European Central Bank (ECB) take a look at bitcoin</title>
5074 <link>http://people.skolelinux.org/pere/blog/The_European_Central_Bank__ECB__take_a_look_at_bitcoin.html</link>
5075 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_European_Central_Bank__ECB__take_a_look_at_bitcoin.html</guid>
5076 <pubDate>Sun, 4 Nov 2012 08:30:00 +0100</pubDate>
5077 <description>&lt;p&gt;Slashdot just ran a story about the European Central Bank (ECB)
5078 &lt;a href=&quot;http://www.ecb.europa.eu/pub/pdf/other/virtualcurrencyschemes201210en.pdf&quot;&gt;releasing
5079 a report (PDF)&lt;/a&gt; about virtual currencies and
5080 &lt;a href=&quot;http://www.bitcoin.org/&quot;&gt;bitcoin&lt;/a&gt;. It is interesting to
5081 see how a member of the bitcoin community
5082 &lt;a href=&quot;http://blog.bitinstant.com/blog/2012/10/30/the-ecb-report-on-bitcoin-and-virtual-currencies.html&quot;&gt;receive
5083 the report&lt;/a&gt;. As for the future, I suspect the central banks and
5084 the governments will outlaw bitcoin if it gain any popularity, to avoid
5085 competition. My thoughts go to the
5086 &lt;a href=&quot;http://en.wikipedia.org/wiki/Wörgl&quot;&gt;Wörgl experiment&lt;/a&gt; with
5087 negative inflation on cash which was such a success that it was
5088 terminated by the Austrian National Bank in 1933. A successful
5089 alternative would be a threat to the current money system and gain
5090 powerful forces to work against it.&lt;/p&gt;
5091
5092 &lt;p&gt;While checking out the current status of bitcoin, I also discovered
5093 that the community already seem to have
5094 &lt;a href=&quot;http://www.theverge.com/2012/8/27/3271637/bitcoin-savings-trust-pyramid-scheme-shuts-down&quot;&gt;experienced
5095 its first pyramid game / Ponzi scheme&lt;/a&gt;. Not very surprising, given
5096 how members of &quot;small&quot; communities tend to trust each other. I guess
5097 enterprising crocks will try again and again, as they do anywhere
5098 wealth is available.&lt;/p&gt;
5099 </description>
5100 </item>
5101
5102 <item>
5103 <title>12 years of outages - summarised by Stuart Kendrick</title>
5104 <link>http://people.skolelinux.org/pere/blog/12_years_of_outages___summarised_by_Stuart_Kendrick.html</link>
5105 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/12_years_of_outages___summarised_by_Stuart_Kendrick.html</guid>
5106 <pubDate>Fri, 26 Oct 2012 14:20:00 +0200</pubDate>
5107 <description>&lt;p&gt;I work at the &lt;a href=&quot;http://www.uio.no/&quot;&gt;University of Oslo&lt;/a&gt;
5108 looking after the computers, mostly on the unix side, but in general
5109 all over the place. I am also a member (and currently leader) of
5110 &lt;a href=&quot;http://www.nuug.no/&quot;&gt;the NUUG association&lt;/a&gt;, which in turn
5111 make me a member of &lt;a href=&quot;http://www.usenix.org/&quot;&gt;USENIX&lt;/a&gt;. NUUG
5112 is an member organisation for us in Norway interested in free
5113 software, open standards and unix like operating systems, and USENIX
5114 is a US based member organisation with similar targets. And thanks to
5115 these memberships, I get all issues of the great USENIX magazine
5116 &lt;a href=&quot;https://www.usenix.org/publications/login&quot;&gt;;login:&lt;/a&gt; in the
5117 mail several times a year. The magazine is great, and I read most of
5118 it every time.&lt;/p&gt;
5119
5120 &lt;p&gt;In the last issue of the USENIX magazine ;login:, there is an
5121 article by &lt;a href=&quot;http://www.skendric.com/&quot;&gt;Stuart Kendrick&lt;/a&gt; from
5122 Fred Hutchinson Cancer Research Center titled
5123 &quot;&lt;a href=&quot;https://www.usenix.org/publications/login/october-2012-volume-37-number-5/what-takes-us-down&quot;&gt;What
5124 Takes Us Down&lt;/a&gt;&quot; (longer version also
5125 &lt;a href=&quot;http://www.skendric.com/problem/incident-analysis/2012-06-30/What-Takes-Us-Down.pdf&quot;&gt;available
5126 from his own site&lt;/a&gt;), where he report what he found when he
5127 processed the outage reports (both planned and unplanned) from the
5128 last twelve years and classified them according to cause, time of day,
5129 etc etc. The article is a good read to get some empirical data on
5130 what kind of problems affect a data centre, but what really inspired
5131 me was the kind of reporting they had put in place since 2000.&lt;p&gt;
5132
5133 &lt;p&gt;The centre set up a mailing list, and started to send fairly
5134 standardised messages to this list when a outage was planned or when
5135 it already occurred, to announce the plan and get feedback on the
5136 assumtions on scope and user impact. Here is the two example from the
5137 article: First the unplanned outage:
5138
5139 &lt;blockquote&gt;&lt;pre&gt;
5140 Subject: Exchange 2003 Cluster Issues
5141 Severity: Critical (Unplanned)
5142 Start: Monday, May 7, 2012, 11:58
5143 End: Monday, May 7, 2012, 12:38
5144 Duration: 40 minutes
5145 Scope: Exchange 2003
5146 Description: The HTTPS service on the Exchange cluster crashed, triggering
5147 a cluster failover.
5148
5149 User Impact: During this period, all Exchange users were unable to
5150 access e-mail. Zimbra users were unaffected.
5151 Technician: [xxx]
5152 &lt;/pre&gt;&lt;/blockquote&gt;
5153
5154 Next the planned outage:
5155
5156 &lt;blockquote&gt;&lt;pre&gt;
5157 Subject: H Building Switch Upgrades
5158 Severity: Major (Planned)
5159 Start: Saturday, June 16, 2012, 06:00
5160 End: Saturday, June 16, 2012, 16:00
5161 Duration: 10 hours
5162 Scope: H2 Transport
5163 Description: Currently, Catalyst 4006s provide 10/100 Ethernet to end-
5164 stations. We will replace these with newer Catalyst
5165 4510s.
5166 User Impact: All users on H2 will be isolated from the network during
5167 this work. Afterward, they will have gigabit
5168 connectivity.
5169 Technician: [xxx]
5170 &lt;/pre&gt;&lt;/blockquote&gt;
5171
5172 &lt;p&gt;He notes in his article that the date formats and other fields have
5173 been a bit too free form to make it easy to automatically process them
5174 into a database for further analysis, and I would have used ISO 8601
5175 dates myself to make it easier to process (in other words I would ask
5176 people to write &#39;2012-06-16 06:00 +0000&#39; instead of the start time
5177 format listed above). There are also other issues with the format
5178 that could be improved, read the article for the details.&lt;/p&gt;
5179
5180 &lt;p&gt;I find the idea of standardising outage messages seem to be such a
5181 good idea that I would like to get it implemented here at the
5182 university too. We do register
5183 &lt;a href=&quot;http://www.uio.no/tjenester/it/aktuelt/planlagte-tjenesteavbrudd/&quot;&gt;planned
5184 changes and outages in a calendar&lt;/a&gt;, and report the to a mailing
5185 list, but we do not do so in a structured format and there is not a
5186 report to the same location for unplanned outages. Perhaps something
5187 for other sites to consider too?&lt;/p&gt;
5188 </description>
5189 </item>
5190
5191 <item>
5192 <title>Amazon steal books from customer and throw out her out without any explanation</title>
5193 <link>http://people.skolelinux.org/pere/blog/Amazon_steal_books_from_customer_and_throw_out_her_out_without_any_explanation.html</link>
5194 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Amazon_steal_books_from_customer_and_throw_out_her_out_without_any_explanation.html</guid>
5195 <pubDate>Mon, 22 Oct 2012 20:30:00 +0200</pubDate>
5196 <description>&lt;p&gt;A blog post from Martin Bekkelund today tell the story of
5197 &lt;a href=&quot;http://www.bekkelund.net/2012/10/22/outlawed-by-amazon-drm/&quot;&gt;how
5198 Amazon erased the books from a customer&#39;s kindle, locked the account
5199 and refuse to tell the customer why&lt;/a&gt;. If a real book store did
5200 this to a customer, it would be called breaking into private property
5201 and theft. The story has spread around the net today. A bit more
5202 background information is available in Norwegian from
5203 &lt;a href=&quot;http://www.digi.no/904658/hun-ble-kastet-ut-av-amazon&quot;&gt;digi.no&lt;/a&gt;.
5204 It is no surprise that digital restriction mechanisms (DRM) are used
5205 this way, as it has been warned about such abuse since DRM was
5206 introduced many years back. And Amazon proved in 2009 that it was
5207 willing to
5208 &lt;a href=&quot;http://boingboing.net/2009/07/20/amazons-orwellian-de.html&quot;&gt;
5209 break into customers equipment and remove the books&lt;/a&gt; people had
5210 bought, when it removed the book 1984 by George Orwell from all the
5211 customers who had bought it. From the official comments, it even
5212 sounded like
5213 &lt;a href=&quot;http://www.nytimes.com/2009/07/18/technology/companies/18amazon.html&quot;&gt;Amazon
5214 would never do that again&lt;/a&gt;. And here we are, three years
5215 later.&lt;/p&gt;
5216
5217 &lt;p&gt;And thought this action is
5218 &lt;a href=&quot;http://www.itavisen.no/904648/forbrukerraadet-helt-haarreisende&quot;&gt;against
5219 Norwegian regulations and law&lt;/a&gt;, it is according to the terms of use
5220 as written by Amazon, and it is hard to hold Amazon accountable to
5221 Norwegian laws. It is just yet another example of unacceptable terms
5222 of use on the web, and how they are used to remove customer
5223 rights.&lt;/p&gt;
5224
5225 &lt;p&gt;Luckily for electronic books, there are alternatives without
5226 unacceptable terms. For example
5227 &lt;a href=&quot;http://www.gutenberg.org/&quot;&gt;Project Gutenberg&lt;/a&gt; (about 40,000
5228 books), &lt;a href=&quot;http://runeberg.org/&quot;&gt;Project Runenberg&lt;/a&gt; (1,652
5229 books) and &lt;a href=&quot;http://www.archive.org/details/texts&quot;&gt;The Internet
5230 Archive&lt;/a&gt; (3,641,797 books) have heaps of books without DRM, which
5231 can read by anyone and shared with anyone.&lt;/p&gt;
5232
5233 &lt;p&gt;Update 2012-10-23: This story broke in the morning on Monday. In
5234 the evening after the story had spread all across the Internet, Amazon
5235 restored the account of the user, as reported by
5236 &lt;a href=&quot;http://www.digi.no/904675/helomvending-fra-amazon&quot;&gt;digi.no&lt;/a&gt;
5237 and &lt;a href=&quot;http://nrk.no/kultur-og-underholdning/1.8368487&quot;&gt;NRK&lt;/a&gt;.
5238 Apparently public pressure work. The story from Martin have seen
5239 several twitter messages per minute the last 24 hours, which is quite
5240 a lot, and is still drawing a lot of attention. But even when the
5241 account is restored, the fundamental problem still exist. I recommend
5242 reading two opinions from
5243 &lt;a href=&quot;http://blogs.computerworlduk.com/simon-says/2012/10/rights-you-have-no-right-to-your-ebooks/index.htm&quot;&gt;Simon
5244 Phipps&lt;/a&gt; and
5245 &lt;a href=&quot;http://blogs.computerworlduk.com/open-enterprise/2012/10/is-amazon-playing-fair/index.htm&quot;&gt;Glen
5246 Moody&lt;/a&gt; if you want to learn more about the fundamentals and more
5247 details about the original story.&lt;/p&gt;
5248 </description>
5249 </item>
5250
5251 <item>
5252 <title>The fight for freedom and privacy</title>
5253 <link>http://people.skolelinux.org/pere/blog/The_fight_for_freedom_and_privacy.html</link>
5254 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_fight_for_freedom_and_privacy.html</guid>
5255 <pubDate>Thu, 18 Oct 2012 10:50:00 +0200</pubDate>
5256 <description>&lt;p&gt;Civil liberties and privacy in the western world are going down the
5257 drain, and it is hard to fight against it. I try to do my best, but
5258 time is limited. I hope you do your best too. A few years ago I came
5259 across a marvellous drawing by
5260 &lt;a href=&quot;http://www.claybennett.com/about.html&quot;&gt;Clay Bennett&lt;/a&gt;
5261 visualising some of what is going on.
5262
5263 &lt;p&gt;&lt;a href=&quot;http://www.claybennett.com/pages/security_fence.html&quot;&gt;
5264 &lt;img src=&quot;http://www.claybennett.com/images/archivetoons/security_fence.jpg&quot;&gt;&lt;/a&gt;&lt;/p&gt;
5265
5266 &lt;blockquote&gt;
5267 «They who can give up essential liberty to obtain a little temporary
5268 safety, deserve neither liberty nor safety.» - Benjamin Franklin
5269 &lt;/blockquote&gt;
5270
5271 &lt;p&gt;Do you feel safe at the airport? I do not. Do you feel safe when
5272 you see a surveillance camera? I do not. Do you feel safe when you
5273 leave electronic traces of your behaviour and opinions? I do not. I
5274 just remember &lt;a href=&quot;http://en.wikipedia.org/wiki/Panopticon&quot;&gt;the
5275 Panopticon&lt;/a&gt;, and can not help to think that we are slowly
5276 transforming our society to a huge Panopticon on our own.&lt;/p&gt;
5277 </description>
5278 </item>
5279
5280 <item>
5281 <title>ColonHelp produser sue WordPress to silence critic</title>
5282 <link>http://people.skolelinux.org/pere/blog/ColonHelp_produser_sue_WordPress_to_silence_critic.html</link>
5283 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/ColonHelp_produser_sue_WordPress_to_silence_critic.html</guid>
5284 <pubDate>Fri, 12 Oct 2012 23:50:00 +0200</pubDate>
5285 <description>&lt;p&gt;Thanks to a blog post by
5286 &lt;a href=&quot;http://ramblingfoo.blogspot.no/2012/10/a-shitstorm-is-comming.html&quot;&gt;Eddy
5287 Petrișor&lt;/a&gt;, I became aware of yet another &quot;alternative medicine&quot;
5288 company using legal intimidation tactics to scare off critics.
5289 According to the originating blog post about the detox &quot;cure&quot;
5290 &lt;a href=&quot;http://insulaindoielii.wordpress.com/2012/10/11/colon-help-sues-wordpress/&quot;&gt;ColonHelp
5291 and its producers Zenyth Pharmaceuticals actions&lt;/a&gt;, the producer
5292 sues Wordpress to get rid of the critical information. To check if
5293 the story was for real, I contacted Automattic, the company behind
5294 wordpress.com, and they reply was &quot;We can confirm that Zenyth is
5295 seeking a court order against WordPress / Automattic. However, we
5296 don&#39;t believe the Terms of Service have been violated in this
5297 matter&quot;.&lt;/p&gt;
5298
5299 &lt;p&gt;The story seem to be simply that a blogger checked the scientific
5300 foundation for a popular health product in Rumania, ColonHelp, and
5301 reported that there was no reason at all to believe it improved the
5302 health of its users. This caused the company behind the product,
5303 Zenyth Pharmaceuticals, to use legal intimidation to try to silence
5304 the critic, instead of presenting its views and scientific foundation
5305 to argue its side.&lt;/p&gt;
5306
5307 &lt;p&gt;This is the usual story, and the Zenyth Pharmaceuticals company
5308 deserve everyone to know how it failed to act properly. Lets hope the
5309 &lt;a href=&quot;http://en.wikipedia.org/wiki/Streisand_effect&quot;&gt;Streisand
5310 effect&lt;/a&gt; can make it rethink its strategy.&lt;/p&gt;
5311
5312 &lt;p&gt;What is the harm, you might think. I suggest you take a look at
5313 &lt;a href=&quot;http://www.whatstheharm.net/detoxification.html&quot;&gt;a list of
5314 victims of detoxification&lt;/a&gt;.&lt;/p&gt;
5315 </description>
5316 </item>
5317
5318 <item>
5319 <title>Why is your local library collecting the &quot;wrong&quot; computer books?</title>
5320 <link>http://people.skolelinux.org/pere/blog/Why_is_your_local_library_collecting_the__wrong__computer_books_.html</link>
5321 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Why_is_your_local_library_collecting_the__wrong__computer_books_.html</guid>
5322 <pubDate>Wed, 3 Oct 2012 10:00:00 +0200</pubDate>
5323 <description>&lt;p&gt;I just read the blog post from Tim Retout
5324 &lt;a href=&quot;http://retout.co.uk/blog/2012/10/02/the-library-challenge&quot;&gt;about
5325 the computer science book collection available in his local
5326 library&lt;/a&gt;, and just wanted to share my comment on his theory about
5327 computer books becoming obsolete so soon. That is part of the reason
5328 why the selection is so sad in almost any local library (it is in mine
5329 too), but I believe the major contributing factor is that the people
5330 buying books to the library have no way to know a good and future
5331 computer classic from trash. And they need to know which one will
5332 become a classic in the future, as they would normally buy one of the
5333 recently published books.&lt;/p&gt;
5334
5335 &lt;p&gt;During my university years, I worked for a while at the university
5336 library, and even there the person in charge of buying computer
5337 related books (and in fact any natural science related book), did not
5338 know enough about computers to make a good educated guess. Once, just
5339 before Christmas, they had some leftover money on the book budget and
5340 I was asked if I could pick out a lot of computer books in the
5341 university book store, for the library to buy for their collection. I
5342 had a great time picking all the books I dreamt of buying and reading,
5343 and the books I knew were classics (like most of the
5344 &lt;a href=&quot;http://en.wikipedia.org/wiki/W._Richard_Stevens&quot;&gt;Stevens
5345 collection&lt;/a&gt;). I picked several of the generic O&#39;Reilly books (ie
5346 documenting protocols, formats and systems, not specific versions of
5347 products) and stayed away from the &#39;teach yourself X in N days&#39; class.
5348 I had a great time, and probably picked out more than a hundred books
5349 for the library that evening.&lt;/p&gt;
5350
5351 &lt;p&gt;The sad fact is that there is no way a overworked librarian is
5352 going to know that for example
5353 &lt;a href=&quot;http://en.wikipedia.org/wiki/The_Practice_of_Programming&quot;&gt;The
5354 Practice of Programming&lt;/a&gt; is a must-have in any computer library,
5355 and they will most of the time end up picking the wrong books to buy.
5356 Perhaps you can help your local library make better choices by giving
5357 the suggestions for books to get? I know they would love to hear from
5358 you, even if their budget might block them from getting your favourite
5359 book right away.&lt;/p&gt;
5360 </description>
5361 </item>
5362
5363 <item>
5364 <title>Seventy percent done with Norwegian docbook version of Free Culture</title>
5365 <link>http://people.skolelinux.org/pere/blog/Seventy_percent_done_with_Norwegian_docbook_version_of_Free_Culture.html</link>
5366 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Seventy_percent_done_with_Norwegian_docbook_version_of_Free_Culture.html</guid>
5367 <pubDate>Sun, 23 Sep 2012 09:30:00 +0200</pubDate>
5368 <description>&lt;p&gt;Since this summer, I have worked in my spare time on a Norwegian &lt;a
5369 href=&quot;http://www.docbook.org/&quot;&gt;docbook&lt;/a&gt; version of the 2004 book &lt;a
5370 href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; by Lawrence Lessig.
5371 The reason is that this book is a great primer on what problems exist
5372 in the current copyright laws, and I want it to be available also for
5373 those that are reluctant do read an English book.
5374
5375 When I started, I
5376 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Dugnad_for___sende_norsk_versjon_av_Free_Culture_til_stortingets_representanter_.html&quot;&gt;called
5377 for volunteers&lt;/a&gt; to help me, but too few have volunteered so far,
5378 and progress is a bit slow. Anyway, today I broken the 70 percent
5379 mark for the first rough translation. At the moment, less than 700
5380 strings (paragraphs, index terms, titles) are left to translate. With
5381 my current progress of 10-20 strings per day, it will take a while to
5382 complete the translation. This graph show the updated progress:&lt;/p&gt;
5383
5384 &lt;img width=&quot;80%&quot; align=&quot;center&quot; src=&quot;https://github.com/petterreinholdtsen/free-culture-lessig/raw/master/progress.png&quot;&gt;
5385
5386 &lt;p&gt;Progress have slowed down lately due to family and work
5387 commitments. If you want to help, please get in touch, and check out
5388 the project files currently available from
5389 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;.&lt;/p&gt;
5390
5391 &lt;p&gt;If you are curious what the translated book currently look like,
5392 the updated
5393 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig/blob/master/archive/freeculture.nb.pdf?raw=true&quot;&gt;PDF&lt;/a&gt;
5394 and
5395 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig/blob/master/archive/freeculture.nb.epub?raw=true&quot;&gt;EPUB&lt;/a&gt;
5396 are published on github. The HTML version is published as well, but
5397 github hand it out with MIME type text/plain, confusing browsers, so I
5398 saw no point in linking to that version.&lt;/p&gt;
5399 </description>
5400 </item>
5401
5402 <item>
5403 <title>Debian Edu interview: Giorgio Pioda</title>
5404 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Giorgio_Pioda.html</link>
5405 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Giorgio_Pioda.html</guid>
5406 <pubDate>Mon, 17 Sep 2012 14:10:00 +0200</pubDate>
5407 <description>&lt;p&gt;After a long break in my row of interviews with people in the
5408 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
5409 community, I finally found time to wrap up another. This time it is
5410 Giorgio Pioda, which showed up on the mailing list at the start of
5411 this year, asking questions and inspiring us to improve the first time
5412 administrators experience with Skolelinux. :) The interview was
5413 conduced in May, but I only found time to publish it now.&lt;/p&gt;
5414
5415 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
5416
5417 &lt;p&gt;I have a PhD in chemistry but since several years I work as teacher
5418 in secondary (15-18 year old students) and tertiary (a kind of &quot;light&quot;
5419 university) schools. Five years ago I started to manage a Learning
5420 Management Service server and slowly I got more and more involved with
5421 IT. 3 years ago the graduating schools moved completely to Linux and I
5422 got the head of the IT for this. The experience collected in chemistry
5423 labs computers (for example NMR analysis of protein folding) and in
5424 the IT-courses during university where sufficient to start. Self
5425 training is anyway very important&lt;/p&gt;
5426
5427 &lt;p&gt;I live in the Italian speaking part of Switzerland, and the
5428 &lt;a href=&quot;http://www.spse.ch/&quot;&gt;SPSE school&lt;/a&gt; (secondary) is a very
5429 special sport school for young people who try to became sport pro (for
5430 all sports, we have dozens of disciplines represented) and we are
5431 recognised by the Olympic Swiss Organisation.
5432
5433 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
5434 project?&lt;/strong&gt;&lt;/p&gt;
5435
5436 &lt;p&gt;Looking for Linux / Primary Domain Controller (PDC) I found it
5437 already several years ago. But since the system was still not
5438 Kerberized and since our schools relies strongly on laptops I didn&#39;t
5439 use it. I plan to introduce it in the next future, probably for the
5440 next school year, since the squeeze release solved this security
5441 hole.&lt;/p&gt;
5442
5443 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
5444 Edu?&lt;/strong&gt;&lt;/p&gt;
5445
5446 &lt;p&gt;Many. First of all there is a strong and living community that is
5447 very generous for help and hints. Chat help is crucial, together with
5448 the mailing list. Second. With Skolelinux you get an already well
5449 engineered platform and you don&#39;t have to start to build up your PDC
5450 and your clients from GNU/scratch; I&#39;ve already done this once and I
5451 can tell it, it is hard. Third, since Skolelinux is a standard
5452 platform, it is way easier to educate other IT people and even if the
5453 head IT is sick another one could pick up the task without too much
5454 hassle.&lt;/p&gt;
5455
5456 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
5457 Edu?&lt;/strong&gt;&lt;/p&gt;
5458
5459 &lt;p&gt;The only real problem I see is that it is a little too less
5460 flexible at client level. Debian stable is rocky and desirable, but
5461 there are many reasons that force for another choice. For example the
5462 need of new drivers for new PC, or the need for a specific OS for some
5463 devices that have specific software packages for another specific
5464 distribution (I have such a case for whiteboards that have only
5465 Ubuntu packages). Thus, I prepared compatibility packages educlient
5466 and eduroaming, hoping not to use them ;-)&lt;/p&gt;
5467
5468 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
5469
5470 &lt;p&gt;I have a Debian Stable PDC at school (Kerberos, NIS, NFS) with
5471 mixed Debian and Ubuntu clients. If you think that this triad
5472 combination is exotic... well I discovered right yesterday that
5473 &lt;a href=&quot;http://moo.nac.uci.edu/~hjm/Perceus-Report.html&quot;&gt;Perceus&lt;/a&gt;
5474 has the same...&lt;/p&gt;
5475
5476 &lt;p&gt;For myself I run Debian wheezy/sid, but this combination is good
5477 only I you have enough competence to fix stuff for yourself, if
5478 something breaks. Daily I use texmacs, gnumeric, a little bit of R
5479 statistics, kmplot, and less frequently OpenOffice.org.&lt;/p&gt;
5480
5481 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
5482 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
5483
5484 &lt;P&gt;I think that the only real argument that school managers &quot;hear&quot; is
5485 cost reduction. They don&#39;t give too much weight on quality, stability,
5486 just because they are normally not open to change.&lt;/p&gt;
5487
5488 &lt;p&gt;Students adapts very quickly to GNU/Linux (and for them being able
5489 to switch between different OS is a plus value); teachers and managers
5490 don&#39;t.&lt;/p&gt;
5491
5492 &lt;p&gt;We decided to move to Linux because students at our school have own
5493 laptop and we have the responsibility to keep the laptop ready to use;
5494 we were really unsatisfied with Microsoft since every Monday we had 20
5495 machine to fix for viral infections... With Linux this has been
5496 reduced to zero, since people installs almost only from official
5497 repositories. I think that our special needs brought us to Linux.
5498 Those who don&#39;t have such needs will hardly move to Linux.&lt;/p&gt;
5499 </description>
5500 </item>
5501
5502 <item>
5503 <title>IETF activity to standardise video codec</title>
5504 <link>http://people.skolelinux.org/pere/blog/IETF_activity_to_standardise_video_codec.html</link>
5505 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/IETF_activity_to_standardise_video_codec.html</guid>
5506 <pubDate>Sat, 15 Sep 2012 20:00:00 +0200</pubDate>
5507 <description>&lt;p&gt;After the
5508 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/IETF_standardize_its_first_multimedia_codec__Opus.html&quot;&gt;Opus
5509 codec made&lt;/a&gt; it into &lt;a href=&quot;http://www.ietf.org/&quot;&gt;IETF&lt;/a&gt; as
5510 &lt;a href=&quot;http://tools.ietf.org/html/rfc6716&quot;&gt;RFC 6716&lt;/a&gt;, I had a look
5511 to see if there is any activity in IETF to standardise a video codec
5512 too, and I was happy to discover that there is some activity in this
5513 area. A non-&quot;working group&quot; mailing list
5514 &lt;a href=&quot;https://www.ietf.org/mailman/listinfo/video-codec&quot;&gt;video-codec&lt;/a&gt;
5515 was
5516 &lt;a href=&quot;http://ietf.10.n7.nabble.com/New-Non-WG-Mailing-List-video-codec-Video-codec-BoF-discussion-list-td119548.html&quot;&gt;created 2012-08-20&lt;/a&gt;. It is intended to discuss the topic and if a
5517 formal working group should be formed.&lt;/p&gt;
5518
5519 &lt;p&gt;I look forward to see how this plays out. There is already
5520 &lt;a href=&quot;http://www.ietf.org/mail-archive/web/video-codec/current/msg00003.html&quot;&gt;an
5521 email from someone&lt;/a&gt; in the MPEG group at ISO asking people to
5522 participate in the ISO group. Given how ISO failed with OOXML and given
5523 that it so far (as far as I can remember) only have produced
5524 multimedia formats requiring royalty payments, I suspect
5525 joining the ISO group would be a complete waste of time, but I am not
5526 involved in any codec work and my opinion will not matter much.&lt;/p&gt;
5527
5528 &lt;p&gt;If one of my readers is involved with codec work, I hope she will
5529 join this work to standardise a royalty free video codec within
5530 IETF.&lt;/p&gt;
5531 </description>
5532 </item>
5533
5534 <item>
5535 <title>IETF standardize its first multimedia codec: Opus</title>
5536 <link>http://people.skolelinux.org/pere/blog/IETF_standardize_its_first_multimedia_codec__Opus.html</link>
5537 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/IETF_standardize_its_first_multimedia_codec__Opus.html</guid>
5538 <pubDate>Wed, 12 Sep 2012 13:50:00 +0200</pubDate>
5539 <description>&lt;p&gt;Yesterday, &lt;a href=&quot;http://www.ietf.org/&quot;&gt;IETF&lt;/a&gt; announced the
5540 publication of of
5541 &lt;a href=&quot;http://tools.ietf.org/html/rfc6716&quot;&gt;RFC 6716, the Definition
5542 of the Opus Audio Codec&lt;/a&gt;, a low latency, variable bandwidth, codec
5543 intended for both VoIP, film and music. This is the first time, as
5544 far as I know, that IETF have standardized a multimedia codec. In
5545 &lt;a href=&quot;http://tools.ietf.org/html/rfc3533&quot;&gt;RFC 3533&lt;/a&gt;, IETF
5546 standardized the OGG container format, and it has proven to be a great
5547 royalty free container for audio, video and movies. I hope IETF will
5548 continue to standardize more royalty free codeces, after ISO and MPEG
5549 have proven incapable of securing everyone equal rights to publish
5550 multimedia content on the Internet.&lt;/p&gt;
5551
5552 &lt;p&gt;IETF require two interoperating independent implementations to
5553 ratify a standard, and have so far ensured to only standardize royalty
5554 free specifications. Both are key factors to allow everyone (rich and
5555 poor), to compete on equal terms on the Internet.&lt;/p&gt;
5556
5557 &lt;p&gt;Visit the &lt;a href=&quot;http://opus-codec.org/&quot;&gt;Opus project page&lt;/a&gt; if
5558 you want to learn more about the solution.&lt;/p&gt;
5559 </description>
5560 </item>
5561
5562 <item>
5563 <title>Git repository for song book for Computer Scientists</title>
5564 <link>http://people.skolelinux.org/pere/blog/Git_repository_for_song_book_for_Computer_Scientists.html</link>
5565 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Git_repository_for_song_book_for_Computer_Scientists.html</guid>
5566 <pubDate>Fri, 7 Sep 2012 13:50:00 +0200</pubDate>
5567 <description>&lt;p&gt;As I
5568 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Song_book_for_Computer_Scientists.html&quot;&gt;mentioned
5569 this summer&lt;/a&gt;, I have created a Computer Science song book a few
5570 years ago, and today I finally found time to create a public
5571 &lt;a href=&quot;https://gitorious.org/pere-cs-songbook/pere-cs-songbook&quot;&gt;Gitorious
5572 repository for the project&lt;/a&gt;.&lt;/p&gt;
5573
5574 &lt;p&gt;If you want to help out, please clone the source and submit patches
5575 to the HTML version. To generate the PDF and PostScript version,
5576 please use prince XML, or let me know about a useful free software
5577 processor capable of creating a good looking PDF from the HTML.&lt;/p&gt;
5578
5579 &lt;p&gt;Want to sing? You can still find the song book in HTML, PDF and
5580 PostScript formats at
5581 &lt;a href=&quot;http://www.hungry.com/~pere/cs-songbook/&quot;&gt;Petter&#39;s Computer
5582 Science Songbook&lt;/a&gt;.&lt;/p&gt;
5583 </description>
5584 </item>
5585
5586 <item>
5587 <title>Free software forced Microsoft to open Office (and don&#39;t forget Officeshots)</title>
5588 <link>http://people.skolelinux.org/pere/blog/Free_software_forced_Microsoft_to_open_Office__and_don_t_forget_Officeshots_.html</link>
5589 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_software_forced_Microsoft_to_open_Office__and_don_t_forget_Officeshots_.html</guid>
5590 <pubDate>Thu, 23 Aug 2012 14:20:00 +0200</pubDate>
5591 <description>&lt;p&gt;I came across a great comment from Simon Phipps today, about how
5592 &lt;a href=&quot;http://www.infoworld.com/d/open-source-software/how-microsoft-was-forced-open-office-200233&quot;&gt;Microsoft
5593 have been forced to open Office&lt;/a&gt;, and it made me remember and
5594 revisit the great site
5595 &lt;a href=&quot;http://www.officeshots.org/&quot;&gt;officeshots&lt;/a&gt; which allow you
5596 to check out how different programs present the ODF file format. I
5597 recommend both to those of my readers interested in ODF. :)&lt;/p&gt;
5598 </description>
5599 </item>
5600
5601 <item>
5602 <title>Half way there with translated docbook version of Free Culture</title>
5603 <link>http://people.skolelinux.org/pere/blog/Half_way_there_with_translated_docbook_version_of_Free_Culture.html</link>
5604 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Half_way_there_with_translated_docbook_version_of_Free_Culture.html</guid>
5605 <pubDate>Fri, 17 Aug 2012 21:50:00 +0200</pubDate>
5606 <description>&lt;p&gt;In my spare time, I currently work on a Norwegian
5607 &lt;a href=&quot;http://www.docbook.org/&quot;&gt;docbook&lt;/a&gt; version of the 2004 book
5608 &lt;a href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; by Lawrence Lessig,
5609 to get a Norwegian text explaining the problems with the copyright law
5610 I can give to my parents and others that are reluctant to read an
5611 English book. It is a marvellous set of examples on how the ever
5612 expanding copyright regulations hurt culture and society. When the
5613 translation is done, I hope to find funding to print and ship a copy
5614 to all the members of the Norwegian parliament, before they sit down
5615 to debate the latest revisions to the Norwegian copyright law. This
5616 summer I
5617 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Dugnad_for___sende_norsk_versjon_av_Free_Culture_til_stortingets_representanter_.html&quot;&gt;called
5618 for volunteers&lt;/a&gt; to help me, and I have been able to secure the
5619 valuable contribution from at least one other Norwegian.&lt;/p&gt;
5620
5621 &lt;p&gt;Two days ago, we finally broke the 50% mark. Then more than 50% of
5622 the number of strings to translate (normally paragraphs, but also
5623 titles and index entries are also counted). All parts from the
5624 beginning up to and including chapter four is translated. So is
5625 chapters six, seven and the conclusion. I created a graph to show the
5626 progress:&lt;/p&gt;
5627
5628 &lt;img width=&quot;80%&quot; align=&quot;center&quot; src=&quot;https://github.com/petterreinholdtsen/free-culture-lessig/raw/master/progress.png&quot;&gt;
5629
5630 &lt;p&gt;The number of strings to translate increase as I insert the index
5631 entries into the docbook. They were missing with the docbook version
5632 I initially started with. There are still quite a few index entries
5633 missing, but everyone starting with A, B, O, Z and Y are done. I
5634 currently focus on completing the index entries, to get a complete
5635 english version of the docbook source.&lt;/p&gt;
5636
5637 &lt;p&gt;There is still need for translators and people with docbook
5638 knowledge, to be able to get a good looking book (I still struggle
5639 with dblatex, xmlto and docbook-xsl) as well as to do the draft
5640 translation and proof reading. And I would like the figures to be
5641 redrawn as SVGs to make it easy to translate them. Any SVG master
5642 around? I am sure there are some legal terms that are unfamiliar to
5643 me. If you want to help, please get in touch, and check out the
5644 project files currently available from &lt;a
5645 href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;.&lt;/p&gt;
5646
5647 &lt;p&gt;If you are curious what the translated book currently look like,
5648 the updated
5649 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig/blob/master/archive/freeculture.nb.pdf?raw=true&quot;&gt;PDF&lt;/a&gt;
5650 and
5651 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig/blob/master/archive/freeculture.nb.epub?raw=true&quot;&gt;EPUB&lt;/a&gt;
5652 are published on github. The HTML version is published as well, but
5653 github hand it out with MIME type text/plain, confusing browsers, so I
5654 saw no point in linking to that version.&lt;/p&gt;
5655 </description>
5656 </item>
5657
5658 <item>
5659 <title>Notes on language codes for Norwegian docbook processing...</title>
5660 <link>http://people.skolelinux.org/pere/blog/Notes_on_language_codes_for_Norwegian_docbook_processing___.html</link>
5661 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Notes_on_language_codes_for_Norwegian_docbook_processing___.html</guid>
5662 <pubDate>Fri, 10 Aug 2012 21:00:00 +0200</pubDate>
5663 <description>&lt;p&gt;In &lt;a href=&quot;http://www.docbook.org/&quot;&gt;docbook&lt;/a&gt; one can specify
5664 the language used at the top, and the processing pipeline will use
5665 this information to pick the correct translations for &#39;chapter&#39;, &#39;see
5666 also&#39;, &#39;index&#39; etc. And for most languages used with docbook, I guess
5667 this work just fine. For example a German user can start the document
5668 with &amp;lt;book lang=&quot;de&quot;&amp;gt;, and the document will show up with the
5669 correct content with any of the docbook processors. This is not the
5670 case for the language
5671 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Free_Culture_in_Norwegian___5_chapters_done__74_percent_left_to_do.html&quot;&gt;I
5672 am working with at the moment&lt;/a&gt;, Norwegian Bokmål.&lt;/p&gt;
5673
5674 &lt;p&gt;For a while, I was confused about which language code to use,
5675 because I was unable to find any language code that would work across
5676 all tools. I am currently testing dblatex, xmlto, docbook-xsl, and
5677 dbtoepub, and they do not handle Norwegian Bokmål the same way. Some
5678 of them do not handle it at all.&lt;/p&gt;
5679
5680 &lt;p&gt;A bit of background information is probably needed to understand
5681 this mess. Norwegian is not one, but two written variants. The
5682 variants are Norwegian Nynorsk and Norwegian Bokmål. There are three
5683 two letter language codes associated with these languages, Norwegian
5684 is &#39;no&#39;, Norwegian Nynorsk is &#39;nn&#39; and Norwegian Bokmål is &#39;nb&#39;.
5685 Historically the &#39;no&#39; language code was used for Norwegian Bokmål, but
5686 many years ago this was found to be å bad idea, and the recommendation
5687 is to use the most specific language code instead, to avoid confusion.
5688 In the transition period it is a good idea to make sure &#39;no&#39; was an
5689 alias for &#39;nb&#39;.&lt;/p&gt;
5690
5691 &lt;p&gt;Back to docbook processing tools in Debian. The dblatex tool only
5692 understand &#39;nn&#39;. There are translations for &#39;no&#39;, but not &#39;nb&#39; (BTS
5693 &lt;a href=&quot;http://bugs.debian.org/684391&quot;&gt;#684391&lt;/a&gt;), but due to a bug
5694 (BTS &lt;a href=&quot;http://bugs.debian.org/682936&quot;&gt;#682936&lt;/a&gt;) the &#39;no&#39;
5695 language code is not recognised. The docbook-xsl tool chain only
5696 recognise &#39;nn&#39; and &#39;nb&#39;, but not &#39;no&#39;. The xmlto tool only recognise
5697 &#39;nn&#39; and &#39;nb&#39;, but not &#39;no&#39;. The end result that there is no language
5698 code I can use to get the docbook file working with all of these tools
5699 at the same time. :(&lt;/p&gt;
5700
5701 &lt;p&gt;The correct solution is to use &amp;lt;book lang=&quot;nb&quot;&amp;gt;, but it will
5702 take time before that will work with all the free software docbook
5703 processors. :(&lt;/p&gt;
5704
5705 &lt;p&gt;Oh, the joy of well integrated tools. :/&lt;/p&gt;
5706 </description>
5707 </item>
5708
5709 <item>
5710 <title>Best way to create a docbook book?</title>
5711 <link>http://people.skolelinux.org/pere/blog/Best_way_to_create_a_docbook_book_.html</link>
5712 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Best_way_to_create_a_docbook_book_.html</guid>
5713 <pubDate>Tue, 31 Jul 2012 22:00:00 +0200</pubDate>
5714 <description>&lt;p&gt;I tried to send this text to the
5715 &lt;a href=&quot;https://lists.oasis-open.org/archives/docbook-apps/&quot;&gt;docbook-apps
5716 mailing list at lists.oasis-open.org&lt;/a&gt;, but it only accept messages
5717 from subscribers and rejected my post, and I completely lack the
5718 bandwidth required to subscribe to another mailing list, so instead I
5719 try to post my message here and hope my blog readers can help me
5720 out.&lt;/p&gt;
5721
5722 &lt;p&gt;I am quite new to docbook processing, and am climbing a steep
5723 learning curve at the moment.&lt;/p&gt;
5724
5725 &lt;p&gt;To give you some background, I am working on a Norwegian
5726 translation of the book Free Culture by Lawrence Lessig, and I use
5727 docbook to handle the process. The files to build the book are
5728 available from
5729 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;.
5730 The book got around 400 pages with parts, images, footnotes, tables,
5731 index entries etc, which has proven to be a challenge for the free
5732 software docbook processors. My build platform is Debian GNU/Linux
5733 Squeeze.&lt;/p&gt;
5734
5735 &lt;p&gt;I want to build PDF, EPUB and HTML version of the book, and have
5736 tried different tool chains to do the conversion from docbook to these
5737 formats. I am currently focusing on the PDF version, and have a few
5738 problems.&lt;/p&gt;
5739
5740 &lt;ul&gt;
5741
5742 &lt;li&gt;Using dblatex, the &amp;lt;part&amp;gt; handling is not the way I want to,
5743 as &amp;lt;/part&amp;gt; do not really end the &amp;lt;part&amp;gt;. (See
5744 &lt;a href=&quot;http://bugs.debian.org/683166&quot;&gt;BTS report #683166&lt;/a&gt;), the
5745 xetex backend (needed to process UTF-8) give incorrect hyphens in
5746 index references spanning several pages (See
5747 &lt;a href=&quot;http://bugs.debian.org/682901&quot;&gt;BTS report #682901&lt;/a&gt;), and
5748 I am unable to get the norwegian template texts (See
5749 &lt;a href=&quot;http://bugs.debian.org/682936&quot;&gt;BTS report #682936&lt;/a&gt;).&lt;/li&gt;
5750
5751 &lt;li&gt;Using straight xmlto fail with some latex error (See
5752 &lt;a href=&quot;http://bugs.debian.org/683163&quot;&gt;BTS report
5753 #683163&lt;/a&gt;).&lt;/li&gt;
5754
5755 &lt;li&gt;Using xmlto with the fop backend fail to handle images (do not
5756 show up in the PDF), fail to handle a long footnote (overlap
5757 footnote and text body, see
5758 &lt;a href=&quot;http://bugs.debian.org/683197&quot;&gt;BTS report #683197&lt;/a&gt;), and
5759 fail to create a correct index (some lack page ref, and the page
5760 refs listed are not right).&lt;/li&gt;
5761
5762 &lt;li&gt;Using xmlto with the dblatex backend behave like dblatex.&lt;/li&gt;
5763
5764 &lt;li&gt;Using docbook-xls with xsltproc + fop have the same footnote and
5765 index problems the xmlto + fop processing.&lt;/li&gt;
5766
5767 &lt;/ul&gt;
5768
5769 &lt;p&gt;So I wonder, what would be the best way to create the PDF version
5770 of this book? Are some of the bugs found above solved in new or
5771 experimental versions of some docbook tool chain?&lt;/p&gt;
5772
5773 &lt;p&gt;What about HTML and EPUB versions?&lt;/p&gt;
5774 </description>
5775 </item>
5776
5777 <item>
5778 <title>Free Culture in Norwegian - 5 chapters done, 74 percent left to do</title>
5779 <link>http://people.skolelinux.org/pere/blog/Free_Culture_in_Norwegian___5_chapters_done__74_percent_left_to_do.html</link>
5780 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_Culture_in_Norwegian___5_chapters_done__74_percent_left_to_do.html</guid>
5781 <pubDate>Sat, 21 Jul 2012 20:00:00 +0200</pubDate>
5782 <description>&lt;p&gt;I reported earlier that I am working on
5783 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Dugnad_for___sende_norsk_versjon_av_Free_Culture_til_stortingets_representanter_.html&quot;&gt;a
5784 norwegian version&lt;/a&gt; of the book
5785 &lt;a href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; by Lawrence Lessig.
5786 Progress is good, and yesterday I got a major contribution from Anders
5787 Hagen Jarmund completing chapter six. The source files as well as a
5788 PDF and EPUB version of this book are available from
5789 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;.&lt;/p&gt;
5790
5791 &lt;p&gt;I am happy to report that the draft for the first two chapters
5792 (preface, introduction) is complete, and three other chapters are also
5793 completely translated. This completes 26 percent of the number of
5794 strings (equivalent to paragraphs) in the book, and there is thus 74
5795 percent left to translate. A graph of the progress is present at the
5796 bottom of the github project page. There is still room for more
5797 contributors. Get in touch or send github pull requests with fixes if
5798 you got time and are willing to help make this book make it to
5799 print. :)&lt;/p&gt;
5800
5801 &lt;p&gt;The book translation framework could also be a good basis for other
5802 translations, if you want the book to be available in your
5803 language.&lt;/p&gt;
5804 </description>
5805 </item>
5806
5807 <item>
5808 <title>Call for help from docbook expert to tag Free Culture by Lawrence Lessig</title>
5809 <link>http://people.skolelinux.org/pere/blog/Call_for_help_from_docbook_expert_to_tag_Free_Culture_by_Lawrence_Lessig.html</link>
5810 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Call_for_help_from_docbook_expert_to_tag_Free_Culture_by_Lawrence_Lessig.html</guid>
5811 <pubDate>Mon, 16 Jul 2012 22:50:00 +0200</pubDate>
5812 <description>&lt;p&gt;I am currently working on a
5813 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Dugnad_for___sende_norsk_versjon_av_Free_Culture_til_stortingets_representanter_.html&quot;&gt;project
5814 to translate&lt;/a&gt; the book
5815 &lt;a href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; by Lawrence Lessig
5816 to Norwegian. And the source we base our translation on is the
5817 &lt;a href=&quot;http://en.wikipedia.org/wiki/DocBook&quot;&gt;docbook&lt;/a&gt; version, to
5818 allow us to use po4a and .po files to handle the translation, and for
5819 this to work well the docbook source document need to be properly
5820 tagged. The source files of this project is available from
5821 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;.&lt;/p&gt;
5822
5823 &lt;p&gt;The problem is that the docbook source have flaws, and we have
5824 no-one involved in the project that is a docbook expert. Is there a
5825 docbook expert somewhere that is interested in helping us create a
5826 well tagged docbook version of the book, and adjust our build process
5827 for the PDF, EPUB and HTML version of the book? This will provide a
5828 well tagged English version (our source document), and make it a lot
5829 easier for us to create a good Norwegian version. If you can and want
5830 to help, please get in touch with me or fork the github project and
5831 send pull requests with fixes. :)&lt;/p&gt;
5832 </description>
5833 </item>
5834
5835 <item>
5836 <title>Debian Edu interview: George Bredberg</title>
5837 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__George_Bredberg.html</link>
5838 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__George_Bredberg.html</guid>
5839 <pubDate>Mon, 9 Jul 2012 00:30:00 +0200</pubDate>
5840 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
5841 Skolelinux&lt;/a&gt; project have users all over the globe, but until
5842 recently we have not known about any users in Norway&#39;s neighbour
5843 country Sweden. This changed when George Bredberg showed up in March
5844 this year on the mailing list, asking interesting questions about how
5845 to adjust and scale the just released
5846 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.html&quot;&gt;Debian Edu
5847 Wheezy&lt;/a&gt; setup to his liking. He granted me an interview, and I am
5848 happy to share his answers with you here.&lt;/p&gt;
5849
5850 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
5851
5852 &lt;p&gt;I&#39;m a 44 year old country guy that have been working 12 years at
5853 the same school as 50% IT-manager and 50% Teacher. My educational
5854 background is fil.kand in history and religious beliefs, an exam as a
5855 &quot;folkhighschool&quot; teacher, that is, for teaching grownups. In
5856 Norwegian I believe it&#39;s called &quot;Vuxenupplaring&quot;. I also have a master
5857 in &quot;Technology and social change&quot;. So I&#39;m not really a tech guy, I
5858 just like to study how humans and technology interact and that is my
5859 perspective when working with IT.&lt;/p&gt;
5860
5861 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
5862 project?&lt;/strong&gt;&lt;/p&gt;
5863
5864 I have followed the Skolelinux project for quite some time by
5865 now. Earlier I tested out the K12-LTSP project, which we used for some
5866 time, but I really like the idea of having a distribution aimed to be
5867 a complete solution for schools with necessary tools integrated. When
5868 K12-LTSP abandoned that idea some years ago, I started to look more
5869 seriously into Skolelinux instead.
5870
5871 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
5872 Edu?&lt;/strong&gt;&lt;/p&gt;
5873
5874 The big point of Skolelinux to me is that it is a complete
5875 distribution, ready to install. It has LDAP-support, MS Windows
5876 integration tools and so forth already configured, saving an
5877 administrator a lot of time and headache. We were using another Linux
5878 based thin-client system called Thinlinc, that has served us very
5879 well. But that Skolelinux is based on VNC and LTSP, to me, is better
5880 when it comes to the kind of multimedia used in schools. That is
5881 showing videos from Youtube or educational TV. It is also easier to
5882 mix thin clients with workstations, since the user settings will be the
5883 same. In our VNC-based solution you had to &quot;beat around the bush&quot; by
5884 setting up a second, hidden, home-directory for user settings for the
5885 workstations, because they will be different from the ones used on the
5886 thin clients. Skolelinux support for diskless workstations are very
5887 convenient since a school today often need to use a class room
5888 projector showing videos in full screen. That is easily done with a
5889 small integrated media computer running as a diskless workstation. You
5890 have only two installs to update and configure. One for the thin
5891 clients and one for the workstations. Also saving a lot of time. Our
5892 old system was also based on Redhat and CentOS. They are both very
5893 nice distributions, but they are sometimes painfully slow when it
5894 comes to updating multimedia support and multimedia programs (even
5895 such as Gimp), leaving us with a bit &quot;oldish&quot; applications. Debian is
5896 quicker to update.
5897
5898 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
5899 Edu?&lt;/strong&gt;&lt;/p&gt;
5900
5901 &lt;p&gt;Debian is a bit too quick when it comes to updating. As an example
5902 we use old HP terminals as thinclients, and two times already this
5903 year (2012) the updates you get from the repositories has stopped
5904 sound from working with them. It&#39;s a kernel/ALSA issue. So you have
5905 to be more careful properly testing the updates before you run them in
5906 a production environment. This has never happened with CentOS.&lt;/p&gt;
5907
5908 &lt;p&gt;I also would like to be able to set my own domain-settings at
5909 install time. In Skolelinux they are kind of hard coded into the
5910 distribution, when it comes to LDAP and at least samba integration.
5911 That is more a cosmetic/translation issue, and not a real problem.
5912 Running MS Windows applications within the Skolelinux environment needs
5913 to be better supported. That is, running them seamlessly via RDP, and
5914 support for single-sign on. That will make the transition to free
5915 software easier, because you can keep the applications you really
5916 need. No support will make it impossible if you work in a school where
5917 some applications can&#39;t be open source. As for us we really need to
5918 run Adobe InDesign in our journalist classes. We run a journalist
5919 education, and is one of the very few non university ones that is ok:d
5920 by Svenska journalistförbundet (Swedish journalist association). Our
5921 education gives the pupils the right of membership there, once they
5922 are done. This is important if you want to get a job.&lt;/p&gt;
5923
5924 &lt;p&gt;Adobe InDesign is the program most commonly used in newspapers and
5925 magazines. We used Quark Express before, but they seem to loose there
5926 market to Adobe. The only &quot;equivalent&quot; to InDesign in the opensource
5927 world is Scribus, and its not advanced enough. At least not according
5928 to the teacher. I think it would be possible to use it, because they
5929 are not supposed to learn a program, they are supposed to learn how to
5930 edit and compile a newspaper. But politically at our school we are not
5931 there yet. And Scribus lacks a lot of things you find i InDesign.&lt;/p&gt;
5932
5933 &lt;p&gt;We used even a windows program for sound editing when it comes to
5934 the radio-journalist part. The year to come we are going to try
5935 Audacity. That software has the same kind of limitations compared to
5936 Adobe Audition, but that teacher is a bit more open minded. We have
5937 tried Ardour also, but that instead is more like a music studio
5938 program, not intended for the kind of editing taking place in a radio
5939 studio. Its way to complex and the GUI is to scattered when you only
5940 want to cut, make pass-overs, add extra channels and normalise. Those
5941 things you can do in Audacity, but its not as easy as in Audition. You
5942 have to do more things manually with envelopes, and that is a bit old
5943 fashion and timewasting. Its also harder to cut and move sound from
5944 one channel to another, which is a thing that you do frequently
5945 because you often find yourself needing to rearrange parts of the
5946 sound file.&lt;/p&gt;
5947
5948 &lt;p&gt;So, I am not sure we will succeed in replacing even Audition, but we
5949 will try. The problem is the students have certain expectations when
5950 they start an education towards a profession. So the programs has to
5951 look and feel professional. Good thing with radio, there are many
5952 programs out there, that radio studios use, so its not as standardised
5953 as Newspaper editing. That means, it does not really matter what
5954 program they learn, because once they start working they still have to
5955 learn the program the studio uses, so instead focus has to be to learn
5956 the editing part without to much focus on a specific software.&lt;/p&gt;
5957
5958 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
5959
5960 &lt;p&gt;Myself I&#39;m running Linux Mint, or Ubuntu these days. I use almost
5961 only open source software, and preferably Linux based. When it comes
5962 to most used applications its OpenOffice, and Firefox (of course ;)
5963 )&lt;/p&gt;
5964
5965 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
5966 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
5967
5968 &lt;p&gt;To get schools to use free software there has to be good open
5969 source software that are windows based, to ease the transition. But
5970 it&#39;s also very important that the multimedia support is working
5971 flawlessly. The problems with Youtube, Twitter, Facebook and whatever
5972 will create problems when it comes to both teachers and
5973 students. Economy are also important for schools, so using thin
5974 clients, as long as they have good multimedia support, is a very good
5975 idea. It&#39;s also important that the open source software works even for
5976 the administration. It&#39;s hard to convince the teachers to stick with
5977 open source, if the principal has to run Windows. It also creates a
5978 problem if some classes has to use Windows for there tasks, since that
5979 will create a difference in &quot;status&quot; between classes, so a good
5980 support for running windows applications via the thin client (Linux)
5981 desktop is essential. At least at our school, where we have mixed
5982 level of educations, from high-school to journalist-school.&lt;/p&gt;
5983
5984 &lt;p&gt;Update 2012-07-09 08:30: Paul Wise tipped me on IRC about three
5985 useful sources related to Free Software for radio stations: the LWN
5986 article &lt;a href=&quot;https://lwn.net/Articles/481607/&quot;&gt;Radio station
5987 management with Airtime&lt;/a&gt;,
5988 &lt;a href=&quot;http://www.sourcefabric.org/en/airtime/&quot;&gt;Airtime&lt;/a&gt; which
5989 claim to be a Free open source radio automation software and
5990 &lt;a href=&quot;http://www.rivendellaudio.org/&quot;&gt;Rivendell&lt;/a&gt; which claim to
5991 be complete radio broadcast automation solution. All of them seem
5992 useful to the aspiring radio producer.&lt;/p&gt;
5993 </description>
5994 </item>
5995
5996 <item>
5997 <title>Why do schools waste money on IT?</title>
5998 <link>http://people.skolelinux.org/pere/blog/Why_do_schools_waste_money_on_IT_.html</link>
5999 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Why_do_schools_waste_money_on_IT_.html</guid>
6000 <pubDate>Sun, 8 Jul 2012 09:40:00 +0200</pubDate>
6001 <description>&lt;p&gt;In the Debian Edu / Skolelinux project, we have realised that one
6002 of the major blockers for the project success is the purchasing skills
6003 in schools and municipalities. We provide what the happy users of
6004 Debian Edu / Skolelinux say they need and to a lower cost than the
6005 alternatives, and yet so few schools decide to use our solution. I
6006 was pleased to discover the same observation done by mySociety and Tom
6007 Steinberg in his blog post
6008 &quot;&lt;a href=&quot;http://www.mysociety.org/2012/06/19/can-you-recognize-the-million-pound-chair/&quot;&gt;Can
6009 you recognize the million pound chair?&lt;/a&gt;&quot;. Read it and weep for the
6010 spending of your tax money.&lt;/p&gt;
6011
6012 &lt;p&gt;Of course there are other factors involved as well, like our
6013 projects bad marketing skills and the Linux community fragmentation
6014 causing worry with the people on the outside, so we as a project need
6015 to keep working hard to gain users, but it is a up-hill battle when
6016 public decision makers are unable to understand computer system
6017 purchases.&lt;/p&gt;
6018 </description>
6019 </item>
6020
6021 <item>
6022 <title>Free Timetabling Software - nice free software</title>
6023 <link>http://people.skolelinux.org/pere/blog/Free_Timetabling_Software___nice_free_software.html</link>
6024 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_Timetabling_Software___nice_free_software.html</guid>
6025 <pubDate>Sat, 7 Jul 2012 09:50:00 +0200</pubDate>
6026 <description>&lt;p&gt;Included in &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
6027 Skolelinux&lt;/a&gt; is a large collection of end user and school specific
6028 software. It is one of the packages not installed by default but
6029 provided in the Debian archive for schools to install if they want to,
6030 is a system to automatically plan the school time table using
6031 information about available teachers, classes and rooms, combined with
6032 the list of required courses and how many hours each topic should
6033 receive. The software is
6034
6035 &lt;a href=&quot;http://lalescu.ro/liviu/fet/&quot;&gt;named FET&lt;/a&gt;, and it provide a
6036 graphical user interface to input the required information, save the
6037 result in a fairly simple XML format, and generate time tables for
6038 both teachers and students. It is available both for
6039 &lt;a href=&quot;http://lalescu.ro/liviu/fet/download.html&quot;&gt;Linux, MacOSX and
6040 Windows&lt;/a&gt;.&lt;/p&gt;
6041
6042 &lt;p&gt;This is &lt;a href=&quot;http://lalescu.ro/liviu/fet/features.html&quot;&gt;the
6043 feature list&lt;/a&gt;, liftet from the project web site:&lt;/p&gt;
6044
6045 &lt;p&gt;&lt;ul&gt;
6046
6047 &lt;li&gt;FET is free software, licensed under the GNU GPL v2 or later.
6048 You can freely use, copy, modify and redistribute it &lt;/li&gt;
6049
6050 &lt;li&gt;Localized to en_US (US English, default), ar (Arabic), ca
6051 (Catalan), da (Danish), de (German), el (Greek), es (Spanish), fa
6052 (Persian), fr (French), gl (Galician), he (Hebrew), hu
6053 (Hungarian), id (Indonesian), it (Italian), lt (Lithuanian), mk
6054 (Macedonian), ms (Malay), nl (Dutch), pl (Polish), pt_BR
6055 (Brazilian Portuguese), ro (Romanian), ru (Russian), si (Sinhala),
6056 sk (Slovak), sr (Serbian), tr (Turkish), uk (Ukrainian), uz
6057 (Uzbek) and vi (Vietnamese) (incompletely for some languages)
6058 &lt;/li&gt;
6059
6060 &lt;li&gt;Fully automatic generation algorithm, allowing also
6061 semi-automatic or manual allocation&lt;/li&gt;
6062
6063 &lt;li&gt;Platform independent implementation, allowing running on
6064 GNU/Linux, Windows, Mac and any system that Qt supports &lt;/li&gt;
6065
6066 &lt;li&gt;Flexible modular XML format for the input file, allowing editing
6067 with an XML editor or by hand (besides FET interface)&lt;/li&gt;
6068
6069 &lt;li&gt;Import/export from CSV format&lt;/li&gt;
6070
6071 &lt;li&gt;The resulted timetables are exported into HTML, XML and CSV
6072 formats &lt;/li&gt;
6073
6074 &lt;li&gt;Flexible students structure, organized into sets: years, groups
6075 and subgroups. FET allows overlapping years and groups and
6076 non-overlapping subgroups. You can even define individual students
6077 (as separate sets)&lt;/li&gt;
6078
6079 &lt;li&gt;Each constraint has a weight percentage, from 0.0% to 100.0%
6080 (but some special constraints are allowed to have only 100% weight
6081 percentage)&lt;/li&gt;
6082
6083 &lt;li&gt;Limits for the algorithm (all these limits can be increased on
6084 demand, as a custom version, because this would require a bit more
6085 memory):
6086 &lt;ul&gt;
6087 &lt;li&gt;Maximum total number of hours (periods) per day: 60&lt;/li&gt;
6088 &lt;li&gt;Maximum number of working days per week: 35&lt;/li&gt;
6089 &lt;li&gt;Maximum total number of teachers: 6000&lt;/li&gt;
6090 &lt;li&gt;Maximum total number of sets of students: 30000&lt;/li&gt;
6091 &lt;li&gt;Maximum total number of subjects: 6000&lt;/li&gt;
6092 &lt;li&gt;Virtually unlimited number of activity tags&lt;/li&gt;
6093 &lt;li&gt;Maximum number of activities: 30000&lt;/li&gt;
6094 &lt;li&gt;Maximum number of rooms: 6000&lt;/li&gt;
6095 &lt;li&gt;Maximum number of buildings: 6000&lt;/li&gt;
6096 &lt;li&gt;Possibility of adding multiple teachers and
6097 students sets for each activity. (it is possible
6098 also to have no teachers or no students sets for an
6099 activity)&lt;/li&gt;
6100 &lt;li&gt;Virtually unlimited number of time constraints&lt;/li&gt;
6101 &lt;li&gt;Virtually unlimited number of space constraints&lt;/li&gt;
6102 &lt;/ul&gt;&lt;/li&gt;
6103
6104 &lt;li&gt;A large and flexible palette of time constraints:
6105 &lt;ul&gt;
6106 &lt;li&gt;Break periods&lt;/li&gt;
6107 &lt;li&gt;For teacher(s):
6108 &lt;ul&gt;
6109 &lt;li&gt;Not available periods&lt;/li&gt;
6110 &lt;li&gt;Max/min days per week&lt;/li&gt;
6111 &lt;li&gt;Max gaps per day/week&lt;/li&gt;
6112 &lt;li&gt;Max hours daily/continuously&lt;/li&gt;
6113 &lt;li&gt;Min hours daily&lt;/li&gt;
6114 &lt;li&gt;Max hours daily/continuously with an activity tag&lt;/li&gt;
6115
6116 &lt;li&gt;Respect working in an hourly interval a max number of
6117 days per week&lt;/li&gt;
6118 &lt;/ul&gt;&lt;/li&gt;
6119 &lt;li&gt;For students (sets):
6120 &lt;ul&gt;
6121 &lt;li&gt;Not available periods&lt;/li&gt;
6122 &lt;li&gt;Begins early (specify max allowed beginnings at second hour)&lt;/li&gt;
6123 &lt;li&gt;Max gaps per day/week&lt;/li&gt;
6124 &lt;li&gt;Max hours daily/continuously&lt;/li&gt;
6125 &lt;li&gt;Min hours daily&lt;/li&gt;
6126 &lt;li&gt;Max hours daily/continuously with an activity tag&lt;/li&gt;
6127
6128 &lt;li&gt;Respect working in an hourly interval a max number of
6129 days per week&lt;/li&gt;
6130 &lt;/ul&gt;&lt;/li&gt;
6131 &lt;li&gt;For an activity or a set of activities/subactivities:
6132 &lt;ul&gt;
6133 &lt;li&gt;A single preferred starting time&lt;/li&gt;
6134 &lt;li&gt;A set of preferred starting times&lt;/li&gt;
6135 &lt;li&gt;A set of preferred time slots&lt;/li&gt;
6136 &lt;li&gt;Min/max days between them&lt;/li&gt;
6137 &lt;li&gt;End(s) students day&lt;/li&gt;
6138 &lt;li&gt;Same starting time/day/hour&lt;/li&gt;
6139 &lt;li&gt;Occupy max time slots from selection (a complex and
6140 flexible constraint, useful in many situations)&lt;/li&gt;
6141 &lt;li&gt;Consecutive, ordered, grouped (for 2 or 3 (sub)activities)&lt;/li&gt;
6142 &lt;li&gt;Not overlapping&lt;/li&gt;
6143 &lt;li&gt;Max simultaneous in selected time slots&lt;/li&gt;
6144 &lt;li&gt;Min gaps between a set of (sub)activities&lt;/li&gt;
6145 &lt;/ul&gt;&lt;/li&gt;
6146 &lt;/ul&gt;&lt;/li&gt;
6147
6148 &lt;li&gt;A large and flexible palette of space constraints:
6149 &lt;ul&gt;
6150 &lt;li&gt;Room not available periods&lt;/li&gt;
6151 &lt;li&gt;For teacher(s):
6152 &lt;ul&gt;
6153 &lt;li&gt;Home room(s)&lt;/li&gt;
6154 &lt;li&gt;Max building changes per day/week&lt;/li&gt;
6155 &lt;li&gt;Min gaps between building changes&lt;/li&gt;
6156 &lt;/ul&gt;
6157 &lt;/li&gt;
6158
6159 &lt;li&gt;For students (sets):
6160 &lt;ul&gt;
6161 &lt;li&gt;Home room(s)&lt;/li&gt;
6162 &lt;li&gt;Max building changes per day/week&lt;/li&gt;
6163 &lt;li&gt;Min gaps between building changes&lt;/li&gt;
6164 &lt;/ul&gt;
6165 &lt;/li&gt;
6166 &lt;li&gt;Preferred room(s):
6167 &lt;ul&gt;
6168 &lt;li&gt;For a subject&lt;/li&gt;
6169 &lt;li&gt;For an activity tag&lt;/li&gt;
6170 &lt;li&gt;For a subject and an activity tag&lt;/li&gt;
6171 &lt;li&gt;Individually for a (sub)activity&lt;/li&gt;
6172 &lt;/ul&gt;
6173 &lt;/li&gt;
6174
6175 &lt;li&gt;For a set of activities:
6176 &lt;ul&gt;
6177 &lt;li&gt;Occupy a maximum number of different rooms&lt;/li&gt;
6178 &lt;/ul&gt;
6179 &lt;/li&gt;
6180 &lt;/ul&gt;
6181 &lt;/li&gt;
6182 &lt;/ul&gt;&lt;/p&gt;
6183
6184 &lt;p&gt;I have not used it myself, as I am not involved in time table
6185 planning at a school, but it seem to work fine when I test it. If you
6186 need to set up your schools time table, and is tired of doing it
6187 manually, check it out.
6188
6189 A quick summary on how to use it can be found in
6190 &lt;a href=&quot;http://marvelsoft.co.in/wp/2012/03/generate-timetable-for-state-cbse-icse-igcse-schools-free/&quot;&gt;a
6191 blog post from MarvelSoft&lt;/a&gt;. If you find FET useful, please provide
6192 a recipe for the Debian Edu project in the
6193 &lt;a href=&quot;http://wiki.debian.org/DebianEdu#Howtos&quot;&gt;Debian Edu HowTo
6194 section&lt;/a&gt;.&lt;/p&gt;
6195 </description>
6196 </item>
6197
6198 <item>
6199 <title>Can Zimbra be told to send autoreplies to the From: address?</title>
6200 <link>http://people.skolelinux.org/pere/blog/Can_Zimbra_be_told_to_send_autoreplies_to_the_From__address_.html</link>
6201 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Can_Zimbra_be_told_to_send_autoreplies_to_the_From__address_.html</guid>
6202 <pubDate>Tue, 3 Jul 2012 23:30:00 +0200</pubDate>
6203 <description>&lt;p&gt;In the NUUG &lt;a href=&quot;http://www.fiksgatami.no/&quot;&gt;FiksGataMi&lt;/a&gt;
6204 project (Norwegian version of
6205 &lt;a href=&quot;http://www.fixmystreet.com/&quot;&gt;FixMyStreet&lt;/a&gt; from
6206 &lt;a href=&quot;http://www.mysociety.org/&quot;&gt;mySociety&lt;/a&gt;), we have discovered
6207 a problem with the municipalities using
6208 &lt;a href=&quot;http://www.zimbra.com/&quot;&gt;Zimbra&lt;/a&gt;. When FiksGataMi send a
6209 problem report to the government, the email From: address is set to
6210 the address of the person reporting the problem, while envelope sender
6211 is set to the FiksGataMi contact address. The intention is to make
6212 sure the municipality send any replies to the person reporting the
6213 problem, while any email delivery problems are sent to us in NUUG.
6214 This work well in most cases, but not for Karmøy municipality using
6215 Zimbra. Karmøy is using the vacation message function in Zimbra to
6216 send an automatic reply to report that the message has been received,
6217 and this message is sent to the envelope sender and not the address in
6218 the From: header.&lt;/p&gt;
6219
6220 &lt;p&gt;This causes the automatic message from Karmøy to go to NUUGs
6221 request-tracker instance instead of to the person reporting the
6222 problem. We can not really change the envelope sender address, as
6223 this would make it impossible for us to discover when there are
6224 problems with the MTAs receiving problem reports. We have been in
6225 contact with the people at Karmøy municipality, and they are willing
6226 to adjust Zimbra if something can be changed there to get a better
6227 behaviour.&lt;/p&gt;
6228
6229 &lt;p&gt;The default behaviour of Zimbra is as far as I can tell according
6230 to the specification in RFC 3834, which recommend that vacation
6231 messages are sent to the envelope sender and not to the From: address.
6232 But I wonder if it is possible to adjust or configure Zimbra to behave
6233 differently. Anyone know? Please let us know at
6234 &lt;a href=&quot;http://lists.nuug.no/mailman/listinfo/fiksgatami&quot;&gt;fiksgatami
6235 (at) nuug.no&lt;/a&gt;.&lt;/p&gt;
6236 </description>
6237 </item>
6238
6239 <item>
6240 <title>Debian Edu interview: José Luis Redrejo Rodríguez</title>
6241 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Jos__Luis_Redrejo_Rodr_guez.html</link>
6242 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Jos__Luis_Redrejo_Rodr_guez.html</guid>
6243 <pubDate>Tue, 26 Jun 2012 08:30:00 +0200</pubDate>
6244 <description>&lt;p&gt;I&#39;ve been too busy at home, but finally I found time to wrap up
6245 another interview with the people behind
6246 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;.
6247 This time we get to know José Luis Redrejo Rodríguez, one of our great
6248 helpers from Spain. His effort was the reason we added support for
6249 several desktop types (KDE, Gnome and most recently LXDE) in Debian
6250 Edu, and have all of these available in the recently published
6251 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.html&quot;&gt;Debian Edu
6252 Squeeze&lt;/a&gt; version.&lt;/p&gt;
6253
6254 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
6255
6256 &lt;p&gt;I&#39;m a father, teacher and engineer who is working for the Education
6257 ministry of the Region of Extremadura (Spain) in the implementation of
6258 ICT in schools&lt;/p&gt;
6259
6260 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
6261 project?&lt;/strong&gt;&lt;/p&gt;
6262
6263 &lt;p&gt;At 2006, I verified that both, we in Extremadura and Skolelinux
6264 project, had been working in parallel for some years, doing very
6265 similar things, using very similar tools and with similar targets, so
6266 I decided it was time to join forces as much as possible.&lt;/p&gt;
6267
6268 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
6269 Edu?&lt;/strong&gt;&lt;/p&gt;
6270
6271 &lt;p&gt;A community of highly skilled experts working together, with a
6272 really open schema of collaboration and work. I really love the
6273 concepts of Do-ocracy and Merit-ocracy and the way these concepts are
6274 been used everyday inside Debian Edu.&lt;/p&gt;
6275
6276 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
6277 Edu?&lt;/strong&gt;&lt;/p&gt;
6278
6279 &lt;p&gt;Sometimes the differences in the implementations, laws or
6280 economical and technical resources in the different countries don&#39;t
6281 allow us to agree in the same solution for all of us, and several
6282 approaches are needed, what is a waste of effort. Also, there is a
6283 lack of more man power to be able to follow the fast evolution of the
6284 technologies in school.&lt;/p&gt;
6285
6286 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
6287
6288 &lt;p&gt;Debian, of course, and due to my kind of job I am most of my time
6289 between Iceweasel, &lt;a href=&quot;http://www.geany.org/&quot;&gt;Geany&lt;/a&gt; and
6290 &lt;a href=&quot;http://www.ohloh.net/p/gnome-terminator&quot;&gt;Terminator&lt;/a&gt;.&lt;/p&gt;
6291
6292 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
6293 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
6294
6295 &lt;p&gt;I think there is not a single strategy because there are very
6296 different scenarios: schools with mixed proprietary and free
6297 environments, schools using only workstations, other schools using
6298 laptops, netbooks, tablets, interactive white-boards, etc.&lt;/p&gt;
6299
6300 &lt;p&gt;Also the range of ages of the students is very broad and you can
6301 not use the same solutions for primary schools and secondary or even
6302 universities. So different strategies are needed.&lt;/p&gt;
6303
6304 &lt;p&gt;But, looking at these differences, and looking back to the things
6305 we&#39;ve done and implemented, and the places were we have spent most of
6306 our forces, I think we should focus as much as possible in free
6307 multi-platform environments, using only standards tools, and moving
6308 more and more to Internet or network solutions that could be deployed
6309 using wireless. I think we&#39;ll see more and more personal devices in
6310 the schools, devices the students and teachers will take home with
6311 them, so the solutions must be able to be taken at home and continue
6312 working there.&lt;/p&gt;
6313 </description>
6314 </item>
6315
6316 <item>
6317 <title>Song book for Computer Scientists</title>
6318 <link>http://people.skolelinux.org/pere/blog/Song_book_for_Computer_Scientists.html</link>
6319 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Song_book_for_Computer_Scientists.html</guid>
6320 <pubDate>Sun, 24 Jun 2012 13:30:00 +0200</pubDate>
6321 <description>&lt;p&gt;Many years ago, while studying Computer Science at the
6322 &lt;a href=&quot;http://www.uit.no/&quot;&gt;University of Tromsø&lt;/a&gt;, I started
6323 collecting computer related songs for use at parties. The original
6324 version was written in LaTeX, but a few years ago I got help from
6325 Håkon W. Lie, one of the inventors of W3C CSS, to convert it to HTML
6326 while keeping the ability to create a nice book in PDF format. I have
6327 not had time to maintain the book for a while now, and guess I should
6328 put it up on some public version control repository where others can
6329 help me extend and update the book. If anyone is volunteering to help
6330 me with this, send me an email. Also let me know if there are songs
6331 missing in my book.&lt;/p&gt;
6332
6333 &lt;p&gt;I have not mentioned the book on my blog so far, and it occured to
6334 me today that I really should let all my readers share the joys of
6335 singing out load about programming, computers and computer networks.
6336 Especially now that &lt;a href=&quot;http://debconf12.debconf.org/&quot;&gt;Debconf
6337 12&lt;/a&gt; is about to start (and I am not going). Want to sing? Check
6338 out &lt;a href=&quot;http://www.hungry.com/~pere/cs-songbook/&quot;&gt;Petter&#39;s
6339 Computer Science Songbook&lt;/a&gt;.
6340 </description>
6341 </item>
6342
6343 <item>
6344 <title>Debian Edu - some ideas for the future versions</title>
6345 <link>http://people.skolelinux.org/pere/blog/Debian_Edu___some_ideas_for_the_future_versions.html</link>
6346 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu___some_ideas_for_the_future_versions.html</guid>
6347 <pubDate>Mon, 11 Jun 2012 14:30:00 +0200</pubDate>
6348 <description>&lt;p&gt;During my work on
6349 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.nb.html&quot;&gt;Debian Edu
6350 based on Squeeze&lt;/a&gt;, I came across some issues that should be
6351 addressed in the Wheezy release. I finally found time to wrap up my
6352 notes and provide quick summary of what I found, with a bit
6353 explanation.&lt;/p&gt;
6354
6355 &lt;p&gt;&lt;ul&gt;
6356
6357 &lt;li&gt;We need to rewrite our package installation framework, as tasksel
6358 changed from using tasksel tasks to using meta packages (aka packages
6359 with dependencies like our education-* packages), and our installation
6360 system depend on tasksel tasks in
6361 /usr/share/tasksel/debian-edu-tasks.desc for package
6362 installation.&lt;/li&gt;
6363
6364 &lt;li&gt;Enable Kerberos login for more services. Now with the Kerberos
6365 foundation in place, we should use it to get single sign on with more
6366 services, and avoiding unneeded password / login questions. We should
6367 at least try to enable it for these services:
6368 &lt;ul&gt;
6369
6370 &lt;li&gt;CUPS for admins to add/configure printers and users when using
6371 quotas.&lt;/li&gt;
6372 &lt;li&gt;Nagios for admins checking the system status.&lt;/li&gt;
6373 &lt;li&gt;GOsa for admins updating LDAP and users changing their passwords.&lt;/li&gt;
6374 &lt;li&gt;LDAP for admins updating LDAP.&lt;/li&gt;
6375 &lt;li&gt;Squid for users when exam mode / filtering is active.&lt;/li&gt;
6376 &lt;li&gt;ssh for admins and users to save a password prompt.&lt;/li&gt;
6377
6378 &lt;/ul&gt;&lt;/li&gt;
6379
6380 &lt;li&gt;When we move GOsa to use Kerberos instead of LDAP bind to
6381 authenticate users, we should try to block or at least limit access to
6382 use LDAP bind for authentication, to ensure Kerberos is used when it
6383 is intended, and nothing fall back to using the less safe LDAP bind&lt;/li&gt;
6384
6385 &lt;li&gt;Merge debian-edu-config and debian-edu-install. The split made
6386 sense when d-e-install did a lot more, but these days it is just an
6387 inconvenience when we update the debconf preseeding values.&lt;/li&gt;
6388
6389 &lt;li&gt;Fix partman-auto to allow us to abort the installation before
6390 touching the disk if the disk is too small. This is
6391 &lt;a href=&quot;http://bugs.debian.org/653305&quot;&gt;BTS report #653305&lt;/a&gt; and the
6392 d-i developers are fine with the patch and someone just need to apply
6393 it and upload. After this is done we need to adjust
6394 debian-edu-install to use this new hook.&lt;/li&gt;
6395
6396 &lt;li&gt;Adjust to new LTSP framework (boot time config instead of install
6397 time config). LTSP changed its design, and our hooks to install
6398 packages and update the configuration is most likely not going to work
6399 in Wheezy.
6400
6401 &lt;li&gt;Consider switching to NBD instead of NFS for LTSP root, to allow
6402 the Kernel to cache files in its normal file cache, possibly speeding
6403 up KDE login on slow networks.&lt;/li&gt;
6404
6405 &lt;li&gt;Make it possible to create expired user passwords that need to
6406 change on first login. This is useful when handing out password on
6407 paper, to make sure only the user know the password. This require
6408 fixes to the PAM handling of kdm and gdm.&lt;/li&gt;
6409
6410 &lt;li&gt;Make GUI for adding new machines automatically from sitesummary.
6411 The current command line script is not very friendly to people most
6412 familiar with GUIs. This should probably be integrated into GOsa to
6413 have it available where the admin will be looking for it..&lt;/li&gt;
6414
6415 &lt;li&gt;We should find way for Nagios to check that the DHCP service
6416 actually is working (as in handling out IP addresses). None of the
6417 Nagios checks I have found so far have been working for me.&lt;/li&gt;
6418
6419 &lt;li&gt;We should switch from libpam-nss-ldapd to sssd for all profiles
6420 using LDAP, and not only on for roaming workstations, to have less
6421 packages to configure and consistent setup across all profiles.&lt;/li&gt;
6422
6423 &lt;li&gt;We should configure Kerberos to update LDAP and Samba password
6424 when changing password using the Kerberos protocol. The hook was
6425 requested in &lt;a href=&quot;http://bugs.debian.org/588968&quot;&gt;BTS report
6426 #588968&lt;/a&gt; and is now available in Wheezy. We might need to write a
6427 MIT Kerberos plugin in C to get this.&lt;/li&gt;
6428
6429 &lt;li&gt;We should clean up the set of applications installed by default.
6430 &lt;ul&gt;
6431
6432 &lt;li&gt;reduce the number of chemistry visualisers&lt;/li&gt;
6433 &lt;li&gt;consider dropping xpaint&lt;/li&gt;
6434 &lt;li&gt;and probably more?&lt;/li&gt;
6435 &lt;/ul&gt;&lt;/li&gt;
6436
6437 &lt;li&gt;Some hardware need external firmware to work properly. This is
6438 mostly the case for WiFi network cards, but there are some other
6439 examples too. For popular laptops to work out of the box, such
6440 firmware need to be installed from non-free, and we should provide
6441 some GUI to do this. Ubuntu already have this implemented, and we
6442 could consider using their packages. At the moment we have some
6443 command line script to do this (one for the running system, another
6444 for the LTSP chroot).&lt;/li&gt;
6445
6446
6447 &lt;li&gt;In Squeeze, we provide KDE, Gnome and LXDE as desktop options. We
6448 should extend the list to Xfce and Sugar, and preferably find a way to
6449 install several and allow the admin or the user to select which one to
6450 use.&lt;/li&gt;
6451
6452 &lt;li&gt;The golearn tool from the goplay package make it easy to check out
6453 interesting educational packages. We should work on the package
6454 tagging in Debian to ensure it represent all the useful educational
6455 packages, and extend the tool to allow it to use packagekit to install
6456 new applications with a simple mouse click.&lt;/li&gt;
6457
6458 &lt;li&gt;The Squeeze version got half a exam solution already in place,
6459 with the introduction of iptable based network blocking, but for it to
6460 be a complete exam solution the Squid proxy need to enable
6461 filtering/blocking as well when the exam mode is enabled. We should
6462 implement a way to easily enable this for the schools that want it,
6463 instead of the &quot;it is documented&quot; method of today.&lt;/li&gt;
6464
6465 &lt;li&gt;A feature used in several schools is the ability for a teacher to
6466 &quot;take over&quot; the desktop of individual or all computers in the room.
6467 There are at least three implementations,
6468 &lt;a href=&quot;italc.sourceforge.net/&quot;&gt;italc&lt;/a&gt;,
6469 &lt;a href=&quot;http://www.itais.net/help/en/&quot;&gt;controlaula&lt;/a&gt; og
6470 &lt;a href=&quot;http://www.epoptes.org/&quot;&gt;epoptes&lt;/a&gt; and we should pick one of
6471 them and make it trivial to set it up in a school. The challenges is
6472 how to distribute crypto keys and how to group computers in one room
6473 and how to set up which machine/user can control the machines in a
6474 given room.&lt;/li&gt;
6475
6476 &lt;li&gt;Tablets and surf boards are getting more and more popular, and we
6477 should look into providing a good solution for integrating these into
6478 the Debian Edu network. Not quite sure how. Perhaps we should
6479 provide a installation profile with better touch screen support for
6480 them, or add some sync services to allow them to exchange
6481 configuration and data with the central server. This should be
6482 investigated.&lt;/li&gt;
6483
6484 &lt;/ul&gt;&lt;/p&gt;
6485
6486 &lt;p&gt;I guess we will discover more as we continue to work on the Wheezy
6487 version.&lt;/p&gt;
6488 </description>
6489 </item>
6490
6491 <item>
6492 <title>TV with face recognition, for improved viewer experience</title>
6493 <link>http://people.skolelinux.org/pere/blog/TV_with_face_recognition__for_improved_viewer_experience.html</link>
6494 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/TV_with_face_recognition__for_improved_viewer_experience.html</guid>
6495 <pubDate>Sat, 9 Jun 2012 22:00:00 +0200</pubDate>
6496 <description>&lt;p&gt;Slashdot got a story about Intel planning a
6497 &lt;a href=&quot;http://entertainment.slashdot.org/story/12/06/09/0012247/intel-to-launch-tv-service-with-facial-recognition-by-end-of-the-year&quot;&gt;TV
6498 with face recognition&lt;/a&gt; to recognise the viewer, and it occurred to
6499 me that it would be more interesting to turn it around, and do face
6500 recognition on the TV image itself. It could let the viewer know who
6501 is present on the screen, and perhaps look up their credibility,
6502 company affiliation, previous appearances etc for the viewer to better
6503 evaluate what is being said and done. That would be a feature I would
6504 be willing to pay for.&lt;/p&gt;
6505
6506 &lt;p&gt;I would not be willing to pay for a TV that point a camera on my
6507 household, like the big brother feature apparently proposed by Intel.
6508 It is the telescreen idea fetched straight out of the book
6509 &lt;a href=&quot;http://gutenberg.net.au/ebooks01/0100021.txt&quot;&gt;1984 by George
6510 Orwell&lt;/a&gt;.&lt;/p&gt;
6511 </description>
6512 </item>
6513
6514 <item>
6515 <title>Web service to look up HP and Dell computer hardware support status</title>
6516 <link>http://people.skolelinux.org/pere/blog/Web_service_to_look_up_HP_and_Dell_computer_hardware_support_status.html</link>
6517 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Web_service_to_look_up_HP_and_Dell_computer_hardware_support_status.html</guid>
6518 <pubDate>Wed, 6 Jun 2012 23:15:00 +0200</pubDate>
6519 <description>&lt;p&gt;A few days ago
6520 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/SOAP_based_webservice_from_Dell_to_check_server_support_status.html&quot;&gt;I
6521 reported how to get&lt;/a&gt; the support status out of Dell using an
6522 unofficial and undocumented SOAP API, which I since have found out was
6523 &lt;a href=&quot;http://lists.us.dell.com/pipermail/linux-poweredge/2012-February/045959.html&quot;&gt;discovered
6524 by Daniel De Marco in february&lt;/a&gt;. Combined with my web scraping
6525 code for HP, Dell and IBM
6526 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Checking_server_hardware_support_status_for_Dell__HP_and_IBM_servers.html&quot;&gt;from
6527 2009&lt;/a&gt;, I got inspired and wrote
6528 &lt;a href=&quot;https://views.scraperwiki.com/run/computer-hardware-support-status/&quot;&gt;a
6529 web service&lt;/a&gt; based on Scraperwiki to make it easy to look up the
6530 support status and get a machine readable result back.&lt;/p&gt;
6531
6532 &lt;p&gt;This is what it look like at the moment when asking for the JSON
6533 output:
6534
6535 &lt;blockquote&gt;&lt;pre&gt;
6536 % GET &lt;a href=&quot;https://views.scraperwiki.com/run/computer-hardware-support-status/?format=json&amp;vendor=Dell&amp;servicetag=2v1xwn1&quot;&gt;https://views.scraperwiki.com/run/computer-hardware-support-status/?format=json&amp;vendor=Dell&amp;servicetag=2v1xwn1&lt;/a&gt;
6537 supportstatus({&quot;servicetag&quot;: &quot;2v1xwn1&quot;, &quot;warrantyend&quot;: &quot;2013-11-24&quot;, &quot;shipped&quot;: &quot;2010-11-24&quot;, &quot;scrapestamputc&quot;: &quot;2012-06-06T20:26:56.965847&quot;, &quot;scrapedurl&quot;: &quot;http://143.166.84.118/services/assetservice.asmx?WSDL&quot;, &quot;vendor&quot;: &quot;Dell&quot;, &quot;productid&quot;: &quot;&quot;})
6538 %
6539 &lt;/pre&gt;&lt;/blockquote&gt;
6540
6541 &lt;p&gt;It currently support Dell and HP, and I am hoping for help to add
6542 support for other vendors. The python source is available on
6543 Scraperwiki and I welcome help with adding more features.&lt;/p&gt;
6544 </description>
6545 </item>
6546
6547 <item>
6548 <title>Debian Edu interview: Mike Gabriel</title>
6549 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Mike_Gabriel.html</link>
6550 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Mike_Gabriel.html</guid>
6551 <pubDate>Sat, 2 Jun 2012 15:00:00 +0200</pubDate>
6552 <description>&lt;p&gt;Back in 2010, Mike Gabriel showed up on the
6553 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
6554 mailing list. He quickly proved to be a valuable developer, and
6555 thanks to his tireless effort we now have Kerberos integrated into the
6556 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.html&quot;&gt;Debian Edu
6557 Squeeze&lt;/a&gt; version.&lt;/p&gt;
6558
6559 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
6560
6561 &lt;p&gt;My name is Mike Gabriel, I am 38 years old and live near Kiel,
6562 Schleswig-Holstein, Germany. I live together with a wonderful partner
6563 (Angela Fuß) and two own children and two bonus children (contributed
6564 by Angela).&lt;/p&gt;
6565
6566 &lt;p&gt;During the day I am part-time employed as a system administrator
6567 and part-time working as an IT consultant. The consultancy work
6568 touches free software topics wherever and whenever possible. During
6569 the nights I am a free software developer. In the gaps I also train in
6570 becoming an osteopath.&lt;/p&gt;
6571
6572 &lt;p&gt;Starting in 2010 we (Andreas Buchholz, Angela Fuß, Mike Gabriel)
6573 have set up a free software project in the area of Kiel that aims at
6574 introducing free software into schools. The project&#39;s name is
6575 &quot;IT-Zukunft Schule&quot; (IT future for schools). The project links IT
6576 skills with communication skills.&lt;/p&gt;
6577
6578 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
6579 project?&lt;/strong&gt;&lt;/p&gt;
6580
6581 &lt;p&gt;While preparing our own customised Linux distribution for
6582 &quot;IT-Zukunft Schule&quot; we were repeatedly asked if we really wanted to
6583 reinvent the wheel. What schools really need is already available,
6584 people said. From this impulse we started evaluating other Linux
6585 distributions that target being used for school networks.&lt;/p&gt;
6586
6587 &lt;p&gt;At the end we short-listed two approaches and compared them: a
6588 commercial Linux distribution developed by a company in Bremen,
6589 Germany, and Skolelinux / Debian Edu. Between 12/2010 and 03/2011 we
6590 went to several events and met people being responsible for marketing
6591 and development of either of the distributions. Skolelinux / Debian
6592 Edu was by far much more convincing compared to the other product that
6593 got short-listed beforehand--across the full spectrum. What was most
6594 attractive for me personally: the perspective of collaboration within
6595 the developmental branch of the Debian Edu project itself.&lt;/p&gt;
6596
6597 &lt;p&gt;In parallel with this, we talked to many local and not-so-local
6598 people. People teaching at schools, headmasters, politicians, data
6599 protection experts, other IT professionals.&lt;/p&gt;
6600
6601 &lt;p&gt;We came to two conclusions:&lt;/p&gt;
6602
6603 &lt;p&gt;First, a technical conclusion: What schools need is available in
6604 bits and pieces here and there, and none of the solutions really fit
6605 by 100%. Any school we have seen has a very individual IT setup
6606 whereas most of each school&#39;s requirements could mapped by a standard
6607 IT solution. The requirement to this IT solution is flexibility and
6608 customisability, so that individual adaptations here and there are
6609 possible. In terms of re-distributing and rolling out such a
6610 standardised IT system for schools (a system that is still to some
6611 degree customisable) there is still a lot of work to do here
6612 locally. Debian Edu / Skolelinux has been our choice as the starting
6613 point.&lt;/p&gt;
6614
6615 &lt;p&gt;Second, a holistic conclusion: What schools need does not exist at
6616 all (or we missed it so far). There are several technical solutions
6617 for handling IT at schools that tend to make a good impression. What
6618 has been missing completely here in Germany, though, is the enrolment
6619 of people into using IT and teaching with IT. &quot;IT-Zukunft Schule&quot;
6620 tries to provide an approach for this.&lt;/p&gt;
6621
6622 &lt;p&gt;Only some schools have some sort of a media concept which explains,
6623 defines and gives guidance on how to use IT in class. Most schools in
6624 Northern Germany do not have an IT service provider, the school&#39;s IT
6625 equipment is managed by one or (if the school is lucky) two (admin)
6626 teachers, most of the workload these admin teachers get done in there
6627 spare time.&lt;/p&gt;
6628
6629 &lt;p&gt;We were surprised that only a very few admin teachers were
6630 networked with colleagues from other schools. Basically, every school
6631 here around has its individual approach of providing IT equipment to
6632 teachers and students and the exchange of ideas has been quasi
6633 non-existent until 2010/2011.&lt;/p&gt;
6634
6635 &lt;p&gt;Quite some (non-admin) teachers try to avoid using IT technology in
6636 class as a learning medium completely. Several reasons for this
6637 avoidance do exist.&lt;/p&gt;
6638
6639 &lt;p&gt;We discovered that no-one has ever taken a closer look at this
6640 social part of IT management in schools, so far. On our quest journey
6641 for a technical IT solution for schools, we discussed this issue with
6642 several teachers, headmasters, politicians, other IT professionals and
6643 they all confirmed: a holistic approach of considering IT management
6644 at schools, an approach that includes the people in place, will be new
6645 and probably a gain for all.&lt;/p&gt;
6646
6647 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
6648 Edu?&lt;/strong&gt;&lt;/p&gt;
6649
6650 &lt;p&gt;There is a list of advantages: international context, openness to
6651 any kind of contributions, do-ocracy policy, the closeness to Debian,
6652 the different installation scenarios possible (from stand-alone
6653 workstation to complex multi-server sites), the transparency within
6654 project communication, honest communication within the group of
6655 developers, etc.&lt;/p&gt;
6656
6657 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
6658 Edu?&lt;/strong&gt;&lt;/p&gt;
6659
6660 &lt;p&gt;Every coin has two sides:&lt;/p&gt;
6661
6662 &lt;p&gt;Technically: &lt;a href=&quot;http://bugs.debian.org/311188&quot;&gt;BTS issue
6663 #311188&lt;/a&gt;, tricky upgradability of a Debian Edu main server, network
6664 client installations on top of a plain vanilla Debian installation
6665 should become possible sometime in the near future, one could think
6666 about splitting the very complex package debian-edu-config into
6667 several portions (to make it easier for new developers to
6668 contribute).&lt;/p&gt;
6669
6670 &lt;p&gt;Another issue I see is that we (as Debian Edu developers) should
6671 find out more about the network of people who do the marketing for
6672 Debian Edu / Skolelinux. There is a very active group in Germany
6673 promoting Skolelinux on the bigger Linux Days within Germany. Are
6674 there other groups like that in other countries? How can we bring
6675 these marketing people together (marketing group A with group B and
6676 all of them with the group of Debian Edu developers)? During the last
6677 meeting of the German Skolelinux group, I got the impression of people
6678 there being rather disconnected from the development department of
6679 Debian Edu / Skolelinux.&lt;/p&gt;
6680
6681 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
6682
6683 &lt;p&gt;For my daily business, I do not use commercial software at all.&lt;/p&gt;
6684
6685 &lt;p&gt;For normal stuff I use Iceweasel/Firefox, Libreoffice.org. For
6686 serious text writing I prefer LaTeX. I use gimp, inkscape, scribus for
6687 more artistic tasks. I run virtual machines in KVM and Virtualbox.&lt;/p&gt;
6688
6689 &lt;p&gt;I am one of the upstream developers of X2Go. In 2010 I started the
6690 development of a Python based X2Go Client, called PyHoca-GUI.
6691 PyHoca-GUI has brought forth a Python X2Go Client API that currently
6692 is being integrated in Ubuntu&#39;s software center.&lt;/p&gt;
6693
6694 &lt;p&gt;For communications I have my own Kolab server running using Horde
6695 as web-based groupware client. For IRC I love to use irssi, for Jabber
6696 I have several clients that I use, mostly pidgin, though. I am also
6697 the Debian maintainer of Coccinella, a Jabber-based interactive
6698 whiteboard.&lt;/p&gt;
6699
6700 &lt;p&gt;My favourite terminal emulator is KDE&#39;s Yakuake.&lt;/p&gt;
6701
6702 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
6703 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
6704
6705 &lt;p&gt;Communicate, communicate, communicate. Enrol people, enrol people,
6706 enrol people.&lt;/p&gt;
6707 </description>
6708 </item>
6709
6710 <item>
6711 <title>SOAP based webservice from Dell to check server support status</title>
6712 <link>http://people.skolelinux.org/pere/blog/SOAP_based_webservice_from_Dell_to_check_server_support_status.html</link>
6713 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/SOAP_based_webservice_from_Dell_to_check_server_support_status.html</guid>
6714 <pubDate>Fri, 1 Jun 2012 15:20:00 +0200</pubDate>
6715 <description>&lt;p&gt;A few years ago I wrote
6716 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Checking_server_hardware_support_status_for_Dell__HP_and_IBM_servers.html&quot;&gt;how
6717 to extract support status&lt;/a&gt; for your Dell and HP servers. Recently
6718 I have learned from colleges here at the
6719 &lt;a href=&quot;http://www.uio.no/&quot;&gt;University of Oslo&lt;/a&gt; that Dell have
6720 made this even easier, by providing a SOAP based web service. Given
6721 the service tag, one can now query the Dell servers and get machine
6722 readable information about the support status. This perl code
6723 demonstrate how to do it:&lt;/p&gt;
6724
6725 &lt;p&gt;&lt;pre&gt;
6726 use strict;
6727 use warnings;
6728 use SOAP::Lite;
6729 use Data::Dumper;
6730 my $GUID = &#39;11111111-1111-1111-1111-111111111111&#39;;
6731 my $App = &#39;test&#39;;
6732 my $servicetag = $ARGV[0] or die &quot;Please supply a servicetag. $!\n&quot;;
6733 my ($deal, $latest, @dates);
6734 my $s = SOAP::Lite
6735 -&gt; uri(&#39;http://support.dell.com/WebServices/&#39;)
6736 -&gt; on_action( sub { join &#39;&#39;, @_ } )
6737 -&gt; proxy(&#39;http://xserv.dell.com/services/assetservice.asmx&#39;)
6738 ;
6739 my $a = $s-&gt;GetAssetInformation(
6740 SOAP::Data-&gt;name(&#39;guid&#39;)-&gt;value($GUID)-&gt;type(&#39;&#39;),
6741 SOAP::Data-&gt;name(&#39;applicationName&#39;)-&gt;value($App)-&gt;type(&#39;&#39;),
6742 SOAP::Data-&gt;name(&#39;serviceTags&#39;)-&gt;value($servicetag)-&gt;type(&#39;&#39;),
6743 );
6744 print Dumper($a -&gt; result) ;
6745 &lt;/pre&gt;&lt;/p&gt;
6746
6747 &lt;p&gt;The output can look like this:&lt;/p&gt;
6748
6749 &lt;p&gt;&lt;pre&gt;
6750 $VAR1 = {
6751 &#39;Asset&#39; =&gt; {
6752 &#39;Entitlements&#39; =&gt; {
6753 &#39;EntitlementData&#39; =&gt; [
6754 {
6755 &#39;EntitlementType&#39; =&gt; &#39;Expired&#39;,
6756 &#39;EndDate&#39; =&gt; &#39;2009-07-29T00:00:00&#39;,
6757 &#39;Provider&#39; =&gt; &#39;&#39;,
6758 &#39;StartDate&#39; =&gt; &#39;2006-07-29T00:00:00&#39;,
6759 &#39;DaysLeft&#39; =&gt; &#39;0&#39;
6760 },
6761 {
6762 &#39;EntitlementType&#39; =&gt; &#39;Expired&#39;,
6763 &#39;EndDate&#39; =&gt; &#39;2009-07-29T00:00:00&#39;,
6764 &#39;Provider&#39; =&gt; &#39;&#39;,
6765 &#39;StartDate&#39; =&gt; &#39;2006-07-29T00:00:00&#39;,
6766 &#39;DaysLeft&#39; =&gt; &#39;0&#39;
6767 },
6768 {
6769 &#39;EntitlementType&#39; =&gt; &#39;Expired&#39;,
6770 &#39;EndDate&#39; =&gt; &#39;2007-07-29T00:00:00&#39;,
6771 &#39;Provider&#39; =&gt; &#39;&#39;,
6772 &#39;StartDate&#39; =&gt; &#39;2006-07-29T00:00:00&#39;,
6773 &#39;DaysLeft&#39; =&gt; &#39;0&#39;
6774 }
6775 ]
6776 },
6777 &#39;AssetHeaderData&#39; =&gt; {
6778 &#39;SystemModel&#39; =&gt; &#39;GX620&#39;,
6779 &#39;ServiceTag&#39; =&gt; &#39;8DSGD2J&#39;,
6780 &#39;SystemShipDate&#39; =&gt; &#39;2006-07-29T19:00:00-05:00&#39;,
6781 &#39;Buid&#39; =&gt; &#39;2323&#39;,
6782 &#39;Region&#39; =&gt; &#39;Europe&#39;,
6783 &#39;SystemID&#39; =&gt; &#39;PLX_GX620&#39;,
6784 &#39;SystemType&#39; =&gt; &#39;OptiPlex&#39;
6785 }
6786 }
6787 };
6788 &lt;/pre&gt;&lt;/p&gt;
6789
6790 &lt;p&gt;I have not been able to find any documentation from Dell about this
6791 service outside the
6792 &lt;a href=&quot;http://xserv.dell.com/services/assetservice.asmx?op=GetAssetInformation&quot;&gt;inline
6793 documentation&lt;/a&gt;, and according to
6794 &lt;a href=&quot;http://iboyd.net/index.php/2012/02/14/updated-dell-warranty-information-script/&quot;&gt;one
6795 comment&lt;/a&gt; it can have stability issues, but it is a lot better than
6796 scraping HTML pages. :)&lt;/p&gt;
6797
6798 &lt;p&gt;Wonder if HP and other server vendors have a similar service. If
6799 you know of one, drop me an email. :)&lt;/p&gt;
6800 </description>
6801 </item>
6802
6803 <item>
6804 <title>First monitor calibration using ColorHug</title>
6805 <link>http://people.skolelinux.org/pere/blog/First_monitor_calibration_using_ColorHug.html</link>
6806 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_monitor_calibration_using_ColorHug.html</guid>
6807 <pubDate>Thu, 31 May 2012 22:10:00 +0200</pubDate>
6808 <description>&lt;p&gt;A few days ago my color calibration gadget
6809 &lt;a href=&quot;http://www.hughski.com/index.html&quot;&gt;ColorHug&lt;/a&gt; arrived in the
6810 mail, and I&#39;ve had a few days to test it. As all my machines are
6811 running Debian Squeeze, where
6812 &lt;a href=&quot;http://packages.qa.debian.org/c/colorhug-client.html&quot;&gt;the
6813 calibration software&lt;/a&gt; is missing (it is present in Wheezy and Sid),
6814 I ran the calibration using the Fedora based live CD. This worked
6815 just fine. So far I have only done the quick calibration. It was
6816 slow enough for me, so I will leave the more extensive calibration for
6817 another day.&lt;/p&gt;
6818
6819 &lt;p&gt;After calibration, I get a
6820 &lt;a href=&quot;http://en.wikipedia.org/wiki/ICC_profile&quot;&gt;ICC color
6821 profile&lt;/a&gt; file that can be passed to programs understanding such
6822 tools. KDE do not seem to understand it out of the box, so I searched
6823 for command line tools to use to load the color profile into X.
6824 xcalib was the first one I found, and it seem to work fine for single
6825 monitor setups. But for my video player, a laptop with a flat screen
6826 attached, it was unable to load the color profile for the correct
6827 monitor. After searching a bit, I
6828 &lt;a href=&quot;http://ubuntuforums.org/showthread.php?t=1347896&quot;&gt;discovered&lt;/a&gt;
6829 that the dispwin tool from the argyll package would do what I wanted,
6830 and a simple&lt;/p&gt;
6831
6832 &lt;p&gt;&lt;pre&gt;
6833 dispwin -d 1 profile.icc
6834 &lt;/pre&gt;&lt;/p&gt;
6835
6836 &lt;p&gt;later I had the color profile loaded for the correct monitor. The
6837 result was a bit more pink than I expected. I guess I picked the
6838 wrong monitor type for the &quot;led&quot; monitor I got, but the result is good
6839 enough for now.&lt;/p&gt;
6840 </description>
6841 </item>
6842
6843 <item>
6844 <title>Debian Edu interview: Ralf Gesellensetter</title>
6845 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Ralf_Gesellensetter.html</link>
6846 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Ralf_Gesellensetter.html</guid>
6847 <pubDate>Sun, 27 May 2012 17:15:00 +0200</pubDate>
6848 <description>&lt;p&gt;In 2003, a German teacher showed up on the
6849 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
6850 mailing list with interesting problems and reports proving he setting
6851 up Linux for a (for us at the time) lot of pupils. His name was Ralf
6852 Gesellensetter, and he has been an important tester and contributor
6853 since then, helping to make sure the
6854 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.html&quot;&gt;Debian Edu
6855 Squeeze&lt;/a&gt; release became as good as it is..&lt;/p&gt;
6856
6857 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
6858
6859 &lt;p&gt;I am a teacher from Germany, and my subjects are Geography,
6860 Mathematics, and Computer Science (&quot;Informatik&quot;). During the past 12
6861 years (since 2000), I have been working for a comprehensive (and soon,
6862 also inclusive) school leading to all kind of general levels, such as
6863 O- or A-level (&quot;Abitur&quot;). For quite as long, I&#39;ve been taking care of
6864 our computer network.&lt;/p&gt;
6865
6866 &lt;p&gt;Now, in my early 40s, I enjoy the privilege of spending a lot of my
6867 spare time together with my wife, our son (3 years) and our daughter
6868 (4 months).&lt;/p&gt;
6869
6870 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
6871 project?&lt;/strong&gt;&lt;/p&gt;
6872
6873 &lt;p&gt;We had tried different Linux based school servers, when members of
6874 my local Linux User Group (LUG OWL) detected Skolelinux. I remember
6875 very well, being part of a party celebrating the Linux New Media Award
6876 (&quot;Best Newcomer Distribution&quot;, also nominated: Ubuntu) that was given
6877 to Skolelinux at Linux World Exposition in Frankfurt, 2005 (IIRC). Few
6878 months later, I had the chance to join a developer meeting in Ulsrud
6879 (Oslo) and to hand out the award to Knut Yrvin and others. For more
6880 than 7 years, Skolelinux is part of our schools infrastructure, namely
6881 our main server (tjener), one LTSP (today without thin clients), and
6882 approximately 50 work stations. Most of these have the option to boot a
6883 locally installed Skolelinux image. As a consequence, I joined quite
6884 a few events dealing with free software or Linux, and met many Debian
6885 (Edu) developers. All of them seemed quite nice and competent to me,
6886 one more reason to stick to Skolelinux.&lt;/p&gt;
6887
6888 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
6889 Edu?&lt;/strong&gt;&lt;/p&gt;
6890
6891 &lt;p&gt;Debian driven, you are given all the advantages of a community
6892 project including well maintained updates. Once, you are familiar with
6893 the network layout, you can easily roll out an entire educational
6894 computer infrastructure, from just one installation media. As only
6895 free software (FOSS) is used, that supports even elderly hardware,
6896 up-sizing your IT equipment is only limited by space (i.e. available
6897 labs). Especially if you run a LTSP thin client server, your
6898 administration costs tend towards zero.&lt;/p&gt;
6899
6900 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
6901 Edu?&lt;/strong&gt;&lt;/p&gt;
6902
6903 &lt;p&gt;While Debian&#39;s stability has loads of advantages for servers, this
6904 might be different in some cases for clients: Schools with unlimited
6905 budget might buy new hardware with components that are not yet
6906 supported by Debian stable, or wish to use more recent versions of
6907 office packages or desktop environments. These schools have the
6908 option to run Debian testing or other distributions - if they have the
6909 capacity to do so. Another issue is that Debian release cycles
6910 include a wide range of changes; therefor a high percentage of human
6911 power seems to be absorbed by just keeping the features of Skolelinux
6912 within the new setting of the version to come. During this process,
6913 the cogs of Debian Edu are getting more and more professional,
6914 i.e. harder to understand for novices.&lt;/p&gt;
6915
6916 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
6917
6918 &lt;p&gt;LibreOffice, Wikipedia, Openstreetmap, Iceweasel (Mozilla Firefox),
6919 KMail, Gimp, Inkscape - and of course the Linux Kernel (not only on
6920 PC, Laptop, Mobile, but also our SAT receiver)&lt;/p&gt;
6921
6922 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
6923 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
6924
6925 &lt;p&gt;&lt;ol&gt;
6926
6927 &lt;li&gt;Support computer science as regular subject in schools to make
6928 people really &quot;own&quot; their hardware, to make them understand the
6929 difference between proprietary software products, and free software
6930 developing.&lt;/li&gt;
6931
6932 &lt;li&gt;Make budget baskets corresponding: In Germany&#39;s public schools
6933 there are more or less fixed budgets for IT equipment (including
6934 licenses), so schools won&#39;t benefit from any savings here. This
6935 privilege is left to private schools which have consequently a large
6936 share among German Skolelinux schools.&lt;/li&gt;
6937
6938 &lt;li&gt;Get free software in the seminars where would-be teachers are
6939 trained. In many cases, teachers&#39; software customs are respected by
6940 decision makers rather than the expertise of any IT experts.&lt;/li&gt;
6941
6942 &lt;li&gt;Don&#39;t limit ourself to free software run natively. Everybody uses
6943 free software or free licenses (for instance Wikipedia), and this
6944 general concept should get expanded to free educational content to be
6945 shared world wide (school books e.g.).&lt;/li&gt;
6946
6947 &lt;li&gt;Make clear where ever you can that the market share of free (libre)
6948 office suites is much above 20 p.c. today, and that you pupils don&#39;t
6949 need to know the &quot;ribbon menu&quot; in order to get employed.&lt;/li&gt;
6950
6951 &lt;li&gt;Talk about the difference between freeware and free software.&lt;/li&gt;
6952
6953 &lt;li&gt;Spread free software, or even collections of portable free apps
6954 for USB pen drives. Endorse students to get a legal copy of
6955 Libreoffice rather than accepting them to use illegal serials. And
6956 keep sending documents in ODF formats.&lt;/li&gt;
6957
6958 &lt;/ol&gt;&lt;/p&gt;
6959 </description>
6960 </item>
6961
6962 <item>
6963 <title>The cost of ODF and OOXML</title>
6964 <link>http://people.skolelinux.org/pere/blog/The_cost_of_ODF_and_OOXML.html</link>
6965 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_cost_of_ODF_and_OOXML.html</guid>
6966 <pubDate>Sat, 26 May 2012 18:00:00 +0200</pubDate>
6967 <description>&lt;p&gt;I just come across a blog post from Glyn Moody reporting the
6968 claimed cost from Microsoft on requiring ODF to be used by the UK
6969 government. I just sent him an email to let him know that his
6970 assumption are most likely wrong. Sharing it here in case some of my
6971 blog readers have seem the same numbers float around in the UK.&lt;/p&gt;
6972
6973 &lt;p&gt;&lt;blockquote&gt; &lt;p&gt;Hi. I just noted your
6974 &lt;a href=&quot;http://blogs.computerworlduk.com/open-enterprise/2012/04/does-microsoft-office-lock-in-cost-the-uk-government-500-million/index.htm&quot;&gt;http://blogs.computerworlduk.com/open-enterprise/2012/04/does-microsoft-office-lock-in-cost-the-uk-government-500-million/index.htm&lt;/a&gt;
6975 comment:&lt;/p&gt;
6976
6977 &lt;p&gt;&lt;blockquote&gt;&quot;They&#39;re all in Danish, not unreasonably, but even
6978 with the help of Google Translate I can&#39;t find any figures about the
6979 savings of &quot;moving to a flexible two standard&quot; as claimed by the
6980 Microsoft email. But I assume it is backed up somewhere, so let&#39;s take
6981 it, and the £500 million figure for the UK, on trust.&quot;
6982 &lt;/blockquote&gt;&lt;/p&gt;
6983
6984 &lt;p&gt;I can tell you that the Danish reports are inflated. I believe it is
6985 the same reports that were used in the Norwegian debate around 2007,
6986 and Gisle Hannemyr (a well known IT commentator in Norway) had a look
6987 at the content. In short, the reason it is claimed that using ODF
6988 will be so costly, is based on the assumption that this mean every
6989 existing document need to be converted from one of the MS Office
6990 formats to ODF, transferred to the receiver, and converted back from
6991 ODF to one of the MS Office formats, and that the conversion will cost
6992 10 minutes of work time for both the sender and the receiver. In
6993 reality the sender would have a tool capable of saving to ODF, and the
6994 receiver would have a tool capable of reading it, and the time spent
6995 would at most be a few seconds for saving and loading, not 20 minutes
6996 of wasted effort.&lt;/p&gt;
6997
6998 &lt;p&gt;Microsoft claimed all these costs were saved by allowing people to
6999 transfer the original files from MS Office instead of spending 10
7000 minutes converting to ODF. :)&lt;/p&gt;
7001
7002 &lt;p&gt;See
7003 &lt;a href=&quot;http://hannemyr.com/no/ms12_vl02.php&quot;&gt;http://hannemyr.com/no/ms12_vl02.php&lt;/a&gt;
7004 and
7005 &lt;a href=&quot;http://hannemyr.com/no/ms12.php&quot;&gt;http://hannemyr.com/no/ms12.php&lt;/a&gt;
7006 for background information. Norwegian only, sorry. :)&lt;/p&gt;
7007 &lt;/blockquote&gt;&lt;/p&gt;
7008 </description>
7009 </item>
7010
7011 <item>
7012 <title>ColorHug - USB and free software based screen color calibration</title>
7013 <link>http://people.skolelinux.org/pere/blog/ColorHug___USB_and_free_software_based_screen_color_calibration.html</link>
7014 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/ColorHug___USB_and_free_software_based_screen_color_calibration.html</guid>
7015 <pubDate>Fri, 18 May 2012 10:00:00 +0200</pubDate>
7016 <description>&lt;p&gt;In january, I
7017 &lt;a href=&quot;http://blog.cihar.com/archives/2012/01/17/colorhug-has-arrived/&quot;&gt;discovered
7018 the ColorHug&lt;/a&gt;, a USB dongle from
7019 &lt;a href=&quot;http://www.hughski.com/index.html&quot;&gt;Hughski&lt;/a&gt; to calibrate
7020 the color on a computer screen. The software required is
7021 &lt;a href=&quot;http://packages.qa.debian.org/c/colorhug-client.html&quot;&gt;included
7022 in Debian&lt;/a&gt;, and I decided back then to preorder from the next
7023 batch. Yesterday I finally heard back from them, and got the
7024 opportunity to order. Today I ordered mine, and eagerly await the
7025 delivery. I hope it arrive next week, as I got a confirmation that it
7026 should go in the mail on monday. :)&lt;/p&gt;
7027
7028 &lt;p&gt;If you want to ensure the colors on the screen match the intended
7029 colors, I suggest you check out this cheap tool with free software
7030 drivers. :)&lt;/p&gt;
7031 </description>
7032 </item>
7033
7034 <item>
7035 <title>Debian Edu interview: Jürgen Leibner</title>
7036 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__J_rgen_Leibner.html</link>
7037 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__J_rgen_Leibner.html</guid>
7038 <pubDate>Sun, 13 May 2012 20:30:00 +0200</pubDate>
7039 <description>&lt;p&gt;It has been a few busy weeks for me, but I am finally back to
7040 publish another interview with the people behind
7041 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;.
7042 This time it is one of our German developers, who have helped out over the
7043 years to make sure both a lot of major but also a lot of the minor
7044 details get right before release.
7045
7046 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
7047
7048 &lt;p&gt;My name is Jürgen Leibner, I&#39;m 49 years old and living in
7049 Bielefeld, a town in northern Germany. I worked nearly 20 years as
7050 certified engineer in the department for plant design and layout of an
7051 international company for machinery and equipment. Since 2011 I&#39;m a
7052 certified technical writer (tekom e.V.) and doing technical
7053 documentations for a steam turbine manufacturer. From April this year
7054 I will manage the department of technical documentation at a
7055 manufacturer of automation and assembly line engineering.&lt;/p&gt;
7056
7057 &lt;p&gt;My first contact with linux was around 1993. Since that time I used
7058 it at work and at home repeatedly but not exclusively as I do now at
7059 home since 2006.&lt;/p&gt;
7060
7061 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
7062 project?&lt;/strong&gt;&lt;/p&gt;
7063
7064 &lt;p&gt;Once a day in the early year of 2001 when I wanted to fetch my
7065 daughter from primary school, there was a teacher sitting in the
7066 middle of 20 old computers trying to boot them and he failed. I helped
7067 him to get them booting. That was seen by the school director and she
7068 asked me if I would like to manage that the school gets all that old
7069 computers in use. I answered: &quot;Yes&quot;.&lt;/p&gt;
7070
7071 &lt;p&gt;Some weeks later every of the 10 classrooms had one computer
7072 running Windows98. I began to collect old computers and equipment as
7073 gifts and installed the first computer room with a peer-to-peer
7074 network. I did my work at school without being payed in my spare time
7075 and with a lot of fun. About one year later the school was connected
7076 to Internet and a local area network was installed in the school
7077 building. That was the time to have a server and I knew it must be a
7078 Linux server to be able to fulfil all the wishes of the teachers and
7079 being able to do this in a transparent and economic way, without extra
7080 costs for things like licence and software. So I searched for a
7081 school server system running under Linux and I found a couple of
7082 people nearby who founded &#39;skolelinux.de&#39;. It was the Skolelinux
7083 prerelease 32 I first tried out for being used at the school. I
7084 managed the IT of that school until the municipal authority took over
7085 the IT management and centralised the services for all schools in
7086 Bielefeld in December of 2006.&lt;/p&gt;
7087
7088 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
7089 Edu?&lt;/strong&gt;&lt;/p&gt;
7090
7091 &lt;p&gt;When I&#39;m looking back to the beginning, there were other advantages
7092 for me as today.&lt;/p&gt;
7093
7094 &lt;p&gt;In the past there were advantages like:&lt;/p&gt;
7095
7096 &lt;p&gt;&lt;ul&gt;
7097
7098 &lt;li&gt;I don&#39;t need to buy it so it generates no costs to the school as
7099 they had little money to spent for computers and software.&lt;/li&gt;
7100
7101 &lt;li&gt;It has a licence which grands all rights to use it without
7102 cost.&lt;/li&gt;
7103
7104 &lt;li&gt;It was more able to fit all requirements of a server system for
7105 schools than a Microsoft server system, even if there are only Windows
7106 clients because of it&#39;s preconfigured overall concept of being a
7107 infrastructure solution and community for schools, not only a
7108 server&lt;/li&gt;
7109
7110 &lt;li&gt;I was able to configure the server to the needs of the
7111 school.&lt;/li&gt;
7112
7113 &lt;/ul&gt;&lt;/p&gt;
7114
7115 &lt;p&gt;Today some of the advantages has been lost, changed or new ones
7116 came up in this way:&lt;/p&gt;
7117
7118 &lt;p&gt;&lt;ul&gt;
7119
7120 &lt;li&gt;Most schools here do have money to buy hardware and software
7121 now.&lt;/li&gt;
7122
7123 &lt;li&gt;They are today mostly managed from central IT departments which
7124 have own concepts which often do not fit to Debian Edu concepts
7125 because they are to close to Microsoft ideology.&lt;/li&gt;
7126
7127 &lt;li&gt;With the Squeeze version of Debian Edu which now uses GOsa² for
7128 management I feel more able to manage the daily tasks than with the
7129 interfaces used in the past.&lt;/li&gt;
7130
7131 &lt;li&gt;It is more modular than in the past and fits even better to the
7132 different needs.&lt;/li&gt;
7133
7134 &lt;li&gt;The documentation is usable and gets better every day.&lt;/li&gt;
7135
7136 &lt;li&gt;More people than ever before are using Debian Edu all over the
7137 world and so the community, which is an very important part I think,
7138 is sharing knowledge and minds.&lt;/li&gt;
7139
7140 &lt;li&gt;Most, maybe all, of the technical requirements for schools are
7141 solved today by Debian Edu. &lt;/li&gt;
7142
7143 &lt;/ul&gt;&lt;/p&gt;
7144
7145 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
7146 Edu?&lt;/strong&gt;&lt;/p&gt;
7147
7148 &lt;p&gt;&lt;ul&gt;
7149
7150 &lt;li&gt;There are too few IT companies able to integrate Debian Edu into
7151 their product portfolio for serving schools with concepts or even
7152 whole municipality areas.&lt;/li&gt;
7153
7154 &lt;li&gt;Debian Edu has beside other free and open software projects not
7155 enough lobbyists which promote free and open software to
7156 politicians.&lt;/li&gt;
7157
7158 &lt;li&gt;Technically there are no disadvantages I&#39;m aware of.&lt;/li&gt;
7159
7160 &lt;/ul&gt;&lt;/p&gt;
7161
7162 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
7163
7164 &lt;p&gt;I use Debian stable on my home server and on my little desktop
7165 computer. On my laptop I use Debian testing/sid. The applications I
7166 use on my laptop and my desktop are Open/Libre-office, Iceweasel,
7167 KMail, DigiKam, Amarok, Dolphin, okular and all the other programs I
7168 need from the KDE environment. On console I use newsbeuter, mutt,
7169 screen, irssi and all the other famous and useful tools.&lt;/p&gt;
7170
7171 &lt;p&gt;My home server provides mail services with exim, dovecot, roundcube
7172 and mutt over ssh on the console, file services with samba, NFS,
7173 rsync, web services with apache, moinmoin-wiki, multimedia services
7174 with gallery2 and mediatomb and database services with MySQL for me
7175 and the whole family. I probably forgot something.&lt;/p&gt;
7176
7177 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
7178 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
7179
7180 &lt;p&gt;I believe, we should provide concepts for IT companies to integrate
7181 Debian Edu into their product portfolio with use cases for different
7182 countries and areas all over the world.&lt;/p&gt;
7183 </description>
7184 </item>
7185
7186 <item>
7187 <title>Cutting it short - and picking the right tool for the job</title>
7188 <link>http://people.skolelinux.org/pere/blog/Cutting_it_short___and_picking_the_right_tool_for_the_job.html</link>
7189 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Cutting_it_short___and_picking_the_right_tool_for_the_job.html</guid>
7190 <pubDate>Mon, 30 Apr 2012 23:30:00 +0200</pubDate>
7191 <description>&lt;p&gt;&lt;!-- IMG_5869.JPG --&gt;
7192 &lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/panasonic-er-1611.jpeg&quot;&gt;&lt;/p&gt;
7193
7194 &lt;p&gt;I normally cut my hair short, and my tool of choice has been a
7195 common hair/beard cutter, bought in a electrical shop here in Norway.
7196 But the last ones have not really been up to the task. My last
7197 cutter, some model from Braun, could only cut a few of my hairs at the
7198 time, and cutting my head took forever. And the one before that did
7199 not work very well either. We have looked for something better for a
7200 while, but it was not until I ended up visiting a hairdresser that we
7201 discovered that there are indeed better tools available. But these
7202 are not marketed and sold to &quot;regular consumers&quot;. The hair saloons
7203 can get them through their suppliers, but their suppliers only sell
7204 companies. The models they sell, are very different from the ones
7205 available from Elkjøp and Lefdal. The main difference is their
7206 efficiency. It would cut my hair in 5 minutes, instead of the 30-40
7207 minutes required by my impotent Braun. The hairdresser I visited had
7208 a Panasonic ER160, which unfortunately is no longer available from the
7209 producer. But I found it had a successor, the Panasonic ER1611.&lt;/p&gt;
7210
7211 &lt;p&gt;The next step was to find somewhere to buy it. This was not
7212 straight forward. The list of suppliers I got from the hairdresser
7213 did not want to sell anything to me. But searching for the model on
7214 the web we found a supplier in Norway willing to sell it to us for
7215 around NOK 4000,-. This was a bit much. We kept searching and
7216 finally found a Danish supplier
7217 &lt;a href=&quot;http://nicehair.dk/panasonic-er-1611-professionel-hartrimmer.html&quot;&gt;selling
7218 it for around NOK 1800,-&lt;/a&gt;. We ordered one, and it arrived a few
7219 days ago.&lt;/p&gt;
7220
7221 &lt;p&gt;The instructions said it had to charge for 8 hours when we started
7222 to use it, so we left it charging over night. Normally it will only
7223 need one hour to charge. The following evening we successfully tested
7224 it, and I can warmly recommend it to anyone looking for a real hair
7225 cutter. The ones we have used until now have been hair cutter
7226 toys.&lt;/p&gt;
7227 </description>
7228 </item>
7229
7230 <item>
7231 <title>HTC One X - Your video? What do you mean?</title>
7232 <link>http://people.skolelinux.org/pere/blog/HTC_One_X___Your_video___What_do_you_mean_.html</link>
7233 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/HTC_One_X___Your_video___What_do_you_mean_.html</guid>
7234 <pubDate>Thu, 26 Apr 2012 13:20:00 +0200</pubDate>
7235 <description>&lt;p&gt;In &lt;a href=&quot;http://www.idg.no/computerworld/article243690.ece&quot;&gt;an
7236 article today&lt;/a&gt; published by Computerworld Norway, the photographer
7237 &lt;a href=&quot;http://www.urke.com/eirik/&quot;&gt;Eirik Helland Urke&lt;/a&gt; reports
7238 that the video editor application included with
7239 &lt;a href=&quot;http://www.htc.com/www/smartphones/htc-one-x/#specs&quot;&gt;HTC One
7240 X&lt;/a&gt; have some quite surprising terms of use. The article is mostly
7241 based on the twitter message from mister Urke, stating:
7242
7243 &lt;p&gt;&lt;blockquote&gt;
7244 &quot;&lt;a href=&quot;http://twitter.com/urke/status/194062269724897280&quot;&gt;Drøy
7245 brukeravtale: HTC kan bruke MINE redigerte videoer kommersielt. Selv
7246 kan jeg KUN bruke dem privat.&lt;/a&gt;&quot;
7247 &lt;/blockquote&gt;&lt;/p&gt;
7248
7249 &lt;p&gt;I quickly translated it to this English message:&lt;/p&gt;
7250
7251 &lt;p&gt;&lt;blockquote&gt;
7252 &quot;Arrogant user agreement: HTC can use MY edited videos
7253 commercially. Although I can ONLY use them privately.&quot;
7254 &lt;/blockquote&gt;&lt;/p&gt;
7255
7256 &lt;p&gt;I&#39;ve been unable to find the text of the license term myself, but
7257 suspect it is a variation of the MPEG-LA terms I
7258 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html&quot;&gt;discovered
7259 with my Canon IXUS 130&lt;/a&gt;. The HTC One X specification specifies that
7260 the recording format of the phone is .amr for audio and .mp3 for
7261 video. AMR is
7262 &lt;a href=&quot;http://en.wikipedia.org/wiki/Adaptive_Multi-Rate_audio_codec#Licensing_and_patent_issues&quot;&gt;Adaptive
7263 Multi-Rate audio codec&lt;/a&gt; with patents which according to the
7264 Wikipedia article require an license agreement with
7265 &lt;a href=&quot;http://www.voiceage.com/&quot;&gt;VoiceAge&lt;/a&gt;. MP4 is
7266 &lt;a href=&quot;http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC#Patent_licensing&quot;&gt;MPEG4 with
7267 H.264&lt;/a&gt;, which according to Wikipedia require a licence agreement
7268 with &lt;a href=&quot;http://www.mpegla.com/&quot;&gt;MPEG-LA&lt;/a&gt;.&lt;/p&gt;
7269
7270 &lt;p&gt;I know why I prefer
7271 &lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;free and open
7272 standards&lt;/a&gt; also for video.&lt;/p&gt;
7273 </description>
7274 </item>
7275
7276 <item>
7277 <title>RAND terms - non-reasonable and discriminatory</title>
7278 <link>http://people.skolelinux.org/pere/blog/RAND_terms___non_reasonable_and_discriminatory.html</link>
7279 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/RAND_terms___non_reasonable_and_discriminatory.html</guid>
7280 <pubDate>Thu, 19 Apr 2012 22:20:00 +0200</pubDate>
7281 <description>&lt;p&gt;Here in Norway, the
7282 &lt;a href=&quot;http://www.regjeringen.no/nb/dep/fad.html?id=339&quot;&gt; Ministry of
7283 Government Administration, Reform and Church Affairs&lt;/a&gt; is behind
7284 a &lt;a href=&quot;http://standard.difi.no/forvaltningsstandarder&quot;&gt;directory of
7285 standards&lt;/a&gt; that are recommended or mandatory for use by the
7286 government. When the directory was created, the people behind it made
7287 an effort to ensure that everyone would be able to implement the
7288 standards and compete on equal terms to supply software and solutions
7289 to the government. Free software and non-free software could compete
7290 on the same level.&lt;/p&gt;
7291
7292 &lt;p&gt;But recently, some standards with RAND
7293 (&lt;a href=&quot;http://en.wikipedia.org/wiki/Reasonable_and_non-discriminatory_licensing&quot;&gt;Reasonable
7294 And Non-Discriminatory&lt;/a&gt;) terms have made their way into the
7295 directory. And while this might not sound too bad, the fact is that
7296 standard specifications with RAND terms often block free software from
7297 implementing them. The reasonable part of RAND mean that the cost per
7298 user/unit is low,and the non-discriminatory part mean that everyone
7299 willing to pay will get a license. Both sound great in theory. In
7300 practice, to get such license one need to be able to count users, and
7301 be able to pay a small amount of money per unit or user. By
7302 definition, users of free software do not need to register their use.
7303 So counting users or units is not possible for free software projects.
7304 And given that people will use the software without handing any money
7305 to the author, it is not really economically possible for a free
7306 software author to pay a small amount of money to license the rights
7307 to implement a standard when the income available is zero. The result
7308 in these situations is that free software are locked out from
7309 implementing standards with RAND terms.&lt;/p&gt;
7310
7311 &lt;p&gt;Because of this, when I see someone claiming the terms of a
7312 standard is reasonable and non-discriminatory, all I can think of is
7313 how this really is non-reasonable and discriminatory. Because free
7314 software developers are working in a global market, it does not really
7315 help to know that software patents are not supposed to be enforceable
7316 in Norway. The patent regimes in other countries affect us even here.
7317 I really hope the people behind the standard directory will pay more
7318 attention to these issues in the future.&lt;/p&gt;
7319
7320 &lt;p&gt;You can find more on the issues with RAND, FRAND and RAND-Z terms
7321 from Simon Phipps
7322 (&lt;a href=&quot;http://blogs.computerworlduk.com/simon-says/2010/11/rand-not-so-reasonable/&quot;&gt;RAND:
7323 Not So Reasonable?&lt;/a&gt;).&lt;/p&gt;
7324
7325 &lt;p&gt;Update 2012-04-21: Just came across a
7326 &lt;a href=&quot;http://blogs.computerworlduk.com/open-enterprise/2012/04/of-microsoft-netscape-patents-and-open-standards/index.htm&quot;&gt;blog
7327 post from Glyn Moody&lt;/a&gt; over at Computer World UK warning about the
7328 same issue, and urging people to speak out to the UK government. I
7329 can only urge Norwegian users to do the same for
7330 &lt;a href=&quot;http://www.standard.difi.no/hoyring/hoyring-om-nye-anbefalte-it-standarder&quot;&gt;the
7331 hearing taking place at the moment&lt;/a&gt; (respond before 2012-04-27).
7332 It proposes to require video conferencing standards including
7333 specifications with RAND terms.&lt;/p&gt;
7334 </description>
7335 </item>
7336
7337 <item>
7338 <title>Debian Edu interview: Andreas Mundt</title>
7339 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Andreas_Mundt.html</link>
7340 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Andreas_Mundt.html</guid>
7341 <pubDate>Sun, 15 Apr 2012 12:10:00 +0200</pubDate>
7342 <description>&lt;p&gt;Behind &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and
7343 Skolelinux&lt;/a&gt; there are a lot of people doing the hard work of
7344 setting together all the pieces. This time I present to you Andreas
7345 Mundt, who have been part of the technical development team several
7346 years. He was also a key contributor in getting GOsa and Kerberos set
7347 up in the recently released
7348 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze&quot;&gt;Debian
7349 Edu Squeeze&lt;/a&gt; version.&lt;/p&gt;
7350
7351 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
7352
7353 &lt;p&gt;My name is Andreas Mundt, I grew up in south Germany. After
7354 studying Physics I spent several years at university doing research in
7355 Quantum Optics. After that I worked some years in an optics company.
7356 Finally I decided to turn over a new leaf in my life and started
7357 teaching 10 to 19 years old kids at school. I teach math, physics,
7358 information technology and science/technology.&lt;/p&gt;
7359
7360 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
7361 project?&lt;/strong&gt;&lt;/p&gt;
7362
7363 &lt;p&gt;Already before I switched to teaching, I followed the Debian Edu
7364 project because of my interest in education and Debian. Within the
7365 qualification/training period for the teaching, I started
7366 contributing.&lt;/p&gt;
7367
7368 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
7369 Edu?&lt;/strong&gt;&lt;/p&gt;
7370
7371 &lt;p&gt;The advantages of Debian Edu are the well known name, the
7372 out-of-the-box philosophy and of course the great free software of the
7373 Debian Project!&lt;/p&gt;
7374
7375 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
7376 Edu?&lt;/strong&gt;&lt;/p&gt;
7377
7378 &lt;p&gt;As every coin has two sides, the out-of-the-box philosophy has its
7379 downside, too. In my opinion, it is hard to modify and tweak the
7380 setup, if you need or want that. Further more, it is not easily
7381 possible to upgrade the system to a new release. It takes much too
7382 long after a Debian release to prepare the -Edu release, perhaps
7383 because the number of developers working on the core of the code is
7384 rather small and often busy elsewhere.&lt;/p&gt;
7385
7386 &lt;p&gt;The &lt;a href=&quot;http://wiki.debian.org/DebianLAN&quot;&gt;Debian LAN&lt;/a&gt;
7387 project might fill the use case of a more flexible system.&lt;/p&gt;
7388
7389 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
7390
7391 &lt;p&gt;I am only using non-free software if I am forced to and run Debian
7392 on all my machines. For documents I prefer LaTeX and PGF/TikZ, then
7393 mutt and iceweasel for email respectively web browsing. At school I
7394 have Arduino and Fritzing in use for a micro controller project.&lt;/p&gt;
7395
7396 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
7397 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
7398
7399 &lt;p&gt;One of the major problems is the vendor lock-in from top to bottom:
7400 Especially in combination with ignorant government employees and
7401 politicians, this works out great for the &quot;market-leader&quot;. The school
7402 administration here in Baden-Wuerttemberg is occupied by that vendor.
7403 Documents have to be prepared in non-free, proprietary formats. Even
7404 free browsers do not work for the school administration. Publishers
7405 of school books provide software only for proprietary platforms.&lt;/p&gt;
7406
7407 &lt;p&gt;To change this, political work is very important. Parts of the
7408 political spectrum have become aware of the problem in the last years.
7409 However it takes quite some time and courageous politicians to &#39;free&#39;
7410 the system. There is currently some discussion about &quot;Open Data&quot; and
7411 &quot;Free/Open Standards&quot;. I am not sure if all the involved parties have
7412 a clue about the potential of these ideas, and probably only a
7413 fraction takes them seriously. However it might slowly make free
7414 software and the philosophy behind it more known and popular.&lt;/p&gt;
7415 </description>
7416 </item>
7417
7418 <item>
7419 <title>Debian Edu interview: Justin B. Rye</title>
7420 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Justin_B__Rye.html</link>
7421 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Justin_B__Rye.html</guid>
7422 <pubDate>Sun, 8 Apr 2012 10:50:00 +0200</pubDate>
7423 <description>&lt;p&gt;It take all kind of contributions to create a Linux distribution
7424 like &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;,
7425 and this time I lend the ear to Justin B. Rye, who is listed as a big
7426 contributor to the
7427 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze&quot;&gt;Debian
7428 Edu Squeeze release manual&lt;/a&gt;.
7429
7430 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
7431
7432 &lt;p&gt;I&#39;m a 44-year-old linguistics graduate living in Edinburgh who has
7433 occasionally been employed as a sysadmin.&lt;/p&gt;
7434
7435 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
7436 project?&lt;/strong&gt;&lt;/p&gt;
7437
7438 &lt;p&gt;I&#39;m neither a developer nor a Skolelinux/Debian Edu user! The only
7439 reason my name&#39;s in the credits for the documentation is that I hang
7440 around on debian-l10n-english waiting for people to mention things
7441 they&#39;d like a native English speaker to proofread... So I did a sweep
7442 through the wiki for typos and Norglish and inconsistent spellings of
7443 &quot;localisation&quot;.&lt;/p&gt;
7444
7445 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
7446 Edu?&lt;/strong&gt;&lt;/p&gt;
7447
7448 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
7449 Edu?&lt;/strong&gt;&lt;/p&gt;
7450
7451 &lt;p&gt;These questions are too hard for me - I don&#39;t use it! In fact I
7452 had hardly any contact with I.T. until long after I&#39;d got out of the
7453 education system.&lt;/p&gt;
7454
7455 &lt;p&gt;I can tell you the advantages of Debian for me though: it soaks up
7456 as much of my free time as I want and no more, and lets me do
7457 everything I want a computer for without ever forcing me to spend
7458 money on the latest hardware.&lt;/p&gt;
7459
7460 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
7461
7462 &lt;p&gt;I&#39;ve been using Debian since Rex; popularity-contest says the
7463 software that I use most is xinit, xterm, and xulrunner (in other
7464 words, I use a distinctly retro sort of desktop).&lt;/p&gt;
7465
7466 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
7467 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
7468
7469 &lt;p&gt;Well, I don&#39;t know. I suppose I&#39;d be inclined to try reasoning
7470 with the people who make the decisions, but obviously if that worked
7471 you would hardly need a strategy.&lt;/p&gt;
7472 </description>
7473 </item>
7474
7475 <item>
7476 <title>Why the KDE menu is slow when /usr/ is NFS mounted - and a workaround</title>
7477 <link>http://people.skolelinux.org/pere/blog/Why_the_KDE_menu_is_slow_when__usr__is_NFS_mounted___and_a_workaround.html</link>
7478 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Why_the_KDE_menu_is_slow_when__usr__is_NFS_mounted___and_a_workaround.html</guid>
7479 <pubDate>Fri, 6 Apr 2012 22:40:00 +0200</pubDate>
7480 <description>&lt;p&gt;Recently I have spent time with
7481 &lt;a href=&quot;http://www.slxdrift.no/&quot;&gt;Skolelinux Drift AS&lt;/a&gt; on speeding
7482 up a &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;
7483 Lenny installation using LTSP diskless workstations, and in the
7484 process I discovered something very surprising. The reason the KDE
7485 menu was responding slow when using it for the first time, was mostly
7486 due to the way KDE find application icons. I discovered that showing
7487 the Multimedia menu would cause more than 20 000 IP packages to be
7488 passed between the LTSP client and the NFS server. Most of these were
7489
7490 NFS LOOKUP calls, resulting in a NFS3ERR_NOENT response. Because the
7491 ping times between the client and the server were in the range 2-20
7492 ms, the menus would be very slow. Looking at the strace of kicker in
7493 Lenny (or plasma-desktop i Squeeze - same problem there), I see that
7494 the source of these NFS calls are access(2) system calls for
7495 non-existing files. KDE can do hundreds of access(2) calls to find
7496 one icon file. In my example, just finding the mplayer icon required
7497 around 230 access(2) calls.&lt;/p&gt;
7498
7499 &lt;p&gt;The KDE code seem to search for icons using a list of icon
7500 directories, and the list of possible directories is large. In
7501 (almost) each directory, it look for files ending in .png, .svgz, .svg
7502 and .xpm. The result is a very slow KDE menu when /usr/ is NFS
7503 mounted. Showing a single sub menu may result in thousands of NFS
7504 requests. I am not the first one to discover this. I found a
7505 &lt;a href=&quot;https://bugs.kde.org/show_bug.cgi?id=211416&quot;&gt;KDE bug report
7506 from 2009&lt;/a&gt; about this problem, and it is still unsolved.&lt;/p&gt;
7507
7508 &lt;p&gt;My solution to speed up the KDE menu was to create a package
7509 kde-icon-cache that upon installation will look at all .desktop files
7510 used to generate the KDE menu, find their icons, search the icon paths
7511 for the file that KDE will end up finding at run time, and copying the
7512 icon file to /var/lib/kde-icon-cache/. Finally, I add symlinks to
7513 these icon files in one of the first directories where KDE will look
7514 for them. This cut down the number of file accesses required to find
7515 one icon from several hundred to less than 5, and make the KDE menu
7516 almost instantaneous. I&#39;m not quite sure where to make the package
7517 publicly available, so for now it is only available on request.&lt;/p&gt;
7518
7519 &lt;p&gt;The bug report mention that this do not only affect the KDE menu
7520 and icon handling, but also the login process. Not quite sure how to
7521 speed up that part without replacing NFS with for example NBD, and
7522 that is not really an option at the moment.&lt;/p&gt;
7523
7524 &lt;p&gt;If you got feedback on this issue, please let us know on debian-edu
7525 (at) lists.debian.org.&lt;/p&gt;
7526 </description>
7527 </item>
7528
7529 <item>
7530 <title>Debian Edu in the Linux Weekly News</title>
7531 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_in_the_Linux_Weekly_News.html</link>
7532 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_in_the_Linux_Weekly_News.html</guid>
7533 <pubDate>Thu, 5 Apr 2012 08:00:00 +0200</pubDate>
7534 <description>&lt;p&gt;About two weeks ago, I was interviewed via email about
7535 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt; by
7536 Bruce Byfield in Linux Weekly News. The result was made public for
7537 non-subscribers today. I am pleased to see liked our Linux solution
7538 for schools. Check out his article
7539 &lt;a href=&quot;https://lwn.net/Articles/488805/&quot;&gt;Debian Edu/Skolelinux: A
7540 distribution for education&lt;/a&gt; if you want to learn more.&lt;/p&gt;
7541 </description>
7542 </item>
7543
7544 <item>
7545 <title>Debian Edu interview: Wolfgang Schweer</title>
7546 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Wolfgang_Schweer.html</link>
7547 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Wolfgang_Schweer.html</guid>
7548 <pubDate>Sun, 1 Apr 2012 23:00:00 +0200</pubDate>
7549 <description>&lt;p&gt;Germany is a core area for the
7550 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
7551 user community, and this time I managed to get hold of Wolfgang
7552 Schweer, a valuable contributor to the project from Germany.
7553
7554 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
7555
7556 &lt;p&gt;I&#39;ve studied Mathematics at the university &#39;Ruhr-Universität&#39; in
7557 Bochum, Germany. Since 1981 I&#39;m working as a teacher at the school
7558 &quot;&lt;a href=&quot;http://www.westfalenkolleg-dortmund.de/&quot;&gt;Westfalen-Kolleg
7559 Dortmund&lt;/a&gt;&quot;, a second chance school. Here, young adults is given
7560 the opportunity to get further education in order to do the school
7561 examination &#39;Abitur&#39;, which will allow to study at a university. This
7562 second chance is of value for those who want a better job perspective
7563 or failed to get a higher school examination being teens.&lt;/p&gt;
7564
7565 &lt;p&gt;Besides teaching I was involved in developing online courses for a
7566 blended learning project called &#39;abitur-online.nrw&#39; and in some other
7567 information technology related projects. For about ten years I&#39;ve been
7568 teacher and coordinator for the &#39;abitur-online&#39; project at my
7569 school. Being now in my early sixties, I&#39;ve decided to leave school at
7570 the end of April this year.&lt;/p&gt;
7571
7572 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
7573 project?&lt;/strong&gt;&lt;/p&gt;
7574
7575 &lt;p&gt;The first information about Skolelinux must have come to my
7576 attention years ago and somehow related to LTSP (Linux Terminal Server
7577 Project). At school, we had set up a network at the beginning of 1997
7578 using Suse Linux on the desktop, replacing a Novell network. Since
7579 2002, we used old machines from the city council of Dortmund as thin
7580 clients (LTSP, later Ubuntu/Lessdisks) cause new hardware was out of
7581 reach. At home I&#39;m using Debian since years and - subscribed to the
7582 Debian news letter - heard from time to time about Skolelinux. About
7583 two years ago I proposed to replace the (somehow undocumented and only
7584 known to me) system at school by a well known Debian based system:
7585 Skolelinux.&lt;/p&gt;
7586
7587 &lt;p&gt;Students and teachers appreciated the new system because of a
7588 better look and feel and an enhanced access to local media on thin
7589 clients. The possibility to alter and/or reset passwords using a GUI
7590 was welcomed, too. Being able to do administrative tasks using a GUI
7591 and to easily set up workstations using PXE was of very high value for
7592 the admin teachers.&lt;/p&gt;
7593
7594 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
7595 Edu?&lt;/strong&gt;&lt;/p&gt;
7596
7597 &lt;p&gt;It&#39;s open source, easy to set up, stable and flexible due to it&#39;s
7598 Debian base. It integrates LTSP out-of-the-box. And it is documented!
7599 So it was a perfect choice.&lt;/p&gt;
7600
7601 &lt;p&gt;Being open source, there are no license problems and so it&#39;s
7602 possible to point teachers and students to programs like
7603 OpenOffice.org, ViewYourMind (mind mapping) and The Gimp. It&#39;s of
7604 high value to be able to adapt parts of the system to special needs of
7605 a school and to choose where to get support for this.&lt;/p&gt;
7606
7607 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
7608 Edu?&lt;/strong&gt;&lt;/p&gt;
7609
7610 &lt;p&gt;Nothing yet.&lt;/p&gt;
7611
7612 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
7613
7614 &lt;p&gt;At home (Debian Sid with Gnome Desktop): Iceweasel, LibreOffice,
7615 Mutt, Gedit, Document Viewer, Midnight Commander, flpsed (PDF
7616 Annotator). At school (Skolelinux Lenny): Iceweasel, Gedit,
7617 LibreOffice.&lt;/p&gt;
7618
7619 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
7620 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
7621
7622 &lt;p&gt;Some time ago I thought it was enough to tell people about it. But
7623 that doesn&#39;t seem to work quite well. Now I concentrate on those more
7624 interested and hope to get multiplicators that way.&lt;/p&gt;
7625 </description>
7626 </item>
7627
7628 <item>
7629 <title>Debian Edu screencast: Checking email with kmail using Kerberos authentication</title>
7630 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_screencast__Checking_email_with_kmail_using_Kerberos_authentication.html</link>
7631 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_screencast__Checking_email_with_kmail_using_Kerberos_authentication.html</guid>
7632 <pubDate>Sun, 25 Mar 2012 10:00:00 +0200</pubDate>
7633 <description>&lt;!-- Video HTML based on http://www.diveintohtml5.net/video.html --&gt;
7634
7635 &lt;p&gt;The same Debian Edu developer that did the last screen cast I
7636 published, Wolfgang Schweer, has created a new screen cast showing how
7637 to set up Kmail in Debian Edu Squeze to authenticate using Kerberos,
7638 allowing users to check their local email account without providing
7639 any password. The video is embedded here in quarter size,
7640 and also available from &lt;a href=&quot;https://vimeo.com/38601767&quot;&gt;vimeo&lt;/a&gt;
7641 and download as a
7642 &lt;a href=&quot;http://ftp.skolelinux.org/skolelinux/press/screencasts/2012-03-14-Debian-Edu_Configure_Kmail_for_internal_usage.ogv&quot;&gt;Ogg
7643 Theora&lt;/a&gt; file. Check it out below.&lt;/p&gt;
7644
7645 &lt;p&gt;&lt;video id=&quot;kmail-kerberos-movie&quot; width=&quot;256&quot; height=&quot;184&quot; preload controls&gt;
7646 &lt;source src=&quot;http://ftp.skolelinux.org/skolelinux/press/screencasts/2012-03-14-Debian-Edu_Configure_Kmail_for_internal_usage.ogv&quot; type=&#39;video/ogg; codecs=&quot;theora, vorbis&quot;&#39; /&gt;
7647 &lt;p&gt;Download video as
7648 &lt;a href=&quot;http://ftp.skolelinux.org/skolelinux/press/screencasts/2012-03-14-Debian-Edu_Configure_Kmail_for_internal_usage.ogv&quot;&gt;Ogg&lt;/a&gt;.&lt;/p&gt;
7649 &lt;/video&gt;&lt;/p&gt;
7650 </description>
7651 </item>
7652
7653 <item>
7654 <title>Debian Edu interview: John Ingleby</title>
7655 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__John_Ingleby.html</link>
7656 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__John_Ingleby.html</guid>
7657 <pubDate>Mon, 19 Mar 2012 21:15:00 +0100</pubDate>
7658 <description>&lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;
7659 users are spread all across the globe. The second inteview after
7660 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/03/msg00001.html&quot;&gt;the
7661 Squeeze release&lt;/a&gt; was publised is with John Ingleby, a teacher and
7662 long time Linux user in United Kingdom.&lt;/p&gt;
7663
7664 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
7665
7666 &lt;p&gt;I teach ICT part time at the Rudolf Steiner School in Kings
7667 Langley, near London, UK. Previously I worked as a technical
7668 author/trainer while my children attended the school, and I also
7669 contributed to the Schoolforge UK community with the aim of
7670 encouraging UK schools to adopt free/open source software. Five or six
7671 years ago we had about 50 schools interested in some way, but we
7672 weren&#39;t able to convert many of them into sustainable
7673 installations.&lt;/p&gt;
7674
7675 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
7676 project?&lt;/strong&gt;&lt;/p&gt;
7677
7678 &lt;p&gt;Skolelinux had two representatives at an early Edubuntu meeting in
7679 London which I attended. However at that time our school network had
7680 just been installed using CentOS, LTSP 4 and GNOME. When LTSP 5 came
7681 along we switched to Edubuntu thin client servers so now we have a
7682 mixed environment which includes Windows PCs and student laptops, as
7683 well as their MacBooks and iPads. However, the proprietary systems
7684 have always been rather problematic, and we never built a GUI for the
7685 LDAP server, so when I discovered Skolelinux is configured for all
7686 these things we decided to try it.&lt;/p&gt;
7687
7688 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
7689 Edu?&lt;/strong&gt;&lt;/p&gt;
7690
7691 &lt;p&gt;By far the biggest advantage is the Debian Edu community. Apart
7692 from that I have always believed in the same &quot;sustainable computing&quot;
7693 goals that Skolelinux is built on: installing Linux on computers which
7694 would otherwise be thrown away, to provide a reliable, secure and
7695 low-cost IT environment for schools. From my own experience I know
7696 that a part-time person can teach and manage a network of about 25
7697 Linux computers, but it would take much more of my time if we had
7698 proprietary software everywhere.&lt;/p&gt;
7699
7700 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
7701 Edu?&lt;/strong&gt;&lt;/p&gt;
7702
7703 &lt;p&gt;As a newcomer I&#39;m just finding out who&#39;s who in the community and
7704 how you&#39;re organised, and what your procedures are for dealing with
7705 various things such as editing manual pages and so-on. The only
7706 English language mailing list seems to be for developers as well as
7707 users, so my inbox needs heavy pruning each day!&lt;/p&gt;
7708
7709 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
7710
7711 &lt;p&gt;Besides the software already mentioned at school we use Samba,
7712 OpenLDAP, CUPS, Nagios and Dansguardian for the network, and on the
7713 desktops we have LibreOffice, Firefox, GIMP and Inkscape. At home I
7714 use Ubuntu and an Android 4 eePad Transformer (but I&#39;m not sure if
7715 that counts...)&lt;/p&gt;
7716
7717 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
7718 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
7719
7720 &lt;p&gt;That&#39;s a tough question! For very many years UK schools installed
7721 and taught only proprietary software, so that at the highest levels
7722 the notion of &quot;computer&quot; means simply &quot;proprietary office
7723 applications&quot;. However, schools today are experiencing budget
7724 constraints, and many are having to think hard about upgrading Windows
7725 XP. At the same time, we have students showing teachers how to use
7726 iPads, MacBooks and Android, so the choice of operating system is no
7727 longer quite so automatic. What is more, our government at last
7728 realised that we need people with programming skills, so they&#39;re
7729 putting coding back in the curriculum! And it&#39;s encouraging that the
7730 first 10,000 Raspberry Pi units sold out in 2 hours.&lt;/p&gt;
7731
7732 &lt;p&gt;I don&#39;t really know what strategy is going to get UK schools to use
7733 free software, but building an active community of Skolelinux/Debian
7734 Edu users in this country has to be part of it.&lt;/p&gt;
7735 </description>
7736 </item>
7737
7738 <item>
7739 <title>Writing and translating documentation in Debian Edu</title>
7740 <link>http://people.skolelinux.org/pere/blog/Writing_and_translating_documentation_in_Debian_Edu.html</link>
7741 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Writing_and_translating_documentation_in_Debian_Edu.html</guid>
7742 <pubDate>Fri, 16 Mar 2012 09:55:00 +0100</pubDate>
7743 <description>&lt;p&gt;Documentation in Debian Edu is provided in several languages, and
7744 it is important to make it both easy to contribute and to keep the
7745 translated versions in sync. To do this we have come up with what we
7746 believe is a very efficient work flow.&lt;/p&gt;
7747
7748 &lt;ol&gt;
7749
7750 &lt;li&gt;The documentation is written in a
7751 &lt;a href=&quot;http://moinmo.in&quot;&gt;moinmoin wiki&lt;/a&gt; (see for example
7752 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze&quot;&gt;the
7753 Squeeze release manual&lt;/a&gt;) with support for exporting the content as
7754 docbook XML.&lt;/li&gt;
7755
7756 &lt;li&gt;This docbook document is given to po4a to extract a gettext style
7757 .pot file with the content, which in turn is used to create .po files
7758 with the translated text.&lt;/li&gt;
7759
7760 &lt;li&gt;The .po files are given to translators, and they can always tell
7761 which part of the original wiki document is new or changed. They can
7762 use their normal translation tools like lokalize or poedit to write
7763 the translation. There is even a system in place to handle translated
7764 images.&lt;/li&gt;
7765
7766 &lt;li&gt;The translated .po files are combined with the original docbook
7767 XML document using po4a to create a translated docbook document.&lt;/li&gt;
7768
7769 &lt;li&gt;The final step is to use all the generated docbook files and
7770 create PDF and HTML version of the original and translated documents.&lt;/li&gt;
7771
7772 &lt;/ol&gt;
7773
7774 &lt;p&gt;This setup work very well, but have a few issues. The biggest
7775 issue is that &lt;a href=&quot;http://moinmo.in/DocBook&quot;&gt;the docbook support
7776 we use in moinmoin&lt;/a&gt; is not actively maintained. The docbook
7777 support is also buggy, and our build system contain workarounds to
7778 make sure the generated docbook is usable despite these bugs.&lt;/p&gt;
7779
7780 &lt;p&gt;If you want to have a look at our setup, it is all there in the
7781 &lt;a href=&quot;http://packages.qa.debian.org/debian-edu-doc&quot;&gt;debian-edu-doc
7782 package&lt;/a&gt;.&lt;/p&gt;
7783 </description>
7784 </item>
7785
7786 <item>
7787 <title>Skolelinux / Debian Edu Squeeze is out!</title>
7788 <link>http://people.skolelinux.org/pere/blog/Skolelinux___Debian_Edu_Squeeze_is_out_.html</link>
7789 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux___Debian_Edu_Squeeze_is_out_.html</guid>
7790 <pubDate>Sun, 11 Mar 2012 23:00:00 +0100</pubDate>
7791 <description>&lt;p&gt;This weekend we finally published the first stable release of
7792 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux / Debian Edu&lt;/a&gt; based
7793 on Debian/Squeeze. The full announcement is
7794 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/03/msg00001.html&quot;&gt;available&lt;/a&gt;
7795 from the project announcement list. Now is a good time to test if it
7796 you have not done so already.&lt;/p&gt;
7797
7798 &lt;p&gt;I plan to present the new version at
7799 &lt;a href=&quot;http://www.nuug.no/aktiviteter/20120313-skolelinux/&quot;&gt;a NUUG
7800 meeting&lt;/a&gt; on tuesday. I look forward to seeing you there if you are
7801 in Oslo, Norway.&lt;/p&gt;
7802 </description>
7803 </item>
7804
7805 <item>
7806 <title>Debian Edu interview: Nigel Barker</title>
7807 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Nigel_Barker.html</link>
7808 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Nigel_Barker.html</guid>
7809 <pubDate>Fri, 9 Mar 2012 11:30:00 +0100</pubDate>
7810 <description>&lt;p&gt;Inspired by &lt;a href=&quot;http://raphaelhertzog.com/tag/interview/&quot;&gt;the
7811 interview series&lt;/a&gt; conducted by Raphael, I started a Norwegian
7812 interview series with people involved in the Debian Edu / Skolelinux
7813 community. This was so popular that I believe it is time to move to a
7814 more international audience.&lt;/p&gt;
7815
7816 &lt;p&gt;While &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and
7817 Skolelinux&lt;/a&gt; originated in France and Norway, and have most users in
7818 Europe, there are users all around the globe. One of those far away
7819 from me is Nigel Barker, a long time Debian Edu system administrator
7820 and contributor. It is thanks to him that Debian Edu is adjusted to
7821 work out of the box in Japan. I got him to answer a few questions,
7822 and am happy to share the response with you. :)
7823
7824
7825 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
7826
7827 &lt;p&gt;My name is Nigel Barker, and I am British. I am married to Yumiko,
7828 and we have three lovely children, aged 15, 14 and 4(!) I am the IT
7829 Coordinator at Hiroshima International School, Japan. I am also a
7830 teacher, and in fact I spend most of my day teaching Mathematics,
7831 Science, IT, and Chemistry. I was originally a Chemistry teacher, but
7832 I have always had an interest in computers. Another teacher teaches
7833 primary school IT, but apart from that I am the only computer person,
7834 so that means I am the network manager, technician and webmaster,
7835 also, and I help people with their computer problems. I teach python
7836 to beginners in an after-school club. I am way too busy, so I really
7837 appreciate the simplicity of Skolelinux.&lt;/p&gt;
7838
7839 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
7840 project?&lt;/strong&gt;&lt;/p&gt;
7841
7842 &lt;p&gt;In around 2004 or 5 I discovered the ltsp project, and set up a
7843 server in the IT lab. I wanted some way to connect it to our central
7844 samba server, which I was also quite poor at configuring. I discovered
7845 Edubuntu when it came out, but it didn&#39;t really improve my setup. I
7846 did various desperate searches for things like &quot;school Linux server&quot;
7847 and ended up in a document called &quot;Drift&quot; something or other. Reading
7848 there it became clear that Skolelinux was going to solve all my
7849 problems in one go. I was very excited, but apprehensive, because my
7850 previous attempts to install Debian had ended in failure (I used
7851 Mandrake for everything - ltsp, samba, apache, mail, ns...). I
7852 downloaded a beta version, had some problems, so subscribed to the
7853 Debian Edu list for help. I have remained subscribed ever since, and
7854 my school has run a Skolelinux network since Sarge.&lt;/p&gt;
7855
7856 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
7857 Edu?&lt;/strong&gt;&lt;/p&gt;
7858
7859 &lt;p&gt;For me the integrated setup. This is not just the server, or the
7860 workstation, or the ltsp. Its all of them, and its all configured
7861 ready to go. I read somewhere in the early documentation that it is
7862 designed to be setup and managed by the Maths or Science teacher, who
7863 doesn&#39;t necessarily know much about computers, in a small Norwegian
7864 school. That describes me perfectly if you replace Norway with
7865 Japan.&lt;/p&gt;
7866
7867 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
7868 Edu?&lt;/strong&gt;&lt;/p&gt;
7869
7870 &lt;p&gt;The desktop is fairly plain. If you compare it with Edubuntu, who
7871 have fun themes for children, or with distributions such as Mint, who
7872 make the desktop beautiful. They create a good impression on people
7873 who don&#39;t need to understand how to use any of it, but who might be
7874 important to the school. School administrators or directors, for
7875 instance, or parents. Even kids. Debian itself usually has ugly
7876 default theme settings. It was my dream a few years back that some
7877 kind of integration would allow Edubuntu to do the desktop stuff and
7878 Debian Edu the servers, but now I realise how impossible that is. A
7879 second disadvantage is that if something goes wrong, or you need to
7880 customise something, then suddenly the level of expertise required
7881 multiplies. For example, backup wasn&#39;t working properly in Lenny. It
7882 took me ages to learn how to set up my own server to do rsync backups.
7883 I am afraid of anything to do with ldap, but perhaps Gosa will
7884 help.&lt;/p&gt;
7885
7886 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
7887
7888 &lt;p&gt;Nowadays I only use Debian on my personal computers. I have one for
7889 studio work (I play guitar and write songs), running AV Linux
7890 (customised Debian) a netbook running Squeeze, and a bigger laptop
7891 still running Skolelinux Lenny workstation. I have a Tjener in my
7892 house, that&#39;s very useful for the family photos and music. At school
7893 the students only use Skolelinux. (Some teachers and the office still
7894 have windows). So that means we only use free software all day every
7895 day. Open office, The GIMP, Firefox/Iceweasel, VLC and Audacity are
7896 installed on every computer in school, irrespective of OS. We also
7897 have Koha on Debian for the library, and Apache, Moodle, b2evolution
7898 and Etomite on Debian for the www. The firewall is Untangle.&lt;/p&gt;
7899
7900 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
7901 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
7902
7903 &lt;p&gt;Current trends are in our favour. Open source is big in industry,
7904 and ordinary people have heard of it. The spread of Android and the
7905 popularity of Apple have helped to weaken the impression that you have
7906 to have Microsoft on everything. People complain to me much less about
7907 file formats and Word than they did 5 years ago. The Edu aspect is
7908 also a selling point. This is all customised for schools. Where is the
7909 Windows-edu, or the Mac-edu? But of course the main attraction is
7910 budget.The trick is to convince people that the quality is not
7911 compromised when you stop paying and use free software instead. That
7912 is one reason why I say the desktop experience is a weakness. People
7913 are not impressed when their USB drive doesn&#39;t work, or their browser
7914 doesn&#39;t play flash, for example.&lt;/p&gt;
7915 </description>
7916 </item>
7917
7918 <item>
7919 <title>Debian Edu screencast: Mass creation of user accounts in Squeeze</title>
7920 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_screencast__Mass_creation_of_user_accounts_in_Squeeze.html</link>
7921 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_screencast__Mass_creation_of_user_accounts_in_Squeeze.html</guid>
7922 <pubDate>Wed, 7 Mar 2012 13:40:00 +0100</pubDate>
7923 <description>&lt;!-- Video HTML based on http://www.diveintohtml5.net/video.html --&gt;
7924
7925 &lt;p&gt;One of the Debian Edu developers, Wolfgang Schweer, just created a
7926 screen cast documenting how to create a lot of new users in LDAP on
7927 Debian Edu Squeeze. The video is embedded here in quarter size, and
7928 also available from &lt;a href=&quot;http://vimeo.com/37675399&quot;&gt;vimeo&lt;/a&gt; and
7929 download as a
7930 &lt;a href=&quot;http://ftp.skolelinux.org/skolelinux/press/screencasts/2012-02-29-debian_edu_mass_create_user_accounts.ogv&quot;&gt;Ogg
7931 Theora&lt;/a&gt; file. Check it out below.&lt;/p&gt;
7932
7933 &lt;p&gt;&lt;video id=&quot;gosa-mass-user-create-movie&quot; width=&quot;256&quot; height=&quot;184&quot; preload controls&gt;
7934 &lt;source src=&quot;http://ftp.skolelinux.org/skolelinux/press/screencasts/2012-02-29-debian_edu_mass_create_user_accounts.ogv&quot; type=&#39;video/ogg; codecs=&quot;theora, vorbis&quot;&#39; /&gt;
7935 &lt;p&gt;Download video as
7936 &lt;a href=&quot;http://ftp.skolelinux.org/skolelinux/press/screencasts/2012-02-29-debian_edu_mass_create_user_accounts.ogv&quot;&gt;Ogg&lt;/a&gt;.&lt;/p&gt;
7937 &lt;/video&gt;&lt;/p&gt;
7938 </description>
7939 </item>
7940
7941 <item>
7942 <title>Third release candidate of Debian Edu / Skolelinux based on Squeeze</title>
7943 <link>http://people.skolelinux.org/pere/blog/Third_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
7944 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Third_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
7945 <pubDate>Sun, 4 Mar 2012 18:20:00 +0100</pubDate>
7946 <description>&lt;p&gt;This weekend we wrapped up and published the third release
7947 candidate for &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
7948 Skolelinux&lt;/a&gt; based on Squeeze. The full announcement is
7949 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/03/msg00000.html&quot;&gt;available&lt;/a&gt;
7950 from the project announcement list. Check it out if you
7951 need a software solution for your school.&lt;/p&gt;
7952 </description>
7953 </item>
7954
7955 <item>
7956 <title>Stopmotion for making stop motion animations on Linux - reloaded</title>
7957 <link>http://people.skolelinux.org/pere/blog/Stopmotion_for_making_stop_motion_animations_on_Linux___reloaded.html</link>
7958 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Stopmotion_for_making_stop_motion_animations_on_Linux___reloaded.html</guid>
7959 <pubDate>Sat, 3 Mar 2012 12:50:00 +0100</pubDate>
7960 <description>&lt;p&gt;Many years ago, the &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux
7961 / Debian Edu project&lt;/a&gt; initiated a student project to create a tool
7962 for making stop motion movies. The proposal came from a teacher
7963 needing such tool on Skolelinux. The project, called &quot;stopmotion&quot;,
7964 was manned by two extraordinary students and won a school award and a
7965 national aware with this great project. The project was initiated and
7966 mentored by Herman Robak, and manned by the students Bjørn Erik Nilsen
7967 and Fredrik Berg Kjølstad. They got in touch with people at Aardman
7968 Animation studio and received feedback on how professionals would like
7969 such stopmotion tool to work, and the end result was and is used by
7970 animators around the globe. But as is usual after studying, both got
7971 jobs and went elsewhere, and did not have time to properly tend to the
7972 project, and it has been lingering for a few years now. Until last
7973 year...&lt;/p&gt;
7974
7975 &lt;p&gt;Last year some of the users got together with Herman, and moved the
7976 project to Sourceforge and in effect restarted the project under a new
7977 name,
7978 &lt;a href=&quot;http://sourceforge.net/projects/linuxstopmotion/&quot;&gt;linuxstopmotion&lt;/a&gt;.
7979 The name change was done to make it possible to find the project using
7980 Internet search engines (try to search for &#39;stopmotion&#39; to see what I
7981 mean). I&#39;ve been following
7982 &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/linuxstopmotion-community&quot;&gt;the
7983 mailing list&lt;/a&gt; and the improvement already in place and planned for
7984 the future is encouraging. If you want to make stop motion movies.
7985 Check it out. :)&lt;/p&gt;
7986 </description>
7987 </item>
7988
7989 <item>
7990 <title>Second release candidate of Debian Edu / Skolelinux based on Squeeze</title>
7991 <link>http://people.skolelinux.org/pere/blog/Second_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
7992 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Second_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
7993 <pubDate>Mon, 27 Feb 2012 14:00:00 +0100</pubDate>
7994 <description>&lt;p&gt;This weekend we wrapped up and published the second release
7995 candidate for &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
7996 Skolelinux&lt;/a&gt; based on Squeeze. The full announcement did for some
7997 reason not make it the project announcement list, but is
7998 &lt;a href=&quot;http://lists.debian.org/debian-devel-announce/2012/02/msg00015.html&quot;&gt;available&lt;/a&gt;
7999 from the Debian development announcement list. Check it out if you
8000 need a software solution for your school.&lt;/p&gt;
8001 </description>
8002 </item>
8003
8004 <item>
8005 <title>First release candidate of Debian Edu / Skolelinux based on Squeeze</title>
8006 <link>http://people.skolelinux.org/pere/blog/First_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
8007 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
8008 <pubDate>Sun, 19 Feb 2012 23:10:00 +0100</pubDate>
8009 <description>&lt;p&gt;One week delayed due to DVD build problems, we managed today to
8010 wrap up and publish the first release candidate for
8011 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; based
8012 on Squeeze. The full announcement is
8013 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/02/msg00001.html&quot;&gt;available&lt;/a&gt;
8014 on the project announcement list. Check it out if you need a software
8015 solution for your school.&lt;/p&gt;
8016 </description>
8017 </item>
8018
8019 <item>
8020 <title>How to figure out which RAID disk to replace when it fail</title>
8021 <link>http://people.skolelinux.org/pere/blog/How_to_figure_out_which_RAID_disk_to_replace_when_it_fail.html</link>
8022 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_figure_out_which_RAID_disk_to_replace_when_it_fail.html</guid>
8023 <pubDate>Tue, 14 Feb 2012 21:25:00 +0100</pubDate>
8024 <description>&lt;p&gt;Once in a while my home server have disk problems. Thanks to Linux
8025 Software RAID, I have not lost data yet (but
8026 &lt;a href=&quot;http://comments.gmane.org/gmane.linux.raid/34532&quot;&gt;I was
8027 close&lt;/a&gt; this summer :). But once a disk is starting to behave
8028 funny, a practical problem present itself. How to get from the Linux
8029 device name (like /dev/sdd) to something that can be used to identify
8030 the disk when the computer is turned off? In my case I have SATA
8031 disks with a unique ID printed on the label. All I need is a way to
8032 figure out how to query the disk to get the ID out.&lt;/p&gt;
8033
8034 &lt;p&gt;After fumbling a bit, I
8035 &lt;a href=&quot;http://www.cyberciti.biz/faq/linux-getting-scsi-ide-harddisk-information/&quot;&gt;found
8036 that hdparm -I&lt;/a&gt; will report the disk serial number, which is
8037 printed on the disk label. The following (almost) one-liner can be
8038 used to look up the ID of all the failed disks:&lt;/p&gt;
8039
8040 &lt;blockquote&gt;&lt;pre&gt;
8041 for d in $(cat /proc/mdstat |grep &#39;(F)&#39;|tr &#39; &#39; &quot;\n&quot;|grep &#39;(F)&#39;|cut -d\[ -f1|sort -u);
8042 do
8043 printf &quot;Failed disk $d: &quot;
8044 hdparm -I /dev/$d |grep &#39;Serial Num&#39;
8045 done
8046 &lt;/blockquote&gt;&lt;/pre&gt;
8047
8048 &lt;p&gt;Putting it here to make sure I do not have to search for it the
8049 next time, and in case other find it useful.&lt;/p&gt;
8050
8051 &lt;p&gt;At the moment I have two failing disk. :(&lt;/p&gt;
8052
8053 &lt;blockquote&gt;&lt;pre&gt;
8054 Failed disk sdd1: Serial Number: WD-WCASJ1860823
8055 Failed disk sdd2: Serial Number: WD-WCASJ1860823
8056 Failed disk sde2: Serial Number: WD-WCASJ1840589
8057 &lt;/blockquote&gt;&lt;/pre&gt;
8058
8059 &lt;p&gt;The last time I had failing disks, I added the serial number on
8060 labels I printed and stuck on the short sides of each disk, to be able
8061 to figure out which disk to take out of the box without having to
8062 remove each disk to look at the physical vendor label. The vendor
8063 label is at the top of the disk, which is hidden when the disks are
8064 mounted inside my box.&lt;/p&gt;
8065
8066 &lt;p&gt;I really wish the check_linux_raid Nagios plugin for checking Linux
8067 Software RAID in the
8068 &lt;a href=&quot;http://packages.qa.debian.org/n/nagios-plugins.html&quot;&gt;nagios-plugins-standard&lt;/a&gt;
8069 debian package would look up this value automatically, as it would
8070 make the plugin a lot more useful when my disks fail. At the moment
8071 it only report a failure when there are no more spares left (it really
8072 should warn as soon as a disk is failing), and it do not tell me which
8073 disk(s) is failing when the RAID is running short on disks.&lt;/p&gt;
8074 </description>
8075 </item>
8076
8077 <item>
8078 <title>Automatic proxy configuration with Debian Edu / Skolelinux</title>
8079 <link>http://people.skolelinux.org/pere/blog/Automatic_proxy_configuration_with_Debian_Edu___Skolelinux.html</link>
8080 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatic_proxy_configuration_with_Debian_Edu___Skolelinux.html</guid>
8081 <pubDate>Mon, 13 Feb 2012 23:40:00 +0100</pubDate>
8082 <description>&lt;p&gt;New in the Squeeze version of
8083 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; is the
8084 ability for clients to automatically configure their proxy settings
8085 based on their environment. We want all systems on the client to use
8086 the WPAD based proxy definition fetched from &lt;tt&gt;http://wpad/wpad.dat&lt;/tt&gt;, to
8087 allow sites to control the proxy setting from a central place and make
8088 sure clients do not have hard coded proxy settings. The schools can
8089 change the global proxy setting by editing
8090 &lt;tt&gt;tjener:/etc/debian-edu/www/wpad.dat&lt;/tt&gt; and the change propagate
8091 to all Debian Edu clients in the network.&lt;/p&gt;
8092
8093 &lt;p&gt;The problem is that some systems do not understand the WPAD system.
8094 In other words, how do one get from a WPAD file like this (this is a
8095 simple one, they can run arbitrary code):&lt;/p&gt;
8096
8097 &lt;blockquote&gt;&lt;pre&gt;
8098 function FindProxyForURL(url, host)
8099 {
8100 if (!isResolvable(host) ||
8101 isPlainHostName(host) ||
8102 dnsDomainIs(host, &quot;.intern&quot;))
8103 return &quot;DIRECT&quot;;
8104 else
8105 return &quot;PROXY webcache:3128; DIRECT&quot;;
8106 }
8107 &lt;/pre&gt;&lt;/blockquote&gt;
8108
8109 &lt;p&gt;to a proxy setting in the process environment looking like this:&lt;/p&gt;
8110
8111 &lt;blockquote&gt;&lt;pre&gt;
8112 http_proxy=http://webcache:3128/
8113 ftp_proxy=http://webcache:3128/
8114 &lt;/pre&gt;&lt;/blockquote&gt;
8115
8116 &lt;p&gt;To do this conversion I developed a perl script that will execute
8117 the javascript fragment in the WPAD file and return the proxy that
8118 would be used for
8119 &lt;tt&gt;&lt;a href=&quot;http://www.debian.org/&quot;&gt;http://www.debian.org/&lt;/a&gt;&lt;/tt&gt;,
8120 and insert this extracted proxy URL in &lt;tt&gt;/etc/environment&lt;/tt&gt; and
8121 &lt;tt&gt;/etc/apt/apt.conf&lt;/tt&gt;. The perl script wpad-extract work just
8122 fine in Squeeze, but in Wheezy the library it need to run the
8123 javascript code is &lt;a href=&quot;http://bugs.debian.org/631045&quot;&gt;no longer
8124 able to build&lt;/a&gt; because the C library it depended on is now a C++
8125 library. I hope someone find a solution to that problem before Wheezy
8126 is frozen. An alternative would be for us to rewrite wpad-extract to
8127 use some other javascript library currently working in Wheezy, but no
8128 known alternative is known at the moment.&lt;/p&gt;
8129
8130 &lt;p&gt;This automatic proxy system allow the roaming workstation (aka
8131 laptop) setup in Debian Edu/Squeeze to use the proxy when the laptop
8132 is connected to the backbone network in a Debian Edu setup, and to
8133 automatically use any proxy present and announced using the WPAD
8134 feature when it is connected to other networks. And if no proxy is
8135 announced, direct connections will be used instead.&lt;/p&gt;
8136
8137 &lt;p&gt;Silently using a proxy announced on the network might be a privacy
8138 or security problem. But those controlling DHCP and DNS on a network
8139 could just as easily set up a transparent proxy, and force all HTTP
8140 and FTP connections to use a proxy anyway, so I consider that
8141 distinction to be academic. If you are afraid of using the wrong
8142 proxy, you should avoid connecting to the network in question in the
8143 first place. In Debian Edu, the proxy setup is updated using dhcp and
8144 ifupdown hooks, to make sure the configuration is updated every time
8145 the network setup changes.&lt;/p&gt;
8146
8147 &lt;p&gt;The WPAD system is documented in a
8148 &lt;a href=&quot;http://tools.ietf.org/html/draft-ietf-wrec-wpad-01&quot;&gt;IETF
8149 draft&lt;/a&gt; and a
8150 &lt;a href=&quot;http://en.wikipedia.org/wiki/Web_Proxy_Autodiscovery_Protocol&quot;&gt;Wikipedia
8151 page&lt;/a&gt; for those that want to learn more.&lt;/p&gt;
8152 </description>
8153 </item>
8154
8155 <item>
8156 <title>Saving power with Debian Edu / Skolelinux using shutdown-at-night</title>
8157 <link>http://people.skolelinux.org/pere/blog/Saving_power_with_Debian_Edu___Skolelinux_using_shutdown_at_night.html</link>
8158 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Saving_power_with_Debian_Edu___Skolelinux_using_shutdown_at_night.html</guid>
8159 <pubDate>Sun, 5 Feb 2012 09:45:00 +0100</pubDate>
8160 <description>&lt;p&gt;Since the Lenny version of
8161 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;, a
8162 feature to save power have been included. It is as simple as it is
8163 practical: Shut down unused clients at night, and turn them on again
8164 in the morning. This is done using the
8165 &lt;a href=&quot;http://packages.qa.debian.org/s/shutdown-at-night.html&quot;&gt;shutdown-at-night&lt;/a&gt; Debian package.&lt;/p&gt;
8166
8167 &lt;p&gt;To enable this feature on a client, the machine need to be added to
8168 the netgroup shutdown-at-night-hosts. For Debian Edu, this is done in
8169 LDAP, and once this is in place, the machine in question will check
8170 every hour from 16:00 until 06:00 to see if the machine is unused, and
8171 shut it down if it is. If the hardware in question is supported by
8172 the
8173 &lt;a href=&quot;http://packages.qa.debian.org/n/nvram-wakeup.html&quot;&gt;nvram-wakeup&lt;/a&gt;
8174 package, the BIOS is told to turn the machine back on around 07:00 +-
8175 10 minutes. If this isn&#39;t working, one can configure wake-on-lan to
8176 try to turn on the client. The wake-on-lan option is only documented
8177 and not enabled by default in Debian Edu.&lt;/p&gt;
8178
8179 &lt;p&gt;It is important to not turn all machines on at once, as this can
8180 blow a fuse if several computers are connected to the same fuse like
8181 the common setup for a classroom. The nvram-wakeup method only work
8182 for machines with a functioning hardware/BIOS clock. I&#39;ve seen old
8183 machines where the BIOS battery were dead and the hardware clock were
8184 starting from 0 (or was it 1990?) every boot. If you have one of
8185 those, you have to turn on the computer manually.&lt;/p&gt;
8186
8187 &lt;p&gt;The shutdown-at-night package is completely self contained, and can
8188 also be used outside the Debian Edu environment. For those without a
8189 central LDAP server with netgroups, one can instead touch the file
8190 &lt;tt&gt;/etc/shutdown-at-night/shutdown-at-night&lt;/tt&gt; to enable it.
8191 Perhaps you too can use it to save some power?&lt;/p&gt;
8192 </description>
8193 </item>
8194
8195 <item>
8196 <title>Third beta version of Debian Edu / Skolelinux based on Squeeze</title>
8197 <link>http://people.skolelinux.org/pere/blog/Third_beta_version_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
8198 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Third_beta_version_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
8199 <pubDate>Sat, 4 Feb 2012 13:25:00 +0100</pubDate>
8200 <description>&lt;p&gt;I am happy to announce that finally we managed today to wrap up and
8201 publish the third beta version of
8202 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; based
8203 on Squeeze. If you want to test a LDAP backed Kerberos server with
8204 out of the box PXE configuration for running diskless machines and
8205 installing new machines, check it out. If you need a software
8206 solution for your school, check it out too. The full announcement is
8207 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/02/msg00000.html&quot;&gt;available&lt;/a&gt;
8208 on the project announcement list.&lt;/p&gt;
8209
8210 &lt;p&gt;I am very happy to report these changes and improvements since
8211 beta2 (there are more, see announcement for full list):&lt;/p&gt;
8212
8213 &lt;ul&gt;
8214
8215 &lt;li&gt;It is now possible to change the pre-configured IP subnet from
8216 10.0.0.0/8 to something else by using the subnet-change tool after
8217 the installation.&lt;/li&gt;
8218
8219 &lt;li&gt;Too full partitions are now automatically extended on the Main
8220 Server, based on the rules specified in /etc/fsautoresizetab.&lt;/li&gt;
8221
8222 &lt;li&gt;The CUPS queues are now automatically flushed every night, and all
8223 disabled queues are restarted every hour. This should cut down on
8224 the amount of manual administration needed for printers.&lt;/li&gt;
8225
8226 &lt;li&gt;The set of initial users have been changed. Now a personal user
8227 for the local system administrator is created during installation
8228 instead of the previously created localadmin and super-admin users,
8229 and this user is granted administrative privileges using group
8230 membership. This reduces the number of passwords one need to keep
8231 up to date on the system.&lt;/li&gt;
8232
8233 &lt;/ul&gt;
8234
8235 &lt;p&gt;The new main server seem to work so well that I am testing it as my
8236 private DNS/LDAP/Kerberos/PXE/LTSP server at home. I will use it look
8237 for issues we could fix to polish Debian Edu even further before the
8238 final Squeeze release is published.&lt;/p&gt;
8239
8240 &lt;p&gt;Next weekend the project organise a
8241 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/01/msg00001.html&quot;&gt;developer
8242 gathering&lt;/a&gt; in Oslo. We will continue the work on the Squeeze
8243 version, and start initial planning for the Wheezy version. Perhaps I
8244 will see you there?&lt;/p&gt;
8245 </description>
8246 </item>
8247
8248 <item>
8249 <title>Handling non-free firmware in Debian Edu/Squeeze</title>
8250 <link>http://people.skolelinux.org/pere/blog/Handling_non_free_firmware_in_Debian_Edu_Squeeze.html</link>
8251 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Handling_non_free_firmware_in_Debian_Edu_Squeeze.html</guid>
8252 <pubDate>Fri, 27 Jan 2012 23:30:00 +0100</pubDate>
8253 <description>&lt;p&gt;With some computer hardware, one need non-free firmware blobs.
8254 This is the sad fact of todays computers. In the next version of
8255 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; based
8256 on Squeeze, we provide several scripts and modifications to make
8257 firmware blobs easier to handle. The common use case I run into is a
8258 laptop with a wireless network card requiring non-free firmware to
8259 work, but there are other use cases as well.&lt;/p&gt;
8260
8261 &lt;p&gt;First and foremost, Debian Edu provide ISO images for DVD and CD
8262 with all firmware packages in the Debian sections main and non-free
8263 included, to ensure debian-installer find and can install all of them
8264 during installation. This take care firmware for network devices used
8265 by the installer when installing from from local media. But for
8266 example multimedia devices are not activated in the installer and are
8267 not taken care of by this.&lt;/p&gt;
8268
8269 &lt;p&gt;For non-network devices, we provide the script
8270 &lt;tt&gt;/usr/share/debian-edu-config/tools/auto-addfirmware&lt;/tt&gt; which
8271 search through the &lt;tt&gt;dmesg&lt;/tt&gt; output for drivers requesting extra
8272 firmware. The firmware file name is looked up in the Contents-ARCH.gz
8273 file available in the package repository, and the packages providing
8274 the requested firmware file(s) is installed. I have proposed to do
8275 something similar in debian-installer (BTS report
8276 &lt;a href=&quot;http://bugs.debian.org/655507&quot;&gt;#655507&lt;/a&gt;), to allow PXE
8277 installs of Debian to handle firmware installation better. Run the
8278 script as root from the command line to fetch and install the needed
8279 firmware packages.&lt;/p&gt;
8280
8281 &lt;p&gt;Debian Edu provide PXE installation of Debian out of the box, and
8282 because some machines need firmware to get their network cards
8283 working, the installation initrd some times need extra firmware
8284 included to be able to install at all. To fill the PXE installation
8285 initrd with extra firmware, the
8286 &lt;tt&gt;/usr/share/debian-edu-config/tools/pxe-addfirmware&lt;/tt&gt; script is
8287 provided. Again, just run it as root on the command line to fill the
8288 PXE initrd with firmware packages.&lt;/p&gt;
8289
8290 &lt;p&gt;Last, some LTSP clients might also need firmware to get their
8291 network cards working. For this,
8292 &lt;tt&gt;/usr/share/debian-edu-config/tools/ltsp-addfirmware&lt;/tt&gt; is
8293 provided to update the LTSP initrd with firmware blobs. It is used
8294 the same way as the other firmware related tools.&lt;/p&gt;
8295
8296 &lt;p&gt;At the moment, we do not run any of these during installation. We
8297 do not know if this is acceptable for the local administrator to use
8298 non-free software, and it is their choice.&lt;/p&gt;
8299
8300 &lt;p&gt;We plan to release beta3 this weekend. You might want to give it a
8301 try.&lt;/p&gt;
8302 </description>
8303 </item>
8304
8305 <item>
8306 <title>Setting up a new school with Debian Edu/Squeeze</title>
8307 <link>http://people.skolelinux.org/pere/blog/Setting_up_a_new_school_with_Debian_Edu_Squeeze.html</link>
8308 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Setting_up_a_new_school_with_Debian_Edu_Squeeze.html</guid>
8309 <pubDate>Wed, 25 Jan 2012 21:00:00 +0100</pubDate>
8310 <description>&lt;p&gt;The next version of &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu
8311 / Skolelinux&lt;/a&gt; will include a new tool
8312 &lt;tt&gt;sitesummary2ldapdhcp&lt;/tt&gt;, which can be used to quickly set up all
8313 the computers in a school without much manual labour. Here is a short
8314 summary on how to use it to set up a new school.&lt;/p&gt;
8315
8316 &lt;p&gt;First, install a combined Main Server and Thin Client Server as the
8317 central server in the network. Next, PXE boot all the client machines
8318 as thin clients and wait 5 minutes after the last client booted to
8319 allow the clients to report their existence to the central server. When
8320 this is done, log on to the central server and run
8321 &lt;tt&gt;sitesummary2ldapdhcp -a&lt;/tt&gt; in the &lt;tt&gt;konsole&lt;/tt&gt; to use the
8322 collected information to generate system objects in LDAP. The output
8323 will look similar to this:&lt;/p&gt;
8324
8325 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
8326 % sitesummary2ldapdhcp -a
8327 info: Updating machine tjener.intern [10.0.2.2] id ether-00:01:02:03:04:05.
8328 info: Create GOsa machine for auto-mac-00-01-02-03-04-06 [10.0.16.20] id ether-00:01:02:03:04:06.
8329
8330 Enter password if you want to activate these changes, and ^c to abort.
8331
8332 Connecting to LDAP as cn=admin,ou=ldap-access,dc=skole,dc=skolelinux,dc=no
8333 enter password: *******
8334 %
8335 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
8336
8337 &lt;p&gt;After providing the LDAP administrative password (the same as the
8338 root password set during installation), the LDAP database will be
8339 populated with system objects for each PXE booted machine with
8340 automatically generated names. The final step to set up the school is
8341 then to log into &lt;a href=&quot;https://oss.gonicus.de/labs/gosa/&quot;&gt;GOsa&lt;/a&gt;,
8342 the web based user, group and system administration system to change
8343 system names, add systems to the correct host groups and finally
8344 enable DHCP and DNS for the systems. All clients that should be used
8345 as diskless workstations should be added to the workstation-hosts
8346 group. After this is done, all computers can be booted again via PXE
8347 and get their assigned names and group based configuration
8348 automatically.&lt;/p&gt;
8349
8350 &lt;p&gt;We plan to release beta3 with the updated version of this feature
8351 enabled this weekend. You might want to give it a try.&lt;/p&gt;
8352
8353 &lt;p&gt;Update 2012-01-28: When calling sitesummary2ldapdhcp to add new
8354 hosts, one need to add the option -a. I forgot to mention this in my
8355 original text, and have added it to the text now.&lt;/p&gt;
8356 </description>
8357 </item>
8358
8359 <item>
8360 <title>Changing the default Iceweasel start page in Debian Edu/Squeeze</title>
8361 <link>http://people.skolelinux.org/pere/blog/Changing_the_default_Iceweasel_start_page_in_Debian_Edu_Squeeze.html</link>
8362 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Changing_the_default_Iceweasel_start_page_in_Debian_Edu_Squeeze.html</guid>
8363 <pubDate>Tue, 10 Jan 2012 15:30:00 +0100</pubDate>
8364 <description>&lt;p&gt;In the Squeeze version of
8365 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; soon
8366 to be released, users of the system will get their default browser
8367 start page set from LDAP, allowing the system administrator to point
8368 all users to the school web page by updating one setting in LDAP. In
8369 addition to setting the default start page when a machine boots, users
8370 are shown the same page as a welcome page when they log in for the
8371 first time.&lt;/p&gt;
8372
8373 &lt;p&gt;The LDAP object dc=skole,dc=skolelinux,dc=no have an attribute
8374 labeledURI with &quot;http://www/ LDAP for Debian Edu/Skolelinux&quot; as the
8375 default content. By changing this value to another URL, all users get
8376 to see the page behind this new URL.&lt;/p&gt;
8377
8378 &lt;p&gt;An easy way to update it is by using the ldapvi tool. It can be
8379 called as &quot;&lt;tt&gt;ldapvi -ZD &#39;(cn=admin)&#39;&lt;/tt&gt;&#39; to update LDAP with the
8380 new setting.&lt;/p&gt;
8381
8382 &lt;p&gt;We have written the code to adjust the default start page and show
8383 the welcome page, and I wonder if there is an easier way to do this
8384 from within Iceweasel instead.&lt;/p&gt;
8385 </description>
8386 </item>
8387
8388 <item>
8389 <title>Second beta version of Debian Edu / Skolelinux based on Squeeze</title>
8390 <link>http://people.skolelinux.org/pere/blog/Second_beta_version_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
8391 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Second_beta_version_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
8392 <pubDate>Sat, 7 Jan 2012 22:50:00 +0100</pubDate>
8393 <description>&lt;p&gt;I am happy to announce that today we managed to wrap up and publish
8394 the second beta version of
8395 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;. If
8396 you want to test a LDAP backed Kerberos server with out of the box PXE
8397 configuration for running diskless machines and installing new
8398 machines, check it out. If you need a software solution for your
8399 school, check it out too. The full announcement is
8400 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/01/msg00000.html&quot;&gt;available&lt;/a&gt;
8401 on the project announcement list.&lt;/p&gt;
8402 </description>
8403 </item>
8404
8405 <item>
8406 <title>Fixing an hanging debian installer for Debian Edu</title>
8407 <link>http://people.skolelinux.org/pere/blog/Fixing_an_hanging_debian_installer_for_Debian_Edu.html</link>
8408 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Fixing_an_hanging_debian_installer_for_Debian_Edu.html</guid>
8409 <pubDate>Tue, 3 Jan 2012 11:25:00 +0100</pubDate>
8410 <description>&lt;p&gt;During christmas, I have been working getting the next version of
8411 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; ready
8412 for release. The initial problem I looked at was particularly
8413 interesting.&lt;/p&gt;
8414
8415 &lt;P&gt;The installer would hang at the end when it was doing it
8416 post-installation configuration, and whatevery I did to try to find
8417 the cause and fix it always worked while I tested it, but never when I
8418 integrated it into the installer and ran the installation from
8419 scratch. I would try to restart processes, close file descriptors,
8420 remove or create files, and the installer would always unblock and
8421 wrap up its tasks.&lt;/p&gt;
8422
8423 &lt;p&gt;Eventually the cause was found. The kernel was simply running out
8424 of entropy, causing the Kerberos setup to hang waiting for more.
8425 Pressing keys was adding entropy to the kernel, and thus all my tries
8426 to fix the problem worked not because what I was typing to fix it, but
8427 because I was typing.&lt;/P&gt;
8428
8429 &lt;p&gt;The fix I implemented was to add a background process looking at
8430 the level of entropy in the kernel (by checking
8431 /proc/sys/kernel/random/entropy_avail), and if it was too small, the
8432 installer will flush the kernel file buffers and do &#39;find /&#39; to
8433 generate some disk IO. Disk IO generate entropy in the kernel, and is
8434 one of the few things that can be initated from within the system to
8435 generate entropy.&lt;/p&gt;
8436
8437 &lt;p&gt;The fix is in
8438 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze/Installation&quot;&gt;beta1
8439 of the Debian Edu/Squeeze&lt;/a&gt; version, and we
8440 &lt;a href=&quot;http://wiki.debian.org/DebianEdu&quot;&gt;welcome more testers and
8441 developers&lt;/a&gt;. We plan to release beta2 this weekend.&lt;/p&gt;
8442 </description>
8443 </item>
8444
8445 <item>
8446 <title>Automatically upgrading server firmware on Dell PowerEdge</title>
8447 <link>http://people.skolelinux.org/pere/blog/Automatically_upgrading_server_firmware_on_Dell_PowerEdge.html</link>
8448 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatically_upgrading_server_firmware_on_Dell_PowerEdge.html</guid>
8449 <pubDate>Mon, 21 Nov 2011 12:00:00 +0100</pubDate>
8450 <description>&lt;p&gt;At work we have heaps of servers. I believe the total count is
8451 around 1000 at the moment. To be able to get help from the vendors
8452 when something go wrong, we want to keep the firmware on the servers
8453 up to date. If the firmware isn&#39;t the latest and greatest, the
8454 vendors typically refuse to start debugging any problems until the
8455 firmware is upgraded. So before every reboot, we want to upgrade the
8456 firmware, and we would really like everyone handling servers at the
8457 university to do this themselves when they plan to reboot a machine.
8458 For that to happen we at the unix server admin group need to provide
8459 the tools to do so.&lt;/p&gt;
8460
8461 &lt;p&gt;To make firmware upgrading easier, I am working on a script to
8462 fetch and install the latest firmware for the servers we got. Most of
8463 our hardware are from Dell and HP, so I have focused on these servers
8464 so far. This blog post is about the Dell part.&lt;/P&gt;
8465
8466 &lt;p&gt;On the Dell FTP site I was lucky enough to find
8467 &lt;a href=&quot;ftp://ftp.us.dell.com/catalog/Catalog.xml.gz&quot;&gt;an XML file&lt;/a&gt;
8468 with firmware information for all 11th generation servers, listing
8469 which firmware should be used on a given model and where on the FTP
8470 site I can find it. Using a simple perl XML parser I can then
8471 download the shell scripts Dell provides to do firmware upgrades from
8472 within Linux and reboot when all the firmware is primed and ready to
8473 be activated on the first reboot.&lt;/p&gt;
8474
8475 &lt;p&gt;This is the Dell related fragment of the perl code I am working on.
8476 Are there anyone working on similar tools for firmware upgrading all
8477 servers at a site? Please get in touch and lets share resources.&lt;/p&gt;
8478
8479 &lt;p&gt;&lt;pre&gt;
8480 #!/usr/bin/perl
8481 use strict;
8482 use warnings;
8483 use File::Temp qw(tempdir);
8484 BEGIN {
8485 # Install needed RHEL packages if missing
8486 my %rhelmodules = (
8487 &#39;XML::Simple&#39; =&gt; &#39;perl-XML-Simple&#39;,
8488 );
8489 for my $module (keys %rhelmodules) {
8490 eval &quot;use $module;&quot;;
8491 if ($@) {
8492 my $pkg = $rhelmodules{$module};
8493 system(&quot;yum install -y $pkg&quot;);
8494 eval &quot;use $module;&quot;;
8495 }
8496 }
8497 }
8498 my $errorsto = &#39;pere@hungry.com&#39;;
8499
8500 upgrade_dell();
8501
8502 exit 0;
8503
8504 sub run_firmware_script {
8505 my ($opts, $script) = @_;
8506 unless ($script) {
8507 print STDERR &quot;fail: missing script name\n&quot;;
8508 exit 1
8509 }
8510 print STDERR &quot;Running $script\n\n&quot;;
8511
8512 if (0 == system(&quot;sh $script $opts&quot;)) { # FIXME correct exit code handling
8513 print STDERR &quot;success: firmware script ran succcessfully\n&quot;;
8514 } else {
8515 print STDERR &quot;fail: firmware script returned error\n&quot;;
8516 }
8517 }
8518
8519 sub run_firmware_scripts {
8520 my ($opts, @dirs) = @_;
8521 # Run firmware packages
8522 for my $dir (@dirs) {
8523 print STDERR &quot;info: Running scripts in $dir\n&quot;;
8524 opendir(my $dh, $dir) or die &quot;Unable to open directory $dir: $!&quot;;
8525 while (my $s = readdir $dh) {
8526 next if $s =~ m/^\.\.?/;
8527 run_firmware_script($opts, &quot;$dir/$s&quot;);
8528 }
8529 closedir $dh;
8530 }
8531 }
8532
8533 sub download {
8534 my $url = shift;
8535 print STDERR &quot;info: Downloading $url\n&quot;;
8536 system(&quot;wget --quiet \&quot;$url\&quot;&quot;);
8537 }
8538
8539 sub upgrade_dell {
8540 my @dirs;
8541 my $product = `dmidecode -s system-product-name`;
8542 chomp $product;
8543
8544 if ($product =~ m/PowerEdge/) {
8545
8546 # on RHEL, these pacakges are needed by the firwmare upgrade scripts
8547 system(&#39;yum install -y compat-libstdc++-33.i686 libstdc++.i686 libxml2.i686 procmail&#39;);
8548
8549 my $tmpdir = tempdir(
8550 CLEANUP =&gt; 1
8551 );
8552 chdir($tmpdir);
8553 fetch_dell_fw(&#39;catalog/Catalog.xml.gz&#39;);
8554 system(&#39;gunzip Catalog.xml.gz&#39;);
8555 my @paths = fetch_dell_fw_list(&#39;Catalog.xml&#39;);
8556 # -q is quiet, disabling interactivity and reducing console output
8557 my $fwopts = &quot;-q&quot;;
8558 if (@paths) {
8559 for my $url (@paths) {
8560 fetch_dell_fw($url);
8561 }
8562 run_firmware_scripts($fwopts, $tmpdir);
8563 } else {
8564 print STDERR &quot;error: Unsupported Dell model &#39;$product&#39;.\n&quot;;
8565 print STDERR &quot;error: Please report to $errorsto.\n&quot;;
8566 }
8567 chdir(&#39;/&#39;);
8568 } else {
8569 print STDERR &quot;error: Unsupported Dell model &#39;$product&#39;.\n&quot;;
8570 print STDERR &quot;error: Please report to $errorsto.\n&quot;;
8571 }
8572 }
8573
8574 sub fetch_dell_fw {
8575 my $path = shift;
8576 my $url = &quot;ftp://ftp.us.dell.com/$path&quot;;
8577 download($url);
8578 }
8579
8580 # Using ftp://ftp.us.dell.com/catalog/Catalog.xml.gz, figure out which
8581 # firmware packages to download from Dell. Only work for Linux
8582 # machines and 11th generation Dell servers.
8583 sub fetch_dell_fw_list {
8584 my $filename = shift;
8585
8586 my $product = `dmidecode -s system-product-name`;
8587 chomp $product;
8588 my ($mybrand, $mymodel) = split(/\s+/, $product);
8589
8590 print STDERR &quot;Finding firmware bundles for $mybrand $mymodel\n&quot;;
8591
8592 my $xml = XMLin($filename);
8593 my @paths;
8594 for my $bundle (@{$xml-&gt;{SoftwareBundle}}) {
8595 my $brand = $bundle-&gt;{TargetSystems}-&gt;{Brand}-&gt;{Display}-&gt;{content};
8596 my $model = $bundle-&gt;{TargetSystems}-&gt;{Brand}-&gt;{Model}-&gt;{Display}-&gt;{content};
8597 my $oscode;
8598 if (&quot;ARRAY&quot; eq ref $bundle-&gt;{TargetOSes}-&gt;{OperatingSystem}) {
8599 $oscode = $bundle-&gt;{TargetOSes}-&gt;{OperatingSystem}[0]-&gt;{osCode};
8600 } else {
8601 $oscode = $bundle-&gt;{TargetOSes}-&gt;{OperatingSystem}-&gt;{osCode};
8602 }
8603 if ($mybrand eq $brand &amp;&amp; $mymodel eq $model &amp;&amp; &quot;LIN&quot; eq $oscode)
8604 {
8605 @paths = map { $_-&gt;{path} } @{$bundle-&gt;{Contents}-&gt;{Package}};
8606 }
8607 }
8608 for my $component (@{$xml-&gt;{SoftwareComponent}}) {
8609 my $componenttype = $component-&gt;{ComponentType}-&gt;{value};
8610
8611 # Drop application packages, only firmware and BIOS
8612 next if &#39;APAC&#39; eq $componenttype;
8613
8614 my $cpath = $component-&gt;{path};
8615 for my $path (@paths) {
8616 if ($cpath =~ m%/$path$%) {
8617 push(@paths, $cpath);
8618 }
8619 }
8620 }
8621 return @paths;
8622 }
8623 &lt;/pre&gt;
8624
8625 &lt;p&gt;The code is only tested on RedHat Enterprise Linux, but I suspect
8626 it could work on other platforms with some tweaking. Anyone know a
8627 index like Catalog.xml is available from HP for HP servers? At the
8628 moment I maintain a similar list manually and it is quickly getting
8629 outdated.&lt;/p&gt;
8630 </description>
8631 </item>
8632
8633 <item>
8634 <title>Free e-book kiosk for the public libraries?</title>
8635 <link>http://people.skolelinux.org/pere/blog/Free_e_book_kiosk_for_the_public_libraries_.html</link>
8636 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_e_book_kiosk_for_the_public_libraries_.html</guid>
8637 <pubDate>Fri, 7 Oct 2011 19:20:00 +0200</pubDate>
8638 <description>&lt;p&gt;Here in Norway the public libraries are debating with the
8639 publishing houses how to handle electronic books. Surprisingly, the
8640 libraries seem to be willing to accept digital restriction mechanisms
8641 (DRM) on books and renting e-books with artificial scarcity from the
8642 publishing houses. Time limited renting (2-3 years) is one proposed
8643 model, and only allowing X borrowers for each book is another.
8644 Personally I find it amazing that libraries are even considering such
8645 models.&lt;/p&gt;
8646
8647 &lt;p&gt;Anyway, while reading &lt;a href=&quot;http://boklaben.no/?p=220&quot;&gt;part of
8648 this debate&lt;/a&gt;, it occurred to me that someone should present a more
8649 sensible approach to the libraries, to allow its borrowers to get used
8650 to a better model. The idea is simple:&lt;/p&gt;
8651
8652 &lt;p&gt;Create a computer system for the libraries, either in the form of a
8653 Live DVD or a installable distribution, that provide a simple kiosk
8654 solution to hand out free e-books. As a start, the books distributed
8655 by &lt;a href=&quot;http://www.gutenberg.org/&quot;&gt;Project Gutenberg&lt;/a&gt; (about
8656 36,000 books), &lt;a href=&quot;http://runeberg.org/&quot;&gt;Project Runenberg&lt;/a&gt;
8657 (1149 books) and &lt;a href=&quot;http://www.archive.org/details/texts&quot;&gt;The
8658 Internet Archive&lt;/a&gt; (3,033,748 books) could be included, but any book
8659 where the copyright has expired or with a free licence could be
8660 distributed.&lt;/p&gt;
8661
8662 &lt;p&gt;The computer system would make it easy to:&lt;/p&gt;
8663
8664 &lt;ul&gt;
8665
8666 &lt;li&gt;Copy e-books into a USB stick, reading tablets, cell phones and
8667 other relevant equipment.&lt;/li&gt;
8668
8669 &lt;li&gt;Show the books for reading on the the screen in the library.&lt;/li&gt;
8670
8671 &lt;/ul&gt;
8672
8673 &lt;p&gt;In addition to such kiosk solution, there should probably be a web
8674 site as well to allow people easy access to these books without
8675 visiting the library. The site would be the distribution point for
8676 the kiosk systems, which would connect regularly to fetch any new
8677 books available.&lt;/p&gt;
8678
8679 &lt;p&gt;Are there anyone working on a system like this? I guess it would
8680 fit any library in the world, and not just the Norwegian public
8681 libraries. :)&lt;/p&gt;
8682 </description>
8683 </item>
8684
8685 <item>
8686 <title>Ripping problematic DVDs using dvdbackup and genisoimage</title>
8687 <link>http://people.skolelinux.org/pere/blog/Ripping_problematic_DVDs_using_dvdbackup_and_genisoimage.html</link>
8688 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Ripping_problematic_DVDs_using_dvdbackup_and_genisoimage.html</guid>
8689 <pubDate>Sat, 17 Sep 2011 20:20:00 +0200</pubDate>
8690 <description>&lt;p&gt;For convenience, I want to store copies of all my DVDs on my file
8691 server. It allow me to save shelf space flat while still having my
8692 movie collection easily available. It also make it possible to let
8693 the kids see their favourite DVDs without wearing the physical copies
8694 down. I prefer to store the DVDs as ISOs to keep the DVD menu and
8695 subtitle options intact. It also ensure that the entire film is one
8696 file on the disk. As this is for personal use, the ripping is
8697 perfectly legal here in Norway.&lt;/p&gt;
8698
8699 &lt;p&gt;Normally I rip the DVDs using dd like this:&lt;/p&gt;
8700
8701 &lt;blockquote&gt;&lt;pre&gt;
8702 #!/bin/sh
8703 # apt-get install lsdvd
8704 title=$(lsdvd 2&gt;/dev/null|awk &#39;/Disc Title: / {print $3}&#39;)
8705 dd if=/dev/dvd of=/storage/dvds/$title.iso bs=1M
8706 &lt;/pre&gt;&lt;/blockquote&gt;
8707
8708 &lt;p&gt;But some DVDs give a input/output error when I read it, and I have
8709 been looking for a better alternative. I have no idea why this I/O
8710 error occur, but suspect my DVD drive, the Linux kernel driver or
8711 something fishy with the DVDs in question. Or perhaps all three.&lt;/p&gt;
8712
8713 &lt;p&gt;Anyway, I believe I found a solution today using dvdbackup and
8714 genisoimage. This script gave me a working ISO for a problematic
8715 movie by first extracting the DVD file system and then re-packing it
8716 back as an ISO.
8717
8718 &lt;blockquote&gt;&lt;pre&gt;
8719 #!/bin/sh
8720 # apt-get install lsdvd dvdbackup genisoimage
8721 set -e
8722 tmpdir=/storage/dvds/
8723 title=$(lsdvd 2&gt;/dev/null|awk &#39;/Disc Title: / {print $3}&#39;)
8724 dvdbackup -i /dev/dvd -M -o $tmpdir -n$title
8725 genisoimage -dvd-video -o $tmpdir/$title.iso $tmpdir/$title
8726 rm -rf $tmpdir/$title
8727 &lt;/pre&gt;&lt;/blockquote&gt;
8728
8729 &lt;p&gt;Anyone know of a better way available in Debian/Squeeze?&lt;/p&gt;
8730
8731 &lt;p&gt;Update 2011-09-18: I got a tip from Konstantin Khomoutov about the
8732 readom program from the wodim package. It is specially written to
8733 read optical media, and is called like this: &lt;tt&gt;readom dev=/dev/dvd
8734 f=image.iso&lt;/tt&gt;. It got 6 GB along with the problematic Cars DVD
8735 before it failed, and failed right away with a Timmy Time DVD.&lt;/p&gt;
8736
8737 &lt;p&gt;Next, I got a tip from Bastian Blank about
8738 &lt;a href=&quot;http://bblank.thinkmo.de/blog/new-software-python-dvdvideo&quot;&gt;his
8739 program python-dvdvideo&lt;/a&gt;, which seem to be just what I am looking
8740 for. Tested it with my problematic Timmy Time DVD, and it succeeded
8741 creating a ISO image. The git source built and installed just fine in
8742 Squeeze, so I guess this will be my tool of choice in the future.&lt;/p&gt;
8743 </description>
8744 </item>
8745
8746 <item>
8747 <title>How is booting into runlevel 1 different from single user boots?</title>
8748 <link>http://people.skolelinux.org/pere/blog/How_is_booting_into_runlevel_1_different_from_single_user_boots_.html</link>
8749 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_is_booting_into_runlevel_1_different_from_single_user_boots_.html</guid>
8750 <pubDate>Thu, 4 Aug 2011 12:40:00 +0200</pubDate>
8751 <description>&lt;p&gt;Wouter Verhelst have some
8752 &lt;a href=&quot;http://grep.be/blog/en/retorts/pere_kubuntu_boot&quot;&gt;interesting
8753 comments and opinions&lt;/a&gt; on my blog post on
8754 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/What_should_start_from__etc_rcS_d__in_Debian____almost_nothing.html&quot;&gt;the
8755 need to clean up /etc/rcS.d/ in Debian&lt;/a&gt; and my blog post about
8756 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/What_is_missing_in_the_Debian_desktop__or_why_my_parents_use_Kubuntu.html&quot;&gt;the
8757 default KDE desktop in Debian&lt;/a&gt;. I only have time to address one
8758 small piece of his comment now, and though it best to address the
8759 misunderstanding he bring forward:&lt;/p&gt;
8760
8761 &lt;p&gt;&lt;blockquote&gt;
8762 Currently, a system admin has four options: [...] boot to a
8763 single-user system (by adding &#39;single&#39; to the kernel command line;
8764 this runs rcS and rc1 scripts)
8765 &lt;/blockquote&gt;&lt;/p&gt;
8766
8767 &lt;p&gt;This make me believe Wouter believe booting into single user mode
8768 and booting into runlevel 1 is the same. I am not surprised he
8769 believe this, because it would make sense and is a quite sensible
8770 thing to believe. But because the boot in Debian is slightly broken,
8771 runlevel 1 do not work properly and it isn&#39;t the same as single user
8772 mode. I&#39;ll try to explain what is actually happing, but it is a bit
8773 hard to explain.&lt;/p&gt;
8774
8775 &lt;p&gt;Single user mode is defined like this in /etc/inittab:
8776 &quot;&lt;tt&gt;~~:S:wait:/sbin/sulogin&lt;/tt&gt;&quot;. This means the only thing that is
8777 executed in single user mode is sulogin. Single user mode is a boot
8778 state &quot;between&quot; the runlevels, and when booting into single user mode,
8779 only the scripts in /etc/rcS.d/ are executed before the init process
8780 enters the single user state. When switching to runlevel 1, the state
8781 is in fact not ending in runlevel 1, but it passes through runlevel 1
8782 and end up in the single user mode (see /etc/rc1.d/S03single, which
8783 runs &quot;init -t1 S&quot; to switch to single user mode at the end of runlevel
8784 1. It is confusing that the &#39;S&#39; (single user) init mode is not the
8785 mode enabled by /etc/rcS.d/ (which is more like the initial boot
8786 mode).&lt;/p&gt;
8787
8788 &lt;p&gt;This summary might make it clearer. When booting for the first
8789 time into single user mode, the following commands are executed:
8790 &quot;&lt;tt&gt;/etc/init.d/rc S; /sbin/sulogin&lt;/tt&gt;&quot;. When booting into
8791 runlevel 1, the following commands are executed: &quot;&lt;tt&gt;/etc/init.d/rc
8792 S; /etc/init.d/rc 1; /sbin/sulogin&lt;/tt&gt;&quot;. A problem show up when
8793 trying to continue after visiting single user mode. Not all services
8794 are started again as they should, causing the machine to end up in an
8795 unpredicatble state. This is why Debian admins recommend rebooting
8796 after visiting single user mode.&lt;/p&gt;
8797
8798 &lt;p&gt;A similar problem with runlevel 1 is caused by the amount of
8799 scripts executed from /etc/rcS.d/. When switching from say runlevel 2
8800 to runlevel 1, the services started from /etc/rcS.d/ are not properly
8801 stopped when passing through the scripts in /etc/rc1.d/, and not
8802 started again when switching away from runlevel 1 to the runlevels
8803 2-5. I believe the problem is best fixed by moving all the scripts
8804 out of /etc/rcS.d/ that are not &lt;strong&gt;required&lt;/strong&gt; to get a
8805 functioning single user mode during boot.&lt;/p&gt;
8806
8807 &lt;p&gt;I have spent several years investigating the Debian boot system,
8808 and discovered this problem a few years ago. I suspect it originates
8809 from when sysvinit was introduced into Debian, a long time ago.&lt;/p&gt;
8810 </description>
8811 </item>
8812
8813 <item>
8814 <title>What should start from /etc/rcS.d/ in Debian? - almost nothing</title>
8815 <link>http://people.skolelinux.org/pere/blog/What_should_start_from__etc_rcS_d__in_Debian____almost_nothing.html</link>
8816 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/What_should_start_from__etc_rcS_d__in_Debian____almost_nothing.html</guid>
8817 <pubDate>Sat, 30 Jul 2011 14:00:00 +0200</pubDate>
8818 <description>&lt;p&gt;In the Debian boot system, several packages include scripts that
8819 are started from /etc/rcS.d/. In fact, there is a bite more of them
8820 than make sense, and this causes a few problems. What kind of
8821 problems, you might ask. There are at least two problems. The first
8822 is that it is not possible to recover a machine after switching to
8823 runlevel 1. One need to actually reboot to get the machine back to
8824 the expected state. The other is that single user boot will sometimes
8825 run into problems because some of the subsystems are activated before
8826 the root login is presented, causing problems when trying to recover a
8827 machine from a problem in that subsystem. A minor additional point is
8828 that moving more scripts out of rcS.d/ and into the other rc#.d/
8829 directories will increase the amount of scripts that can run in
8830 parallel during boot, and thus decrease the boot time.&lt;/p&gt;
8831
8832 &lt;p&gt;So, which scripts should start from rcS.d/. In short, only the
8833 scripts that _have_ to execute before the root login prompt is
8834 presented during a single user boot should go there. Everything else
8835 should go into the numeric runlevels. This means things like
8836 lm-sensors, fuse and x11-common should not run from rcS.d, but from
8837 the numeric runlevels. Today in Debian, there are around 115 init.d
8838 scripts that are started from rcS.d/, and most of them should be moved
8839 out. Do your package have one of them? Please help us make single
8840 user and runlevel 1 better by moving it.&lt;/p&gt;
8841
8842 &lt;p&gt;Scripts setting up the screen, keyboard, system partitions
8843 etc. should still be started from rcS.d/, but there is for example no
8844 need to have the network enabled before the single user login prompt
8845 is presented.&lt;/p&gt;
8846
8847 &lt;p&gt;As always, things are not so easy to fix as they sound. To keep
8848 Debian systems working while scripts migrate and during upgrades, the
8849 scripts need to be moved from rcS.d/ to rc2.d/ in reverse dependency
8850 order, ie the scripts that nothing in rcS.d/ depend on can be moved,
8851 and the next ones can only be moved when their dependencies have been
8852 moved first. This migration must be done sequentially while we ensure
8853 that the package system upgrade packages in the right order to keep
8854 the system state correct. This will require some coordination when it
8855 comes to network related packages, but most of the packages with
8856 scripts that should migrate do not have anything in rcS.d/ depending
8857 on them. Some packages have already been updated, like the sudo
8858 package, while others are still left to do. I wish I had time to work
8859 on this myself, but real live constrains make it unlikely that I will
8860 find time to push this forward.&lt;/p&gt;
8861 </description>
8862 </item>
8863
8864 <item>
8865 <title>What is missing in the Debian desktop, or why my parents use Kubuntu</title>
8866 <link>http://people.skolelinux.org/pere/blog/What_is_missing_in_the_Debian_desktop__or_why_my_parents_use_Kubuntu.html</link>
8867 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/What_is_missing_in_the_Debian_desktop__or_why_my_parents_use_Kubuntu.html</guid>
8868 <pubDate>Fri, 29 Jul 2011 08:10:00 +0200</pubDate>
8869 <description>&lt;p&gt;While at Debconf11, I have several times during discussions
8870 mentioned the issues I believe should be improved in Debian for its
8871 desktop to be useful for more people. The use case for this is my
8872 parents, which are currently running Kubuntu which solve the
8873 issues.&lt;/p&gt;
8874
8875 &lt;p&gt;I suspect these four missing features are not very hard to
8876 implement. After all, they are present in Ubuntu, so if we wanted to
8877 do this in Debian we would have a source.&lt;/p&gt;
8878
8879 &lt;ol&gt;
8880
8881 &lt;li&gt;&lt;strong&gt;Simple GUI based upgrade of packages.&lt;/strong&gt; When there
8882 are new packages available for upgrades, a icon in the KDE status bar
8883 indicate this, and clicking on it will activate the simple upgrade
8884 tool to handle it. I have no problem guiding both of my parents
8885 through the process over the phone. If a kernel reboot is required,
8886 this too is indicated by the status bars and the upgrade tool. Last
8887 time I checked, nothing with the same features was working in KDE in
8888 Debian.&lt;/li&gt;
8889
8890 &lt;li&gt;&lt;strong&gt;Simple handling of missing Firefox browser
8891 plugins.&lt;/strong&gt; When the browser encounter a MIME type it do not
8892 currently have a handler for, it will ask the user if the system
8893 should search for a package that would add support for this MIME type,
8894 and if the user say yes, the APT sources will be searched for packages
8895 advertising the MIME type in their control file (visible in the
8896 Packages file in the APT archive). If one or more packages are found,
8897 it is a simple click of the mouse to add support for the missing mime
8898 type. If the package require the user to accept some non-free
8899 license, this is explained to the user. The entire process make it
8900 more clear to the user why something do not work in the browser, and
8901 make the chances higher for the user to blame the web page authors and
8902 not the browser for any missing features.&lt;/li&gt;
8903
8904 &lt;li&gt;&lt;strong&gt;Simple handling of missing multimedia codec/format
8905 handlers.&lt;/strong&gt; When the media players encounter a format or codec
8906 it is not supporting, a dialog pop up asking the user if the system
8907 should search for a package that would add support for it. This
8908 happen with things like MP3, Windows Media or H.264. The selection
8909 and installation procedure is very similar to the Firefox browser
8910 plugin handling. This is as far as I know implemented using a
8911 gstreamer hook. The end result is that the user easily get access to
8912 the codecs that are present from the APT archives available, while
8913 explaining more on why a given format is unsupported by Ubuntu.&lt;/li&gt;
8914
8915 &lt;li&gt;&lt;strong&gt;Better browser handling of some MIME types.&lt;/strong&gt; When
8916 displaying a text/plain file in my Debian browser, it will propose to
8917 start emacs to show it. If I remember correctly, when doing the same
8918 in Kunbutu it show the file as a text file in the browser. At least I
8919 know Opera will show text files within the browser. I much prefer the
8920 latter behaviour.&lt;/li&gt;
8921
8922 &lt;/ol&gt;
8923
8924 &lt;p&gt;There are other nice features as well, like the simplified suite
8925 upgrader, but given that I am the one mostly doing the dist-upgrade,
8926 it do not matter much.&lt;/p&gt;
8927
8928 &lt;p&gt;I really hope we could get these features in place for the next
8929 Debian release. It would require the coordinated effort of several
8930 maintainers, but would make the end user experience a lot better.&lt;/p&gt;
8931 </description>
8932 </item>
8933
8934 <item>
8935 <title>Perl modules used by FixMyStreet which are missing in Debian/Squeeze</title>
8936 <link>http://people.skolelinux.org/pere/blog/Perl_modules_used_by_FixMyStreet_which_are_missing_in_Debian_Squeeze.html</link>
8937 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Perl_modules_used_by_FixMyStreet_which_are_missing_in_Debian_Squeeze.html</guid>
8938 <pubDate>Tue, 26 Jul 2011 12:25:00 +0200</pubDate>
8939 <description>&lt;p&gt;The Norwegian &lt;a href=&quot;http://www.fiksgatami.no/&quot;&gt;FiksGataMi&lt;/A&gt;
8940 site is build on Debian/Squeeze, and this platform was chosen because
8941 I am most familiar with Debian (being a Debian Developer for around 10
8942 years) because it is the latest stable Debian release which should get
8943 security support for a few years.&lt;/p&gt;
8944
8945 &lt;p&gt;The web service is written in Perl, and depend on some perl modules
8946 that are missing in Debian at the moment. It would be great if these
8947 modules were added to the Debian archive, allowing anyone to set up
8948 their own &lt;a href=&quot;http://www.fixmystreet.com&quot;&gt;FixMyStreet&lt;/a&gt; clone
8949 in their own country using only Debian packages. The list of modules
8950 missing in Debian/Squeeze isn&#39;t very long, and I hope the perl group
8951 will find time to package the 12 modules Catalyst::Plugin::SmartURI,
8952 Catalyst::Plugin::Unicode::Encoding, Catalyst::View::TT, Devel::Hide,
8953 Sort::Key, Statistics::Distributions, Template::Plugin::Comma,
8954 Template::Plugin::DateTime::Format, Term::Size::Any, Term::Size::Perl,
8955 URI::SmartURI and Web::Scraper to make the maintenance of FixMyStreet
8956 easier in the future.&lt;/p&gt;
8957
8958 &lt;p&gt;Thanks to the great tools in Debian, getting the missing modules
8959 installed on my server was a simple call to &#39;cpan2deb Module::Name&#39;
8960 and &#39;dpkg -i&#39; to install the resulting package. But this leave me
8961 with the responsibility of tracking security problems, which I really
8962 do not have time for.&lt;/p&gt;
8963 </description>
8964 </item>
8965
8966 <item>
8967 <title>Free Software vs. proprietary softare...</title>
8968 <link>http://people.skolelinux.org/pere/blog/Free_Software_vs__proprietary_softare___.html</link>
8969 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_Software_vs__proprietary_softare___.html</guid>
8970 <pubDate>Mon, 20 Jun 2011 12:50:00 +0200</pubDate>
8971 <description>&lt;p&gt;Reading
8972 &lt;a href=&quot;http://blog.thingiverse.com/2011/06/20/open-source-vs-closed-source-eulas/&quot;&gt;the
8973 thingiverse blog&lt;/a&gt;, I came across two highlights of interesting
8974 parts of the
8975 &lt;a href=&quot;http://wiki.blender.org/index.php/Autodesk_EULA&quot;&gt;Autodesk&lt;/a&gt;
8976 and
8977 &lt;a href=&quot;http://blog.makezine.com/archive/2011/06/things-you-cant-do-with-the-microsoft-kinect-sdk.html&quot;&gt;Microsoft
8978 Kinect&lt;/a&gt; End User License Agreements (EULAs), which illustrates
8979 quite well why I stay away from software with EULAs. Whenever I take
8980 the time to read their content, the terms are simply unacceptable.&lt;/p&gt;
8981 </description>
8982 </item>
8983
8984 <item>
8985 <title>Experimental Open311 API for the mySociety fixmystreet system</title>
8986 <link>http://people.skolelinux.org/pere/blog/Experimental_Open311_API_for_the_mySociety_fixmystreet_system.html</link>
8987 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Experimental_Open311_API_for_the_mySociety_fixmystreet_system.html</guid>
8988 <pubDate>Sat, 30 Apr 2011 17:20:00 +0200</pubDate>
8989 <description>&lt;p&gt;Today, the first draft implementation of an
8990 &lt;a href=&quot;http://www.open311.org/&quot;&gt;Open311 API&lt;/a&gt; for the Norwegian
8991 service &lt;a href=&quot;http://www.fiksgatami.no/&quot;&gt;FiksGataMi&lt;/a&gt; started to
8992 work. It is only available on the developer server for now, and I
8993 have not tested it using any existing Open311 client (I lack the
8994 platforms needed to run the clients I have found so far), but it is
8995 able to query the database and extract a list of open and closed
8996 requests within a given category and reported to a given municipality.
8997 I believe that is a good start to create a useful service for those
8998 that want to do data mining on the requests submitted so far.&lt;/p&gt;
8999
9000 &lt;p&gt;Where is it? Visit
9001 &lt;a href=&quot;http://fiksgatami-dev.nuug.no/open311.cgi/v2/&quot;&gt;http://fiksgatami-dev.nuug.no/open311.cgi/v2/&lt;/a&gt;
9002 to have a look. Please send feedback to the
9003 &lt;a href=&quot;http://lists.nuug.no/mailman/listinfo/fiksgatami&quot;&gt;fiksgatami
9004 (at) nuug.no&lt;/a&gt; mailing list.&lt;/p&gt;
9005 </description>
9006 </item>
9007
9008 <item>
9009 <title>Initial notes on adding Open311 server API on FixMyStreet</title>
9010 <link>http://people.skolelinux.org/pere/blog/Initial_notes_on_adding_Open311_server_API_on_FixMyStreet.html</link>
9011 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Initial_notes_on_adding_Open311_server_API_on_FixMyStreet.html</guid>
9012 <pubDate>Fri, 29 Apr 2011 10:00:00 +0200</pubDate>
9013 <description>&lt;p&gt;The last few days I have spent some time trying to add support for
9014 the &lt;a href=&quot;http://www.open311.org/&quot;&gt;Open311 API&lt;/a&gt; in the
9015 &lt;a href=&quot;http://www.fiksgatami.no/&quot;&gt;Norwegian FixMyStreet service&lt;/a&gt;.
9016 Earlier I believed Open311 would be a useful API to use to submit
9017 reports to the municipalities, but when I noticed that the
9018 &lt;a href=&quot;http://fixmystreet.org.nz/&quot;&gt;New Zealand version&lt;/a&gt; of
9019 FixMyStreet had implemented Open311 on the server side, it occurred to
9020 me that this was a nice way to allow the public, press and
9021 municipalities to do data mining directly in the FixMyStreet service.
9022 Thus I went to work implementing the Open311 specification for
9023 FixMyStreet. The implementation is not yet ready, but I am starting
9024 to get a draft limping along. In the process, I have discovered a few
9025 issues with the Open311 specification.&lt;/p&gt;
9026
9027 &lt;p&gt;One obvious missing feature is the lack of natural language
9028 handling in the specification. The specification seem to assume all
9029 reports will be written in English, and do not provide a way for the
9030 receiving end to specify which languages are understood there. To be
9031 able to use the same client and submit to several Open311 receivers,
9032 it would be useful to know which language to use when writing reports.
9033 I believe the specification should be extended to allow the receivers
9034 of problem reports to specify which language they accept, and the
9035 submitter to specify which language the report is written in.
9036 Language of a text can also be automatically guessed using statistical
9037 methods, but for multi-lingual persons like myself, it is useful to
9038 know which language to use when writing a problem report. I suspect
9039 some lang=nb,nn kind of attribute would solve it.&lt;/p&gt;
9040
9041 &lt;p&gt;A key part of the Open311 API is the list of services provided,
9042 which is similar to the categories used by FixMyStreet. One issue I
9043 run into is the need to specify both name and unique identifier for
9044 each category. The specification do not state that the identifier
9045 should be numeric, but all example implementations have used numbers
9046 here. In FixMyStreet, there is no number associated with each
9047 category. As the specification do not forbid it, I will use the name
9048 as the unique identifier for now and see how open311 clients handle
9049 it.&lt;/p&gt;
9050
9051 &lt;p&gt;The report format in open311 and the report format in FixMyStreet
9052 differ in a key part. FixMyStreet have a title and a description,
9053 while Open311 only have a description and lack the title. I&#39;m not
9054 quite sure how to best handle this yet. When asking for a FixMyStreet
9055 report in Open311 format, I just merge title an description into the
9056 open311 description, but this is not going to work if the open311 API
9057 should be used for submitting new reports to FixMyStreet.&lt;/p&gt;
9058
9059 &lt;p&gt;The search feature in Open311 is missing a way to ask for problems
9060 near a geographic location. I believe this is important if one is to
9061 use Open311 as the query language for mobile units. The specification
9062 should be extended to handle this, probably using some new lat=, lon=
9063 and range= options.&lt;/p&gt;
9064
9065 &lt;p&gt;The final challenge I see is that the FixMyStreet code handle
9066 several administrations in one interface, while the Open311 API seem
9067 to assume only one administration. For FixMyStreet, this mean a
9068 report can be sent to several administrations, and the categories
9069 available depend on the location of the problem. Not quite sure how
9070 to best handle this. I&#39;ve noticed
9071 &lt;a href=&quot;http://seeclickfix.com/open311/&quot;&gt;SeeClickFix&lt;/a&gt; added
9072 latitude and longitude options to the services request, but it do not
9073 solve the problem of what to return when no location is specified.
9074 Will have to investigate this a bit more.&lt;/p&gt;
9075
9076 &lt;p&gt;My distaste for web forums have kept me from bringing these issues
9077 up with the open311 developer group. I really wish they had a email
9078 list available via &lt;a href=&quot;http://www.gmane.org/&quot;&gt;Gmane&lt;/a&gt; to use for
9079 discussions instead of only
9080 &lt;a href=&quot;http://lists.open311.org/groups/discuss&quot;&gt;a forum&lt;a/&gt;. Oh,
9081 well. That will probably resolve itself, one way or another. I&#39;ve
9082 also tried visiting the IRC channel #open311 on FreeNode, but no-one
9083 seem to reply to my questions there. This make me wonder if I just
9084 fail to understand how the open311 community work. It sure do not
9085 work like the free software project communities I am used to.&lt;/p&gt;
9086 </description>
9087 </item>
9088
9089 <item>
9090 <title>Gnash enteres Google Summer of Code 2011</title>
9091 <link>http://people.skolelinux.org/pere/blog/Gnash_enteres_Google_Summer_of_Code_2011.html</link>
9092 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Gnash_enteres_Google_Summer_of_Code_2011.html</guid>
9093 <pubDate>Wed, 6 Apr 2011 09:00:00 +0200</pubDate>
9094 <description>&lt;p&gt;&lt;a href=&quot;http://www.getgnash.org/&quot;&gt;The Gnash project&lt;/a&gt; is still
9095 the most promising solution for a Free Software Flash implementation.
9096 A few days ago the project
9097 &lt;a href=&quot;http://lists.gnu.org/archive/html/gnash-dev/2011-04/msg00011.html&quot;&gt;announced&lt;/a&gt;
9098 that it will participate in Google Summer of Code. I hope many
9099 students apply, and that some of them succeed in getting AVM2 support
9100 into Gnash.&lt;/p&gt;
9101 </description>
9102 </item>
9103
9104 <item>
9105 <title>A Norwegian FixMyStreet have kept me busy the last few weeks</title>
9106 <link>http://people.skolelinux.org/pere/blog/A_Norwegian_FixMyStreet_have_kept_me_busy_the_last_few_weeks.html</link>
9107 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_Norwegian_FixMyStreet_have_kept_me_busy_the_last_few_weeks.html</guid>
9108 <pubDate>Sun, 3 Apr 2011 22:50:00 +0200</pubDate>
9109 <description>&lt;p&gt;Here is a small update for my English readers. Most of my blog
9110 posts have been in Norwegian the last few weeks, so here is a short
9111 update in English.&lt;/p&gt;
9112
9113 &lt;p&gt;The kids still keep me too busy to get much free software work
9114 done, but I did manage to organise a project to get a Norwegian port
9115 of the British service
9116 &lt;a href=&quot;http://www.fixmystreet.com/&quot;&gt;FixMyStreet&lt;/a&gt; up and running,
9117 and it has been running for a month now. The entire project has been
9118 organised by me and two others. Around Christmas we gathered sponsors
9119 to fund the development work. In January I drafted a contract with
9120 &lt;a href=&quot;http://www.mysociety.org/&quot;&gt;mySociety&lt;/a&gt; on what to develop,
9121 and in February the development took place. Most of it involved
9122 converting the source to use GPS coordinates instead of British
9123 easting/northing, and the resulting code should be a lot easier to get
9124 running in any country by now. The Norwegian
9125 &lt;a href=&quot;http://www.fiksgatami.no/&quot;&gt;FiksGataMi&lt;/a&gt; is using
9126 &lt;a href=&quot;http://www.openstreetmap.org/&quot;&gt;OpenStreetmap&lt;/a&gt; as the map
9127 source and the source for administrative borders in Norway, and
9128 support for this had to be added/fixed.&lt;/p&gt;
9129
9130 &lt;p&gt;The Norwegian version went live March 3th, and we spent the weekend
9131 polishing the system before we announced it March 7th. The system is
9132 running on a KVM instance of Debian/Squeeze, and has seen almost 3000
9133 problem reports in a few weeks. Soon we hope to announce the Android
9134 and iPhone versions making it even easier to report problems with the
9135 public infrastructure.&lt;/p&gt;
9136
9137 &lt;p&gt;Perhaps something to consider for those of you in countries without
9138 such service?&lt;/p&gt;
9139 </description>
9140 </item>
9141
9142 <item>
9143 <title>Using NVD and CPE to track CVEs in locally maintained software</title>
9144 <link>http://people.skolelinux.org/pere/blog/Using_NVD_and_CPE_to_track_CVEs_in_locally_maintained_software.html</link>
9145 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Using_NVD_and_CPE_to_track_CVEs_in_locally_maintained_software.html</guid>
9146 <pubDate>Fri, 28 Jan 2011 15:40:00 +0100</pubDate>
9147 <description>&lt;p&gt;The last few days I have looked at ways to track open security
9148 issues here at my work with the University of Oslo. My idea is that
9149 it should be possible to use the information about security issues
9150 available on the Internet, and check our locally
9151 maintained/distributed software against this information. It should
9152 allow us to verify that no known security issues are forgotten. The
9153 CVE database listing vulnerabilities seem like a great central point,
9154 and by using the package lists from Debian mapped to CVEs provided by
9155 the testing security team, I believed it should be possible to figure
9156 out which security holes were present in our free software
9157 collection.&lt;/p&gt;
9158
9159 &lt;p&gt;After reading up on the topic, it became obvious that the first
9160 building block is to be able to name software packages in a unique and
9161 consistent way across data sources. I considered several ways to do
9162 this, for example coming up with my own naming scheme like using URLs
9163 to project home pages or URLs to the Freshmeat entries, or using some
9164 existing naming scheme. And it seem like I am not the first one to
9165 come across this problem, as MITRE already proposed and implemented a
9166 solution. Enter the &lt;a href=&quot;http://cpe.mitre.org/index.html&quot;&gt;Common
9167 Platform Enumeration&lt;/a&gt; dictionary, a vocabulary for referring to
9168 software, hardware and other platform components. The CPE ids are
9169 mapped to CVEs in the &lt;a href=&quot;http://web.nvd.nist.gov/&quot;&gt;National
9170 Vulnerability Database&lt;/a&gt;, allowing me to look up know security
9171 issues for any CPE name. With this in place, all I need to do is to
9172 locate the CPE id for the software packages we use at the university.
9173 This is fairly trivial (I google for &#39;cve cpe $package&#39; and check the
9174 NVD entry if a CVE for the package exist).&lt;/p&gt;
9175
9176 &lt;p&gt;To give you an example. The GNU gzip source package have the CPE
9177 name cpe:/a:gnu:gzip. If the old version 1.3.3 was the package to
9178 check out, one could look up
9179 &lt;a href=&quot;http://web.nvd.nist.gov/view/vuln/search?cpe=cpe%3A%2Fa%3Agnu%3Agzip:1.3.3&quot;&gt;cpe:/a:gnu:gzip:1.3.3
9180 in NVD&lt;/a&gt; and get a list of 6 security holes with public CVE entries.
9181 The most recent one is
9182 &lt;a href=&quot;http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0001&quot;&gt;CVE-2010-0001&lt;/a&gt;,
9183 and at the bottom of the NVD page for this vulnerability the complete
9184 list of affected versions is provided.&lt;/p&gt;
9185
9186 &lt;p&gt;The NVD database of CVEs is also available as a XML dump, allowing
9187 for offline processing of issues. Using this dump, I&#39;ve written a
9188 small script taking a list of CPEs as input and list all CVEs
9189 affecting the packages represented by these CPEs. One give it CPEs
9190 with version numbers as specified above and get a list of open
9191 security issues out.&lt;/p&gt;
9192
9193 &lt;p&gt;Of course for this approach to be useful, the quality of the NVD
9194 information need to be high. For that to happen, I believe as many as
9195 possible need to use and contribute to the NVD database. I notice
9196 RHEL is providing
9197 &lt;a href=&quot;https://www.redhat.com/security/data/metrics/rhsamapcpe.txt&quot;&gt;a
9198 map from CVE to CPE&lt;/a&gt;, indicating that they are using the CPE
9199 information. I&#39;m not aware of Debian and Ubuntu doing the same.&lt;/p&gt;
9200
9201 &lt;p&gt;To get an idea about the quality for free software, I spent some
9202 time making it possible to compare the CVE database from Debian with
9203 the CVE database in NVD. The result look fairly good, but there are
9204 some inconsistencies in NVD (same software package having several
9205 CPEs), and some inaccuracies (NVD not mentioning buggy packages that
9206 Debian believe are affected by a CVE). Hope to find time to improve
9207 the quality of NVD, but that require being able to get in touch with
9208 someone maintaining it. So far my three emails with questions and
9209 corrections have not seen any reply, but I hope contact can be
9210 established soon.&lt;/p&gt;
9211
9212 &lt;p&gt;An interesting application for CPEs is cross platform package
9213 mapping. It would be useful to know which packages in for example
9214 RHEL, OpenSuSe and Mandriva are missing from Debian and Ubuntu, and
9215 this would be trivial if all linux distributions provided CPE entries
9216 for their packages.&lt;/p&gt;
9217 </description>
9218 </item>
9219
9220 <item>
9221 <title>Which module is loaded for a given PCI and USB device?</title>
9222 <link>http://people.skolelinux.org/pere/blog/Which_module_is_loaded_for_a_given_PCI_and_USB_device_.html</link>
9223 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Which_module_is_loaded_for_a_given_PCI_and_USB_device_.html</guid>
9224 <pubDate>Sun, 23 Jan 2011 00:20:00 +0100</pubDate>
9225 <description>&lt;p&gt;In the
9226 &lt;a href=&quot;http://packages.qa.debian.org/discover-data&quot;&gt;discover-data&lt;/a&gt;
9227 package in Debian, there is a script to report useful information
9228 about the running hardware for use when people report missing
9229 information. One part of this script that I find very useful when
9230 debugging hardware problems, is the part mapping loaded kernel module
9231 to the PCI device it claims. It allow me to quickly see if the kernel
9232 module I expect is driving the hardware I am struggling with. To see
9233 the output, make sure discover-data is installed and run
9234 &lt;tt&gt;/usr/share/bug/discover-data 3&gt;&amp;1&lt;/tt&gt;. The relevant output on
9235 one of my machines like this:&lt;/p&gt;
9236
9237 &lt;pre&gt;
9238 loaded modules:
9239 10de:03eb i2c_nforce2
9240 10de:03f1 ohci_hcd
9241 10de:03f2 ehci_hcd
9242 10de:03f0 snd_hda_intel
9243 10de:03ec pata_amd
9244 10de:03f6 sata_nv
9245 1022:1103 k8temp
9246 109e:036e bttv
9247 109e:0878 snd_bt87x
9248 11ab:4364 sky2
9249 &lt;/pre&gt;
9250
9251 &lt;p&gt;The code in question look like this, slightly modified for
9252 readability and to drop the output to file descriptor 3:&lt;/p&gt;
9253
9254 &lt;pre&gt;
9255 if [ -d /sys/bus/pci/devices/ ] ; then
9256 echo loaded pci modules:
9257 (
9258 cd /sys/bus/pci/devices/
9259 for address in * ; do
9260 if [ -d &quot;$address/driver/module&quot; ] ; then
9261 module=`cd $address/driver/module ; pwd -P | xargs basename`
9262 if grep -q &quot;^$module &quot; /proc/modules ; then
9263 address=$(echo $address |sed s/0000://)
9264 id=`lspci -n -s $address | tail -n 1 | awk &#39;{print $3}&#39;`
9265 echo &quot;$id $module&quot;
9266 fi
9267 fi
9268 done
9269 )
9270 echo
9271 fi
9272 &lt;/pre&gt;
9273
9274 &lt;p&gt;Similar code could be used to extract USB device module
9275 mappings:&lt;/p&gt;
9276
9277 &lt;pre&gt;
9278 if [ -d /sys/bus/usb/devices/ ] ; then
9279 echo loaded usb modules:
9280 (
9281 cd /sys/bus/usb/devices/
9282 for address in * ; do
9283 if [ -d &quot;$address/driver/module&quot; ] ; then
9284 module=`cd $address/driver/module ; pwd -P | xargs basename`
9285 if grep -q &quot;^$module &quot; /proc/modules ; then
9286 address=$(echo $address |sed s/0000://)
9287 id=$(lsusb -s $address | tail -n 1 | awk &#39;{print $6}&#39;)
9288 if [ &quot;$id&quot; ] ; then
9289 echo &quot;$id $module&quot;
9290 fi
9291 fi
9292 fi
9293 done
9294 )
9295 echo
9296 fi
9297 &lt;/pre&gt;
9298
9299 &lt;p&gt;This might perhaps be something to include in other tools as
9300 well.&lt;/p&gt;
9301 </description>
9302 </item>
9303
9304 <item>
9305 <title>The video format most supported in web browsers?</title>
9306 <link>http://people.skolelinux.org/pere/blog/The_video_format_most_supported_in_web_browsers_.html</link>
9307 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_video_format_most_supported_in_web_browsers_.html</guid>
9308 <pubDate>Sun, 16 Jan 2011 00:20:00 +0100</pubDate>
9309 <description>&lt;p&gt;The video format struggle on the web continues, and the three
9310 contenders seem to be Ogg Theora, H.264 and WebM. Most video sites
9311 seem to use H.264, while others use Ogg Theora. Interestingly enough,
9312 the comments I see give me the feeling that a lot of people believe
9313 H.264 is the most supported video format in browsers, but according to
9314 the Wikipedia article on
9315 &lt;a href=&quot;http://en.wikipedia.org/wiki/HTML5_video&quot;&gt;HTML5 video&lt;/a&gt;,
9316 this is not true. Check out the nice table of supprted formats in
9317 different browsers there. The format supported by most browsers is
9318 Ogg Theora, supported by released versions of Mozilla Firefox, Google
9319 Chrome, Chromium, Opera, Konqueror, Epiphany, Origyn Web Browser and
9320 BOLT browser, while not supported by Internet Explorer nor Safari.
9321 The runner up is WebM supported by released versions of Google Chrome
9322 Chromium Opera and Origyn Web Browser, and test versions of Mozilla
9323 Firefox. H.264 is supported by released versions of Safari, Origyn
9324 Web Browser and BOLT browser, and the test version of Internet
9325 Explorer. Those wanting Ogg Theora support in Internet Explorer and
9326 Safari can install plugins to get it.&lt;/p&gt;
9327
9328 &lt;p&gt;To me, the simple conclusion from this is that to reach most users
9329 without any extra software installed, one uses Ogg Theora with the
9330 HTML5 video tag. Of course to reach all those without a browser
9331 handling HTML5, one need fallback mechanisms. In
9332 &lt;a href=&quot;http://www.nuug.no/&quot;&gt;NUUG&lt;/a&gt;, we provide first fallback to a
9333 plugin capable of playing MPEG1 video, and those without such support
9334 we have a second fallback to the Cortado java applet playing Ogg
9335 Theora. This seem to work quite well, as can be seen in an &lt;a
9336 href=&quot;http://www.nuug.no/aktiviteter/20110111-semantic-web/&quot;&gt;example
9337 from last week&lt;/a&gt;.&lt;/p&gt;
9338
9339 &lt;p&gt;The reason Ogg Theora is the most supported format, and H.264 is
9340 the least supported is simple. Implementing and using H.264
9341 require royalty payment to MPEG-LA, and the terms of use from MPEG-LA
9342 are incompatible with free software licensing. If you believed H.264
9343 was without royalties and license terms, check out
9344 &quot;&lt;a href=&quot;http://webmink.com/essays/h-264/&quot;&gt;H.264 – Not The Kind Of
9345 Free That Matters&lt;/a&gt;&quot; by Simon Phipps.&lt;/p&gt;
9346
9347 &lt;p&gt;A incomplete list of sites providing video in Ogg Theora is
9348 available from
9349 &lt;a href=&quot;http://wiki.xiph.org/index.php/List_of_Theora_videos&quot;&gt;the
9350 Xiph.org wiki&lt;/a&gt;, if you want to have a look. I&#39;m not aware of a
9351 similar list for WebM nor H.264.&lt;/p&gt;
9352
9353 &lt;p&gt;Update 2011-01-16 09:40: A question from Tollef on IRC made me
9354 realise that I failed to make it clear enough this text is about the
9355 &amp;lt;video&amp;gt; tag support in browsers and not the video support
9356 provided by external plugins like the Flash plugins.&lt;/p&gt;
9357 </description>
9358 </item>
9359
9360 <item>
9361 <title>Chrome plan to drop H.264 support for HTML5 &amp;lt;video&amp;gt;</title>
9362 <link>http://people.skolelinux.org/pere/blog/Chrome_plan_to_drop_H_264_support_for_HTML5__lt_video_gt_.html</link>
9363 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Chrome_plan_to_drop_H_264_support_for_HTML5__lt_video_gt_.html</guid>
9364 <pubDate>Wed, 12 Jan 2011 22:10:00 +0100</pubDate>
9365 <description>&lt;p&gt;Today I discovered
9366 &lt;a href=&quot;http://www.digi.no/860070/google-dropper-h264-stotten-i-chrome&quot;&gt;via
9367 digi.no&lt;/a&gt; that the Chrome developers, in a surprising announcement,
9368 &lt;a href=&quot;http://blog.chromium.org/2011/01/html-video-codec-support-in-chrome.html&quot;&gt;yesterday
9369 announced&lt;/a&gt; plans to drop H.264 support for HTML5 &amp;lt;video&amp;gt; in
9370 the browser. The argument used is that H.264 is not a &quot;completely
9371 open&quot; codec technology. If you believe H.264 was free for everyone
9372 to use, I recommend having a look at the essay
9373 &quot;&lt;a href=&quot;http://webmink.com/essays/h-264/&quot;&gt;H.264 – Not The Kind Of
9374 Free That Matters&lt;/a&gt;&quot;. It is not free of cost for creators of video
9375 tools, nor those of us that want to publish on the Internet, and the
9376 terms provided by MPEG-LA excludes free software projects from
9377 licensing the patents needed for H.264. Some background information
9378 on the Google announcement is available from
9379 &lt;a href=&quot;http://www.osnews.com/story/24243/Google_To_Drop_H264_Support_from_Chrome&quot;&gt;OSnews&lt;/a&gt;.
9380 A good read. :)&lt;/p&gt;
9381
9382 &lt;p&gt;Personally, I believe it is great that Google is taking a stand to
9383 promote equal terms for everyone when it comes to video publishing on
9384 the Internet. This can only be done by publishing using free and open
9385 standards, which is only possible if the web browsers provide support
9386 for these free and open standards. At the moment there seem to be two
9387 camps in the web browser world when it come to video support. Some
9388 browsers support H.264, and others support
9389 &lt;a href=&quot;http://www.theora.org/&quot;&gt;Ogg Theora&lt;/a&gt; and
9390 &lt;a href=&quot;http://www.webmproject.org/&quot;&gt;WebM&lt;/a&gt;
9391 (&lt;a href=&quot;http://www.diracvideo.org/&quot;&gt;Dirac&lt;/a&gt; is not really an option
9392 yet), forcing those of us that want to publish video on the Internet
9393 and which can not accept the terms of use presented by MPEG-LA for
9394 H.264 to not reach all potential viewers.
9395 Wikipedia keep &lt;a href=&quot;http://en.wikipedia.org/wiki/HTML5_video&quot;&gt;an
9396 updated summary&lt;/a&gt; of the current browser support.&lt;/p&gt;
9397
9398 &lt;p&gt;Not surprising, several people would prefer Google to keep
9399 promoting H.264, and John Gruber
9400 &lt;a href=&quot;http://daringfireball.net/2011/01/simple_questions&quot;&gt;presents
9401 the mind set&lt;/a&gt; of these people quite well. His rhetorical questions
9402 provoked a reply from Thom Holwerda with another set of questions
9403 &lt;a href=&quot;http://www.osnews.com/story/24245/10_Questions_for_John_Gruber_Regarding_H_264_WebM&quot;&gt;presenting
9404 the issues with H.264&lt;/a&gt;. Both are worth a read.&lt;/p&gt;
9405
9406 &lt;p&gt;Some argue that if Google is dropping H.264 because it isn&#39;t free,
9407 they should also drop support for the Adobe Flash plugin. This
9408 argument was covered by Simon Phipps in
9409 &lt;a href=&quot;http://blogs.computerworlduk.com/simon-says/2011/01/google-and-h264---far-from-hypocritical/index.htm&quot;&gt;todays
9410 blog post&lt;/a&gt;, which I find to put the issue in context. To me it
9411 make perfect sense to drop native H.264 support for HTML5 in the
9412 browser while still allowing plugins.&lt;/p&gt;
9413
9414 &lt;p&gt;I suspect the reason this announcement make so many people protest,
9415 is that all the users and promoters of H.264 suddenly get an uneasy
9416 feeling that they might be backing the wrong horse. A lot of TV
9417 broadcasters have been moving to H.264 the last few years, and a lot
9418 of money has been invested in hardware based on the belief that they
9419 could use the same video format for both broadcasting and web
9420 publishing. Suddenly this belief is shaken.&lt;/p&gt;
9421
9422 &lt;p&gt;An interesting question is why Google is doing this. While the
9423 presented argument might be true enough, I believe Google would only
9424 present the argument if the change make sense from a business
9425 perspective. One reason might be that they are currently negotiating
9426 with MPEG-LA over royalties or usage terms, and giving MPEG-LA the
9427 feeling that dropping H.264 completely from Chroome, Youtube and
9428 Google Video would improve the negotiation position of Google.
9429 Another reason might be that Google want to save money by not having
9430 to pay the video tax to MPEG-LA at all, and thus want to move to a
9431 video format not requiring royalties at all. A third reason might be
9432 that the Chrome development team simply want to avoid the
9433 Chrome/Chromium split to get more help with the development of Chrome.
9434 I guess time will tell.&lt;/p&gt;
9435
9436 &lt;p&gt;Update 2011-01-15: The Google Chrome team provided
9437 &lt;a href=&quot;http://blog.chromium.org/2011/01/more-about-chrome-html-video-codec.html&quot;&gt;more
9438 background and information on the move&lt;/a&gt; it a blog post yesterday.&lt;/p&gt;
9439 </description>
9440 </item>
9441
9442 <item>
9443 <title>What standards are Free and Open as defined by Digistan?</title>
9444 <link>http://people.skolelinux.org/pere/blog/What_standards_are_Free_and_Open_as_defined_by_Digistan_.html</link>
9445 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/What_standards_are_Free_and_Open_as_defined_by_Digistan_.html</guid>
9446 <pubDate>Thu, 30 Dec 2010 23:15:00 +0100</pubDate>
9447 <description>&lt;p&gt;After trying to
9448 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Is_Ogg_Theora_a_free_and_open_standard_.html&quot;&gt;compare
9449 Ogg Theora&lt;/a&gt; to
9450 &lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;the Digistan
9451 definition&lt;/a&gt; of a free and open standard, I concluded that this need
9452 to be done for more standards and started on a framework for doing
9453 this. As a start, I want to get the status for all the standards in
9454 the Norwegian reference directory, which include UTF-8, HTML, PDF, ODF,
9455 JPEG, PNG, SVG and others. But to be able to complete this in a
9456 reasonable time frame, I will need help.&lt;/p&gt;
9457
9458 &lt;p&gt;If you want to help out with this work, please visit
9459 &lt;a href=&quot;http://wiki.nuug.no/grupper/standard/digistan-analyse&quot;&gt;the
9460 wiki pages I have set up for this&lt;/a&gt;, and let me know that you want
9461 to help out. The IRC channel #nuug on irc.freenode.net is a good
9462 place to coordinate this for now, as it is the IRC channel for the
9463 NUUG association where I have created the framework (I am the leader
9464 of the Norwegian Unix User Group).&lt;/p&gt;
9465
9466 &lt;p&gt;The framework is still forming, and a lot is left to do. Do not be
9467 scared by the sketchy form of the current pages. :)&lt;/p&gt;
9468 </description>
9469 </item>
9470
9471 <item>
9472 <title>The many definitions of a open standard</title>
9473 <link>http://people.skolelinux.org/pere/blog/The_many_definitions_of_a_open_standard.html</link>
9474 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_many_definitions_of_a_open_standard.html</guid>
9475 <pubDate>Mon, 27 Dec 2010 14:45:00 +0100</pubDate>
9476 <description>&lt;p&gt;One of the reasons I like the Digistan definition of
9477 &quot;&lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;Free and
9478 Open Standard&lt;/a&gt;&quot; is that this is a new term, and thus the meaning of
9479 the term has been decided by Digistan. The term &quot;Open Standard&quot; has
9480 become so misunderstood that it is no longer very useful when talking
9481 about standards. One end up discussing which definition is the best
9482 one and with such frame the only one gaining are the proponents of
9483 de-facto standards and proprietary solutions.&lt;/p&gt;
9484
9485 &lt;p&gt;But to give us an idea about the diversity of definitions of open
9486 standards, here are a few that I know about. This list is not
9487 complete, but can be a starting point for those that want to do a
9488 complete survey. More definitions are available on the
9489 &lt;a href=&quot;http://en.wikipedia.org/wiki/Open_standard&quot;&gt;wikipedia
9490 page&lt;/a&gt;.&lt;/p&gt;
9491
9492 &lt;p&gt;First off is my favourite, the definition from the European
9493 Interoperability Framework version 1.0. Really sad to notice that BSA
9494 and others has succeeded in getting it removed from version 2.0 of the
9495 framework by stacking the committee drafting the new version with
9496 their own people. Anyway, the definition is still available and it
9497 include the key properties needed to make sure everyone can use a
9498 specification on equal terms.&lt;/p&gt;
9499
9500 &lt;blockquote&gt;
9501
9502 &lt;p&gt;The following are the minimal characteristics that a specification
9503 and its attendant documents must have in order to be considered an
9504 open standard:&lt;/p&gt;
9505
9506 &lt;ul&gt;
9507
9508 &lt;li&gt;The standard is adopted and will be maintained by a not-for-profit
9509 organisation, and its ongoing development occurs on the basis of an
9510 open decision-making procedure available to all interested parties
9511 (consensus or majority decision etc.).&lt;/li&gt;
9512
9513 &lt;li&gt;The standard has been published and the standard specification
9514 document is available either freely or at a nominal charge. It must be
9515 permissible to all to copy, distribute and use it for no fee or at a
9516 nominal fee.&lt;/li&gt;
9517
9518 &lt;li&gt;The intellectual property - i.e. patents possibly present - of
9519 (parts of) the standard is made irrevocably available on a royalty-
9520 free basis.&lt;/li&gt;
9521
9522 &lt;li&gt;There are no constraints on the re-use of the standard.&lt;/li&gt;
9523
9524 &lt;/ul&gt;
9525 &lt;/blockquote&gt;
9526
9527 &lt;p&gt;Another one originates from my friends over at
9528 &lt;a href=&quot;http://www.dkuug.dk/&quot;&gt;DKUUG&lt;/a&gt;, who coined and gathered
9529 support for &lt;a href=&quot;http://www.aaben-standard.dk/&quot;&gt;this
9530 definition&lt;/a&gt; in 2004. It even made it into the Danish parlament as
9531 &lt;a href=&quot;http://www.ft.dk/dokumenter/tingdok.aspx?/samling/20051/beslutningsforslag/B103/som_fremsat.htm&quot;&gt;their
9532 definition of a open standard&lt;/a&gt;. Another from a different part of
9533 the Danish government is available from the wikipedia page.&lt;/p&gt;
9534
9535 &lt;blockquote&gt;
9536
9537 &lt;p&gt;En åben standard opfylder følgende krav:&lt;/p&gt;
9538
9539 &lt;ol&gt;
9540
9541 &lt;li&gt;Veldokumenteret med den fuldstændige specifikation offentligt
9542 tilgængelig.&lt;/li&gt;
9543
9544 &lt;li&gt;Frit implementerbar uden økonomiske, politiske eller juridiske
9545 begrænsninger på implementation og anvendelse.&lt;/li&gt;
9546
9547 &lt;li&gt;Standardiseret og vedligeholdt i et åbent forum (en såkaldt
9548 &quot;standardiseringsorganisation&quot;) via en åben proces.&lt;/li&gt;
9549
9550 &lt;/ol&gt;
9551
9552 &lt;/blockquote&gt;
9553
9554 &lt;p&gt;Then there is &lt;a href=&quot;http://www.fsfe.org/projects/os/def.html&quot;&gt;the
9555 definition&lt;/a&gt; from Free Software Foundation Europe.&lt;/p&gt;
9556
9557 &lt;blockquote&gt;
9558
9559 &lt;p&gt;An Open Standard refers to a format or protocol that is&lt;/p&gt;
9560
9561 &lt;ol&gt;
9562
9563 &lt;li&gt;subject to full public assessment and use without constraints in a
9564 manner equally available to all parties;&lt;/li&gt;
9565
9566 &lt;li&gt;without any components or extensions that have dependencies on
9567 formats or protocols that do not meet the definition of an Open
9568 Standard themselves;&lt;/li&gt;
9569
9570 &lt;li&gt;free from legal or technical clauses that limit its utilisation by
9571 any party or in any business model;&lt;/li&gt;
9572
9573 &lt;li&gt;managed and further developed independently of any single vendor
9574 in a process open to the equal participation of competitors and third
9575 parties;&lt;/li&gt;
9576
9577 &lt;li&gt;available in multiple complete implementations by competing
9578 vendors, or as a complete implementation equally available to all
9579 parties.&lt;/li&gt;
9580
9581 &lt;/ol&gt;
9582
9583 &lt;/blockquote&gt;
9584
9585 &lt;p&gt;A long time ago, SUN Microsystems, now bought by Oracle, created
9586 its
9587 &lt;a href=&quot;http://blogs.sun.com/dennisding/resource/Open%20Standard%20Definition.pdf&quot;&gt;Open
9588 Standards Checklist&lt;/a&gt; with a fairly detailed description.&lt;/p&gt;
9589
9590 &lt;blockquote&gt;
9591 &lt;p&gt;Creation and Management of an Open Standard
9592
9593 &lt;ul&gt;
9594
9595 &lt;li&gt;Its development and management process must be collaborative and
9596 democratic:
9597
9598 &lt;ul&gt;
9599
9600 &lt;li&gt;Participation must be accessible to all those who wish to
9601 participate and can meet fair and reasonable criteria
9602 imposed by the organization under which it is developed
9603 and managed.&lt;/li&gt;
9604
9605 &lt;li&gt;The processes must be documented and, through a known
9606 method, can be changed through input from all
9607 participants.&lt;/li&gt;
9608
9609 &lt;li&gt;The process must be based on formal and binding commitments for
9610 the disclosure and licensing of intellectual property rights.&lt;/li&gt;
9611
9612 &lt;li&gt;Development and management should strive for consensus,
9613 and an appeals process must be clearly outlined.&lt;/li&gt;
9614
9615 &lt;li&gt;The standard specification must be open to extensive
9616 public review at least once in its life-cycle, with
9617 comments duly discussed and acted upon, if required.&lt;/li&gt;
9618
9619 &lt;/ul&gt;
9620
9621 &lt;/li&gt;
9622
9623 &lt;/ul&gt;
9624
9625 &lt;p&gt;Use and Licensing of an Open Standard&lt;/p&gt;
9626 &lt;ul&gt;
9627
9628 &lt;li&gt;The standard must describe an interface, not an implementation,
9629 and the industry must be capable of creating multiple, competing
9630 implementations to the interface described in the standard without
9631 undue or restrictive constraints. Interfaces include APIs,
9632 protocols, schemas, data formats and their encoding.&lt;/li&gt;
9633
9634 &lt;li&gt; The standard must not contain any proprietary &quot;hooks&quot; that create
9635 a technical or economic barriers&lt;/li&gt;
9636
9637 &lt;li&gt;Faithful implementations of the standard must
9638 interoperate. Interoperability means the ability of a computer
9639 program to communicate and exchange information with other computer
9640 programs and mutually to use the information which has been
9641 exchanged. This includes the ability to use, convert, or exchange
9642 file formats, protocols, schemas, interface information or
9643 conventions, so as to permit the computer program to work with other
9644 computer programs and users in all the ways in which they are
9645 intended to function.&lt;/li&gt;
9646
9647 &lt;li&gt;It must be permissible for anyone to copy, distribute and read the
9648 standard for a nominal fee, or even no fee. If there is a fee, it
9649 must be low enough to not preclude widespread use.&lt;/li&gt;
9650
9651 &lt;li&gt;It must be possible for anyone to obtain free (no royalties or
9652 fees; also known as &quot;royalty free&quot;), worldwide, non-exclusive and
9653 perpetual licenses to all essential patent claims to make, use and
9654 sell products based on the standard. The only exceptions are
9655 terminations per the reciprocity and defensive suspension terms
9656 outlined below. Essential patent claims include pending, unpublished
9657 patents, published patents, and patent applications. The license is
9658 only for the exact scope of the standard in question.
9659
9660 &lt;ul&gt;
9661
9662 &lt;li&gt; May be conditioned only on reciprocal licenses to any of
9663 licensees&#39; patent claims essential to practice that standard
9664 (also known as a reciprocity clause)&lt;/li&gt;
9665
9666 &lt;li&gt; May be terminated as to any licensee who sues the licensor
9667 or any other licensee for infringement of patent claims
9668 essential to practice that standard (also known as a
9669 &quot;defensive suspension&quot; clause)&lt;/li&gt;
9670
9671 &lt;li&gt; The same licensing terms are available to every potential
9672 licensor&lt;/li&gt;
9673
9674 &lt;/ul&gt;
9675 &lt;/li&gt;
9676
9677 &lt;li&gt;The licensing terms of an open standards must not preclude
9678 implementations of that standard under open source licensing terms
9679 or restricted licensing terms&lt;/li&gt;
9680
9681 &lt;/ul&gt;
9682
9683 &lt;/blockquote&gt;
9684
9685 &lt;p&gt;It is said that one of the nice things about standards is that
9686 there are so many of them. As you can see, the same holds true for
9687 open standard definitions. Most of the definitions have a lot in
9688 common, and it is not really controversial what properties a open
9689 standard should have, but the diversity of definitions have made it
9690 possible for those that want to avoid a level marked field and real
9691 competition to downplay the significance of open standards. I hope we
9692 can turn this tide by focusing on the advantages of Free and Open
9693 Standards.&lt;/p&gt;
9694 </description>
9695 </item>
9696
9697 <item>
9698 <title>Is Ogg Theora a free and open standard?</title>
9699 <link>http://people.skolelinux.org/pere/blog/Is_Ogg_Theora_a_free_and_open_standard_.html</link>
9700 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Is_Ogg_Theora_a_free_and_open_standard_.html</guid>
9701 <pubDate>Sat, 25 Dec 2010 20:25:00 +0100</pubDate>
9702 <description>&lt;p&gt;&lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;The
9703 Digistan definition&lt;/a&gt; of a free and open standard reads like this:&lt;/p&gt;
9704
9705 &lt;blockquote&gt;
9706
9707 &lt;p&gt;The Digital Standards Organization defines free and open standard
9708 as follows:&lt;/p&gt;
9709
9710 &lt;ol&gt;
9711
9712 &lt;li&gt;A free and open standard is immune to vendor capture at all stages
9713 in its life-cycle. Immunity from vendor capture makes it possible to
9714 freely use, improve upon, trust, and extend a standard over time.&lt;/li&gt;
9715
9716 &lt;li&gt;The standard is adopted and will be maintained by a not-for-profit
9717 organisation, and its ongoing development occurs on the basis of an
9718 open decision-making procedure available to all interested
9719 parties.&lt;/li&gt;
9720
9721 &lt;li&gt;The standard has been published and the standard specification
9722 document is available freely. It must be permissible to all to copy,
9723 distribute, and use it freely.&lt;/li&gt;
9724
9725 &lt;li&gt;The patents possibly present on (parts of) the standard are made
9726 irrevocably available on a royalty-free basis.&lt;/li&gt;
9727
9728 &lt;li&gt;There are no constraints on the re-use of the standard.&lt;/li&gt;
9729
9730 &lt;/ol&gt;
9731
9732 &lt;p&gt;The economic outcome of a free and open standard, which can be
9733 measured, is that it enables perfect competition between suppliers of
9734 products based on the standard.&lt;/p&gt;
9735 &lt;/blockquote&gt;
9736
9737 &lt;p&gt;For a while now I have tried to figure out of Ogg Theora is a free
9738 and open standard according to this definition. Here is a short
9739 writeup of what I have been able to gather so far. I brought up the
9740 topic on the Xiph advocacy mailing list
9741 &lt;a href=&quot;http://lists.xiph.org/pipermail/advocacy/2009-July/001632.html&quot;&gt;in
9742 July 2009&lt;/a&gt;, for those that want to see some background information.
9743 According to Ivo Emanuel Gonçalves and Monty Montgomery on that list
9744 the Ogg Theora specification fulfils the Digistan definition.&lt;/p&gt;
9745
9746 &lt;p&gt;&lt;strong&gt;Free from vendor capture?&lt;/strong&gt;&lt;/p&gt;
9747
9748 &lt;p&gt;As far as I can see, there is no single vendor that can control the
9749 Ogg Theora specification. It can be argued that the
9750 &lt;a href=&quot;http://www.xiph.org/&quot;&gt;Xiph foundation&lt;/A&gt; is such vendor, but
9751 given that it is a non-profit foundation with the expressed goal
9752 making free and open protocols and standards available, it is not
9753 obvious that this is a real risk. One issue with the Xiph
9754 foundation is that its inner working (as in board member list, or who
9755 control the foundation) are not easily available on the web. I&#39;ve
9756 been unable to find out who is in the foundation board, and have not
9757 seen any accounting information documenting how money is handled nor
9758 where is is spent in the foundation. It is thus not obvious for an
9759 external observer who control The Xiph foundation, and for all I know
9760 it is possible for a single vendor to take control over the
9761 specification. But it seem unlikely.&lt;/p&gt;
9762
9763 &lt;p&gt;&lt;strong&gt;Maintained by open not-for-profit organisation?&lt;/strong&gt;&lt;/p&gt;
9764
9765 &lt;p&gt;Assuming that the Xiph foundation is the organisation its web pages
9766 claim it to be, this point is fulfilled. If Xiph foundation is
9767 controlled by a single vendor, it isn&#39;t, but I have not found any
9768 documentation indicating this.&lt;/p&gt;
9769
9770 &lt;p&gt;According to
9771 &lt;a href=&quot;http://media.hiof.no/diverse/fad/rapport_4.pdf&quot;&gt;a report&lt;/a&gt;
9772 prepared by Audun Vaaler og Børre Ludvigsen for the Norwegian
9773 government, the Xiph foundation is a non-commercial organisation and
9774 the development process is open, transparent and non-Discrimatory.
9775 Until proven otherwise, I believe it make most sense to believe the
9776 report is correct.&lt;/p&gt;
9777
9778 &lt;p&gt;&lt;strong&gt;Specification freely available?&lt;/strong&gt;&lt;/p&gt;
9779
9780 &lt;p&gt;The specification for the &lt;a href=&quot;http://www.xiph.org/ogg/doc/&quot;&gt;Ogg
9781 container format&lt;/a&gt; and both the
9782 &lt;a href=&quot;http://www.xiph.org/vorbis/doc/&quot;&gt;Vorbis&lt;/a&gt; and
9783 &lt;a href=&quot;http://theora.org/doc/&quot;&gt;Theora&lt;/a&gt; codeces are available on
9784 the web. This are the terms in the Vorbis and Theora specification:
9785
9786 &lt;blockquote&gt;
9787
9788 Anyone may freely use and distribute the Ogg and [Vorbis/Theora]
9789 specifications, whether in private, public, or corporate
9790 capacity. However, the Xiph.Org Foundation and the Ogg project reserve
9791 the right to set the Ogg [Vorbis/Theora] specification and certify
9792 specification compliance.
9793
9794 &lt;/blockquote&gt;
9795
9796 &lt;p&gt;The Ogg container format is specified in IETF
9797 &lt;a href=&quot;http://www.xiph.org/ogg/doc/rfc3533.txt&quot;&gt;RFC 3533&lt;/a&gt;, and
9798 this is the term:&lt;p&gt;
9799
9800 &lt;blockquote&gt;
9801
9802 &lt;p&gt;This document and translations of it may be copied and furnished to
9803 others, and derivative works that comment on or otherwise explain it
9804 or assist in its implementation may be prepared, copied, published and
9805 distributed, in whole or in part, without restriction of any kind,
9806 provided that the above copyright notice and this paragraph are
9807 included on all such copies and derivative works. However, this
9808 document itself may not be modified in any way, such as by removing
9809 the copyright notice or references to the Internet Society or other
9810 Internet organizations, except as needed for the purpose of developing
9811 Internet standards in which case the procedures for copyrights defined
9812 in the Internet Standards process must be followed, or as required to
9813 translate it into languages other than English.&lt;/p&gt;
9814
9815 &lt;p&gt;The limited permissions granted above are perpetual and will not be
9816 revoked by the Internet Society or its successors or assigns.&lt;/p&gt;
9817 &lt;/blockquote&gt;
9818
9819 &lt;p&gt;All these terms seem to allow unlimited distribution and use, an
9820 this term seem to be fulfilled. There might be a problem with the
9821 missing permission to distribute modified versions of the text, and
9822 thus reuse it in other specifications. Not quite sure if that is a
9823 requirement for the Digistan definition.&lt;/p&gt;
9824
9825 &lt;p&gt;&lt;strong&gt;Royalty-free?&lt;/strong&gt;&lt;/p&gt;
9826
9827 &lt;p&gt;There are no known patent claims requiring royalties for the Ogg
9828 Theora format.
9829 &lt;a href=&quot;http://www.streamingmedia.com/Articles/ReadArticle.aspx?ArticleID=65782&quot;&gt;MPEG-LA&lt;/a&gt;
9830 and
9831 &lt;a href=&quot;http://yro.slashdot.org/story/10/04/30/237238/Steve-Jobs-Hints-At-Theora-Lawsuit&quot;&gt;Steve
9832 Jobs&lt;/a&gt; in Apple claim to know about some patent claims (submarine
9833 patents) against the Theora format, but no-one else seem to believe
9834 them. Both Opera Software and the Mozilla Foundation have looked into
9835 this and decided to implement Ogg Theora support in their browsers
9836 without paying any royalties. For now the claims from MPEG-LA and
9837 Steve Jobs seem more like FUD to scare people to use the H.264 codec
9838 than any real problem with Ogg Theora.&lt;/p&gt;
9839
9840 &lt;p&gt;&lt;strong&gt;No constraints on re-use?&lt;/strong&gt;&lt;/p&gt;
9841
9842 &lt;p&gt;I am not aware of any constraints on re-use.&lt;/p&gt;
9843
9844 &lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;/p&gt;
9845
9846 &lt;p&gt;3 of 5 requirements seem obviously fulfilled, and the remaining 2
9847 depend on the governing structure of the Xiph foundation. Given the
9848 background report used by the Norwegian government, I believe it is
9849 safe to assume the last two requirements are fulfilled too, but it
9850 would be nice if the Xiph foundation web site made it easier to verify
9851 this.&lt;/p&gt;
9852
9853 &lt;p&gt;It would be nice to see other analysis of other specifications to
9854 see if they are free and open standards.&lt;/p&gt;
9855 </description>
9856 </item>
9857
9858 <item>
9859 <title>The reply from Edgar Villanueva to Microsoft in Peru</title>
9860 <link>http://people.skolelinux.org/pere/blog/The_reply_from_Edgar_Villanueva_to_Microsoft_in_Peru.html</link>
9861 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_reply_from_Edgar_Villanueva_to_Microsoft_in_Peru.html</guid>
9862 <pubDate>Sat, 25 Dec 2010 10:50:00 +0100</pubDate>
9863 <description>&lt;p&gt;A few days ago
9864 &lt;a href=&quot;http://www.idg.no/computerworld/article189879.ece&quot;&gt;an
9865 article&lt;/a&gt; in the Norwegian Computerworld magazine about how version
9866 2.0 of
9867 &lt;a href=&quot;http://en.wikipedia.org/wiki/European_Interoperability_Framework&quot;&gt;European
9868 Interoperability Framework&lt;/a&gt; has been successfully lobbied by the
9869 proprietary software industry to remove the focus on free software.
9870 Nothing very surprising there, given
9871 &lt;a href=&quot;http://news.slashdot.org/story/10/03/29/2115235/Open-Source-Open-Standards-Under-Attack-In-Europe&quot;&gt;earlier
9872 reports&lt;/a&gt; on how Microsoft and others have stacked the committees in
9873 this work. But I find this very sad. The definition of
9874 &lt;a href=&quot;http://www.nuug.no/dokumenter/standard-presse-def-200506.txt&quot;&gt;an
9875 open standard from version 1&lt;/a&gt; was very good, and something I
9876 believe should be used also in the future, alongside
9877 &lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;the
9878 definition from Digistan&lt;/A&gt;. Version 2 have removed the open
9879 standard definition from its content.&lt;/p&gt;
9880
9881 &lt;p&gt;Anyway, the news reminded me of the great reply sent by Dr. Edgar
9882 Villanueva, congressman in Peru at the time, to Microsoft as a reply
9883 to Microsofts attack on his proposal regarding the use of free software
9884 in the public sector in Peru. As the text was not available from a
9885 few of the URLs where it used to be available, I copy it here from
9886 &lt;a href=&quot;http://gnuwin.epfl.ch/articles/en/reponseperou/villanueva_to_ms.html&quot;&gt;my
9887 source&lt;/a&gt; to ensure it is available also in the future. Some
9888 background information about that story is available in
9889 &lt;a href=&quot;http://www.linuxjournal.com/article/6099&quot;&gt;an article&lt;/a&gt; from
9890 Linux Journal in 2002.&lt;/p&gt;
9891
9892 &lt;blockquote&gt;
9893 &lt;p&gt;Lima, 8th of April, 2002&lt;br&gt;
9894 To: Señor JUAN ALBERTO GONZÁLEZ&lt;br&gt;
9895 General Manager of Microsoft Perú&lt;/p&gt;
9896
9897 &lt;p&gt;Dear Sir:&lt;/p&gt;
9898
9899 &lt;p&gt;First of all, I thank you for your letter of March 25, 2002 in which you state the official position of Microsoft relative to Bill Number 1609, Free Software in Public Administration, which is indubitably inspired by the desire for Peru to find a suitable place in the global technological context. In the same spirit, and convinced that we will find the best solutions through an exchange of clear and open ideas, I will take this opportunity to reply to the commentaries included in your letter.&lt;/p&gt;
9900
9901 &lt;p&gt;While acknowledging that opinions such as yours constitute a significant contribution, it would have been even more worthwhile for me if, rather than formulating objections of a general nature (which we will analyze in detail later) you had gathered solid arguments for the advantages that proprietary software could bring to the Peruvian State, and to its citizens in general, since this would have allowed a more enlightening exchange in respect of each of our positions.&lt;/p&gt;
9902
9903 &lt;p&gt;With the aim of creating an orderly debate, we will assume that what you call &quot;open source software&quot; is what the Bill defines as &quot;free software&quot;, since there exists software for which the source code is distributed together with the program, but which does not fall within the definition established by the Bill; and that what you call &quot;commercial software&quot; is what the Bill defines as &quot;proprietary&quot; or &quot;unfree&quot;, given that there exists free software which is sold in the market for a price like any other good or service.&lt;/p&gt;
9904
9905 &lt;p&gt;It is also necessary to make it clear that the aim of the Bill we are discussing is not directly related to the amount of direct savings that can by made by using free software in state institutions. That is in any case a marginal aggregate value, but in no way is it the chief focus of the Bill. The basic principles which inspire the Bill are linked to the basic guarantees of a state of law, such as:&lt;/p&gt;
9906
9907 &lt;p&gt;
9908 &lt;ul&gt;
9909 &lt;li&gt;Free access to public information by the citizen. &lt;/li&gt;
9910 &lt;li&gt;Permanence of public data. &lt;/li&gt;
9911 &lt;li&gt;Security of the State and citizens.&lt;/li&gt;
9912 &lt;/ul&gt;
9913 &lt;/p&gt;
9914
9915 &lt;p&gt;To guarantee the free access of citizens to public information, it is indispensable that the encoding of data is not tied to a single provider. The use of standard and open formats gives a guarantee of this free access, if necessary through the creation of compatible free software.&lt;/p&gt;
9916
9917 &lt;p&gt;To guarantee the permanence of public data, it is necessary that the usability and maintenance of the software does not depend on the goodwill of the suppliers, or on the monopoly conditions imposed by them. For this reason the State needs systems the development of which can be guaranteed due to the availability of the source code.&lt;/p&gt;
9918
9919 &lt;p&gt;To guarantee national security or the security of the State, it is indispensable to be able to rely on systems without elements which allow control from a distance or the undesired transmission of information to third parties. Systems with source code freely accessible to the public are required to allow their inspection by the State itself, by the citizens, and by a large number of independent experts throughout the world. Our proposal brings further security, since the knowledge of the source code will eliminate the growing number of programs with *spy code*. &lt;/p&gt;
9920
9921 &lt;p&gt;In the same way, our proposal strengthens the security of the citizens, both in their role as legitimate owners of information managed by the state, and in their role as consumers. In this second case, by allowing the growth of a widespread availability of free software not containing *spy code* able to put at risk privacy and individual freedoms.&lt;/p&gt;
9922
9923 &lt;p&gt;In this sense, the Bill is limited to establishing the conditions under which the state bodies will obtain software in the future, that is, in a way compatible with these basic principles.&lt;/p&gt;
9924
9925
9926 &lt;p&gt;From reading the Bill it will be clear that once passed:&lt;br&gt;
9927 &lt;li&gt;the law does not forbid the production of proprietary software&lt;/li&gt;
9928 &lt;li&gt;the law does not forbid the sale of proprietary software&lt;/li&gt;
9929 &lt;li&gt;the law does not specify which concrete software to use&lt;/li&gt;
9930 &lt;li&gt;the law does not dictate the supplier from whom software will be bought&lt;/li&gt;
9931 &lt;li&gt;the law does not limit the terms under which a software product can be licensed.&lt;/li&gt;
9932
9933 &lt;/p&gt;
9934
9935 &lt;p&gt;What the Bill does express clearly, is that, for software to be acceptable for the state it is not enough that it is technically capable of fulfilling a task, but that further the contractual conditions must satisfy a series of requirements regarding the license, without which the State cannot guarantee the citizen adequate processing of his data, watching over its integrity, confidentiality, and accessibility throughout time, as these are very critical aspects for its normal functioning.&lt;/p&gt;
9936
9937 &lt;p&gt;We agree, Mr. Gonzalez, that information and communication technology have a significant impact on the quality of life of the citizens (whether it be positive or negative). We surely also agree that the basic values I have pointed out above are fundamental in a democratic state like Peru. So we are very interested to know of any other way of guaranteeing these principles, other than through the use of free software in the terms defined by the Bill.&lt;/p&gt;
9938
9939 &lt;p&gt;As for the observations you have made, we will now go on to analyze them in detail:&lt;/p&gt;
9940
9941 &lt;p&gt;Firstly, you point out that: &quot;1. The bill makes it compulsory for all public bodies to use only free software, that is to say open source software, which breaches the principles of equality before the law, that of non-discrimination and the right of free private enterprise, freedom of industry and of contract, protected by the constitution.&quot;&lt;/p&gt;
9942
9943 &lt;p&gt;This understanding is in error. The Bill in no way affects the rights you list; it limits itself entirely to establishing conditions for the use of software on the part of state institutions, without in any way meddling in private sector transactions. It is a well established principle that the State does not enjoy the wide spectrum of contractual freedom of the private sector, as it is limited in its actions precisely by the requirement for transparency of public acts; and in this sense, the preservation of the greater common interest must prevail when legislating on the matter.&lt;/p&gt;
9944
9945 &lt;p&gt;The Bill protects equality under the law, since no natural or legal person is excluded from the right of offering these goods to the State under the conditions defined in the Bill and without more limitations than those established by the Law of State Contracts and Purchasing (T.U.O. by Supreme Decree No. 012-2001-PCM).&lt;/p&gt;
9946
9947 &lt;p&gt;The Bill does not introduce any discrimination whatever, since it only establishes *how* the goods have to be provided (which is a state power) and not *who* has to provide them (which would effectively be discriminatory, if restrictions based on national origin, race religion, ideology, sexual preference etc. were imposed). On the contrary, the Bill is decidedly antidiscriminatory. This is so because by defining with no room for doubt the conditions for the provision of software, it prevents state bodies from using software which has a license including discriminatory conditions.&lt;/p&gt;
9948
9949 &lt;p&gt;It should be obvious from the preceding two paragraphs that the Bill does not harm free private enterprise, since the latter can always choose under what conditions it will produce software; some of these will be acceptable to the State, and others will not be since they contradict the guarantee of the basic principles listed above. This free initiative is of course compatible with the freedom of industry and freedom of contract (in the limited form in which the State can exercise the latter). Any private subject can produce software under the conditions which the State requires, or can refrain from doing so. Nobody is forced to adopt a model of production, but if they wish to provide software to the State, they must provide the mechanisms which guarantee the basic principles, and which are those described in the Bill.&lt;/p&gt;
9950
9951 &lt;p&gt;By way of an example: nothing in the text of the Bill would prevent your company offering the State bodies an office &quot;suite&quot;, under the conditions defined in the Bill and setting the price that you consider satisfactory. If you did not, it would not be due to restrictions imposed by the law, but to business decisions relative to the method of commercializing your products, decisions with which the State is not involved.&lt;/p&gt;
9952
9953 &lt;p&gt;To continue; you note that:&quot; 2. The bill, by making the use of open source software compulsory, would establish discriminatory and non competitive practices in the contracting and purchasing by public bodies...&quot;&lt;/p&gt;
9954
9955 &lt;p&gt;This statement is just a reiteration of the previous one, and so the response can be found above. However, let us concern ourselves for a moment with your comment regarding &quot;non-competitive ... practices.&quot;&lt;/p&gt;
9956
9957 &lt;p&gt;Of course, in defining any kind of purchase, the buyer sets conditions which relate to the proposed use of the good or service. From the start, this excludes certain manufacturers from the possibility of competing, but does not exclude them &quot;a priori&quot;, but rather based on a series of principles determined by the autonomous will of the purchaser, and so the process takes place in conformance with the law. And in the Bill it is established that *no one* is excluded from competing as far as he guarantees the fulfillment of the basic principles.&lt;/p&gt;
9958
9959 &lt;p&gt;Furthermore, the Bill *stimulates* competition, since it tends to generate a supply of software with better conditions of usability, and to better existing work, in a model of continuous improvement.&lt;/p&gt;
9960
9961 &lt;p&gt;On the other hand, the central aspect of competivity is the chance to provide better choices to the consumer. Now, it is impossible to ignore the fact that marketing does not play a neutral role when the product is offered on the market (since accepting the opposite would lead one to suppose that firms&#39; expenses in marketing lack any sense), and that therefore a significant expense under this heading can influence the decisions of the purchaser. This influence of marketing is in large measure reduced by the bill that we are backing, since the choice within the framework proposed is based on the *technical merits* of the product and not on the effort put into commercialization by the producer; in this sense, competitiveness is increased, since the smallest software producer can compete on equal terms with the most powerful corporations.&lt;/p&gt;
9962
9963 &lt;p&gt;It is necessary to stress that there is no position more anti-competitive than that of the big software producers, which frequently abuse their dominant position, since in innumerable cases they propose as a solution to problems raised by users: &quot;update your software to the new version&quot; (at the user&#39;s expense, naturally); furthermore, it is common to find arbitrary cessation of technical help for products, which, in the provider&#39;s judgment alone, are &quot;old&quot;; and so, to receive any kind of technical assistance, the user finds himself forced to migrate to new versions (with non-trivial costs, especially as changes in hardware platform are often involved). And as the whole infrastructure is based on proprietary data formats, the user stays &quot;trapped&quot; in the need to continue using products from the same supplier, or to make the huge effort to change to another environment (probably also proprietary).&lt;/p&gt;
9964
9965 &lt;p&gt;You add: &quot;3. So, by compelling the State to favor a business model based entirely on open source, the bill would only discourage the local and international manufacturing companies, which are the ones which really undertake important expenditures, create a significant number of direct and indirect jobs, as well as contributing to the GNP, as opposed to a model of open source software which tends to have an ever weaker economic impact, since it mainly creates jobs in the service sector.&quot;&lt;/p&gt;
9966
9967 &lt;p&gt;I do not agree with your statement. Partly because of what you yourself point out in paragraph 6 of your letter, regarding the relative weight of services in the context of software use. This contradiction alone would invalidate your position. The service model, adopted by a large number of companies in the software industry, is much larger in economic terms, and with a tendency to increase, than the licensing of programs.&lt;/p&gt;
9968
9969 &lt;p&gt;On the other hand, the private sector of the economy has the widest possible freedom to choose the economic model which best suits its interests, even if this freedom of choice is often obscured subliminally by the disproportionate expenditure on marketing by the producers of proprietary software.&lt;/p&gt;
9970
9971 &lt;p&gt;In addition, a reading of your opinion would lead to the conclusion that the State market is crucial and essential for the proprietary software industry, to such a point that the choice made by the State in this bill would completely eliminate the market for these firms. If that is true, we can deduce that the State must be subsidizing the proprietary software industry. In the unlikely event that this were true, the State would have the right to apply the subsidies in the area it considered of greatest social value; it is undeniable, in this improbable hypothesis, that if the State decided to subsidize software, it would have to do so choosing the free over the proprietary, considering its social effect and the rational use of taxpayers money.&lt;/p&gt;
9972
9973 &lt;p&gt;In respect of the jobs generated by proprietary software in countries like ours, these mainly concern technical tasks of little aggregate value; at the local level, the technicians who provide support for proprietary software produced by transnational companies do not have the possibility of fixing bugs, not necessarily for lack of technical capability or of talent, but because they do not have access to the source code to fix it. With free software one creates more technically qualified employment and a framework of free competence where success is only tied to the ability to offer good technical support and quality of service, one stimulates the market, and one increases the shared fund of knowledge, opening up alternatives to generate services of greater total value and a higher quality level, to the benefit of all involved: producers, service organizations, and consumers.&lt;/p&gt;
9974
9975 &lt;p&gt;It is a common phenomenon in developing countries that local software industries obtain the majority of their takings in the service sector, or in the creation of &quot;ad hoc&quot; software. Therefore, any negative impact that the application of the Bill might have in this sector will be more than compensated by a growth in demand for services (as long as these are carried out to high quality standards). If the transnational software companies decide not to compete under these new rules of the game, it is likely that they will undergo some decrease in takings in terms of payment for licenses; however, considering that these firms continue to allege that much of the software used by the State has been illegally copied, one can see that the impact will not be very serious. Certainly, in any case their fortune will be determined by market laws, changes in which cannot be avoided; many firms traditionally associated with proprietary software have already set out on the road (supported by copious expense) of providing services associated with free software, which shows that the models are not mutually exclusive.&lt;/p&gt;
9976
9977 &lt;p&gt;With this bill the State is deciding that it needs to preserve certain fundamental values. And it is deciding this based on its sovereign power, without affecting any of the constitutional guarantees. If these values could be guaranteed without having to choose a particular economic model, the effects of the law would be even more beneficial. In any case, it should be clear that the State does not choose an economic model; if it happens that there only exists one economic model capable of providing software which provides the basic guarantee of these principles, this is because of historical circumstances, not because of an arbitrary choice of a given model.&lt;/p&gt;
9978
9979 &lt;p&gt;Your letter continues: &quot;4. The bill imposes the use of open source software without considering the dangers that this can bring from the point of view of security, guarantee, and possible violation of the intellectual property rights of third parties.&quot;&lt;/p&gt;
9980
9981 &lt;p&gt;Alluding in an abstract way to &quot;the dangers this can bring&quot;, without specifically mentioning a single one of these supposed dangers, shows at the least some lack of knowledge of the topic. So, allow me to enlighten you on these points.&lt;/p&gt;
9982
9983 &lt;p&gt;On security:&lt;/p&gt;
9984
9985 &lt;p&gt;National security has already been mentioned in general terms in the initial discussion of the basic principles of the bill. In more specific terms, relative to the security of the software itself, it is well known that all software (whether proprietary or free) contains errors or &quot;bugs&quot; (in programmers&#39; slang). But it is also well known that the bugs in free software are fewer, and are fixed much more quickly, than in proprietary software. It is not in vain that numerous public bodies responsible for the IT security of state systems in developed countries require the use of free software for the same conditions of security and efficiency.&lt;/p&gt;
9986
9987 &lt;p&gt;What is impossible to prove is that proprietary software is more secure than free, without the public and open inspection of the scientific community and users in general. This demonstration is impossible because the model of proprietary software itself prevents this analysis, so that any guarantee of security is based only on promises of good intentions (biased, by any reckoning) made by the producer itself, or its contractors.&lt;/p&gt;
9988
9989 &lt;p&gt;It should be remembered that in many cases, the licensing conditions include Non-Disclosure clauses which prevent the user from publicly revealing security flaws found in the licensed proprietary product.&lt;/p&gt;
9990
9991 &lt;p&gt;In respect of the guarantee:&lt;/p&gt;
9992
9993 &lt;p&gt;As you know perfectly well, or could find out by reading the &quot;End User License Agreement&quot; of the products you license, in the great majority of cases the guarantees are limited to replacement of the storage medium in case of defects, but in no case is compensation given for direct or indirect damages, loss of profits, etc... If as a result of a security bug in one of your products, not fixed in time by yourselves, an attacker managed to compromise crucial State systems, what guarantees, reparations and compensation would your company make in accordance with your licensing conditions? The guarantees of proprietary software, inasmuch as programs are delivered ``AS IS&#39;&#39;, that is, in the state in which they are, with no additional responsibility of the provider in respect of function, in no way differ from those normal with free software.&lt;/p&gt;
9994
9995 &lt;p&gt;On Intellectual Property:&lt;/p&gt;
9996
9997 &lt;p&gt;Questions of intellectual property fall outside the scope of this bill, since they are covered by specific other laws. The model of free software in no way implies ignorance of these laws, and in fact the great majority of free software is covered by copyright. In reality, the inclusion of this question in your observations shows your confusion in respect of the legal framework in which free software is developed. The inclusion of the intellectual property of others in works claimed as one&#39;s own is not a practice that has been noted in the free software community; whereas, unfortunately, it has been in the area of proprietary software. As an example, the condemnation by the Commercial Court of Nanterre, France, on 27th September 2001 of Microsoft Corp. to a penalty of 3 million francs in damages and interest, for violation of intellectual property (piracy, to use the unfortunate term that your firm commonly uses in its publicity).&lt;/p&gt;
9998
9999 &lt;p&gt;You go on to say that: &quot;The bill uses the concept of open source software incorrectly, since it does not necessarily imply that the software is free or of zero cost, and so arrives at mistaken conclusions regarding State savings, with no cost-benefit analysis to validate its position.&quot;&lt;/p&gt;
10000
10001 &lt;p&gt;This observation is wrong; in principle, freedom and lack of cost are orthogonal concepts: there is software which is proprietary and charged for (for example, MS Office), software which is proprietary and free of charge (MS Internet Explorer), software which is free and charged for (Red Hat, SuSE etc GNU/Linux distributions), software which is free and not charged for (Apache, Open Office, Mozilla), and even software which can be licensed in a range of combinations (MySQL).&lt;/p&gt;
10002
10003 &lt;p&gt;Certainly free software is not necessarily free of charge. And the text of the bill does not state that it has to be so, as you will have noted after reading it. The definitions included in the Bill state clearly *what* should be considered free software, at no point referring to freedom from charges. Although the possibility of savings in payments for proprietary software licenses are mentioned, the foundations of the bill clearly refer to the fundamental guarantees to be preserved and to the stimulus to local technological development. Given that a democratic State must support these principles, it has no other choice than to use software with publicly available source code, and to exchange information only in standard formats.&lt;/p&gt;
10004
10005 &lt;p&gt;If the State does not use software with these characteristics, it will be weakening basic republican principles. Luckily, free software also implies lower total costs; however, even given the hypothesis (easily disproved) that it was more expensive than proprietary software, the simple existence of an effective free software tool for a particular IT function would oblige the State to use it; not by command of this Bill, but because of the basic principles we enumerated at the start, and which arise from the very essence of the lawful democratic State.&lt;/p&gt;
10006
10007 &lt;p&gt;You continue: &quot;6. It is wrong to think that Open Source Software is free of charge. Research by the Gartner Group (an important investigator of the technological market recognized at world level) has shown that the cost of purchase of software (operating system and applications) is only 8% of the total cost which firms and institutions take on for a rational and truly beneficial use of the technology. The other 92% consists of: installation costs, enabling, support, maintenance, administration, and down-time.&quot;&lt;/p&gt;
10008
10009 &lt;p&gt;This argument repeats that already given in paragraph 5 and partly contradicts paragraph 3. For the sake of brevity we refer to the comments on those paragraphs. However, allow me to point out that your conclusion is logically false: even if according to Gartner Group the cost of software is on average only 8% of the total cost of use, this does not in any way deny the existence of software which is free of charge, that is, with a licensing cost of zero.&lt;/p&gt;
10010
10011 &lt;p&gt;In addition, in this paragraph you correctly point out that the service components and losses due to down-time make up the largest part of the total cost of software use, which, as you will note, contradicts your statement regarding the small value of services suggested in paragraph 3. Now the use of free software contributes significantly to reduce the remaining life-cycle costs. This reduction in the costs of installation, support etc. can be noted in several areas: in the first place, the competitive service model of free software, support and maintenance for which can be freely contracted out to a range of suppliers competing on the grounds of quality and low cost. This is true for installation, enabling, and support, and in large part for maintenance. In the second place, due to the reproductive characteristics of the model, maintenance carried out for an application is easily replicable, without incurring large costs (that is, without paying more than once for the same thing) since modifications, if one wishes, can be incorporated in the common fund of knowledge. Thirdly, the huge costs caused by non-functioning software (&quot;blue screens of death&quot;, malicious code such as virus, worms, and trojans, exceptions, general protection faults and other well-known problems) are reduced considerably by using more stable software; and it is well known that one of the most notable virtues of free software is its stability.&lt;/p&gt;
10012
10013 &lt;p&gt;You further state that: &quot;7. One of the arguments behind the bill is the supposed freedom from costs of open-source software, compared with the costs of commercial software, without taking into account the fact that there exist types of volume licensing which can be highly advantageous for the State, as has happened in other countries.&quot;&lt;/p&gt;
10014
10015 &lt;p&gt;I have already pointed out that what is in question is not the cost of the software but the principles of freedom of information, accessibility, and security. These arguments have been covered extensively in the preceding paragraphs to which I would refer you.&lt;/p&gt;
10016
10017 &lt;p&gt;On the other hand, there certainly exist types of volume licensing (although unfortunately proprietary software does not satisfy the basic principles). But as you correctly pointed out in the immediately preceding paragraph of your letter, they only manage to reduce the impact of a component which makes up no more than 8% of the total.&lt;/p&gt;
10018
10019 &lt;p&gt;You continue: &quot;8. In addition, the alternative adopted by the bill (I) is clearly more expensive, due to the high costs of software migration, and (II) puts at risk compatibility and interoperability of the IT platforms within the State, and between the State and the private sector, given the hundreds of versions of open source software on the market.&quot;&lt;/p&gt;
10020
10021 &lt;p&gt;Let us analyze your statement in two parts. Your first argument, that migration implies high costs, is in reality an argument in favor of the Bill. Because the more time goes by, the more difficult migration to another technology will become; and at the same time, the security risks associated with proprietary software will continue to increase. In this way, the use of proprietary systems and formats will make the State ever more dependent on specific suppliers. Once a policy of using free software has been established (which certainly, does imply some cost) then on the contrary migration from one system to another becomes very simple, since all data is stored in open formats. On the other hand, migration to an open software context implies no more costs than migration between two different proprietary software contexts, which invalidates your argument completely.&lt;/p&gt;
10022
10023 &lt;p&gt;The second argument refers to &quot;problems in interoperability of the IT platforms within the State, and between the State and the private sector&quot; This statement implies a certain lack of knowledge of the way in which free software is built, which does not maximize the dependence of the user on a particular platform, as normally happens in the realm of proprietary software. Even when there are multiple free software distributions, and numerous programs which can be used for the same function, interoperability is guaranteed as much by the use of standard formats, as required by the bill, as by the possibility of creating interoperable software given the availability of the source code.&lt;/p&gt;
10024
10025 &lt;p&gt;You then say that: &quot;9. The majority of open source code does not offer adequate levels of service nor the guarantee from recognized manufacturers of high productivity on the part of the users, which has led various public organizations to retract their decision to go with an open source software solution and to use commercial software in its place.&quot;&lt;/p&gt;
10026
10027 &lt;p&gt;This observation is without foundation. In respect of the guarantee, your argument was rebutted in the response to paragraph 4. In respect of support services, it is possible to use free software without them (just as also happens with proprietary software), but anyone who does need them can obtain support separately, whether from local firms or from international corporations, again just as in the case of proprietary software.&lt;/p&gt;
10028
10029 &lt;p&gt;On the other hand, it would contribute greatly to our analysis if you could inform us about free software projects *established* in public bodies which have already been abandoned in favor of proprietary software. We know of a good number of cases where the opposite has taken place, but not know of any where what you describe has taken place.&lt;/p&gt;
10030
10031 &lt;p&gt;You continue by observing that: &quot;10. The bill discourages the creativity of the Peruvian software industry, which invoices 40 million US$/year, exports 4 million US$ (10th in ranking among non-traditional exports, more than handicrafts) and is a source of highly qualified employment. With a law that encourages the use of open source, software programmers lose their intellectual property rights and their main source of payment.&quot;&lt;/p&gt;
10032
10033 &lt;p&gt;It is clear enough that nobody is forced to commercialize their code as free software. The only thing to take into account is that if it is not free software, it cannot be sold to the public sector. This is not in any case the main market for the national software industry. We covered some questions referring to the influence of the Bill on the generation of employment which would be both highly technically qualified and in better conditions for competition above, so it seems unnecessary to insist on this point.&lt;/p&gt;
10034
10035 &lt;p&gt;What follows in your statement is incorrect. On the one hand, no author of free software loses his intellectual property rights, unless he expressly wishes to place his work in the public domain. The free software movement has always been very respectful of intellectual property, and has generated widespread public recognition of its authors. Names like those of Richard Stallman, Linus Torvalds, Guido van Rossum, Larry Wall, Miguel de Icaza, Andrew Tridgell, Theo de Raadt, Andrea Arcangeli, Bruce Perens, Darren Reed, Alan Cox, Eric Raymond, and many others, are recognized world-wide for their contributions to the development of software that is used today by millions of people throughout the world. On the other hand, to say that the rewards for authors rights make up the main source of payment of Peruvian programmers is in any case a guess, in particular since there is no proof to this effect, nor a demonstration of how the use of free software by the State would influence these payments.&lt;/p&gt;
10036
10037 &lt;p&gt;You go on to say that: &quot;11. Open source software, since it can be distributed without charge, does not allow the generation of income for its developers through exports. In this way, the multiplier effect of the sale of software to other countries is weakened, and so in turn is the growth of the industry, while Government rules ought on the contrary to stimulate local industry.&quot;&lt;/p&gt;
10038
10039 &lt;p&gt;This statement shows once again complete ignorance of the mechanisms of and market for free software. It tries to claim that the market of sale of non- exclusive rights for use (sale of licenses) is the only possible one for the software industry, when you yourself pointed out several paragraphs above that it is not even the most important one. The incentives that the bill offers for the growth of a supply of better qualified professionals, together with the increase in experience that working on a large scale with free software within the State will bring for Peruvian technicians, will place them in a highly competitive position to offer their services abroad.&lt;/p&gt;
10040
10041 &lt;p&gt;You then state that: &quot;12. In the Forum, the use of open source software in education was discussed, without mentioning the complete collapse of this initiative in a country like Mexico, where precisely the State employees who founded the project now state that open source software did not make it possible to offer a learning experience to pupils in the schools, did not take into account the capability at a national level to give adequate support to the platform, and that the software did not and does not allow for the levels of platform integration that now exist in schools.&quot;&lt;/p&gt;
10042
10043 &lt;p&gt;In fact Mexico has gone into reverse with the Red Escolar (Schools Network) project. This is due precisely to the fact that the driving forces behind the Mexican project used license costs as their main argument, instead of the other reasons specified in our project, which are far more essential. Because of this conceptual mistake, and as a result of the lack of effective support from the SEP (Secretary of State for Public Education), the assumption was made that to implant free software in schools it would be enough to drop their software budget and send them a CD ROM with Gnu/Linux instead. Of course this failed, and it couldn&#39;t have been otherwise, just as school laboratories fail when they use proprietary software and have no budget for implementation and maintenance. That&#39;s exactly why our bill is not limited to making the use of free software mandatory, but recognizes the need to create a viable migration plan, in which the State undertakes the technical transition in an orderly way in order to then enjoy the advantages of free software.&lt;/p&gt;
10044
10045 &lt;p&gt;You end with a rhetorical question: &quot;13. If open source software satisfies all the requirements of State bodies, why do you need a law to adopt it? Shouldn&#39;t it be the market which decides freely which products give most benefits or value?&quot;&lt;/p&gt;
10046
10047 &lt;p&gt;We agree that in the private sector of the economy, it must be the market that decides which products to use, and no state interference is permissible there. However, in the case of the public sector, the reasoning is not the same: as we have already established, the state archives, handles, and transmits information which does not belong to it, but which is entrusted to it by citizens, who have no alternative under the rule of law. As a counterpart to this legal requirement, the State must take extreme measures to safeguard the integrity, confidentiality, and accessibility of this information. The use of proprietary software raises serious doubts as to whether these requirements can be fulfilled, lacks conclusive evidence in this respect, and so is not suitable for use in the public sector.&lt;/p&gt;
10048
10049 &lt;p&gt;The need for a law is based, firstly, on the realization of the fundamental principles listed above in the specific area of software; secondly, on the fact that the State is not an ideal homogeneous entity, but made up of multiple bodies with varying degrees of autonomy in decision making. Given that it is inappropriate to use proprietary software, the fact of establishing these rules in law will prevent the personal discretion of any state employee from putting at risk the information which belongs to citizens. And above all, because it constitutes an up-to-date reaffirmation in relation to the means of management and communication of information used today, it is based on the republican principle of openness to the public.&lt;/p&gt;
10050
10051 &lt;p&gt;In conformance with this universally accepted principle, the citizen has the right to know all information held by the State and not covered by well- founded declarations of secrecy based on law. Now, software deals with information and is itself information. Information in a special form, capable of being interpreted by a machine in order to execute actions, but crucial information all the same because the citizen has a legitimate right to know, for example, how his vote is computed or his taxes calculated. And for that he must have free access to the source code and be able to prove to his satisfaction the programs used for electoral computations or calculation of his taxes.&lt;/p&gt;
10052
10053 &lt;p&gt;I wish you the greatest respect, and would like to repeat that my office will always be open for you to expound your point of view to whatever level of detail you consider suitable.&lt;/p&gt;
10054
10055 &lt;p&gt;Cordially,&lt;br&gt;
10056 DR. EDGAR DAVID VILLANUEVA NUÑEZ&lt;br&gt;
10057 Congressman of the Republic of Perú.&lt;/p&gt;
10058 &lt;/blockquote&gt;
10059 </description>
10060 </item>
10061
10062 <item>
10063 <title>Officeshots still going strong</title>
10064 <link>http://people.skolelinux.org/pere/blog/Officeshots_still_going_strong.html</link>
10065 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Officeshots_still_going_strong.html</guid>
10066 <pubDate>Sat, 25 Dec 2010 09:40:00 +0100</pubDate>
10067 <description>&lt;p&gt;Half a year ago I
10068 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Officeshots_taking_shape.html&quot;&gt;wrote
10069 a bit&lt;/a&gt; about &lt;a href=&quot;http://www.officeshots.org/&quot;&gt;OfficeShots&lt;/a&gt;,
10070 a web service to allow anyone to test how ODF documents are handled by
10071 the different programs reading and writing the ODF format.&lt;/p&gt;
10072
10073 &lt;p&gt;I just had a look at the service, and it seem to be going strong.
10074 Very interesting to see the results reported in the gallery, how
10075 different Office implementations handle different ODF features. Sad
10076 to see that KOffice was not doing it very well, and happy to see that
10077 LibreOffice has been tested already (but sadly not listed as a option
10078 for OfficeShots users yet). I am glad to see that the ODF community
10079 got such a great test tool available.&lt;/p&gt;
10080 </description>
10081 </item>
10082
10083 <item>
10084 <title>How to test if a laptop is working with Linux</title>
10085 <link>http://people.skolelinux.org/pere/blog/How_to_test_if_a_laptop_is_working_with_Linux.html</link>
10086 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_test_if_a_laptop_is_working_with_Linux.html</guid>
10087 <pubDate>Wed, 22 Dec 2010 14:55:00 +0100</pubDate>
10088 <description>&lt;p&gt;The last few days I have spent at work here at the &lt;a
10089 href=&quot;http://www.uio.no/&quot;&gt;University of Oslo&lt;/a&gt; testing if the new
10090 batch of computers will work with Linux. Every year for the last few
10091 years the university have organised shared bid of a few thousand
10092 computers, and this year HP won the bid. Two different desktops and
10093 five different laptops are on the list this year. We in the UNIX
10094 group want to know which one of these computers work well with RHEL
10095 and Ubuntu, the two Linux distributions we currently handle at the
10096 university.&lt;/p&gt;
10097
10098 &lt;p&gt;My test method is simple, and I share it here to get feedback and
10099 perhaps inspire others to test hardware as well. To test, I PXE
10100 install the OS version of choice, and log in as my normal user and run
10101 a few applications and plug in selected pieces of hardware. When
10102 something fail, I make a note about this in the test matrix and move
10103 on. If I have some spare time I try to report the bug to the OS
10104 vendor, but as I only have the machines for a short time, I rarely
10105 have the time to do this for all the problems I find.&lt;/p&gt;
10106
10107 &lt;p&gt;Anyway, to get to the point of this post. Here is the simple tests
10108 I perform on a new model.&lt;/p&gt;
10109
10110 &lt;ul&gt;
10111
10112 &lt;li&gt;Is PXE installation working? I&#39;m testing with RHEL6, Ubuntu Lucid
10113 and Ubuntu Maverik at the moment. If I feel like it, I also test with
10114 RHEL5 and Debian Edu/Squeeze.&lt;/li&gt;
10115
10116 &lt;li&gt;Is X.org working? If the graphical login screen show up after
10117 installation, X.org is working.&lt;/li&gt;
10118
10119 &lt;li&gt;Is hardware accelerated OpenGL working? Running glxgears (in
10120 package mesa-utils on Ubuntu) and writing down the frames per second
10121 reported by the program.&lt;/li&gt;
10122
10123 &lt;li&gt;Is sound working? With Gnome and KDE, a sound is played when
10124 logging in, and if I can hear this the test is successful. If there
10125 are several audio exits on the machine, I try them all and check if
10126 the Gnome/KDE audio mixer can control where to send the sound. I
10127 normally test this by playing
10128 &lt;a href=&quot;http://www.nuug.no/aktiviteter/20101012-chef/ &quot;&gt;a HTML5
10129 video&lt;/a&gt; in Firefox/Iceweasel.&lt;/li&gt;
10130
10131 &lt;li&gt;Is the USB subsystem working? I test this by plugging in a USB
10132 memory stick and see if Gnome/KDE notices this.&lt;/li&gt;
10133
10134 &lt;li&gt;Is the CD/DVD player working? I test this by inserting any CD/DVD
10135 I have lying around, and see if Gnome/KDE notices this.&lt;/li&gt;
10136
10137 &lt;li&gt;Is any built in camera working? Test using cheese, and see if a
10138 picture from the v4l device show up.&lt;/li&gt;
10139
10140 &lt;li&gt;Is bluetooth working? Use the Gnome/KDE browsing tool to see if
10141 any bluetooth devices are discovered. In my office, I normally see a
10142 few.&lt;/li&gt;
10143
10144 &lt;li&gt;For laptops, is the SD or Compaq Flash reader working. I have
10145 memory modules lying around, and stick them in and see if Gnome/KDE
10146 notice this.&lt;/li&gt;
10147
10148 &lt;li&gt;For laptops, is suspend/hibernate working? I&#39;m testing if the
10149 special button work, and if the laptop continue to work after
10150 resume.&lt;/li&gt;
10151
10152 &lt;li&gt;For laptops, is the extra buttons working, like audio level,
10153 adjusting background light, switching on/off external video output,
10154 switching on/off wifi, bluetooth, etc? The set of buttons differ from
10155 laptop to laptop, so I just write down which are working and which are
10156 not.&lt;/li&gt;
10157
10158 &lt;li&gt;Some laptops have smart card readers, finger print readers,
10159 acceleration sensors etc. I rarely test these, as I do not know how
10160 to quickly test if they are working or not, so I only document their
10161 existence.&lt;/li&gt;
10162
10163 &lt;/ul&gt;
10164
10165 &lt;p&gt;By now I suspect you are really curious what the test results are
10166 for the HP machines I am testing. I&#39;m not done yet, so I will report
10167 the test results later. For now I can report that HP 8100 Elite work
10168 fine, and hibernation fail with HP EliteBook 8440p on Ubuntu Lucid,
10169 and audio fail on RHEL6. Ubuntu Maverik worked with 8440p. As you
10170 can see, I have most machines left to test. One interesting
10171 observation is that Ubuntu Lucid has almost twice the frame rate than
10172 RHEL6 with glxgears. No idea why.&lt;/p&gt;
10173 </description>
10174 </item>
10175
10176 <item>
10177 <title>Some thoughts on BitCoins</title>
10178 <link>http://people.skolelinux.org/pere/blog/Some_thoughts_on_BitCoins.html</link>
10179 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Some_thoughts_on_BitCoins.html</guid>
10180 <pubDate>Sat, 11 Dec 2010 15:10:00 +0100</pubDate>
10181 <description>&lt;p&gt;As I continue to explore
10182 &lt;a href=&quot;http://www.bitcoin.org/&quot;&gt;BitCoin&lt;/a&gt;, I&#39;ve starting to wonder
10183 what properties the system have, and how it will be affected by laws
10184 and regulations here in Norway. Here are some random notes.&lt;/p&gt;
10185
10186 &lt;p&gt;One interesting thing to note is that since the transactions are
10187 verified using a peer to peer network, all details about a transaction
10188 is known to everyone. This means that if a BitCoin address has been
10189 published like I did with mine in my initial post about BitCoin, it is
10190 possible for everyone to see how many BitCoins have been transfered to
10191 that address. There is even a web service to look at the details for
10192 all transactions. There I can see that my address
10193 &lt;a href=&quot;http://blockexplorer.com/address/15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;
10194 have received 16.06 Bitcoin, the
10195 &lt;a href=&quot;http://blockexplorer.com/address/1LfdGnGuWkpSJgbQySxxCWhv8MHqvwst3&quot;&gt;1LfdGnGuWkpSJgbQySxxCWhv8MHqvwst3&lt;/a&gt;
10196 address of Simon Phipps have received 181.97 BitCoin and the address
10197 &lt;a href=&quot;http://blockexplorer.com/address/1MCwBbhNGp5hRm5rC1Aims2YFRe2SXPYKt&quot;&gt;1MCwBbhNGp5hRm5rC1Aims2YFRe2SXPYKt&lt;/A&gt;
10198 of EFF have received 2447.38 BitCoins so far. Thank you to each and
10199 every one of you that donated bitcoins to support my activity. The
10200 fact that anyone can see how much money was transfered to a given
10201 address make it more obvious why the BitCoin community recommend to
10202 generate and hand out a new address for each transaction. I&#39;m told
10203 there is no way to track which addresses belong to a given person or
10204 organisation without the person or organisation revealing it
10205 themselves, as Simon, EFF and I have done.&lt;/p&gt;
10206
10207 &lt;p&gt;In Norway, and in most other countries, there are laws and
10208 regulations limiting how much money one can transfer across the border
10209 without declaring it. There are money laundering, tax and accounting
10210 laws and regulations I would expect to apply to the use of BitCoin.
10211 If the Skolelinux foundation
10212 (&lt;a href=&quot;http://linuxiskolen.no/slxdebianlabs/donations.html&quot;&gt;SLX
10213 Debian Labs&lt;/a&gt;) were to accept donations in BitCoin in addition to
10214 normal bank transfers like EFF is doing, how should this be accounted?
10215 Given that it is impossible to know if money can cross the border or
10216 not, should everything or nothing be declared? What exchange rate
10217 should be used when calculating taxes? Would receivers have to pay
10218 income tax if the foundation were to pay Skolelinux contributors in
10219 BitCoin? I have no idea, but it would be interesting to know.&lt;/p&gt;
10220
10221 &lt;p&gt;For a currency to be useful and successful, it must be trusted and
10222 accepted by a lot of users. It must be possible to get easy access to
10223 the currency (as a wage or using currency exchanges), and it must be
10224 easy to spend it. At the moment BitCoin seem fairly easy to get
10225 access to, but there are very few places to spend it. I am not really
10226 a regular user of any of the vendor types currently accepting BitCoin,
10227 so I wonder when my kind of shop would start accepting BitCoins. I
10228 would like to buy electronics, travels and subway tickets, not herbs
10229 and books. :) The currency is young, and this will improve over time
10230 if it become popular, but I suspect regular banks will start to lobby
10231 to get BitCoin declared illegal if it become popular. I&#39;m sure they
10232 will claim it is helping fund terrorism and money laundering (which
10233 probably would be true, as is any currency in existence), but I
10234 believe the problems should be solved elsewhere and not by blaming
10235 currencies.&lt;/p&gt;
10236
10237 &lt;p&gt;The process of creating new BitCoins is called mining, and it is
10238 CPU intensive process that depend on a bit of luck as well (as one is
10239 competing against all the other miners currently spending CPU cycles
10240 to see which one get the next lump of cash). The &quot;winner&quot; get 50
10241 BitCoin when this happen. Yesterday I came across the obvious way to
10242 join forces to increase ones changes of getting at least some coins,
10243 by coordinating the work on mining BitCoins across several machines
10244 and people, and sharing the result if one is lucky and get the 50
10245 BitCoins. Check out
10246 &lt;a href=&quot;http://www.bluishcoder.co.nz/bitcoin-pool/&quot;&gt;BitCoin Pool&lt;/a&gt;
10247 if this sounds interesting. I have not had time to try to set up a
10248 machine to participate there yet, but have seen that running on ones
10249 own for a few days have not yield any BitCoins througth mining
10250 yet.&lt;/p&gt;
10251
10252 &lt;p&gt;Update 2010-12-15: Found an &lt;a
10253 href=&quot;http://inertia.posterous.com/reply-to-the-underground-economist-why-bitcoi&quot;&gt;interesting
10254 criticism&lt;/a&gt; of bitcoin. Not quite sure how valid it is, but thought
10255 it was interesting to read. The arguments presented seem to be
10256 equally valid for gold, which was used as a currency for many years.&lt;/p&gt;
10257 </description>
10258 </item>
10259
10260 <item>
10261 <title>Now accepting bitcoins - anonymous and distributed p2p crypto-money</title>
10262 <link>http://people.skolelinux.org/pere/blog/Now_accepting_bitcoins___anonymous_and_distributed_p2p_crypto_money.html</link>
10263 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Now_accepting_bitcoins___anonymous_and_distributed_p2p_crypto_money.html</guid>
10264 <pubDate>Fri, 10 Dec 2010 08:20:00 +0100</pubDate>
10265 <description>&lt;p&gt;With this weeks lawless
10266 &lt;a href=&quot;http://www.salon.com/news/opinion/glenn_greenwald/2010/12/06/wikileaks/index.html&quot;&gt;governmental
10267 attacks&lt;/a&gt; on Wikileak and
10268 &lt;a href=&quot;http://www.salon.com/technology/dan_gillmor/2010/12/06/war_on_speech&quot;&gt;free
10269 speech&lt;/a&gt;, it has become obvious that PayPal, visa and mastercard can
10270 not be trusted to handle money transactions.
10271 A blog post from
10272 &lt;a href=&quot;http://webmink.com/2010/12/06/now-accepting-bitcoin/&quot;&gt;Simon
10273 Phipps on bitcoin&lt;/a&gt; reminded me about a project that a friend of
10274 mine mentioned earlier. I decided to follow Simon&#39;s example, and get
10275 involved with &lt;a href=&quot;http://www.bitcoin.org/&quot;&gt;BitCoin&lt;/a&gt;. I got
10276 some help from my friend to get it all running, and he even handed me
10277 some bitcoins to get started. I even donated a few bitcoins to Simon
10278 for helping me remember BitCoin.&lt;/p&gt;
10279
10280 &lt;p&gt;So, what is bitcoins, you probably wonder? It is a digital
10281 crypto-currency, decentralised and handled using peer-to-peer
10282 networks. It allows anonymous transactions and prohibits central
10283 control over the transactions, making it impossible for governments
10284 and companies alike to block donations and other transactions. The
10285 source is free software, and while the key dependency wxWidgets 2.9
10286 for the graphical user interface is missing in Debian, the command
10287 line client builds just fine. Hopefully Jonas
10288 &lt;a href=&quot;http://bugs.debian.org/578157&quot;&gt;will get the package into
10289 Debian&lt;/a&gt; soon.&lt;/p&gt;
10290
10291 &lt;p&gt;Bitcoins can be converted to other currencies, like USD and EUR.
10292 There are &lt;a href=&quot;http://www.bitcoin.org/trade&quot;&gt;companies accepting
10293 bitcoins&lt;/a&gt; when selling services and goods, and there are even
10294 currency &quot;stock&quot; markets where the exchange rate is decided. There
10295 are not many users so far, but the concept seems promising. If you
10296 want to get started and lack a friend with any bitcoins to spare,
10297 you can even get
10298 &lt;a href=&quot;https://freebitcoins.appspot.com/&quot;&gt;some for free&lt;/a&gt; (0.05
10299 bitcoin at the time of writing). Use
10300 &lt;a href=&quot;http://www.bitcoinwatch.com/&quot;&gt;BitcoinWatch&lt;/a&gt; to keep an eye
10301 on the current exchange rates.&lt;/p&gt;
10302
10303 &lt;p&gt;As an experiment, I have decided to set up bitcoind on one of my
10304 machines. If you want to support my activity, please send Bitcoin
10305 donations to the address
10306 &lt;b&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/b&gt;. Thank you!&lt;/p&gt;
10307 </description>
10308 </item>
10309
10310 <item>
10311 <title>Student group continue the work on my Reprap 3D printer</title>
10312 <link>http://people.skolelinux.org/pere/blog/Student_group_continue_the_work_on_my_Reprap_3D_printer.html</link>
10313 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Student_group_continue_the_work_on_my_Reprap_3D_printer.html</guid>
10314 <pubDate>Thu, 9 Dec 2010 19:30:00 +0100</pubDate>
10315 <description>&lt;p&gt;A few days ago, I was introduces to some students in the robot
10316 student assosiation &lt;a href=&quot;http://www.robotica.no/&quot;&gt;Robotica
10317 Osloensis&lt;/a&gt; at the University of Oslo where I work, who planned to
10318 get their own 3D printer. They wanted to learn from me based on my
10319 work in the area. After having a short lunch meeting with them, I
10320 offered them to borrow my reprap kit, as I never had time to complete
10321 the build and this seem unlike to change any time soon. I look
10322 forward to see how this goes. This monday their volunteer driver
10323 picked up my kit and drove it to their lab, and tomorrow I am told the
10324 last exam is over so they can start work on getting the 3D printer
10325 operational.&lt;/p&gt;
10326
10327 &lt;p&gt;The robotic group have already build several robots on their own,
10328 and seem capable of getting the reprap operational. I really look
10329 forward to being able to print all the cool 3D designs published on
10330 &lt;a href=&quot;http://www.thingiverse.com/&quot;&gt;Thingiverse&lt;/a&gt;. I even got
10331 some 3D scans I got made during Dagen@IFI when one of the groups at
10332 the computer science department at the university demonstrated their
10333 very cool 3D scanner.&lt;/p&gt;
10334 </description>
10335 </item>
10336
10337 <item>
10338 <title>Debian Edu development gathering and General Assembly for FRiSK</title>
10339 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_development_gathering_and_General_Assembly_for_FRiSK.html</link>
10340 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_development_gathering_and_General_Assembly_for_FRiSK.html</guid>
10341 <pubDate>Mon, 29 Nov 2010 18:40:00 +0100</pubDate>
10342 <description>&lt;p&gt;On friday, the first Debian Edu / Skolelinux
10343 &lt;a href=&quot;http://www.friprogramvareiskolen.no/Gathering/2010-12-03-05-Oslo&quot;&gt;development
10344 gathering&lt;/a&gt; in a long time take place here in Oslo, Norway. I
10345 really look forward to seeing all the good people working on the
10346 Squeeze release. The gathering is open for everyone interested in
10347 learning more about Debian Edu / Skolelinux.&lt;/p&gt;
10348
10349 &lt;p&gt;On Saturday, the Norwegian member organization taking care of
10350 organizing these development gatherings, Fri Programvare i Skolen,
10351 will hold its
10352 &lt;a href=&quot;http://friprogramvareiskolen.no/Genfors/2010&quot;&gt;General Assembly
10353 for 2010&lt;/a&gt;. Membership is open for all, and currently there are 388
10354 people registered as members. Last year 32 members cast their vote in
10355 the memberdb based election system. I hope more people find time to
10356 vote this year.&lt;/p&gt;
10357 </description>
10358 </item>
10359
10360 <item>
10361 <title>Why isn&#39;t Debian Edu using VLC?</title>
10362 <link>http://people.skolelinux.org/pere/blog/Why_isn_t_Debian_Edu_using_VLC_.html</link>
10363 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Why_isn_t_Debian_Edu_using_VLC_.html</guid>
10364 <pubDate>Sat, 27 Nov 2010 11:30:00 +0100</pubDate>
10365 <description>&lt;p&gt;In the latest issue of Linux Journal, the readers choices were
10366 presented, and the winner among the multimedia player were VLC.
10367 Personally, I like VLC, and it is my player of choice when I first try
10368 to play a video file or stream. Only if VLC fail will I drag out
10369 gmplayer to see if it can do better. The reason is mostly the failure
10370 model and trust. When VLC fail, it normally pop up a error message
10371 reporting the problem. When mplayer fail, it normally segfault or
10372 just hangs. The latter failure mode drain my trust in the program.&lt;p&gt;
10373
10374 &lt;p&gt;But even if VLC is my player of choice, we have choosen to use
10375 mplayer in &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian
10376 Edu/Skolelinux&lt;/a&gt;. The reason is simple. We need a good browser
10377 plugin to play web videos seamlessly, and the VLC browser plugin is
10378 not very good. For example, it lack in-line control buttons, so there
10379 is no way for the user to pause the video. Also, when I
10380 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/BrowserMultimedia&quot;&gt;last
10381 tested the browser plugins&lt;/a&gt; available in Debian, the VLC plugin
10382 failed on several video pages where mplayer based plugins worked. If
10383 the browser plugin for VLC was as good as the gecko-mediaplayer
10384 package (which uses mplayer), we would switch.&lt;/P&gt;
10385
10386 &lt;p&gt;While VLC is a good player, its user interface is slightly
10387 annoying. The most annoying feature is its inconsistent use of
10388 keyboard shortcuts. When the player is in full screen mode, its
10389 shortcuts are different from when it is playing the video in a window.
10390 For example, space only work as pause when in full screen mode. I
10391 wish it had consisten shortcuts and that space also would work when in
10392 window mode. Another nice shortcut in gmplayer is [enter] to restart
10393 the current video. It is very nice when playing short videos from the
10394 web and want to restart it when new people arrive to have a look at
10395 what is going on.&lt;/p&gt;
10396 </description>
10397 </item>
10398
10399 <item>
10400 <title>Lenny-&gt;Squeeze upgrades of the Gnome and KDE desktop, now with apt-get autoremove</title>
10401 <link>http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades_of_the_Gnome_and_KDE_desktop__now_with_apt_get_autoremove.html</link>
10402 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades_of_the_Gnome_and_KDE_desktop__now_with_apt_get_autoremove.html</guid>
10403 <pubDate>Mon, 22 Nov 2010 14:15:00 +0100</pubDate>
10404 <description>&lt;p&gt;Michael Biebl suggested to me on IRC, that I changed my automated
10405 upgrade testing of the
10406 &lt;a href=&quot;http://people.skolelinux.org/~pere/debian-upgrade-testing/&quot;&gt;Lenny
10407 Gnome and KDE Desktop&lt;/a&gt; to do &lt;tt&gt;apt-get autoremove&lt;/tt&gt; when using apt-get.
10408 This seem like a very good idea, so I adjusted by test scripts and
10409 can now present the updated result from today:&lt;/p&gt;
10410
10411 &lt;p&gt;This is for Gnome:&lt;/p&gt;
10412
10413 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
10414
10415 &lt;blockquote&gt;&lt;p&gt;
10416 apache2.2-bin
10417 aptdaemon
10418 baobab
10419 binfmt-support
10420 browser-plugin-gnash
10421 cheese-common
10422 cli-common
10423 cups-pk-helper
10424 dmz-cursor-theme
10425 empathy
10426 empathy-common
10427 freedesktop-sound-theme
10428 freeglut3
10429 gconf-defaults-service
10430 gdm-themes
10431 gedit-plugins
10432 geoclue
10433 geoclue-hostip
10434 geoclue-localnet
10435 geoclue-manual
10436 geoclue-yahoo
10437 gnash
10438 gnash-common
10439 gnome
10440 gnome-backgrounds
10441 gnome-cards-data
10442 gnome-codec-install
10443 gnome-core
10444 gnome-desktop-environment
10445 gnome-disk-utility
10446 gnome-screenshot
10447 gnome-search-tool
10448 gnome-session-canberra
10449 gnome-system-log
10450 gnome-themes-extras
10451 gnome-themes-more
10452 gnome-user-share
10453 gstreamer0.10-fluendo-mp3
10454 gstreamer0.10-tools
10455 gtk2-engines
10456 gtk2-engines-pixbuf
10457 gtk2-engines-smooth
10458 hamster-applet
10459 libapache2-mod-dnssd
10460 libapr1
10461 libaprutil1
10462 libaprutil1-dbd-sqlite3
10463 libaprutil1-ldap
10464 libart2.0-cil
10465 libboost-date-time1.42.0
10466 libboost-python1.42.0
10467 libboost-thread1.42.0
10468 libchamplain-0.4-0
10469 libchamplain-gtk-0.4-0
10470 libcheese-gtk18
10471 libclutter-gtk-0.10-0
10472 libcryptui0
10473 libdiscid0
10474 libelf1
10475 libepc-1.0-2
10476 libepc-common
10477 libepc-ui-1.0-2
10478 libfreerdp-plugins-standard
10479 libfreerdp0
10480 libgconf2.0-cil
10481 libgdata-common
10482 libgdata7
10483 libgdu-gtk0
10484 libgee2
10485 libgeoclue0
10486 libgexiv2-0
10487 libgif4
10488 libglade2.0-cil
10489 libglib2.0-cil
10490 libgmime2.4-cil
10491 libgnome-vfs2.0-cil
10492 libgnome2.24-cil
10493 libgnomepanel2.24-cil
10494 libgpod-common
10495 libgpod4
10496 libgtk2.0-cil
10497 libgtkglext1
10498 libgtksourceview2.0-common
10499 libmono-addins-gui0.2-cil
10500 libmono-addins0.2-cil
10501 libmono-cairo2.0-cil
10502 libmono-corlib2.0-cil
10503 libmono-i18n-west2.0-cil
10504 libmono-posix2.0-cil
10505 libmono-security2.0-cil
10506 libmono-sharpzip2.84-cil
10507 libmono-system2.0-cil
10508 libmtp8
10509 libmusicbrainz3-6
10510 libndesk-dbus-glib1.0-cil
10511 libndesk-dbus1.0-cil
10512 libopal3.6.8
10513 libpolkit-gtk-1-0
10514 libpt2.6.7
10515 libpython2.6
10516 librpm1
10517 librpmio1
10518 libsdl1.2debian
10519 libsrtp0
10520 libssh-4
10521 libtelepathy-farsight0
10522 libtelepathy-glib0
10523 libtidy-0.99-0
10524 media-player-info
10525 mesa-utils
10526 mono-2.0-gac
10527 mono-gac
10528 mono-runtime
10529 nautilus-sendto
10530 nautilus-sendto-empathy
10531 p7zip-full
10532 pkg-config
10533 python-aptdaemon
10534 python-aptdaemon-gtk
10535 python-axiom
10536 python-beautifulsoup
10537 python-bugbuddy
10538 python-clientform
10539 python-coherence
10540 python-configobj
10541 python-crypto
10542 python-cupshelpers
10543 python-elementtree
10544 python-epsilon
10545 python-evolution
10546 python-feedparser
10547 python-gdata
10548 python-gdbm
10549 python-gst0.10
10550 python-gtkglext1
10551 python-gtksourceview2
10552 python-httplib2
10553 python-louie
10554 python-mako
10555 python-markupsafe
10556 python-mechanize
10557 python-nevow
10558 python-notify
10559 python-opengl
10560 python-openssl
10561 python-pam
10562 python-pkg-resources
10563 python-pyasn1
10564 python-pysqlite2
10565 python-rdflib
10566 python-serial
10567 python-tagpy
10568 python-twisted-bin
10569 python-twisted-conch
10570 python-twisted-core
10571 python-twisted-web
10572 python-utidylib
10573 python-webkit
10574 python-xdg
10575 python-zope.interface
10576 remmina
10577 remmina-plugin-data
10578 remmina-plugin-rdp
10579 remmina-plugin-vnc
10580 rhythmbox-plugin-cdrecorder
10581 rhythmbox-plugins
10582 rpm-common
10583 rpm2cpio
10584 seahorse-plugins
10585 shotwell
10586 software-center
10587 system-config-printer-udev
10588 telepathy-gabble
10589 telepathy-mission-control-5
10590 telepathy-salut
10591 tomboy
10592 totem
10593 totem-coherence
10594 totem-mozilla
10595 totem-plugins
10596 transmission-common
10597 xdg-user-dirs
10598 xdg-user-dirs-gtk
10599 xserver-xephyr
10600 &lt;/p&gt;&lt;/blockquote&gt;
10601
10602 &lt;p&gt;Installed using apt-get, removed with aptitude&lt;/p&gt;
10603
10604 &lt;blockquote&gt;&lt;p&gt;
10605 cheese
10606 ekiga
10607 eog
10608 epiphany-extensions
10609 evolution-exchange
10610 fast-user-switch-applet
10611 file-roller
10612 gcalctool
10613 gconf-editor
10614 gdm
10615 gedit
10616 gedit-common
10617 gnome-games
10618 gnome-games-data
10619 gnome-nettool
10620 gnome-system-tools
10621 gnome-themes
10622 gnuchess
10623 gucharmap
10624 guile-1.8-libs
10625 libavahi-ui0
10626 libdmx1
10627 libgalago3
10628 libgtk-vnc-1.0-0
10629 libgtksourceview2.0-0
10630 liblircclient0
10631 libsdl1.2debian-alsa
10632 libspeexdsp1
10633 libsvga1
10634 rhythmbox
10635 seahorse
10636 sound-juicer
10637 system-config-printer
10638 totem-common
10639 transmission-gtk
10640 vinagre
10641 vino
10642 &lt;/p&gt;&lt;/blockquote&gt;
10643
10644 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
10645
10646 &lt;blockquote&gt;&lt;p&gt;
10647 gstreamer0.10-gnomevfs
10648 &lt;/p&gt;&lt;/blockquote&gt;
10649
10650 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
10651
10652 &lt;blockquote&gt;&lt;p&gt;
10653 [nothing]
10654 &lt;/p&gt;&lt;/blockquote&gt;
10655
10656 &lt;p&gt;This is for KDE:&lt;/p&gt;
10657
10658 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
10659
10660 &lt;blockquote&gt;&lt;p&gt;
10661 ksmserver
10662 &lt;/p&gt;&lt;/blockquote&gt;
10663
10664 &lt;p&gt;Installed using apt-get, removed with aptitude&lt;/p&gt;
10665
10666 &lt;blockquote&gt;&lt;p&gt;
10667 kwin
10668 network-manager-kde
10669 &lt;/p&gt;&lt;/blockquote&gt;
10670
10671 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
10672
10673 &lt;blockquote&gt;&lt;p&gt;
10674 arts
10675 dolphin
10676 freespacenotifier
10677 google-gadgets-gst
10678 google-gadgets-xul
10679 kappfinder
10680 kcalc
10681 kcharselect
10682 kde-core
10683 kde-plasma-desktop
10684 kde-standard
10685 kde-window-manager
10686 kdeartwork
10687 kdeartwork-emoticons
10688 kdeartwork-style
10689 kdeartwork-theme-icon
10690 kdebase
10691 kdebase-apps
10692 kdebase-workspace
10693 kdebase-workspace-bin
10694 kdebase-workspace-data
10695 kdeeject
10696 kdelibs
10697 kdeplasma-addons
10698 kdeutils
10699 kdewallpapers
10700 kdf
10701 kfloppy
10702 kgpg
10703 khelpcenter4
10704 kinfocenter
10705 konq-plugins-l10n
10706 konqueror-nsplugins
10707 kscreensaver
10708 kscreensaver-xsavers
10709 ktimer
10710 kwrite
10711 libgle3
10712 libkde4-ruby1.8
10713 libkonq5
10714 libkonq5-templates
10715 libnetpbm10
10716 libplasma-ruby
10717 libplasma-ruby1.8
10718 libqt4-ruby1.8
10719 marble-data
10720 marble-plugins
10721 netpbm
10722 nuvola-icon-theme
10723 plasma-dataengines-workspace
10724 plasma-desktop
10725 plasma-desktopthemes-artwork
10726 plasma-runners-addons
10727 plasma-scriptengine-googlegadgets
10728 plasma-scriptengine-python
10729 plasma-scriptengine-qedje
10730 plasma-scriptengine-ruby
10731 plasma-scriptengine-webkit
10732 plasma-scriptengines
10733 plasma-wallpapers-addons
10734 plasma-widget-folderview
10735 plasma-widget-networkmanagement
10736 ruby
10737 sweeper
10738 update-notifier-kde
10739 xscreensaver-data-extra
10740 xscreensaver-gl
10741 xscreensaver-gl-extra
10742 xscreensaver-screensaver-bsod
10743 &lt;/p&gt;&lt;/blockquote&gt;
10744
10745 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
10746
10747 &lt;blockquote&gt;&lt;p&gt;
10748 ark
10749 google-gadgets-common
10750 google-gadgets-qt
10751 htdig
10752 kate
10753 kdebase-bin
10754 kdebase-data
10755 kdepasswd
10756 kfind
10757 klipper
10758 konq-plugins
10759 konqueror
10760 ksysguard
10761 ksysguardd
10762 libarchive1
10763 libcln6
10764 libeet1
10765 libeina-svn-06
10766 libggadget-1.0-0b
10767 libggadget-qt-1.0-0b
10768 libgps19
10769 libkdecorations4
10770 libkephal4
10771 libkonq4
10772 libkonqsidebarplugin4a
10773 libkscreensaver5
10774 libksgrd4
10775 libksignalplotter4
10776 libkunitconversion4
10777 libkwineffects1a
10778 libmarblewidget4
10779 libntrack-qt4-1
10780 libntrack0
10781 libplasma-geolocation-interface4
10782 libplasmaclock4a
10783 libplasmagenericshell4
10784 libprocesscore4a
10785 libprocessui4a
10786 libqalculate5
10787 libqedje0a
10788 libqtruby4shared2
10789 libqzion0a
10790 libruby1.8
10791 libscim8c2a
10792 libsmokekdecore4-3
10793 libsmokekdeui4-3
10794 libsmokekfile3
10795 libsmokekhtml3
10796 libsmokekio3
10797 libsmokeknewstuff2-3
10798 libsmokeknewstuff3-3
10799 libsmokekparts3
10800 libsmokektexteditor3
10801 libsmokekutils3
10802 libsmokenepomuk3
10803 libsmokephonon3
10804 libsmokeplasma3
10805 libsmokeqtcore4-3
10806 libsmokeqtdbus4-3
10807 libsmokeqtgui4-3
10808 libsmokeqtnetwork4-3
10809 libsmokeqtopengl4-3
10810 libsmokeqtscript4-3
10811 libsmokeqtsql4-3
10812 libsmokeqtsvg4-3
10813 libsmokeqttest4-3
10814 libsmokeqtuitools4-3
10815 libsmokeqtwebkit4-3
10816 libsmokeqtxml4-3
10817 libsmokesolid3
10818 libsmokesoprano3
10819 libtaskmanager4a
10820 libtidy-0.99-0
10821 libweather-ion4a
10822 libxklavier16
10823 libxxf86misc1
10824 okteta
10825 oxygencursors
10826 plasma-dataengines-addons
10827 plasma-scriptengine-superkaramba
10828 plasma-widget-lancelot
10829 plasma-widgets-addons
10830 plasma-widgets-workspace
10831 polkit-kde-1
10832 ruby1.8
10833 systemsettings
10834 update-notifier-common
10835 &lt;/p&gt;&lt;/blockquote&gt;
10836
10837 &lt;p&gt;Running apt-get autoremove made the results using apt-get and
10838 aptitude a bit more similar, but there are still quite a lott of
10839 differences. I have no idea what packages should be installed after
10840 the upgrade, but hope those that do can have a look.&lt;/p&gt;
10841 </description>
10842 </item>
10843
10844 <item>
10845 <title>Migrating Xen virtual machines using LVM to KVM using disk images</title>
10846 <link>http://people.skolelinux.org/pere/blog/Migrating_Xen_virtual_machines_using_LVM_to_KVM_using_disk_images.html</link>
10847 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Migrating_Xen_virtual_machines_using_LVM_to_KVM_using_disk_images.html</guid>
10848 <pubDate>Mon, 22 Nov 2010 11:20:00 +0100</pubDate>
10849 <description>&lt;p&gt;Most of the computers in use by the
10850 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu/Skolelinux project&lt;/a&gt;
10851 are virtual machines. And they have been Xen machines running on a
10852 fairly old IBM eserver xseries 345 machine, and we wanted to migrate
10853 them to KVM on a newer Dell PowerEdge 2950 host machine. This was a
10854 bit harder that it could have been, because we set up the Xen virtual
10855 machines to get the virtual partitions from LVM, which as far as I
10856 know is not supported by KVM. So to migrate, we had to convert
10857 several LVM logical volumes to partitions on a virtual disk file.&lt;/p&gt;
10858
10859 &lt;p&gt;I found
10860 &lt;a href=&quot;http://searchnetworking.techtarget.com.au/articles/35011-Six-steps-for-migrating-Xen-virtual-machines-to-KVM&quot;&gt;a
10861 nice recipe&lt;/a&gt; to do this, and wrote the following script to do the
10862 migration. It uses qemu-img from the qemu package to make the disk
10863 image, parted to partition it, losetup and kpartx to present the disk
10864 image partions as devices, and dd to copy the data. I NFS mounted the
10865 new servers storage area on the old server to do the migration.&lt;/p&gt;
10866
10867 &lt;pre&gt;
10868 #!/bin/sh
10869
10870 # Based on
10871 # http://searchnetworking.techtarget.com.au/articles/35011-Six-steps-for-migrating-Xen-virtual-machines-to-KVM
10872
10873 set -e
10874 set -x
10875
10876 if [ -z &quot;$1&quot; ] ; then
10877 echo &quot;Usage: $0 &amp;lt;hostname&amp;gt;&quot;
10878 exit 1
10879 else
10880 host=&quot;$1&quot;
10881 fi
10882
10883 if [ ! -e /dev/vg_data/$host-disk ] ; then
10884 echo &quot;error: unable to find LVM volume for $host&quot;
10885 exit 1
10886 fi
10887
10888 # Partitions need to be a bit bigger than the LVM LVs. not sure why.
10889 disksize=$( lvs --units m | grep $host-disk | awk &#39;{sum = sum + $4} END { print int(sum * 1.05) }&#39;)
10890 swapsize=$( lvs --units m | grep $host-swap | awk &#39;{sum = sum + $4} END { print int(sum * 1.05) }&#39;)
10891 totalsize=$(( ( $disksize + $swapsize ) ))
10892
10893 img=$host.img
10894 #dd if=/dev/zero of=$img bs=1M count=$(( $disksize + $swapsize ))
10895 qemu-img create $img ${totalsize}MMaking room on the Debian Edu/Sqeeze DVD
10896
10897 parted $img mklabel msdos
10898 parted $img mkpart primary linux-swap 0 $disksize
10899 parted $img mkpart primary ext2 $disksize $totalsize
10900 parted $img set 1 boot on
10901
10902 modprobe dm-mod
10903 losetup /dev/loop0 $img
10904 kpartx -a /dev/loop0
10905
10906 dd if=/dev/vg_data/$host-disk of=/dev/mapper/loop0p1 bs=1M
10907 fsck.ext3 -f /dev/mapper/loop0p1 || true
10908 mkswap /dev/mapper/loop0p2
10909
10910 kpartx -d /dev/loop0
10911 losetup -d /dev/loop0
10912 &lt;/pre&gt;
10913
10914 &lt;p&gt;The script is perhaps so simple that it is not copyrightable, but
10915 if it is, it is licenced using GPL v2 or later at your discretion.&lt;/p&gt;
10916
10917 &lt;p&gt;After doing this, I booted a Debian CD in rescue mode in KVM with
10918 the new disk image attached, installed grub-pc and linux-image-686 and
10919 set up grub to boot from the disk image. After this, the KVM machines
10920 seem to work just fine.&lt;/p&gt;
10921 </description>
10922 </item>
10923
10924 <item>
10925 <title>Lenny-&gt;Squeeze upgrades, apt vs aptitude with the Gnome and KDE desktop</title>
10926 <link>http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__apt_vs_aptitude_with_the_Gnome_and_KDE_desktop.html</link>
10927 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__apt_vs_aptitude_with_the_Gnome_and_KDE_desktop.html</guid>
10928 <pubDate>Sat, 20 Nov 2010 22:50:00 +0100</pubDate>
10929 <description>&lt;p&gt;I&#39;m still running upgrade testing of the
10930 &lt;a href=&quot;http://people.skolelinux.org/~pere/debian-upgrade-testing/&quot;&gt;Lenny
10931 Gnome and KDE Desktop&lt;/a&gt;, but have not had time to spend on reporting the
10932 status. Here is a short update based on a test I ran 20101118.&lt;/p&gt;
10933
10934 &lt;p&gt;I still do not know what a correct migration should look like, so I
10935 report any differences between apt and aptitude and hope someone else
10936 can see if anything should be changed.&lt;/p&gt;
10937
10938 &lt;p&gt;This is for Gnome:&lt;/p&gt;
10939
10940 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
10941
10942 &lt;blockquote&gt;&lt;p&gt;
10943 apache2.2-bin aptdaemon at-spi baobab binfmt-support
10944 browser-plugin-gnash cheese-common cli-common cpp-4.3 cups-pk-helper
10945 dmz-cursor-theme empathy empathy-common finger
10946 freedesktop-sound-theme freeglut3 gconf-defaults-service gdm-themes
10947 gedit-plugins geoclue geoclue-hostip geoclue-localnet geoclue-manual
10948 geoclue-yahoo gnash gnash-common gnome gnome-backgrounds
10949 gnome-cards-data gnome-codec-install gnome-core
10950 gnome-desktop-environment gnome-disk-utility gnome-screenshot
10951 gnome-search-tool gnome-session-canberra gnome-spell
10952 gnome-system-log gnome-themes-extras gnome-themes-more
10953 gnome-user-share gs-common gstreamer0.10-fluendo-mp3
10954 gstreamer0.10-tools gtk2-engines gtk2-engines-pixbuf
10955 gtk2-engines-smooth hal-info hamster-applet libapache2-mod-dnssd
10956 libapr1 libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-ldap
10957 libart2.0-cil libatspi1.0-0 libboost-date-time1.42.0
10958 libboost-python1.42.0 libboost-thread1.42.0 libchamplain-0.4-0
10959 libchamplain-gtk-0.4-0 libcheese-gtk18 libclutter-gtk-0.10-0
10960 libcryptui0 libcupsys2 libdiscid0 libeel2-data libelf1 libepc-1.0-2
10961 libepc-common libepc-ui-1.0-2 libfreerdp-plugins-standard
10962 libfreerdp0 libgail-common libgconf2.0-cil libgdata-common libgdata7
10963 libgdl-1-common libgdu-gtk0 libgee2 libgeoclue0 libgexiv2-0 libgif4
10964 libglade2.0-cil libglib2.0-cil libgmime2.4-cil libgnome-vfs2.0-cil
10965 libgnome2.24-cil libgnomepanel2.24-cil libgnomeprint2.2-data
10966 libgnomeprintui2.2-common libgnomevfs2-bin libgpod-common libgpod4
10967 libgtk2.0-cil libgtkglext1 libgtksourceview-common
10968 libgtksourceview2.0-common libmono-addins-gui0.2-cil
10969 libmono-addins0.2-cil libmono-cairo2.0-cil libmono-corlib2.0-cil
10970 libmono-i18n-west2.0-cil libmono-posix2.0-cil
10971 libmono-security2.0-cil libmono-sharpzip2.84-cil
10972 libmono-system2.0-cil libmtp8 libmusicbrainz3-6
10973 libndesk-dbus-glib1.0-cil libndesk-dbus1.0-cil libopal3.6.8
10974 libpolkit-gtk-1-0 libpt-1.10.10-plugins-alsa
10975 libpt-1.10.10-plugins-v4l libpt2.6.7 libpython2.6 librpm1 librpmio1
10976 libsdl1.2debian libservlet2.4-java libsrtp0 libssh-4
10977 libtelepathy-farsight0 libtelepathy-glib0 libtidy-0.99-0
10978 libxalan2-java libxerces2-java media-player-info mesa-utils
10979 mono-2.0-gac mono-gac mono-runtime nautilus-sendto
10980 nautilus-sendto-empathy openoffice.org-writer2latex
10981 openssl-blacklist p7zip p7zip-full pkg-config python-4suite-xml
10982 python-aptdaemon python-aptdaemon-gtk python-axiom
10983 python-beautifulsoup python-bugbuddy python-clientform
10984 python-coherence python-configobj python-crypto python-cupshelpers
10985 python-cupsutils python-eggtrayicon python-elementtree
10986 python-epsilon python-evolution python-feedparser python-gdata
10987 python-gdbm python-gst0.10 python-gtkglext1 python-gtkmozembed
10988 python-gtksourceview2 python-httplib2 python-louie python-mako
10989 python-markupsafe python-mechanize python-nevow python-notify
10990 python-opengl python-openssl python-pam python-pkg-resources
10991 python-pyasn1 python-pysqlite2 python-rdflib python-serial
10992 python-tagpy python-twisted-bin python-twisted-conch
10993 python-twisted-core python-twisted-web python-utidylib python-webkit
10994 python-xdg python-zope.interface remmina remmina-plugin-data
10995 remmina-plugin-rdp remmina-plugin-vnc rhythmbox-plugin-cdrecorder
10996 rhythmbox-plugins rpm-common rpm2cpio seahorse-plugins shotwell
10997 software-center svgalibg1 system-config-printer-udev
10998 telepathy-gabble telepathy-mission-control-5 telepathy-salut tomboy
10999 totem totem-coherence totem-mozilla totem-plugins
11000 transmission-common xdg-user-dirs xdg-user-dirs-gtk xserver-xephyr
11001 zip
11002 &lt;/p&gt;&lt;/blockquote&gt;
11003
11004 Installed using apt-get, removed with aptitude
11005
11006 &lt;blockquote&gt;&lt;p&gt;
11007 arj bluez-utils cheese dhcdbd djvulibre-desktop ekiga eog
11008 epiphany-extensions epiphany-gecko evolution-exchange
11009 fast-user-switch-applet file-roller gcalctool gconf-editor gdm gedit
11010 gedit-common gnome-app-install gnome-games gnome-games-data
11011 gnome-nettool gnome-system-tools gnome-themes gnome-utils
11012 gnome-vfs-obexftp gnome-volume-manager gnuchess gucharmap
11013 guile-1.8-libs hal libavahi-compat-libdnssd1 libavahi-core5
11014 libavahi-ui0 libbind9-50 libbluetooth2 libcamel1.2-11 libcdio7
11015 libcucul0 libcurl3 libdirectfb-1.0-0 libdmx1 libdvdread3
11016 libedata-cal1.2-6 libedataserver1.2-9 libeel2-2.20 libepc-1.0-1
11017 libepc-ui-1.0-1 libexchange-storage1.2-3 libfaad0 libgadu3
11018 libgalago3 libgd2-noxpm libgda3-3 libgda3-common libggz2 libggzcore9
11019 libggzmod4 libgksu1.2-0 libgksuui1.0-1 libgmyth0 libgnome-desktop-2
11020 libgnome-pilot2 libgnomecups1.0-1 libgnomeprint2.2-0
11021 libgnomeprintui2.2-0 libgpod3 libgraphviz4 libgtk-vnc-1.0-0
11022 libgtkhtml2-0 libgtksourceview1.0-0 libgtksourceview2.0-0
11023 libgucharmap6 libhesiod0 libicu38 libisccc50 libisccfg50 libiw29
11024 libjaxp1.3-java-gcj libkpathsea4 liblircclient0 libltdl3 liblwres50
11025 libmagick++10 libmagick10 libmalaga7 libmozjs1d libmpfr1ldbl libmtp7
11026 libmysqlclient15off libnautilus-burn4 libneon27 libnm-glib0
11027 libnm-util0 libopal-2.2 libosp5 libparted1.8-10 libpisock9
11028 libpisync1 libpoppler-glib3 libpoppler3 libpt-1.10.10 libraw1394-8
11029 libsdl1.2debian-alsa libsensors3 libsexy2 libsmbios2 libsoup2.2-8
11030 libspeexdsp1 libssh2-1 libsuitesparse-3.1.0 libsvga1
11031 libswfdec-0.6-90 libtalloc1 libtotem-plparser10 libtrackerclient0
11032 libvoikko1 libxalan2-java-gcj libxerces2-java-gcj libxklavier12
11033 libxtrap6 libxxf86misc1 libzephyr3 mysql-common rhythmbox seahorse
11034 sound-juicer swfdec-gnome system-config-printer totem-common
11035 totem-gstreamer transmission-gtk vinagre vino w3c-dtd-xhtml wodim
11036 &lt;/p&gt;&lt;/blockquote&gt;
11037
11038 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
11039
11040 &lt;blockquote&gt;&lt;p&gt;
11041 gstreamer0.10-gnomevfs
11042 &lt;/p&gt;&lt;/blockquote&gt;
11043
11044 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
11045
11046 &lt;blockquote&gt;&lt;p&gt;
11047 [nothing]
11048 &lt;/p&gt;&lt;/blockquote&gt;
11049
11050 &lt;p&gt;This is for KDE:&lt;/p&gt;
11051
11052 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
11053
11054 &lt;blockquote&gt;&lt;p&gt;
11055 autopoint bomber bovo cantor cantor-backend-kalgebra cpp-4.3 dcoprss
11056 edict espeak espeak-data eyesapplet fifteenapplet finger gettext
11057 ghostscript-x git gnome-audio gnugo granatier gs-common
11058 gstreamer0.10-pulseaudio indi kaddressbook-plugins kalgebra
11059 kalzium-data kanjidic kapman kate-plugins kblocks kbreakout kbstate
11060 kde-icons-mono kdeaccessibility kdeaddons-kfile-plugins
11061 kdeadmin-kfile-plugins kdeartwork-misc kdeartwork-theme-window
11062 kdeedu kdeedu-data kdeedu-kvtml-data kdegames kdegames-card-data
11063 kdegames-mahjongg-data kdegraphics-kfile-plugins kdelirc
11064 kdemultimedia-kfile-plugins kdenetwork-kfile-plugins
11065 kdepim-kfile-plugins kdepim-kio-plugins kdessh kdetoys kdewebdev
11066 kdiamond kdnssd kfilereplace kfourinline kgeography-data kigo
11067 killbots kiriki klettres-data kmoon kmrml knewsticker-scripts
11068 kollision kpf krosspython ksirk ksmserver ksquares kstars-data
11069 ksudoku kubrick kweather libasound2-plugins libboost-python1.42.0
11070 libcfitsio3 libconvert-binhex-perl libcrypt-ssleay-perl libdb4.6++
11071 libdjvulibre-text libdotconf1.0 liberror-perl libespeak1
11072 libfinance-quote-perl libgail-common libgsl0ldbl libhtml-parser-perl
11073 libhtml-tableextract-perl libhtml-tagset-perl libhtml-tree-perl
11074 libio-stringy-perl libkdeedu4 libkdegames5 libkiten4 libkpathsea5
11075 libkrossui4 libmailtools-perl libmime-tools-perl
11076 libnews-nntpclient-perl libopenbabel3 libportaudio2 libpulse-browse0
11077 libservlet2.4-java libspeechd2 libtiff-tools libtimedate-perl
11078 libunistring0 liburi-perl libwww-perl libxalan2-java libxerces2-java
11079 lirc luatex marble networkstatus noatun-plugins
11080 openoffice.org-writer2latex palapeli palapeli-data parley
11081 parley-data poster psutils pulseaudio pulseaudio-esound-compat
11082 pulseaudio-module-x11 pulseaudio-utils quanta-data rocs rsync
11083 speech-dispatcher step svgalibg1 texlive-binaries texlive-luatex
11084 ttf-sazanami-gothic
11085 &lt;/p&gt;&lt;/blockquote&gt;
11086
11087 &lt;p&gt;Installed using apt-get, removed with aptitude&lt;/p&gt;
11088
11089 &lt;blockquote&gt;&lt;p&gt;
11090 amor artsbuilder atlantik atlantikdesigner blinken bluez-utils cvs
11091 dhcdbd djvulibre-desktop imlib-base imlib11 kalzium kanagram kandy
11092 kasteroids katomic kbackgammon kbattleship kblackbox kbounce kbruch
11093 kcron kdat kdemultimedia-kappfinder-data kdeprint kdict kdvi kedit
11094 keduca kenolaba kfax kfaxview kfouleggs kgeography kghostview
11095 kgoldrunner khangman khexedit kiconedit kig kimagemapeditor
11096 kitchensync kiten kjumpingcube klatin klettres klickety klines
11097 klinkstatus kmag kmahjongg kmailcvt kmenuedit kmid kmilo kmines
11098 kmousetool kmouth kmplot knetwalk kodo kolf kommander konquest kooka
11099 kpager kpat kpdf kpercentage kpilot kpoker kpovmodeler krec
11100 kregexpeditor kreversi ksame ksayit kshisen ksig ksim ksirc ksirtet
11101 ksmiletris ksnake ksokoban kspaceduel kstars ksvg ksysv kteatime
11102 ktip ktnef ktouch ktron kttsd ktuberling kturtle ktux kuickshow
11103 kverbos kview kviewshell kvoctrain kwifimanager kwin kwin4 kwordquiz
11104 kworldclock kxsldbg libakode2 libarts1-akode libarts1-audiofile
11105 libarts1-mpeglib libarts1-xine libavahi-compat-libdnssd1
11106 libavahi-core5 libavc1394-0 libbind9-50 libbluetooth2
11107 libboost-python1.34.1 libcucul0 libcurl3 libcvsservice0
11108 libdirectfb-1.0-0 libdjvulibre21 libdvdread3 libfaad0 libfreebob0
11109 libgd2-noxpm libgraphviz4 libgsmme1c2a libgtkhtml2-0 libicu38
11110 libiec61883-0 libindex0 libisccc50 libisccfg50 libiw29
11111 libjaxp1.3-java-gcj libk3b3 libkcal2b libkcddb1 libkdeedu3
11112 libkdegames1 libkdepim1a libkgantt0 libkleopatra1 libkmime2
11113 libkpathsea4 libkpimexchange1 libkpimidentities1 libkscan1
11114 libksieve0 libktnef1 liblockdev1 libltdl3 liblwres50 libmagick10
11115 libmimelib1c2a libmodplug0c2 libmozjs1d libmpcdec3 libmpfr1ldbl
11116 libneon27 libnm-util0 libopensync0 libpisock9 libpoppler-glib3
11117 libpoppler-qt2 libpoppler3 libraw1394-8 librss1 libsensors3
11118 libsmbios2 libssh2-1 libsuitesparse-3.1.0 libswfdec-0.6-90
11119 libtalloc1 libxalan2-java-gcj libxerces2-java-gcj libxtrap6 lskat
11120 mpeglib network-manager-kde noatun pmount tex-common texlive-base
11121 texlive-common texlive-doc-base texlive-fonts-recommended tidy
11122 ttf-dustin ttf-kochi-gothic ttf-sjfonts
11123 &lt;/p&gt;&lt;/blockquote&gt;
11124
11125 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
11126
11127 &lt;blockquote&gt;&lt;p&gt;
11128 dolphin kde-core kde-plasma-desktop kde-standard kde-window-manager
11129 kdeartwork kdebase kdebase-apps kdebase-workspace
11130 kdebase-workspace-bin kdebase-workspace-data kdeutils kscreensaver
11131 kscreensaver-xsavers libgle3 libkonq5 libkonq5-templates libnetpbm10
11132 netpbm plasma-widget-folderview plasma-widget-networkmanagement
11133 xscreensaver-data-extra xscreensaver-gl xscreensaver-gl-extra
11134 xscreensaver-screensaver-bsod
11135 &lt;/p&gt;&lt;/blockquote&gt;
11136
11137 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
11138
11139 &lt;blockquote&gt;&lt;p&gt;
11140 kdebase-bin konq-plugins konqueror
11141 &lt;/p&gt;&lt;/blockquote&gt;
11142 </description>
11143 </item>
11144
11145 <item>
11146 <title>Gnash buildbot slave and Debian kfreebsd</title>
11147 <link>http://people.skolelinux.org/pere/blog/Gnash_buildbot_slave_and_Debian_kfreebsd.html</link>
11148 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Gnash_buildbot_slave_and_Debian_kfreebsd.html</guid>
11149 <pubDate>Sat, 20 Nov 2010 07:20:00 +0100</pubDate>
11150 <description>&lt;p&gt;Answering
11151 &lt;a href=&quot;http://www.listware.net/201011/gnash-dev/67431-gnash-dev-buildbot-looking-for-slaves.html&quot;&gt;the
11152 call from the Gnash project&lt;/a&gt; for
11153 &lt;a href=&quot;http://www.gnashdev.org:8010&quot;&gt;buildbot&lt;/a&gt; slaves to test the
11154 current source, I have set up a virtual KVM machine on the Debian
11155 Edu/Skolelinux virtualization host to test the git source on
11156 Debian/Squeeze. I hope this can help the developers in getting new
11157 releases out more often.&lt;/p&gt;
11158
11159 &lt;p&gt;As the developers want less main-stream build platforms tested to,
11160 I have considered setting up a &lt;a
11161 href=&quot;http://www.debian.org/ports/kfreebsd-gnu/&quot;&gt;Debian/kfreebsd&lt;/a&gt;
11162 machine as well. I have also considered using the kfreebsd
11163 architecture in Debian as a file server in NUUG to get access to the 5
11164 TB zfs volume we currently use to store DV video. Because of this, I
11165 finally got around to do a test installation of Debian/Squeeze with
11166 kfreebsd. Installation went fairly smooth, thought I noticed some
11167 visual glitches in the cdebconf dialogs (black cursor left on the
11168 screen at random locations). Have not gotten very far with the
11169 testing. Noticed cfdisk did not work, but fdisk did so it was not a
11170 fatal problem. Have to spend some more time on it to see if it is
11171 useful as a file server for NUUG. Will try to find time to set up a
11172 gnash buildbot slave on the Debian Edu/Skolelinux this weekend.&lt;/p&gt;
11173 </description>
11174 </item>
11175
11176 <item>
11177 <title>Debian in 3D</title>
11178 <link>http://people.skolelinux.org/pere/blog/Debian_in_3D.html</link>
11179 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_in_3D.html</guid>
11180 <pubDate>Tue, 9 Nov 2010 16:10:00 +0100</pubDate>
11181 <description>&lt;p&gt;&lt;img src=&quot;http://thingiverse-production.s3.amazonaws.com/renders/23/e0/c4/f9/2b/debswagtdose_preview_medium.jpg&quot;&gt;&lt;/p&gt;
11182
11183 &lt;p&gt;3D printing is just great. I just came across this Debian logo in
11184 3D linked in from
11185 &lt;a href=&quot;http://blog.thingiverse.com/2010/11/09/participatory-branding/&quot;&gt;the
11186 thingiverse blog&lt;/a&gt;.&lt;/p&gt;
11187 </description>
11188 </item>
11189
11190 <item>
11191 <title>Making room on the Debian Edu/Sqeeze DVD</title>
11192 <link>http://people.skolelinux.org/pere/blog/Making_room_on_the_Debian_Edu_Sqeeze_DVD.html</link>
11193 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Making_room_on_the_Debian_Edu_Sqeeze_DVD.html</guid>
11194 <pubDate>Sun, 7 Nov 2010 11:45:00 +0100</pubDate>
11195 <description>&lt;p&gt;Prioritising packages for the Debian Edu /
11196 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt; DVD, which is
11197 supposed provide a school with all the services and user applications
11198 needed on the pupils computer network has always been hard. Even
11199 schools without Internet connections should be able to get Debian Edu
11200 working using this DVD.&lt;/p&gt;
11201
11202 &lt;p&gt;The job became a lot harder when apt and aptitude started
11203 installing recommended packages by default. We want the same set of
11204 packages to be installed when using the DVD and the netinst CD, and
11205 that means all recommended packages need to be on the DVD. I created
11206 a patch for debian-cd in &lt;a href=&quot;http://bugs.debian.org/601203&quot;&gt;BTS
11207 report #601203&lt;/a&gt; to do this, and since this change was applied to
11208 the Debian Edu DVD build, we have been seriously short on space.&lt;/p&gt;
11209
11210 &lt;p&gt;A few days ago we decided to drop blender, wxmaxima and kicad from
11211 the default installation to save space on the DVD, believing that
11212 those needing these applications are few and can get them from the
11213 Debian archive.&lt;/p&gt;
11214
11215 &lt;p&gt;Yesterday, I had a look what source packages to see which packages
11216 were using most space. A few large packages are well know;
11217 openoffice.org, openclipart and fluid-soundfont. But I also
11218 discovered that lilypond used 106 MiB and fglrx-driver used 53 MiB.
11219 The lilypond package is pulled in as a dependency for rosegarden, and
11220 when looking a bit closer I discovered that 99 MiB of the 106 MiB were
11221 the documentation package, which is recommended by the binary package.
11222 I decided to drop this documentation package from our DVD, as most of
11223 our users will use the GUI front-ends and do not need the lilypond
11224 documentation. Similarly, I dropped the non-free fglrx-driver package
11225 which might be installed by d-i when its hardware is detected, as the
11226 free X driver should work.&lt;/p&gt;
11227
11228 &lt;p&gt;With this change, we finally got space for the LXDE and Gnome
11229 desktop packages as well as the language specific packages making the
11230 DVD more useful again.&lt;/p&gt;
11231 </description>
11232 </item>
11233
11234 <item>
11235 <title>Software updates 2010-10-24</title>
11236 <link>http://people.skolelinux.org/pere/blog/Software_updates_2010_10_24.html</link>
11237 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Software_updates_2010_10_24.html</guid>
11238 <pubDate>Sun, 24 Oct 2010 22:45:00 +0200</pubDate>
11239 <description>&lt;p&gt;Some updates.&lt;/p&gt;
11240
11241 &lt;p&gt;My &lt;a href=&quot;http://pledgebank.com/gnash-avm2&quot;&gt;gnash pledge&lt;/a&gt; to
11242 raise money for the project is going well. The lower limit of 10
11243 signers was reached in 24 hours, and so far 13 people have signed it.
11244 More signers and more funding is most welcome, and I am really curious
11245 how far we can get before the time limit of December 24 is reached.
11246 :)&lt;/p&gt;
11247
11248 &lt;p&gt;On the #gnash IRC channel on irc.freenode.net, I was just tipped
11249 about what appear to be a great code coverage tool capable of
11250 generating code coverage stats without any changes to the source code.
11251 It is called
11252 &lt;a href=&quot;http://simonkagstrom.github.com/kcov/index.html&quot;&gt;kcov&lt;/a&gt;,
11253 and can be used using &lt;tt&gt;kcov &amp;lt;directory&amp;gt; &amp;lt;binary&amp;gt;&lt;/tt&gt;.
11254 It is missing in Debian, but the git source built just fine in Squeeze
11255 after I installed libelf-dev, libdwarf-dev, pkg-config and
11256 libglib2.0-dev. Failed to build in Lenny, but suspect that is
11257 solvable. I hope kcov make it into Debian soon.&lt;/p&gt;
11258
11259 &lt;p&gt;Finally found time to wrap up the release notes for &lt;a
11260 href=&quot;http://lists.debian.org/debian-edu-announce/2010/10/msg00002.html&quot;&gt;a
11261 new alpha release of Debian Edu&lt;/a&gt;, and just published the second
11262 alpha test release of the Squeeze based Debian Edu /
11263 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;
11264 release. Give it a try if you need a complete linux solution for your
11265 school, including central infrastructure server, workstations, thin
11266 client servers and diskless workstations. A nice touch added
11267 yesterday is RDP support on the thin client servers, for windows
11268 clients to get a Linux desktop on request.&lt;/p&gt;
11269 </description>
11270 </item>
11271
11272 <item>
11273 <title>Pledge for funding to the Gnash project to get AVM2 support</title>
11274 <link>http://people.skolelinux.org/pere/blog/Pledge_for_funding_to_the_Gnash_project_to_get_AVM2_support.html</link>
11275 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Pledge_for_funding_to_the_Gnash_project_to_get_AVM2_support.html</guid>
11276 <pubDate>Tue, 19 Oct 2010 14:45:00 +0200</pubDate>
11277 <description>&lt;p&gt;&lt;a href=&quot;http://www.getgnash.org/&quot;&gt;The Gnash project&lt;/a&gt; is the
11278 most promising solution for a Free Software Flash implementation. It
11279 has done great so far, but there is still far to go, and recently its
11280 funding has dried up. I believe AVM2 support in Gnash is vital to the
11281 continued progress of the project, as more and more sites show up with
11282 AVM2 flash files.&lt;/p&gt;
11283
11284 &lt;p&gt;To try to get funding for developing such support, I have started
11285 &lt;a href=&quot;http://www.pledgebank.com/gnash-avm2&quot;&gt;a pledge&lt;/a&gt; with the
11286 following text:&lt;/P&gt;
11287
11288 &lt;p&gt;&lt;blockquote&gt;
11289
11290 &lt;p&gt;&quot;I will pay 100$ to the Gnash project to develop AVM2 support but
11291 only if 10 other people will do the same.&quot;&lt;/p&gt;
11292
11293 &lt;p&gt;- Petter Reinholdtsen, free software developer&lt;/p&gt;
11294
11295 &lt;p&gt;Deadline to sign up by: 24th December 2010&lt;/p&gt;
11296
11297 &lt;p&gt;The Gnash project need to get support for the new Flash file
11298 format AVM2 to work with a lot of sites using Flash on the
11299 web. Gnash already work with a lot of Flash sites using the old AVM1
11300 format, but more and more sites are using the AVM2 format these
11301 days. The project web page is available from
11302 http://www.getgnash.org/ . Gnash is a free software implementation
11303 of Adobe Flash, allowing those of us that do not accept the terms of
11304 the Adobe Flash license to get access to Flash sites.&lt;/p&gt;
11305
11306 &lt;p&gt;The project need funding to get developers to put aside enough
11307 time to develop the AVM2 support, and this pledge is my way to try
11308 to get this to happen.&lt;/p&gt;
11309
11310 &lt;p&gt;The project accept donations via the OpenMediaNow foundation,
11311 &lt;a href=&quot;http://www.openmedianow.org/?q=node/32&quot;&gt;http://www.openmedianow.org/?q=node/32&lt;/a&gt; .&lt;/p&gt;
11312
11313 &lt;/blockquote&gt;&lt;/p&gt;
11314
11315 &lt;p&gt;I hope you will support this effort too. I hope more than 10
11316 people will participate to make this happen. The more money the
11317 project gets, the more features it can develop using these funds.
11318 :)&lt;/p&gt;
11319 </description>
11320 </item>
11321
11322 <item>
11323 <title>First version of a Perl library to control the Spykee robot</title>
11324 <link>http://people.skolelinux.org/pere/blog/First_version_of_a_Perl_library_to_control_the_Spykee_robot.html</link>
11325 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_version_of_a_Perl_library_to_control_the_Spykee_robot.html</guid>
11326 <pubDate>Sat, 9 Oct 2010 14:00:00 +0200</pubDate>
11327 <description>&lt;p&gt;This summer I got the chance to buy cheap Spykee robots, and since
11328 then I have worked on getting Linux software in place to control them.
11329 The firmware for the robot is available from the producer, and using
11330 that source it was trivial to figure out the protocol specification.
11331 I&#39;ve started on a perl library to control it, and made some demo
11332 programs using this perl library to allow one to control the
11333 robots.&lt;/p&gt;
11334
11335 &lt;p&gt;The library is quite functional already, and capable of controlling
11336 the driving, fetching video, uploading MP3s and play them. There are
11337 a few less important features too.&lt;/p&gt;
11338
11339 &lt;p&gt;Since a few weeks ago, I ran out of time to spend on this project,
11340 but I never got around to releasing the current source. I decided
11341 today that it was time to do something about it, and uploaded the
11342 source to my Debian package store at people.skolelinux.org.&lt;/p&gt;
11343
11344 &lt;p&gt;Because it was simpler for me, I made a Debian package and
11345 published the source and deb. If you got a spykee robot, grab the
11346 source or binary package:&lt;/p&gt;
11347
11348 &lt;p&gt;&lt;ul&gt;
11349 &lt;li&gt;&lt;a href=&quot;http://people.skolelinux.org/~pere/debian/packages/lenny/libspykee-perl_0.0.20101009-1.tar.gz&quot;&gt;libspykee-perl_0.0.20101009-1.tar.gz&lt;/a&gt;&lt;/li&gt;
11350 &lt;li&gt;&lt;a href=&quot;http://people.skolelinux.org/~pere/debian/packages/lenny/libspykee-perl_0.0.20101009-1.dsc&quot;&gt;libspykee-perl_0.0.20101009-1.dsc&lt;/a&gt;&lt;/li&gt;
11351 &lt;li&gt;&lt;a href=&quot;http://people.skolelinux.org/~pere/debian/packages/lenny/libspykee-perl_0.0.20101009-1_all.deb&quot;&gt;libspykee-perl_0.0.20101009-1_all.deb&lt;/a&gt;&lt;/li&gt;
11352 &lt;/ul&gt;&lt;/p&gt;
11353
11354 &lt;p&gt;If you are interested in helping out with developing this library,
11355 please let me know.&lt;/p&gt;
11356 </description>
11357 </item>
11358
11359 <item>
11360 <title>Links for 2010-10-03</title>
11361 <link>http://people.skolelinux.org/pere/blog/Links_for_2010_10_03.html</link>
11362 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Links_for_2010_10_03.html</guid>
11363 <pubDate>Sun, 3 Oct 2010 22:30:00 +0200</pubDate>
11364 <description>&lt;p&gt;&lt;ul&gt;
11365
11366 &lt;li&gt;&lt;a href=&quot;http://arstechnica.com/business/news/2010/09/there-is-no-plan-b-why-the-ipv4-to-ipv6-transition-will-be-ugly.ars&quot;&gt;There
11367 is no Plan B: why the IPv4-to-IPv6 transition will be ugly&lt;/a&gt;&lt;/li&gt;
11368
11369 &lt;li&gt;Scanner looking under clothes
11370 &lt;a href=&quot;http://www.dagbladet.no/2010/10/03/nyheter/utenriks/reise/overvakingskamera/flyplasser/13667192/&quot;&gt;has
11371 already been misused at Heathrow&lt;/a&gt;.&lt;/li&gt;
11372
11373 &lt;li&gt;&lt;a href=&quot;http://wiki.softwarelivre.org/Landell&quot;&gt;Landell
11374 Webcasting&lt;/a&gt; - interesting alternative for
11375 &lt;ahref=&quot;http://dvswitch.alioth.debian.org/wiki/&quot;&gt;DVSwitch&lt;/a&gt; with
11376 simple setup.
11377
11378 &lt;/ul&gt;&lt;/p&gt;
11379 </description>
11380 </item>
11381
11382 <item>
11383 <title>Terms of use for video produced by a Canon IXUS 130 digital camera</title>
11384 <link>http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html</link>
11385 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html</guid>
11386 <pubDate>Thu, 9 Sep 2010 23:55:00 +0200</pubDate>
11387 <description>&lt;p&gt;A few days ago I had the mixed pleasure of bying a new digital
11388 camera, a Canon IXUS 130. It was instructive and very disturbing to
11389 be able to verify that also this camera producer have the nerve to
11390 specify how I can or can not use the videos produced with the camera.
11391 Even thought I was aware of the issue, the options with new cameras
11392 are limited and I ended up bying the camera anyway. What is the
11393 problem, you might ask? It is software patents, MPEG-4, H.264 and the
11394 MPEG-LA that is the problem, and our right to record our experiences
11395 without asking for permissions that is at risk.
11396
11397 &lt;p&gt;On page 27 of the Danish instruction manual, this section is
11398 written:&lt;/p&gt;
11399
11400 &lt;blockquote&gt;
11401 &lt;p&gt;This product is licensed under AT&amp;T patents for the MPEG-4 standard
11402 and may be used for encoding MPEG-4 compliant video and/or decoding
11403 MPEG-4 compliant video that was encoded only (1) for a personal and
11404 non-commercial purpose or (2) by a video provider licensed under the
11405 AT&amp;T patents to provide MPEG-4 compliant video.&lt;/p&gt;
11406
11407 &lt;p&gt;No license is granted or implied for any other use for MPEG-4
11408 standard.&lt;/p&gt;
11409 &lt;/blockquote&gt;
11410
11411 &lt;p&gt;In short, the camera producer have chosen to use technology
11412 (MPEG-4/H.264) that is only provided if I used it for personal and
11413 non-commercial purposes, or ask for permission from the organisations
11414 holding the knowledge monopoly (patent) for technology used.&lt;/p&gt;
11415
11416 &lt;p&gt;This issue has been brewing for a while, and I recommend you to
11417 read
11418 &quot;&lt;a href=&quot;http://www.osnews.com/story/23236/Why_Our_Civilization_s_Video_Art_and_Culture_is_Threatened_by_the_MPEG-LA&quot;&gt;Why
11419 Our Civilization&#39;s Video Art and Culture is Threatened by the
11420 MPEG-LA&lt;/a&gt;&quot; by Eugenia Loli-Queru and
11421 &quot;&lt;a href=&quot;http://webmink.com/2010/09/03/h-264-and-foss/&quot;&gt;H.264 Is Not
11422 The Sort Of Free That Matters&lt;/a&gt;&quot; by Simon Phipps to learn more about
11423 the issue. The solution is to support the
11424 &lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;free and
11425 open standards&lt;/a&gt; for video, like &lt;a href=&quot;http://www.theora.org/&quot;&gt;Ogg
11426 Theora&lt;/a&gt;, and avoid MPEG-4 and H.264 if you can.&lt;/p&gt;
11427 </description>
11428 </item>
11429
11430 <item>
11431 <title>Some notes on Flash in Debian and Debian Edu</title>
11432 <link>http://people.skolelinux.org/pere/blog/Some_notes_on_Flash_in_Debian_and_Debian_Edu.html</link>
11433 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Some_notes_on_Flash_in_Debian_and_Debian_Edu.html</guid>
11434 <pubDate>Sat, 4 Sep 2010 10:10:00 +0200</pubDate>
11435 <description>&lt;p&gt;In the &lt;a href=&quot;http://popcon.debian.org/unknown/by_vote&quot;&gt;Debian
11436 popularity-contest numbers&lt;/a&gt;, the adobe-flashplugin package the
11437 second most popular used package that is missing in Debian. The sixth
11438 most popular is flashplayer-mozilla. This is a clear indication that
11439 working flash is important for Debian users. Around 10 percent of the
11440 users submitting data to popcon.debian.org have this package
11441 installed.&lt;/p&gt;
11442
11443 &lt;p&gt;In the report written by Lars Risan in August 2008
11444&lt;a href=&quot;http://wiki.skolelinux.no/Dokumentasjon/Rapporter?action=AttachFile&amp;do=view&amp;target=Skolelinux_i_bruk_rapport_1.0.pdf&quot;&gt;Skolelinux
11445 i bruk – Rapport for Hurum kommune, Universitetet i Agder og
11446 stiftelsen SLX Debian Labs&lt;/a&gt;»), one of the most important problems
11447 schools experienced with &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian
11448 Edu/Skolelinux&lt;/a&gt; was the lack of working Flash. A lot of educational
11449 web sites require Flash to work, and lacking working Flash support in
11450 the web browser and the problems with installing it was perceived as a
11451 good reason to stay with Windows.&lt;/p&gt;
11452
11453 &lt;p&gt;I once saw a funny and sad comment in a web forum, where Linux was
11454 said to be the retarded cousin that did not really understand
11455 everything you told him but could work fairly well. This was a
11456 comment regarding the problems Linux have with proprietary formats and
11457 non-standard web pages, and is sad because it exposes a fairly common
11458 understanding of whose fault it is if web pages that only work in for
11459 example Internet Explorer 6 fail to work on Firefox, and funny because
11460 it explain very well how annoying it is for users when Linux
11461 distributions do not work with the documents they receive or the web
11462 pages they want to visit.&lt;/p&gt;
11463
11464 &lt;p&gt;This is part of the reason why I believe it is important for Debian
11465 and Debian Edu to have a well working Flash implementation in the
11466 distribution, to get at least popular sites as Youtube and Google
11467 Video to working out of the box. For Squeeze, Debian have the chance
11468 to include the latest version of Gnash that will make this happen, as
11469 the new release 0.8.8 was published a few weeks ago and is resting in
11470 unstable. The new version work with more sites that version 0.8.7.
11471 The Gnash maintainers have asked for a freeze exception, but the
11472 release team have not had time to reply to it yet. I hope they agree
11473 with me that Flash is important for the Debian desktop users, and thus
11474 accept the new package into Squeeze.&lt;/p&gt;
11475 </description>
11476 </item>
11477
11478 <item>
11479 <title>My first perl GUI application - controlling a Spykee robot</title>
11480 <link>http://people.skolelinux.org/pere/blog/My_first_perl_GUI_application___controlling_a_Spykee_robot.html</link>
11481 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/My_first_perl_GUI_application___controlling_a_Spykee_robot.html</guid>
11482 <pubDate>Wed, 1 Sep 2010 21:00:00 +0200</pubDate>
11483 <description>&lt;p&gt;This evening I made my first Perl GUI application. The last few
11484 days I have worked on a Perl module for controlling my recently
11485 aquired Spykee robots, and the module is now getting complete enought
11486 that it is possible to use it to control the robot driving at least.
11487 It was now time to figure out how to use it to create some GUI to
11488 allow me to drive the robot around. I picked PerlQt as I have had
11489 positive experiences with the Qt API before, and spent a few minutes
11490 browsing the web for examples. Using Qt Designer seemed like a short
11491 cut, so I ended up writing the perl GUI using Qt Designer and
11492 compiling it into a perl program using the puic program from
11493 libqt-perl. Nothing fancy yet, but it got buttons to connect and
11494 drive around.&lt;/p&gt;
11495
11496 &lt;p&gt;The perl module I have written provide a object oriented API for
11497 controlling the robot. Here is an small example on how to use it:&lt;/p&gt;
11498
11499 &lt;p&gt;&lt;pre&gt;
11500 use Spykee;
11501 Spykee::discover(sub {$robot{$_[0]} = $_[1]});
11502 my $host = (keys %robot)[0];
11503 my $spykee = Spykee-&gt;new();
11504 $spykee-&gt;contact($host, &quot;admin&quot;, &quot;admin&quot;);
11505 $spykee-&gt;left();
11506 sleep 2;
11507 $spykee-&gt;right();
11508 sleep 2;
11509 $spykee-&gt;forward();
11510 sleep 2;
11511 $spykee-&gt;back();
11512 sleep 2;
11513 $spykee-&gt;stop();
11514 &lt;/pre&gt;&lt;/p&gt;
11515
11516 &lt;p&gt;Thanks to the release of the source of the robot firmware, I could
11517 peek into the implementation at the other end to figure out how to
11518 implement the protocol used by the robot. I&#39;ve implemented several of
11519 the commands the robot understand, but is still missing the camera
11520 support to make it possible to control the robot from remote. First I
11521 want to implement support for uploading new firmware and configuring
11522 the wireless network, to make it possible to bootstrap a Spykee robot
11523 without the producers Windows and MacOSX software (I only have Linux,
11524 so I had to ask a friend to come over to get the robot testing
11525 going. :).&lt;/p&gt;
11526
11527 &lt;p&gt;Will release the source to the public soon, but need to figure out
11528 where to make it available first. I will add a link to
11529 &lt;a href=&quot;http://wiki.nuug.no/grupper/robot/&quot;&gt;the NUUG wiki&lt;/a&gt; for
11530 those that want to check back later to find it.&lt;/p&gt;
11531 </description>
11532 </item>
11533
11534 <item>
11535 <title>Broken hard link handling with sshfs</title>
11536 <link>http://people.skolelinux.org/pere/blog/Broken_hard_link_handling_with_sshfs.html</link>
11537 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Broken_hard_link_handling_with_sshfs.html</guid>
11538 <pubDate>Mon, 30 Aug 2010 19:30:00 +0200</pubDate>
11539 <description>&lt;p&gt;Just got an email from Tobias Gruetzmacher as a followup on my
11540 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Broken_umask_handling_with_sshfs.html&quot;&gt;previous
11541 post about sshfs&lt;/a&gt;. He reported another problem with sshfs. It
11542 fail to handle hard links properly. A simple way to spot this is to
11543 look at the . and .. entries in the directory tree. These should have
11544 a link count &gt;1, but on sshfs the count is 1. I just tested to see
11545 what happen when trying to hardlink, and this fail as well:&lt;/p&gt;
11546
11547 &lt;pre&gt;
11548 % ln foo bar
11549 ln: creating hard link `bar&#39; =&gt; `foo&#39;: Function not implemented
11550 %
11551 &lt;/pre&gt;
11552
11553 &lt;p&gt;I have not yet found time to implement a test for this in my file
11554 system test code, but believe having working hard links is useful to
11555 avoid surprised unix programs. Not as useful as working file locking
11556 and symlinks, which are required to get a working desktop, but useful
11557 nevertheless. :)&lt;/p&gt;
11558
11559 &lt;p&gt;The latest version of the file system test code is available via
11560 git from
11561 &lt;a href=&quot;http://github.com/gebi/fs-test&quot;&gt;http://github.com/gebi/fs-test&lt;/a&gt;&lt;/p&gt;
11562 </description>
11563 </item>
11564
11565 <item>
11566 <title>Broken umask handling with sshfs</title>
11567 <link>http://people.skolelinux.org/pere/blog/Broken_umask_handling_with_sshfs.html</link>
11568 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Broken_umask_handling_with_sshfs.html</guid>
11569 <pubDate>Thu, 26 Aug 2010 13:30:00 +0200</pubDate>
11570 <description>&lt;p&gt;My file system sematics program
11571 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Testing_if_a_file_system_can_be_used_for_home_directories___.html&quot;&gt;presented
11572 a few days ago&lt;/a&gt; is very useful to verify that a file system can
11573 work as a unix home directory,and today I had to extend it a bit. I&#39;m
11574 looking into alternatives for home directory access here at the
11575 University of Oslo, and one of the options is sshfs. My friend
11576 Finn-Arne mentioned a while back that they had used sshfs with Debian
11577 Edu, but stopped because of problems. I asked today what the problems
11578 where, and he mentioned that sshfs failed to handle umask properly.
11579 Trying to detect the problem I wrote this addition to my fs testing
11580 script:&lt;/p&gt;
11581
11582 &lt;pre&gt;
11583 mode_t touch_get_mode(const char *name, mode_t mode) {
11584 mode_t retval = 0;
11585 int fd = open(name, O_RDWR|O_CREAT|O_LARGEFILE, mode);
11586 if (-1 != fd) {
11587 unlink(name);
11588 struct stat statbuf;
11589 if (-1 != fstat(fd, &amp;statbuf)) {
11590 retval = statbuf.st_mode &amp; 0x1ff;
11591 }
11592 close(fd);
11593 }
11594 return retval;
11595 }
11596
11597 /* Try to detect problem discovered using sshfs */
11598 int test_umask(void) {
11599 printf(&quot;info: testing umask effect on file creation\n&quot;);
11600
11601 mode_t orig_umask = umask(000);
11602 mode_t newmode;
11603 if (0666 != (newmode = touch_get_mode(&quot;foobar&quot;, 0666))) {
11604 printf(&quot; error: Wrong file mode %o when creating using mode 666 and umask 000\n&quot;,
11605 newmode);
11606 }
11607 umask(007);
11608 if (0660 != (newmode = touch_get_mode(&quot;foobar&quot;, 0666))) {
11609 printf(&quot; error: Wrong file mode %o when creating using mode 666 and umask 007\n&quot;,
11610 newmode);
11611 }
11612
11613 umask (orig_umask);
11614 return 0;
11615 }
11616
11617 int main(int argc, char **argv) {
11618 [...]
11619 test_umask();
11620 return 0;
11621 }
11622 &lt;/pre&gt;
11623
11624 &lt;p&gt;Sure enough. On NFS to a netapp, I get this result:&lt;/p&gt;
11625
11626 &lt;pre&gt;
11627 Testing POSIX/Unix sematics on file system
11628 info: testing symlink creation
11629 info: testing subdirectory creation
11630 info: testing fcntl locking
11631 Read-locking 1 byte from 1073741824
11632 Read-locking 510 byte from 1073741826
11633 Unlocking 1 byte from 1073741824
11634 Write-locking 1 byte from 1073741824
11635 Write-locking 510 byte from 1073741826
11636 Unlocking 2 byte from 1073741824
11637 info: testing umask effect on file creation
11638 &lt;/pre&gt;
11639
11640 &lt;p&gt;When mounting the same directory using sshfs, I get this
11641 result:&lt;/p&gt;
11642
11643 &lt;pre&gt;
11644 Testing POSIX/Unix sematics on file system
11645 info: testing symlink creation
11646 info: testing subdirectory creation
11647 info: testing fcntl locking
11648 Read-locking 1 byte from 1073741824
11649 Read-locking 510 byte from 1073741826
11650 Unlocking 1 byte from 1073741824
11651 Write-locking 1 byte from 1073741824
11652 Write-locking 510 byte from 1073741826
11653 Unlocking 2 byte from 1073741824
11654 info: testing umask effect on file creation
11655 error: Wrong file mode 644 when creating using mode 666 and umask 000
11656 error: Wrong file mode 640 when creating using mode 666 and umask 007
11657 &lt;/pre&gt;
11658
11659 &lt;p&gt;So, I can conclude that sshfs is better than smb to a Netapp or a
11660 Windows server, but not good enough to be used as a home
11661 directory.&lt;/p&gt;
11662
11663 &lt;p&gt;Update 2010-08-26: Reported the issue in
11664 &lt;a href=&quot;http://bugs.debian.org/594498&quot;&gt;BTS report #594498&lt;/a&gt;&lt;/p&gt;
11665
11666 &lt;p&gt;Update 2010-08-27: Michael Gebetsroither report that he found the
11667 script so useful that he created a GIT repository and stored it in
11668 &lt;a href=&quot;http://github.com/gebi/fs-test&quot;&gt;http://github.com/gebi/fs-test&lt;/a&gt;.&lt;/p&gt;
11669 </description>
11670 </item>
11671
11672 <item>
11673 <title>Rob Weir: How to Crush Dissent</title>
11674 <link>http://people.skolelinux.org/pere/blog/Rob_Weir__How_to_Crush_Dissent.html</link>
11675 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Rob_Weir__How_to_Crush_Dissent.html</guid>
11676 <pubDate>Sun, 15 Aug 2010 22:20:00 +0200</pubDate>
11677 <description>&lt;p&gt;I found the notes from Rob Weir on
11678 &lt;a href=&quot;http://feedproxy.google.com/~r/robweir/antic-atom/~3/VGb23-kta8c/how-to-crush-dissent.html&quot;&gt;how
11679 to crush dissent&lt;/a&gt; matching my own thoughts on the matter quite
11680 well. Highly recommended for those wondering which road our society
11681 should go down. In my view we have been heading the wrong way for a
11682 long time.&lt;/p&gt;
11683 </description>
11684 </item>
11685
11686 <item>
11687 <title>No hardcoded config on Debian Edu clients</title>
11688 <link>http://people.skolelinux.org/pere/blog/No_hardcoded_config_on_Debian_Edu_clients.html</link>
11689 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/No_hardcoded_config_on_Debian_Edu_clients.html</guid>
11690 <pubDate>Mon, 9 Aug 2010 20:15:00 +0200</pubDate>
11691 <description>&lt;p&gt;As reported earlier, the last few days I have looked at how Debian
11692 Edu clients are configured, and tried to get rid of all hardcoded
11693 configuration settings on the clients. I believe the work to be
11694 mostly done, and the clients seem to work just fine with dynamically
11695 generated configuration.&lt;/p&gt;
11696
11697 &lt;p&gt;What is the point, you might ask? The point is to allow a Debian
11698 Edu desktop to integrate into an existing network infrastructure
11699 without any manual configuration.&lt;/p&gt;
11700
11701 &lt;p&gt;This is what happens when installing a Debian Edu client here at
11702 the University of Oslo using PXE. With the PXE installation, I am
11703 asked for language (Norwegian Bokmål), locality (Norway) and keyboard
11704 layout (no-latin1), Debian Edu profile (Roaming Workstation), if I
11705 accept to reformat the hard drive (yes), if I want to submit info to
11706 popcon.debian.org (no) and root password (secret). After answering
11707 these questions, the installer goes ahead and does its thing, and
11708 after around 50 minutes it is done. I press enter to finish the
11709 installation, and the machine reboots into KDE. When the machine is
11710 ready and kdm asks for login information, I enter my university
11711 username and password, am told by kdm that a local home directory has
11712 been created and that I must log in again, and finally log in with the
11713 same username and password to the KDE 4.4 desktop. At no point during
11714 this process did it ask for university specific settings, and all the
11715 required configuration was dynamically detected using information
11716 fetched via DHCP and DNS. The roaming workstation is now ready for
11717 use.&lt;/p&gt;
11718
11719 &lt;p&gt;How was this done, you might wonder? First of all, here is the
11720 list of things that need to be configured on the client to get it
11721 working properly out of the box:&lt;/p&gt;
11722
11723 &lt;ul&gt;
11724 &lt;li&gt;IP address/netmask and DNS server.&lt;/li&gt;
11725 &lt;li&gt;Web proxy URL.&lt;/li&gt;
11726 &lt;li&gt;LDAP server for NSS directory information (user, group, etc).&lt;/li&gt;
11727 &lt;li&gt;Kerberos server for PAM password checking.&lt;/li&gt;
11728 &lt;li&gt;SMB mount point to access the network home directory. (*)&lt;/li&gt;
11729 &lt;li&gt;Central syslog server to send syslog messages to. (*)&lt;/li&gt;
11730 &lt;li&gt;Sitesummary collector URL to submit info to central server. (*)&lt;/li&gt;
11731 &lt;/ul&gt;
11732
11733 &lt;p&gt;(Hm, did I forget anything? Let me knew if I did.)&lt;/p&gt;
11734
11735 &lt;p&gt;The points marked (*) are not required to be able to use the
11736 machine, but needed to provide central storage and allowing system
11737 administrators to track their machines. Since yesterday, everything
11738 but the sitesummary collector URL is dynamically discovered at boot
11739 and installation time in the svn version of Debian Edu.&lt;/p&gt;
11740
11741 &lt;p&gt;The IP and DNS setup is fetched during boot using DHCP as usual.
11742 When a DHCP update arrives, the proxy setup is updated by looking for
11743 http://wpat/wpad.dat and using the content of this WPAD file to
11744 configure the http and ftp proxy in /etc/environment and
11745 /etc/apt/apt.conf. I decided to update the proxy setup using a DHCP
11746 hook to ensure that the client stops using the Debian Edu proxy when
11747 it is moved outside the Debian Edu network, and instead uses any local
11748 proxy present on the new network when it moves around.&lt;/p&gt;
11749
11750 &lt;p&gt;The DNS names of the LDAP, Kerberos and syslog server and related
11751 configuration are generated using DNS information at boot. First the
11752 installer looks for a host named ldap in the current DNS domain. If
11753 not found, it looks for _ldap._tcp SRV records in DNS instead. If an
11754 LDAP server is found, its root DSE entry is requested and the
11755 attributes namingContexts and defaultNamingContext are used to
11756 determine which LDAP base to use for NSS. If there are several
11757 namingContexts attibutes and the defaultNamingContext is present, that
11758 LDAP subtree is used as the base. If defaultNamingContext is missing,
11759 the subtrees listed as namingContexts are searched in sequence for any
11760 object with class posixAccount or posixGroup, and the first one with
11761 such an object is used as the LDAP base. For Kerberos, a similar
11762 search is done by first looking for a host named kerberos, and then
11763 for the _kerberos._tcp SRV record. I&#39;ve been unable to find a way to
11764 look up the Kerberos realm, so for this the upper case string of the
11765 current DNS domain is used.&lt;/p&gt;
11766
11767 &lt;p&gt;For the syslog server, the hosts syslog and loghost are searched
11768 for, and the _syslog._udp SRV record is consulted if no such host is
11769 found. This algorithm works for both Debian Edu and the University of
11770 Oslo. A similar strategy would work for locating the sitesummary
11771 server, but have not been implemented yet. I decided to fetch and
11772 save these settings during installation, to make sure moving to a
11773 different network does not change the set of users being allowed to
11774 log in nor the passwords required to log in. Usernames and passwords
11775 will be cached by sssd when the user logs in on the Debian Edu
11776 network, and will not change as the laptop move around. For a
11777 non-roaming machine, there is no caching, but given that it is
11778 supposed to stay in place it should not matter much. Perhaps we
11779 should switch those to use sssd too?&lt;/p&gt;
11780
11781 &lt;p&gt;The user&#39;s SMB mount point for the network home directory is
11782 located when the user logs in for the first time. The LDAP server is
11783 consulted to look for the user&#39;s LDAP object and the sambaHomePath
11784 attribute is used if found. If it isn&#39;t found, the home directory
11785 path fetched from NSS is used instead. Assuming the path is of the
11786 form /site/server/directory/username, the second part is looked up in
11787 DNS and used to generate a SMB URL of the form
11788 smb://server.domain/username. This algorithm works for both Debian
11789 edu and the University of Oslo. Perhaps there are better attributes
11790 to use or a better algorithm that works for more sites, but this will
11791 do for now. :)&lt;/p&gt;
11792
11793 &lt;p&gt;This work should make it easier to integrate the Debian Edu clients
11794 into any LDAP/Kerberos infrastructure, and make the current setup even
11795 more flexible than before. I suspect it will also work for thin
11796 client servers, allowing one to easily set up LTSP and hook it into a
11797 existing network infrastructure, but I have not had time to test this
11798 yet.&lt;/p&gt;
11799
11800 &lt;p&gt;If you want to help out with implementing these things for Debian
11801 Edu, please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
11802
11803 &lt;p&gt;Update 2010-08-09: Simon Farnsworth gave me a heads-up on how to
11804 detect Kerberos realm from DNS, by looking for _kerberos TXT entries
11805 before falling back to the upper case DNS domain name. Will have to
11806 implement it for Debian Edu. :)&lt;/p&gt;
11807 </description>
11808 </item>
11809
11810 <item>
11811 <title>Testing if a file system can be used for home directories...</title>
11812 <link>http://people.skolelinux.org/pere/blog/Testing_if_a_file_system_can_be_used_for_home_directories___.html</link>
11813 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Testing_if_a_file_system_can_be_used_for_home_directories___.html</guid>
11814 <pubDate>Sun, 8 Aug 2010 21:20:00 +0200</pubDate>
11815 <description>&lt;p&gt;A few years ago, I was involved in a project planning to use
11816 Windows file servers as home directory servers for Debian
11817 Edu/Skolelinux machines. This was thought to be no problem, as the
11818 access would be through the SMB network file system protocol, and we
11819 knew other sites used SMB with unix and samba as the file server to
11820 mount home directories without any problems. But, after months of
11821 struggling, we had to conclude that our goal was impossible.&lt;/p&gt;
11822
11823 &lt;p&gt;The reason is simply that while SMB can be used for home
11824 directories when the file server is Samba running on Unix, this only
11825 work because of Samba have some extensions and the fact that the
11826 underlying file system is a unix file system. When using a Windows
11827 file server, the underlying file system do not have POSIX semantics,
11828 and several programs will fail if the users home directory where they
11829 want to store their configuration lack POSIX semantics.&lt;/p&gt;
11830
11831 &lt;p&gt;As part of this work, I wrote a small C program I want to share
11832 with you all, to replicate a few of the problematic applications (like
11833 OpenOffice.org and GCompris) and see if the file system was working as
11834 it should. If you find yourself in spooky file system land, it might
11835 help you find your way out again. This is the fs-test.c source:&lt;/p&gt;
11836
11837 &lt;pre&gt;
11838 /*
11839 * Some tests to check the file system sematics. Used to verify that
11840 * CIFS from a windows server do not work properly as a linux home
11841 * directory.
11842 * License: GPL v2 or later
11843 *
11844 * needs libsqlite3-dev and build-essential installed
11845 * compile with: gcc -Wall -lsqlite3 -DTEST_SQLITE fs-test.c -o fs-test
11846 */
11847
11848 #define _FILE_OFFSET_BITS 64
11849 #define _LARGEFILE_SOURCE 1
11850 #define _LARGEFILE64_SOURCE 1
11851
11852 #define _GNU_SOURCE /* for asprintf() */
11853
11854 #include &amp;lt;errno.h&gt;
11855 #include &amp;lt;fcntl.h&gt;
11856 #include &amp;lt;stdio.h&gt;
11857 #include &amp;lt;string.h&gt;
11858 #include &amp;lt;stdlib.h&gt;
11859 #include &amp;lt;sys/file.h&gt;
11860 #include &amp;lt;sys/stat.h&gt;
11861 #include &amp;lt;sys/types.h&gt;
11862 #include &amp;lt;unistd.h&gt;
11863
11864 #ifdef TEST_SQLITE
11865 /*
11866 * Test sqlite open, as done by gcompris require the libsqlite3-dev
11867 * package and linking with -lsqlite3. A more low level test is
11868 * below.
11869 * See also &amp;lt;URL: http://www.sqlite.org./faq.html#q5 &gt;.
11870 */
11871 #include &amp;lt;sqlite3.h&gt;
11872 #define CREATE_TABLE_USERS \
11873 &quot;CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); &quot;
11874 int test_sqlite_open(void) {
11875 char *zErrMsg;
11876 char *name = &quot;testsqlite.db&quot;;
11877 sqlite3 *db=NULL;
11878 unlink(name);
11879 int rc = sqlite3_open(name, &amp;db);
11880 if( rc ){
11881 printf(&quot;error: sqlite open of %s failed: %s\n&quot;, name, sqlite3_errmsg(db));
11882 sqlite3_close(db);
11883 return -1;
11884 }
11885
11886 /* create tables */
11887 rc = sqlite3_exec(db,CREATE_TABLE_USERS, NULL, 0, &amp;zErrMsg);
11888 if( rc != SQLITE_OK ){
11889 printf(&quot;error: sqlite table create failed: %s\n&quot;, zErrMsg);
11890 sqlite3_close(db);
11891 return -1;
11892 }
11893 printf(&quot;info: sqlite worked\n&quot;);
11894 sqlite3_close(db);
11895 return 0;
11896 }
11897 #endif /* TEST_SQLITE */
11898
11899 /*
11900 * Demonstrate locking issue found in gcompris using sqlite3. This
11901 * work with ext3, but not with cifs server on Windows 2003. This is
11902 * done in the sqlite3 library.
11903 * See also
11904 * &amp;lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html&gt; and the
11905 * POSIX specification
11906 * &amp;lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html&gt;.
11907 */
11908 int test_gcompris_locking(void) {
11909 struct flock fl;
11910 char *name = &quot;testsqlite.db&quot;;
11911 unlink(name);
11912 int fd = open(name, O_RDWR|O_CREAT|O_LARGEFILE, 0644);
11913 printf(&quot;info: testing fcntl locking\n&quot;);
11914
11915 fl.l_whence = SEEK_SET;
11916 fl.l_pid = getpid();
11917 printf(&quot; Read-locking 1 byte from 1073741824&quot;);
11918 fl.l_start = 1073741824;
11919 fl.l_len = 1;
11920 fl.l_type = F_RDLCK;
11921 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
11922
11923 printf(&quot; Read-locking 510 byte from 1073741826&quot;);
11924 fl.l_start = 1073741826;
11925 fl.l_len = 510;
11926 fl.l_type = F_RDLCK;
11927 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
11928
11929 printf(&quot; Unlocking 1 byte from 1073741824&quot;);
11930 fl.l_start = 1073741824;
11931 fl.l_len = 1;
11932 fl.l_type = F_UNLCK;
11933 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
11934
11935 printf(&quot; Write-locking 1 byte from 1073741824&quot;);
11936 fl.l_start = 1073741824;
11937 fl.l_len = 1;
11938 fl.l_type = F_WRLCK;
11939 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
11940
11941 printf(&quot; Write-locking 510 byte from 1073741826&quot;);
11942 fl.l_start = 1073741826;
11943 fl.l_len = 510;
11944 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
11945
11946 printf(&quot; Unlocking 2 byte from 1073741824&quot;);
11947 fl.l_start = 1073741824;
11948 fl.l_len = 2;
11949 fl.l_type = F_UNLCK;
11950 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
11951
11952 close(fd);
11953 return 0;
11954 }
11955
11956 /*
11957 * Test if permissions of freshly created directories allow entries
11958 * below them. This was a problem with OpenOffice.org and gcompris.
11959 * Mounting with option &#39;sync&#39; seem to solve this problem while
11960 * slowing down file operations.
11961 */
11962 int test_subdirectory_creation(void) {
11963 #define LEVELS 5
11964 char *path = strdup(&quot;test&quot;);
11965 char *dirs[LEVELS];
11966 int level;
11967 printf(&quot;info: testing subdirectory creation\n&quot;);
11968 for (level = 0; level &amp;lt; LEVELS; level++) {
11969 char *newpath = NULL;
11970 if (-1 == mkdir(path, 0777)) {
11971 printf(&quot; error: Unable to create directory &#39;%s&#39;: %s\n&quot;,
11972 path, strerror(errno));
11973 break;
11974 }
11975 asprintf(&amp;newpath, &quot;%s/%s&quot;, path, &quot;test&quot;);
11976 free(path);
11977 path = newpath;
11978 }
11979 return 0;
11980 }
11981
11982 /*
11983 * Test if symlinks can be created. This was a problem detected with
11984 * KDE.
11985 */
11986 int test_symlinks(void) {
11987 printf(&quot;info: testing symlink creation\n&quot;);
11988 unlink(&quot;symlink&quot;);
11989 if (-1 == symlink(&quot;file&quot;, &quot;symlink&quot;))
11990 printf(&quot; error: Unable to create symlink\n&quot;);
11991 return 0;
11992 }
11993
11994 int main(int argc, char **argv) {
11995 printf(&quot;Testing POSIX/Unix sematics on file system\n&quot;);
11996 test_symlinks();
11997 test_subdirectory_creation();
11998 #ifdef TEST_SQLITE
11999 test_sqlite_open();
12000 #endif /* TEST_SQLITE */
12001 test_gcompris_locking();
12002 return 0;
12003 }
12004 &lt;/pre&gt;
12005
12006 &lt;p&gt;When everything is working, it should print something like
12007 this:&lt;/p&gt;
12008
12009 &lt;pre&gt;
12010 Testing POSIX/Unix sematics on file system
12011 info: testing symlink creation
12012 info: testing subdirectory creation
12013 info: sqlite worked
12014 info: testing fcntl locking
12015 Read-locking 1 byte from 1073741824
12016 Read-locking 510 byte from 1073741826
12017 Unlocking 1 byte from 1073741824
12018 Write-locking 1 byte from 1073741824
12019 Write-locking 510 byte from 1073741826
12020 Unlocking 2 byte from 1073741824
12021 &lt;/pre&gt;
12022
12023 &lt;p&gt;I do not remember the exact details of the problems we saw, but one
12024 of them was with locking, where if I remember correctly, POSIX allow a
12025 read-only lock to be upgraded to a read-write lock without unlocking
12026 the read-only lock (while Windows do not). Another was a bug in the
12027 CIFS/SMB client implementation in the Linux kernel where directory
12028 meta information would be wrong for a fraction of a second, making
12029 OpenOffice.org fail to create its deep directory tree because it was
12030 not allowed to create files in its freshly created directory.&lt;/p&gt;
12031
12032 &lt;p&gt;Anyway, here is a nice tool for your tool box, might you never need
12033 it. :)&lt;/p&gt;
12034
12035 &lt;p&gt;Update 2010-08-27: Michael Gebetsroither report that he found the
12036 script so useful that he created a GIT repository and stored it in
12037 &lt;a href=&quot;http://github.com/gebi/fs-test&quot;&gt;http://github.com/gebi/fs-test&lt;/a&gt;.&lt;/p&gt;
12038 </description>
12039 </item>
12040
12041 <item>
12042 <title>Autodetecting Client setup for roaming workstations in Debian Edu</title>
12043 <link>http://people.skolelinux.org/pere/blog/Autodetecting_Client_setup_for_roaming_workstations_in_Debian_Edu.html</link>
12044 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Autodetecting_Client_setup_for_roaming_workstations_in_Debian_Edu.html</guid>
12045 <pubDate>Sat, 7 Aug 2010 14:45:00 +0200</pubDate>
12046 <description>&lt;p&gt;A few days ago, I
12047 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Debian_Edu_roaming_workstation___at_the_university_of_Oslo.html&quot;&gt;tried
12048 to install&lt;/a&gt; a Roaming workation profile from Debian Edu/Squeeze
12049 while on the university network here at the University of Oslo, and
12050 noticed how much had to change to get it operational using the
12051 university infrastructure. It was fairly easy, but it occured to me
12052 that Debian Edu would improve a lot if I could get the client to
12053 connect without any changes at all, and thus let the client configure
12054 itself during installation and first boot to use the infrastructure
12055 around it. Now I am a huge step further along that road.&lt;/p&gt;
12056
12057 &lt;p&gt;With our current squeeze-test packages, I can select the roaming
12058 workstation profile and get a working laptop connecting to the
12059 university LDAP server for user and group and our active directory
12060 servers for Kerberos authentication. All this without any
12061 configuration at all during installation. My users home directory got
12062 a bookmark in the KDE menu to mount it via SMB, with the correct URL.
12063 In short, openldap and sssd is correctly configured. In addition to
12064 this, the client look for http://wpad/wpad.dat to configure a web
12065 proxy, and when it fail to find it no proxy settings are stored in
12066 /etc/environment and /etc/apt/apt.conf. Iceweasel and KDE is
12067 configured to look for the same wpad configuration and also do not use
12068 a proxy when at the university network. If the machine is moved to a
12069 network with such wpad setup, it would automatically use it when DHCP
12070 gave it a IP address.&lt;/p&gt;
12071
12072 &lt;p&gt;The LDAP server is located using DNS, by first looking for the DNS
12073 entry ldap.$domain. If this do not exist, it look for the
12074 _ldap._tcp.$domain SRV records and use the first one as the LDAP
12075 server. Next, it connects to the LDAP server and search all
12076 namingContexts entries for posixAccount or posixGroup objects, and
12077 pick the first one as the LDAP base. For Kerberos, a similar
12078 algorithm is used to locate the LDAP server, and the realm is the
12079 uppercase version of $domain.&lt;/p&gt;
12080
12081 &lt;p&gt;So, what is not working, you might ask. SMB mounting my home
12082 directory do not work. No idea why, but suspected the incorrect
12083 Kerberos settings in /etc/krb5.conf and /etc/samba/smb.conf might be
12084 the cause. These are not properly configured during installation, and
12085 had to be hand-edited to get the correct Kerberos realm and server,
12086 but SMB mounting still do not work. :(&lt;/p&gt;
12087
12088 &lt;p&gt;With this automatic configuration in place, I expect a Debian Edu
12089 roaming profile installation would be able to automatically detect and
12090 connect to any site using LDAP and Kerberos for NSS directory and PAM
12091 authentication. It should also work out of the box in a Active
12092 Directory environment providing posixAccount and posixGroup objects
12093 with UID and GID values.&lt;/p&gt;
12094
12095 &lt;p&gt;If you want to help out with implementing these things for Debian
12096 Edu, please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
12097 </description>
12098 </item>
12099
12100 <item>
12101 <title>Debian Edu roaming workstation - at the university of Oslo</title>
12102 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_roaming_workstation___at_the_university_of_Oslo.html</link>
12103 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_roaming_workstation___at_the_university_of_Oslo.html</guid>
12104 <pubDate>Tue, 3 Aug 2010 23:30:00 +0200</pubDate>
12105 <description>&lt;p&gt;The new roaming workstation profile in Debian Edu/Squeeze is fairly
12106 similar to the laptop setup am I working on using Ubuntu for the
12107 University of Oslo, and just for the heck of it, I tested today how
12108 hard it would be to integrate that profile into the university
12109 infrastructure. In this case, it is the university LDAP server,
12110 Active Directory Kerberos server and SMB mounting from the Netapp file
12111 servers.&lt;/p&gt;
12112
12113 &lt;p&gt;I was pleasantly surprised that the only three files needed to be
12114 changed (/etc/sssd/sssd.conf, /etc/ldap.conf and
12115 /etc/mklocaluser.d/20-debian-edu-config) and one file had to be added
12116 (/usr/share/perl5/Debian/Edu_Local.pm), to get the client working.
12117 Most of the changes were to get the client to use the university LDAP
12118 for NSS and Kerberos server for PAM, but one was to change a hard
12119 coded DNS domain name in the mklocaluser hook from .intern to
12120 .uio.no.&lt;/p&gt;
12121
12122 &lt;p&gt;This testing was so encouraging, that I went ahead and adjusted the
12123 Debian Edu scripts and setup in subversion to centralise the roaming
12124 workstation setup a bit more and avoid the hardcoded DNS domain name,
12125 so that when I test this tomorrow, I expect to get away with modifying
12126 only /etc/sssd/sssd.conf and /etc/ldap.conf to get it to use the
12127 university servers.&lt;/p&gt;
12128
12129 &lt;p&gt;My goal is to get the clients to have no hardcoded settings and
12130 fetch all their initial setup during installation and first boot, to
12131 allow them to be inserted also into environments where the default
12132 setup in Debian Edu has been changed or as with the university, where
12133 the environment is different but provides the protocols Debian Edu
12134 uses.&lt;/p&gt;
12135 </description>
12136 </item>
12137
12138 <item>
12139 <title>Circular package dependencies harms apt recovery</title>
12140 <link>http://people.skolelinux.org/pere/blog/Circular_package_dependencies_harms_apt_recovery.html</link>
12141 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Circular_package_dependencies_harms_apt_recovery.html</guid>
12142 <pubDate>Tue, 27 Jul 2010 23:50:00 +0200</pubDate>
12143 <description>&lt;p&gt;I discovered this while doing
12144 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Automatic_upgrade_testing_from_Lenny_to_Squeeze.html&quot;&gt;automated
12145 testing of upgrades from Debian Lenny to Squeeze&lt;/a&gt;. A few packages
12146 in Debian still got circular dependencies, and it is often claimed
12147 that apt and aptitude should be able to handle this just fine, but
12148 some times these dependency loops causes apt to fail.&lt;/p&gt;
12149
12150 &lt;p&gt;An example is from todays
12151 &lt;a href=&quot;http://people.skolelinux.org/~pere/debian-upgrade-testing//test-20100727-lenny-squeeze-kde-aptitude.txt&quot;&gt;upgrade
12152 of KDE using aptitude&lt;/a&gt;. In it, a bug in kdebase-workspace-data
12153 causes perl-modules to fail to upgrade. The cause is simple. If a
12154 package fail to unpack, then only part of packages with the circular
12155 dependency might end up being unpacked when unpacking aborts, and the
12156 ones already unpacked will fail to configure in the recovery phase
12157 because its dependencies are unavailable.&lt;/p&gt;
12158
12159 &lt;p&gt;In this log, the problem manifest itself with this error:&lt;/p&gt;
12160
12161 &lt;blockquote&gt;&lt;pre&gt;
12162 dpkg: dependency problems prevent configuration of perl-modules:
12163 perl-modules depends on perl (&gt;= 5.10.1-1); however:
12164 Version of perl on system is 5.10.0-19lenny2.
12165 dpkg: error processing perl-modules (--configure):
12166 dependency problems - leaving unconfigured
12167 &lt;/pre&gt;&lt;/blockquote&gt;
12168
12169 &lt;p&gt;The perl/perl-modules circular dependency is already
12170 &lt;a href=&quot;http://bugs.debian.org/527917&quot;&gt;reported as a bug&lt;/a&gt;, and will
12171 hopefully be solved as soon as possible, but it is not the only one,
12172 and each one of these loops in the dependency tree can cause similar
12173 failures. Of course, they only occur when there are bugs in other
12174 packages causing the unpacking to fail, but it is rather nasty when
12175 the failure of one package causes the problem to become worse because
12176 of dependency loops.&lt;/p&gt;
12177
12178 &lt;p&gt;Thanks to
12179 &lt;a href=&quot;http://lists.debian.org/debian-devel/2010/06/msg00116.html&quot;&gt;the
12180 tireless effort by Bill Allombert&lt;/a&gt;, the number of circular
12181 dependencies
12182 &lt;a href=&quot;http://debian.semistable.com/debgraph.out.html&quot;&gt;left in Debian
12183 is dropping&lt;/a&gt;, and perhaps it will reach zero one day. :)&lt;/p&gt;
12184
12185 &lt;p&gt;Todays testing also exposed a bug in
12186 &lt;a href=&quot;http://bugs.debian.org/590605&quot;&gt;update-notifier&lt;/a&gt; and
12187 &lt;a href=&quot;http://bugs.debian.org/590604&quot;&gt;different behaviour&lt;/a&gt; between
12188 apt-get and aptitude, the latter possibly caused by some circular
12189 dependency. Reported both to BTS to try to get someone to look at
12190 it.&lt;/p&gt;
12191 </description>
12192 </item>
12193
12194 <item>
12195 <title>First Debian Edu test release (alpha0) based on Squeeze is released</title>
12196 <link>http://people.skolelinux.org/pere/blog/First_Debian_Edu_test_release__alpha0__based_on_Squeeze_is_released.html</link>
12197 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_Debian_Edu_test_release__alpha0__based_on_Squeeze_is_released.html</guid>
12198 <pubDate>Tue, 27 Jul 2010 17:45:00 +0200</pubDate>
12199 <description>&lt;p&gt;I just posted this announcement culminating several months of work
12200 with the next Debian Edu release. Not nearly done, but one major step
12201 completed.&lt;/p&gt;
12202
12203 &lt;blockquote&gt;
12204 &lt;p&gt;This is the first test release based on Squeeze. The focus of this
12205 release is to test the user application selection. To have a look,
12206 install the standalone profile and let the developers know if the set
12207 of installed packages i.e. applications should be modified. If some
12208 user application is missing, or if there are some applications that no
12209 longer make sense to be included in Debian Edu, please let us know.
12210 Also, if a useful application is missing the translation for your
12211 language of choice, please let us know too.&lt;/p&gt;
12212
12213 &lt;p&gt;In addition, feedback and help to polish the desktop (menus,
12214 artwork, starters, etc.) is appreciated. We would like to ship a nice
12215 and handy KDE4 desktop targeted for schools out of the box.&lt;/p&gt;
12216
12217 &lt;p&gt;The other profiles should be installable, but there is a lot more
12218 work left to be done before they are ready, so do not expect to
12219 much.&lt;/p&gt;
12220
12221 &lt;p&gt;Changes compared to the lenny based version&lt;/p&gt;
12222
12223 &lt;ul&gt;
12224 &lt;li&gt;Everything from Debian Squeeze
12225 &lt;ul&gt;
12226 &lt;li&gt;Desktop environment KDE 4.4 =&gt; the new KDE desktop in
12227 combination with some new artwork
12228 &lt;li&gt;Web browser Iceweasel 3.5
12229 &lt;li&gt;OpenOffice.org 3.2
12230 &lt;li&gt;Educational toolbox GCompris 9.3
12231 &lt;li&gt;Music creator Rosegarden 10.04.2
12232 &lt;li&gt;Image editor Gimp 2.6.10
12233 &lt;li&gt;Virtual universe Celestia 1.6.0
12234 &lt;li&gt;Virtual stargazer Stellarium 0.10.4
12235 &lt;li&gt;3D modeler Blender 2.49.2 (new application)
12236 &lt;li&gt;Video editor Kdenlive 0.7.7 (new application)
12237 &lt;/ul&gt;&lt;/li&gt;
12238 &lt;li&gt;Now using Kerberos for password checking (migration not finished).
12239 Enabled for:
12240 &lt;ul&gt;
12241 &lt;li&gt;PAM
12242 &lt;li&gt;LDAP
12243 &lt;li&gt;IMAP
12244 &lt;li&gt;SMTP (sender verification)
12245 &lt;/ul&gt;
12246 &lt;/li&gt;
12247 &lt;li&gt;New experimental roaming workstation profile for laptops.&lt;/li&gt;
12248 &lt;li&gt;Show welcome page to users when they first log in. The URL is
12249 fetched from LDAP.&lt;/li&gt;
12250 &lt;li&gt;New LXDE desktop option, in addition to KDE (default) and Gnome.&lt;/li&gt;
12251 &lt;li&gt;General cleanup (not finished)&lt;/li&gt;
12252 &lt;/ul&gt;
12253 &lt;p&gt;The following features are not working as they should&lt;/p&gt;
12254
12255 &lt;ul&gt;
12256 &lt;li&gt;No web based administration tool for creating users and groups. The
12257 scripts ldap-createuser-krb and ldap-add-user-to-group can be used
12258 for testing.&lt;/li&gt;
12259 &lt;li&gt;DVD installs are missing debian-installer images for the PXE boot,
12260 and do not set up the PXE menu on eth0 because of this. LTSP
12261 clients should still boot from eth1 on thin client servers.&lt;/li&gt;
12262 &lt;li&gt;The restructured KDE menu is not implemented.&lt;/li&gt;
12263 &lt;li&gt;The LDAP server setup need to be reviewed for security.&lt;/li&gt;
12264 &lt;li&gt;The LDAP directory structure need to be reworked.&lt;/li&gt;
12265 &lt;li&gt;Different sets of packages are installed when using the DVD and the
12266 netinst CD. More packages are installed using the netinst CD.&lt;/li&gt;
12267 &lt;li&gt;The jackd package fail to install. This is believed to be caused by
12268 some ongoing transition, and hopefully should be solved soon. The
12269 jackd1 package can be installed manually for those that need it.&lt;/li&gt;
12270 &lt;li&gt;Some packages lack translations. See
12271 http://wiki.debian.org/DebianEdu/Status/Squeeze for updated status,
12272 and help out with translations.&lt;/li&gt;
12273 &lt;/ul&gt;
12274
12275 &lt;p&gt;To download this multiarch netinstall release you can use&lt;/p&gt;
12276
12277 &lt;ul&gt;
12278 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-CD.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-CD.iso&lt;/a&gt;&lt;/li&gt;
12279 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-CD.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-CD.iso&lt;/a&gt;&lt;/li&gt;
12280 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-CD.iso&lt;/li&gt;
12281 &lt;/ul&gt;
12282 &lt;p&gt;To download this multiarch dvd release you can use&lt;/p&gt;
12283
12284 &lt;ul&gt;
12285 &lt;li&gt;&lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-DVD.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-DVD.iso&lt;/a&gt;&lt;/li&gt;
12286 &lt;li&gt;&lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-DVD.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-DVD.iso&lt;/a&gt;&lt;/li&gt;
12287 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-DVD.iso&lt;/li&gt;
12288 &lt;/ul&gt;
12289
12290 &lt;p&gt;There is no source DVD available yet. It will be prepared when we
12291 get closer to the final release.&lt;/p&gt;
12292
12293 &lt;p&gt;The MD5SUM of these images are&lt;/p&gt;
12294
12295 &lt;ul&gt;
12296 &lt;li&gt;3dbf45d59f42a53518b6e3c9ec3b5eb6 debian-edu-6.0.0+edua0-CD.iso&lt;/li&gt;
12297 &lt;li&gt;22f2cbfce281d1c6e478be452638675d debian-edu-6.0.0+edua0-DVD.iso&lt;/li&gt;
12298 &lt;/ul&gt;
12299
12300 &lt;p&gt;The SHA1SUM of these images are&lt;/p&gt;
12301 &lt;ul&gt;
12302 &lt;li&gt;c53d1b69b40cf37cd27aefaf33f6f6a3821bedf0 debian-edu-6.0.0+edua0-CD.iso&lt;/li&gt;
12303 &lt;li&gt;2ec29d7db676d59d32197b05c277ffe16348376c debian-edu-6.0.0+edua0-DVD.iso&lt;/li&gt;
12304 &lt;/ul&gt;
12305 &lt;p&gt;How to report bugs:
12306 http://wiki.debian.org/DebianEdu/HowTo/ReportBugsInBugzilla&lt;/p&gt;
12307
12308 &lt;p&gt;Please direct replies to debian-edu@lists.debian.org&lt;/p&gt;
12309 &lt;/blockquote&gt;
12310 </description>
12311 </item>
12312
12313 <item>
12314 <title>One step closer to single signon in Debian Edu</title>
12315 <link>http://people.skolelinux.org/pere/blog/One_step_closer_to_single_signon_in_Debian_Edu.html</link>
12316 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/One_step_closer_to_single_signon_in_Debian_Edu.html</guid>
12317 <pubDate>Sun, 25 Jul 2010 10:00:00 +0200</pubDate>
12318 <description>&lt;p&gt;The last few months me and the other Debian Edu developers have
12319 been working hard to get the Debian/Squeeze based version of Debian
12320 Edu/Skolelinux into shape. This future version will use Kerberos for
12321 authentication, and services are slowly migrated to single signon,
12322 getting rid of password questions one at the time.&lt;/p&gt;
12323
12324 &lt;p&gt;It will also feature a roaming workstation profile with local home
12325 directory, for laptops that are only some times on the Skolelinux
12326 network, and for this profile a shortcut is created in Gnome and KDE
12327 to gain access to the users home directory on the file server. This
12328 shortcut uses SMB at the moment, and yesterday I had time to test if
12329 SMB mounting had started working in KDE after we added the cifs-utils
12330 package. I was pleasantly surprised how well it worked.&lt;/p&gt;
12331
12332 &lt;p&gt;Thanks to the recent changes to our samba configuration to get it
12333 to use Kerberos for authentication, there were no question about user
12334 password when mounting the SMB volume. A simple click on the shortcut
12335 in the KDE menu, and a window with the home directory popped
12336 up. :)&lt;/p&gt;
12337
12338 &lt;p&gt;One step closer to a single signon solution out of the box in
12339 Debian Edu. We already had PAM, LDAP, IMAP and SMTP in place, and now
12340 also Samba. Next step is Cups and hopefully also NFS.&lt;/p&gt;
12341
12342 &lt;p&gt;We had planned a alpha0 release of Debian Edu for today, but thanks
12343 to the autobuilder administrators for some architectures being slow to
12344 sign packages, we are still missing the fixed LTSP package we need for
12345 the release. It was uploaded three days ago with urgency=high, and if
12346 it had entered testing yesterday we would have been able to test it in
12347 time for a alpha0 release today. As the binaries for ia64 and powerpc
12348 still not uploaded to the Debian archive, we need to delay the alpha
12349 release another day.&lt;/p&gt;
12350
12351 &lt;p&gt;If you want to help out with implementing Kerberos for Debian Edu,
12352 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
12353 </description>
12354 </item>
12355
12356 <item>
12357 <title>OpenStreetmap one step closer to having routing on its front page</title>
12358 <link>http://people.skolelinux.org/pere/blog/OpenStreetmap_one_step_closer_to_having_routing_on_its_front_page.html</link>
12359 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/OpenStreetmap_one_step_closer_to_having_routing_on_its_front_page.html</guid>
12360 <pubDate>Sun, 18 Jul 2010 16:45:00 +0200</pubDate>
12361 <description>&lt;p&gt;Thanks to
12362 &lt;a href=&quot;http://feedproxy.google.com/~r/Opengeodata/~3/wUTCzDZk3lc/project-of-the-week-which-way-home&quot;&gt;todays
12363 opengeodata blog entry&lt;/a&gt;, I just discovered that the
12364 OpenStreetmap.org site have gotten
12365 &lt;a href=&quot;http://nroets.dev.openstreetmap.org/demo/index.html?layers=B000FTFTT&quot;&gt;support
12366 for calculating routes&lt;/a&gt;. The support is still experimental and
12367 only available from the development server, until more experience is
12368 gathered on the user interface and any scalability issues.&lt;/p&gt;
12369
12370 &lt;p&gt;Earlier, the routing I knew about using the OpenStreetmap.org data
12371 was provided by &lt;a href=&quot;http://maps.cloudmade.com/&quot;&gt;Cloudmade&lt;/a&gt;,
12372 but having it on the main page is required to make everyone aware of
12373 the issue. I&#39;ve had people reject Openstreetmap.org as a viable
12374 alternative for them because the front page lacked routing support,
12375 and I hope their needs will be catered for when routing show up on the
12376 www.openstreetmap.org front page.&lt;/p&gt;
12377 </description>
12378 </item>
12379
12380 <item>
12381 <title>What are they searching for - PowerDNS and ISC DHCP in LDAP</title>
12382 <link>http://people.skolelinux.org/pere/blog/What_are_they_searching_for___PowerDNS_and_ISC_DHCP_in_LDAP.html</link>
12383 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/What_are_they_searching_for___PowerDNS_and_ISC_DHCP_in_LDAP.html</guid>
12384 <pubDate>Sat, 17 Jul 2010 21:00:00 +0200</pubDate>
12385 <description>&lt;p&gt;This is a
12386 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Time_for_new__LDAP_schemas_replacing_RFC_2307_.html&quot;&gt;followup&lt;/a&gt;
12387 on my
12388 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Idea_for_a_change_to_LDAP_schemas_allowing_DNS_and_DHCP_info_to_be_combined_into_one_object.html&quot;&gt;previous
12389 work&lt;/a&gt; on
12390 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Combining_PowerDNS_and_ISC_DHCP_LDAP_objects.html&quot;&gt;merging
12391 all&lt;/a&gt; the computer related LDAP objects in Debian Edu.&lt;/p&gt;
12392
12393 &lt;p&gt;As a step to try to see if it possible to merge the DNS and DHCP
12394 LDAP objects, I have had a look at how the packages pdns-backend-ldap
12395 and dhcp3-server-ldap in Debian use the LDAP server. The two
12396 implementations are quite different in how they use LDAP.&lt;/p&gt;
12397
12398 To get this information, I started slapd with debugging enabled and
12399 dumped the debug output to a file to get the LDAP searches performed
12400 on a Debian Edu main-server. Here is a summary.
12401
12402 &lt;p&gt;&lt;strong&gt;powerdns&lt;/strong&gt;&lt;/p&gt;
12403
12404 &lt;a href=&quot;http://www.linuxnetworks.de/doc/index.php/PowerDNS_LDAP_Backend&quot;&gt;Clues
12405 on how to&lt;/a&gt; set up PowerDNS to use a LDAP backend is available on
12406 the web.
12407
12408 &lt;p&gt;PowerDNS have two modes of operation using LDAP as its backend.
12409 One &quot;strict&quot; mode where the forward and reverse DNS lookups are done
12410 using the same LDAP objects, and a &quot;tree&quot; mode where the forward and
12411 reverse entries are in two different subtrees in LDAP with a structure
12412 based on the DNS names, as in tjener.intern and
12413 2.2.0.10.in-addr.arpa.&lt;/p&gt;
12414
12415 &lt;p&gt;In tree mode, the server is set up to use a LDAP subtree as its
12416 base, and uses a &quot;base&quot; scoped search for the DNS name by adding
12417 &quot;dc=tjener,dc=intern,&quot; to the base with a filter for
12418 &quot;(associateddomain=tjener.intern)&quot; for the forward entry and
12419 &quot;dc=2,dc=2,dc=0,dc=10,dc=in-addr,dc=arpa,&quot; with a filter for
12420 &quot;(associateddomain=2.2.0.10.in-addr.arpa)&quot; for the reverse entry. For
12421 forward entries, it is looking for attributes named dnsttl, arecord,
12422 nsrecord, cnamerecord, soarecord, ptrrecord, hinforecord, mxrecord,
12423 txtrecord, rprecord, afsdbrecord, keyrecord, aaaarecord, locrecord,
12424 srvrecord, naptrrecord, kxrecord, certrecord, dsrecord, sshfprecord,
12425 ipseckeyrecord, rrsigrecord, nsecrecord, dnskeyrecord, dhcidrecord,
12426 spfrecord and modifytimestamp. For reverse entries it is looking for
12427 the attributes dnsttl, arecord, nsrecord, cnamerecord, soarecord,
12428 ptrrecord, hinforecord, mxrecord, txtrecord, rprecord, aaaarecord,
12429 locrecord, srvrecord, naptrrecord and modifytimestamp. The equivalent
12430 ldapsearch commands could look like this:&lt;/p&gt;
12431
12432 &lt;blockquote&gt;&lt;pre&gt;
12433 ldapsearch -h ldap \
12434 -b dc=tjener,dc=intern,ou=hosts,dc=skole,dc=skolelinux,dc=no \
12435 -s base -x &#39;(associateddomain=tjener.intern)&#39; dNSTTL aRecord nSRecord \
12436 cNAMERecord sOARecord pTRRecord hInfoRecord mXRecord tXTRecord \
12437 rPRecord aFSDBRecord KeyRecord aAAARecord lOCRecord sRVRecord \
12438 nAPTRRecord kXRecord certRecord dSRecord sSHFPRecord iPSecKeyRecord \
12439 rRSIGRecord nSECRecord dNSKeyRecord dHCIDRecord sPFRecord modifyTimestamp
12440
12441 ldapsearch -h ldap \
12442 -b dc=2,dc=2,dc=0,dc=10,dc=in-addr,dc=arpa,ou=hosts,dc=skole,dc=skolelinux,dc=no \
12443 -s base -x &#39;(associateddomain=2.2.0.10.in-addr.arpa)&#39;
12444 dnsttl, arecord, nsrecord, cnamerecord soarecord ptrrecord \
12445 hinforecord mxrecord txtrecord rprecord aaaarecord locrecord \
12446 srvrecord naptrrecord modifytimestamp
12447 &lt;/pre&gt;&lt;/blockquote&gt;
12448
12449 &lt;p&gt;In Debian Edu/Lenny, the PowerDNS tree mode is used with
12450 ou=hosts,dc=skole,dc=skolelinux,dc=no as the base, and these are two
12451 example LDAP objects used there. In addition to these objects, the
12452 parent objects all th way up to ou=hosts,dc=skole,dc=skolelinux,dc=no
12453 also exist.&lt;/p&gt;
12454
12455 &lt;blockquote&gt;&lt;pre&gt;
12456 dn: dc=tjener,dc=intern,ou=hosts,dc=skole,dc=skolelinux,dc=no
12457 objectclass: top
12458 objectclass: dnsdomain
12459 objectclass: domainrelatedobject
12460 dc: tjener
12461 arecord: 10.0.2.2
12462 associateddomain: tjener.intern
12463
12464 dn: dc=2,dc=2,dc=0,dc=10,dc=in-addr,dc=arpa,ou=hosts,dc=skole,dc=skolelinux,dc=no
12465 objectclass: top
12466 objectclass: dnsdomain2
12467 objectclass: domainrelatedobject
12468 dc: 2
12469 ptrrecord: tjener.intern
12470 associateddomain: 2.2.0.10.in-addr.arpa
12471 &lt;/pre&gt;&lt;/blockquote&gt;
12472
12473 &lt;p&gt;In strict mode, the server behaves differently. When looking for
12474 forward DNS entries, it is doing a &quot;subtree&quot; scoped search with the
12475 same base as in the tree mode for a object with filter
12476 &quot;(associateddomain=tjener.intern)&quot; and requests the attributes dnsttl,
12477 arecord, nsrecord, cnamerecord, soarecord, ptrrecord, hinforecord,
12478 mxrecord, txtrecord, rprecord, aaaarecord, locrecord, srvrecord,
12479 naptrrecord and modifytimestamp. For reverse entires it also do a
12480 subtree scoped search but this time the filter is &quot;(arecord=10.0.2.2)&quot;
12481 and the requested attributes are associateddomain, dnsttl and
12482 modifytimestamp. In short, in strict mode the objects with ptrrecord
12483 go away, and the arecord attribute in the forward object is used
12484 instead.&lt;/p&gt;
12485
12486 &lt;p&gt;The forward and reverse searches can be simulated using ldapsearch
12487 like this:&lt;/p&gt;
12488
12489 &lt;blockquote&gt;&lt;pre&gt;
12490 ldapsearch -h ldap -b ou=hosts,dc=skole,dc=skolelinux,dc=no -s sub -x \
12491 &#39;(associateddomain=tjener.intern)&#39; dNSTTL aRecord nSRecord \
12492 cNAMERecord sOARecord pTRRecord hInfoRecord mXRecord tXTRecord \
12493 rPRecord aFSDBRecord KeyRecord aAAARecord lOCRecord sRVRecord \
12494 nAPTRRecord kXRecord certRecord dSRecord sSHFPRecord iPSecKeyRecord \
12495 rRSIGRecord nSECRecord dNSKeyRecord dHCIDRecord sPFRecord modifyTimestamp
12496
12497 ldapsearch -h ldap -b ou=hosts,dc=skole,dc=skolelinux,dc=no -s sub -x \
12498 &#39;(arecord=10.0.2.2)&#39; associateddomain dnsttl modifytimestamp
12499 &lt;/pre&gt;&lt;/blockquote&gt;
12500
12501 &lt;p&gt;In addition to the forward and reverse searches , there is also a
12502 search for SOA records, which behave similar to the forward and
12503 reverse lookups.&lt;/p&gt;
12504
12505 &lt;p&gt;A thing to note with the PowerDNS behaviour is that it do not
12506 specify any objectclass names, and instead look for the attributes it
12507 need to generate a DNS reply. This make it able to work with any
12508 objectclass that provide the needed attributes.&lt;/p&gt;
12509
12510 &lt;p&gt;The attributes are normally provided in the cosine (RFC 1274) and
12511 dnsdomain2 schemas. The latter is used for reverse entries like
12512 ptrrecord and recent DNS additions like aaaarecord and srvrecord.&lt;/p&gt;
12513
12514 &lt;p&gt;In Debian Edu, we have created DNS objects using the object classes
12515 dcobject (for dc), dnsdomain or dnsdomain2 (structural, for the DNS
12516 attributes) and domainrelatedobject (for associatedDomain). The use
12517 of structural object classes make it impossible to combine these
12518 classes with the object classes used by DHCP.&lt;/p&gt;
12519
12520 &lt;p&gt;There are other schemas that could be used too, for example the
12521 dnszone structural object class used by Gosa and bind-sdb for the DNS
12522 attributes combined with the domainrelatedobject object class, but in
12523 this case some unused attributes would have to be included as well
12524 (zonename and relativedomainname).&lt;/p&gt;
12525
12526 &lt;p&gt;My proposal for Debian Edu would be to switch PowerDNS to strict
12527 mode and not use any of the existing objectclasses (dnsdomain,
12528 dnsdomain2 and dnszone) when one want to combine the DNS information
12529 with DHCP information, and instead create a auxiliary object class
12530 defined something like this (using the attributes defined for
12531 dnsdomain and dnsdomain2 or dnszone):&lt;/p&gt;
12532
12533 &lt;blockquote&gt;&lt;pre&gt;
12534 objectclass ( some-oid NAME &#39;dnsDomainAux&#39;
12535 SUP top
12536 AUXILIARY
12537 MAY ( ARecord $ MDRecord $ MXRecord $ NSRecord $ SOARecord $ CNAMERecord $
12538 DNSTTL $ DNSClass $ PTRRecord $ HINFORecord $ MINFORecord $
12539 TXTRecord $ SIGRecord $ KEYRecord $ AAAARecord $ LOCRecord $
12540 NXTRecord $ SRVRecord $ NAPTRRecord $ KXRecord $ CERTRecord $
12541 A6Record $ DNAMERecord
12542 ))
12543 &lt;/pre&gt;&lt;/blockquote&gt;
12544
12545 &lt;p&gt;This will allow any object to become a DNS entry when combined with
12546 the domainrelatedobject object class, and allow any entity to include
12547 all the attributes PowerDNS wants. I&#39;ve sent an email to the PowerDNS
12548 developers asking for their view on this schema and if they are
12549 interested in providing such schema with PowerDNS, and I hope my
12550 message will be accepted into their mailing list soon.&lt;/p&gt;
12551
12552 &lt;p&gt;&lt;strong&gt;ISC dhcp&lt;/strong&gt;&lt;/p&gt;
12553
12554 &lt;p&gt;The DHCP server searches for specific objectclass and requests all
12555 the object attributes, and then uses the attributes it want. This
12556 make it harder to figure out exactly what attributes are used, but
12557 thanks to the working example in Debian Edu I can at least get an idea
12558 what is needed without having to read the source code.&lt;/p&gt;
12559
12560 &lt;p&gt;In the DHCP server configuration, the LDAP base to use and the
12561 search filter to use to locate the correct dhcpServer entity is
12562 stored. These are the relevant entries from
12563 /etc/dhcp3/dhcpd.conf:&lt;/p&gt;
12564
12565 &lt;blockquote&gt;&lt;pre&gt;
12566 ldap-base-dn &quot;dc=skole,dc=skolelinux,dc=no&quot;;
12567 ldap-dhcp-server-cn &quot;dhcp&quot;;
12568 &lt;/pre&gt;&lt;/blockquote&gt;
12569
12570 &lt;p&gt;The DHCP server uses this information to nest all the DHCP
12571 configuration it need. The cn &quot;dhcp&quot; is located using the given LDAP
12572 base and the filter &quot;(&amp;(objectClass=dhcpServer)(cn=dhcp))&quot;. The
12573 search result is this entry:&lt;/p&gt;
12574
12575 &lt;blockquote&gt;&lt;pre&gt;
12576 dn: cn=dhcp,dc=skole,dc=skolelinux,dc=no
12577 cn: dhcp
12578 objectClass: top
12579 objectClass: dhcpServer
12580 dhcpServiceDN: cn=DHCP Config,dc=skole,dc=skolelinux,dc=no
12581 &lt;/pre&gt;&lt;/blockquote&gt;
12582
12583 &lt;p&gt;The content of the dhcpServiceDN attribute is next used to locate the
12584 subtree with DHCP configuration. The DHCP configuration subtree base
12585 is located using a base scope search with base &quot;cn=DHCP
12586 Config,dc=skole,dc=skolelinux,dc=no&quot; and filter
12587 &quot;(&amp;(objectClass=dhcpService)(|(dhcpPrimaryDN=cn=dhcp,dc=skole,dc=skolelinux,dc=no)(dhcpSecondaryDN=cn=dhcp,dc=skole,dc=skolelinux,dc=no)))&quot;.
12588 The search result is this entry:&lt;/p&gt;
12589
12590 &lt;blockquote&gt;&lt;pre&gt;
12591 dn: cn=DHCP Config,dc=skole,dc=skolelinux,dc=no
12592 cn: DHCP Config
12593 objectClass: top
12594 objectClass: dhcpService
12595 objectClass: dhcpOptions
12596 dhcpPrimaryDN: cn=dhcp, dc=skole,dc=skolelinux,dc=no
12597 dhcpStatements: ddns-update-style none
12598 dhcpStatements: authoritative
12599 dhcpOption: smtp-server code 69 = array of ip-address
12600 dhcpOption: www-server code 72 = array of ip-address
12601 dhcpOption: wpad-url code 252 = text
12602 &lt;/pre&gt;&lt;/blockquote&gt;
12603
12604 &lt;p&gt;Next, the entire subtree is processed, one level at the time. When
12605 all the DHCP configuration is loaded, it is ready to receive requests.
12606 The subtree in Debian Edu contain objects with object classes
12607 top/dhcpService/dhcpOptions, top/dhcpSharedNetwork/dhcpOptions,
12608 top/dhcpSubnet, top/dhcpGroup and top/dhcpHost. These provide options
12609 and information about netmasks, dynamic range etc. Leaving out the
12610 details here because it is not relevant for the focus of my
12611 investigation, which is to see if it is possible to merge dns and dhcp
12612 related computer objects.&lt;/p&gt;
12613
12614 &lt;p&gt;When a DHCP request come in, LDAP is searched for the MAC address
12615 of the client (00:00:00:00:00:00 in this example), using a subtree
12616 scoped search with &quot;cn=DHCP Config,dc=skole,dc=skolelinux,dc=no&quot; as
12617 the base and &quot;(&amp;(objectClass=dhcpHost)(dhcpHWAddress=ethernet
12618 00:00:00:00:00:00))&quot; as the filter. This is what a host object look
12619 like:&lt;/p&gt;
12620
12621 &lt;blockquote&gt;&lt;pre&gt;
12622 dn: cn=hostname,cn=group1,cn=THINCLIENTS,cn=DHCP Config,dc=skole,dc=skolelinux,dc=no
12623 cn: hostname
12624 objectClass: top
12625 objectClass: dhcpHost
12626 dhcpHWAddress: ethernet 00:00:00:00:00:00
12627 dhcpStatements: fixed-address hostname
12628 &lt;/pre&gt;&lt;/blockquote&gt;
12629
12630 &lt;p&gt;There is less flexiblity in the way LDAP searches are done here.
12631 The object classes need to have fixed names, and the configuration
12632 need to be stored in a fairly specific LDAP structure. On the
12633 positive side, the invidiual dhcpHost entires can be anywhere without
12634 the DN pointed to by the dhcpServer entries. The latter should make
12635 it possible to group all host entries in a subtree next to the
12636 configuration entries, and this subtree can also be shared with the
12637 DNS server if the schema proposed above is combined with the dhcpHost
12638 structural object class.
12639
12640 &lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;/p&gt;
12641
12642 &lt;p&gt;The PowerDNS implementation seem to be very flexible when it come
12643 to which LDAP schemas to use. While its &quot;tree&quot; mode is rigid when it
12644 come to the the LDAP structure, the &quot;strict&quot; mode is very flexible,
12645 allowing DNS objects to be stored anywhere under the base cn specified
12646 in the configuration.&lt;/p&gt;
12647
12648 &lt;p&gt;The DHCP implementation on the other hand is very inflexible, both
12649 regarding which LDAP schemas to use and which LDAP structure to use.
12650 I guess one could implement ones own schema, as long as the
12651 objectclasses and attributes have the names used, but this do not
12652 really help when the DHCP subtree need to have a fairly fixed
12653 structure.&lt;/p&gt;
12654
12655 &lt;p&gt;Based on the observed behaviour, I suspect a LDAP structure like
12656 this might work for Debian Edu:&lt;/p&gt;
12657
12658 &lt;blockquote&gt;&lt;pre&gt;
12659 ou=services
12660 cn=machine-info (dhcpService) - dhcpServiceDN points here
12661 cn=dhcp (dhcpServer)
12662 cn=dhcp-internal (dhcpSharedNetwork/dhcpOptions)
12663 cn=10.0.2.0 (dhcpSubnet)
12664 cn=group1 (dhcpGroup/dhcpOptions)
12665 cn=dhcp-thinclients (dhcpSharedNetwork/dhcpOptions)
12666 cn=192.168.0.0 (dhcpSubnet)
12667 cn=group1 (dhcpGroup/dhcpOptions)
12668 ou=machines - PowerDNS base points here
12669 cn=hostname (dhcpHost/domainrelatedobject/dnsDomainAux)
12670 &lt;/pre&gt;&lt;/blockquote&gt;
12671
12672 &lt;P&gt;This is not tested yet. If the DHCP server require the dhcpHost
12673 entries to be in the dhcpGroup subtrees, the entries can be stored
12674 there instead of a common machines subtree, and the PowerDNS base
12675 would have to be moved one level up to the machine-info subtree.&lt;/p&gt;
12676
12677 &lt;p&gt;The combined object under the machines subtree would look something
12678 like this:&lt;/p&gt;
12679
12680 &lt;blockquote&gt;&lt;pre&gt;
12681 dn: dc=hostname,ou=machines,cn=machine-info,dc=skole,dc=skolelinux,dc=no
12682 dc: hostname
12683 objectClass: top
12684 objectClass: dhcpHost
12685 objectclass: domainrelatedobject
12686 objectclass: dnsDomainAux
12687 associateddomain: hostname.intern
12688 arecord: 10.11.12.13
12689 dhcpHWAddress: ethernet 00:00:00:00:00:00
12690 dhcpStatements: fixed-address hostname.intern
12691 &lt;/pre&gt;&lt;/blockquote&gt;
12692
12693 &lt;/p&gt;One could even add the LTSP configuration associated with a given
12694 machine, as long as the required attributes are available in a
12695 auxiliary object class.&lt;/p&gt;
12696 </description>
12697 </item>
12698
12699 <item>
12700 <title>Combining PowerDNS and ISC DHCP LDAP objects</title>
12701 <link>http://people.skolelinux.org/pere/blog/Combining_PowerDNS_and_ISC_DHCP_LDAP_objects.html</link>
12702 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Combining_PowerDNS_and_ISC_DHCP_LDAP_objects.html</guid>
12703 <pubDate>Wed, 14 Jul 2010 23:45:00 +0200</pubDate>
12704 <description>&lt;p&gt;For a while now, I have wanted to find a way to change the DNS and
12705 DHCP services in Debian Edu to use the same LDAP objects for a given
12706 computer, to avoid the possibility of having a inconsistent state for
12707 a computer in LDAP (as in DHCP but no DNS entry or the other way
12708 around) and make it easier to add computers to LDAP.&lt;/p&gt;
12709
12710 &lt;p&gt;I&#39;ve looked at how powerdns and dhcpd is using LDAP, and using this
12711 information finally found a solution that seem to work.&lt;/p&gt;
12712
12713 &lt;p&gt;The old setup required three LDAP objects for a given computer.
12714 One forward DNS entry, one reverse DNS entry and one DHCP entry. If
12715 we switch powerdns to use its strict LDAP method (ldap-method=strict
12716 in pdns-debian-edu.conf), the forward and reverse DNS entries are
12717 merged into one while making it impossible to transfer the reverse map
12718 to a slave DNS server.&lt;/p&gt;
12719
12720 &lt;p&gt;If we also replace the object class used to get the DNS related
12721 attributes to one allowing these attributes to be combined with the
12722 dhcphost object class, we can merge the DNS and DHCP entries into one.
12723 I&#39;ve written such object class in the dnsdomainaux.schema file (need
12724 proper OIDs, but that is a minor issue), and tested the setup. It
12725 seem to work.&lt;/p&gt;
12726
12727 &lt;p&gt;With this test setup in place, we can get away with one LDAP object
12728 for both DNS and DHCP, and even the LTSP configuration I suggested in
12729 an earlier email. The combined LDAP object will look something like
12730 this:&lt;/p&gt;
12731
12732 &lt;blockquote&gt;&lt;pre&gt;
12733 dn: cn=hostname,cn=group1,cn=THINCLIENTS,cn=DHCP Config,dc=skole,dc=skolelinux,dc=no
12734 cn: hostname
12735 objectClass: dhcphost
12736 objectclass: domainrelatedobject
12737 objectclass: dnsdomainaux
12738 associateddomain: hostname.intern
12739 arecord: 10.11.12.13
12740 dhcphwaddress: ethernet 00:00:00:00:00:00
12741 dhcpstatements: fixed-address hostname
12742 ldapconfigsound: Y
12743 &lt;/pre&gt;&lt;/blockquote&gt;
12744
12745 &lt;p&gt;The DNS server uses the associateddomain and arecord entries, while
12746 the DHCP server uses the dhcphwaddress and dhcpstatements entries
12747 before asking DNS to resolve the fixed-adddress. LTSP will use
12748 dhcphwaddress or associateddomain and the ldapconfig* attributes.&lt;/p&gt;
12749
12750 &lt;p&gt;I am not yet sure if I can get the DHCP server to look for its
12751 dhcphost in a different location, to allow us to put the objects
12752 outside the &quot;DHCP Config&quot; subtree, but hope to figure out a way to do
12753 that. If I can&#39;t figure out a way to do that, we can still get rid of
12754 the hosts subtree and move all its content into the DHCP Config tree
12755 (which probably should be renamed to be more related to the new
12756 content. I suspect cn=dnsdhcp,ou=services or something like that
12757 might be a good place to put it.&lt;/p&gt;
12758
12759 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
12760 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
12761 </description>
12762 </item>
12763
12764 <item>
12765 <title>Idea for storing LTSP configuration in LDAP</title>
12766 <link>http://people.skolelinux.org/pere/blog/Idea_for_storing_LTSP_configuration_in_LDAP.html</link>
12767 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Idea_for_storing_LTSP_configuration_in_LDAP.html</guid>
12768 <pubDate>Sun, 11 Jul 2010 22:00:00 +0200</pubDate>
12769 <description>&lt;p&gt;Vagrant mentioned on IRC today that ltsp_config now support
12770 sourcing files from /usr/share/ltsp/ltsp_config.d/ on the thin
12771 clients, and that this can be used to fetch configuration from LDAP if
12772 Debian Edu choose to store configuration there.&lt;/p&gt;
12773
12774 &lt;p&gt;Armed with this information, I got inspired and wrote a test module
12775 to get configuration from LDAP. The idea is to look up the MAC
12776 address of the client in LDAP, and look for attributes on the form
12777 ltspconfigsetting=value, and use this to export SETTING=value to the
12778 LTSP clients.&lt;/p&gt;
12779
12780 &lt;p&gt;The goal is to be able to store the LTSP configuration attributes
12781 in a &quot;computer&quot; LDAP object used by both DNS and DHCP, and thus
12782 allowing us to store all information about a computer in one place.&lt;/p&gt;
12783
12784 &lt;p&gt;This is a untested draft implementation, and I welcome feedback on
12785 this approach. A real LDAP schema for the ltspClientAux objectclass
12786 need to be written. Comments, suggestions, etc?&lt;/p&gt;
12787
12788 &lt;blockquote&gt;&lt;pre&gt;
12789 # Store in /opt/ltsp/$arch/usr/share/ltsp/ltsp_config.d/ldap-config
12790 #
12791 # Fetch LTSP client settings from LDAP based on MAC address
12792 #
12793 # Uses ethernet address as stored in the dhcpHost objectclass using
12794 # the dhcpHWAddress attribute or ethernet address stored in the
12795 # ieee802Device objectclass with the macAddress attribute.
12796 #
12797 # This module is written to be schema agnostic, and only depend on the
12798 # existence of attribute names.
12799 #
12800 # The LTSP configuration variables are saved directly using a
12801 # ltspConfig prefix and uppercasing the rest of the attribute name.
12802 # To set the SERVER variable, set the ltspConfigServer attribute.
12803 #
12804 # Some LDAP schema should be created with all the relevant
12805 # configuration settings. Something like this should work:
12806 #
12807 # objectclass ( 1.1.2.2 NAME &#39;ltspClientAux&#39;
12808 # SUP top
12809 # AUXILIARY
12810 # MAY ( ltspConfigServer $ ltsConfigSound $ ... )
12811
12812 LDAPSERVER=$(debian-edu-ldapserver)
12813 if [ &quot;$LDAPSERVER&quot; ] ; then
12814 LDAPBASE=$(debian-edu-ldapserver -b)
12815 for MAC in $(LANG=C ifconfig |grep -i hwaddr| awk &#39;{print $5}&#39;|sort -u) ; do
12816 filter=&quot;(|(dhcpHWAddress=ethernet $MAC)(macAddress=$MAC))&quot;
12817 ldapsearch -h &quot;$LDAPSERVER&quot; -b &quot;$LDAPBASE&quot; -v -x &quot;$filter&quot; | \
12818 grep &#39;^ltspConfig&#39; | while read attr value ; do
12819 # Remove prefix and convert to upper case
12820 attr=$(echo $attr | sed &#39;s/^ltspConfig//i&#39; | tr a-z A-Z)
12821 # bass value on to clients
12822 eval &quot;$attr=$value; export $attr&quot;
12823 done
12824 done
12825 fi
12826 &lt;/pre&gt;&lt;/blockquote&gt;
12827
12828 &lt;p&gt;I&#39;m not sure this shell construction will work, because I suspect
12829 the while block might end up in a subshell causing the variables set
12830 there to not show up in ltsp-config, but if that is the case I am sure
12831 the code can be restructured to make sure the variables are passed on.
12832 I expect that can be solved with some testing. :)&lt;/p&gt;
12833
12834 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
12835 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
12836
12837 &lt;p&gt;Update 2010-07-17: I am aware of another effort to store LTSP
12838 configuration in LDAP that was created around year 2000 by
12839 &lt;a href=&quot;http://www.pcxperience.com/thinclient/documentation/ldap.html&quot;&gt;PC
12840 Xperience, Inc., 2000&lt;/a&gt;. I found its
12841 &lt;a href=&quot;http://people.redhat.com/alikins/ltsp/ldap/&quot;&gt;files&lt;/a&gt; on a
12842 personal home page over at redhat.com.&lt;/p&gt;
12843 </description>
12844 </item>
12845
12846 <item>
12847 <title>jXplorer, a very nice LDAP GUI</title>
12848 <link>http://people.skolelinux.org/pere/blog/jXplorer__a_very_nice_LDAP_GUI.html</link>
12849 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/jXplorer__a_very_nice_LDAP_GUI.html</guid>
12850 <pubDate>Fri, 9 Jul 2010 12:55:00 +0200</pubDate>
12851 <description>&lt;p&gt;Since
12852 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/LUMA__a_very_nice_LDAP_GUI.html&quot;&gt;my
12853 last post&lt;/a&gt; about available LDAP tools in Debian, I was told about a
12854 LDAP GUI that is even better than luma. The java application
12855 &lt;a href=&quot;http://jxplorer.org/&quot;&gt;jXplorer&lt;/a&gt; is claimed to be capable of
12856 moving LDAP objects and subtrees using drag-and-drop, and can
12857 authenticate using Kerberos. I have only tested the Kerberos
12858 authentication, but do not have a LDAP setup allowing me to rewrite
12859 LDAP with my test user yet. It is
12860 &lt;a href=&quot;http://packages.qa.debian.org/j/jxplorer.html&quot;&gt;available in
12861 Debian&lt;/a&gt; testing and unstable at the moment. The only problem I
12862 have with it is how it handle errors. If something go wrong, its
12863 non-intuitive behaviour require me to go through some query work list
12864 and remove the failing query. Nothing big, but very annoying.&lt;/p&gt;
12865 </description>
12866 </item>
12867
12868 <item>
12869 <title>Lenny-&gt;Squeeze upgrades, apt vs aptitude with the Gnome desktop</title>
12870 <link>http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__apt_vs_aptitude_with_the_Gnome_desktop.html</link>
12871 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__apt_vs_aptitude_with_the_Gnome_desktop.html</guid>
12872 <pubDate>Sat, 3 Jul 2010 23:55:00 +0200</pubDate>
12873 <description>&lt;p&gt;Here is a short update on my &lt;a
12874 href=&quot;http://people.skolelinux.org/~pere/debian-upgrade-testing/&quot;&gt;my
12875 Debian Lenny-&gt;Squeeze upgrade testing&lt;/a&gt;. Here is a summary of the
12876 difference for Gnome when it is upgraded by apt-get and aptitude. I&#39;m
12877 not reporting the status for KDE, because the upgrade crashes when
12878 aptitude try because of missing conflicts
12879 (&lt;a href=&quot;http://bugs.debian.org/584861&quot;&gt;#584861&lt;/a&gt; and
12880 &lt;a href=&quot;http://bugs.debian.org/585716&quot;&gt;#585716&lt;/a&gt;).&lt;/p&gt;
12881
12882 &lt;p&gt;At the end of the upgrade test script, dpkg -l is executed to get a
12883 complete list of the installed packages. Based on this I see these
12884 differences when I did a test run today. As usual, I do not really
12885 know what the correct set of packages would be, but thought it best to
12886 publish the difference.&lt;/p&gt;
12887
12888 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
12889
12890 &lt;blockquote&gt;&lt;p&gt;
12891 at-spi cpp-4.3 finger gnome-spell gstreamer0.10-gnomevfs
12892 libatspi1.0-0 libcupsys2 libeel2-data libgail-common libgdl-1-common
12893 libgnomeprint2.2-data libgnomeprintui2.2-common libgnomevfs2-bin
12894 libgtksourceview-common libpt-1.10.10-plugins-alsa
12895 libpt-1.10.10-plugins-v4l libservlet2.4-java libxalan2-java
12896 libxerces2-java openoffice.org-writer2latex openssl-blacklist p7zip
12897 python-4suite-xml python-eggtrayicon python-gtkhtml2
12898 python-gtkmozembed svgalibg1 xserver-xephyr zip
12899 &lt;/p&gt;&lt;/blockquote&gt;
12900
12901 &lt;p&gt;Installed using apt-get, removed with aptitude&lt;/p&gt;
12902
12903 &lt;blockquote&gt;&lt;p&gt;
12904 bluez-utils dhcdbd djvulibre-desktop epiphany-gecko
12905 gnome-app-install gnome-mount gnome-vfs-obexftp gnome-volume-manager
12906 libao2 libavahi-compat-libdnssd1 libavahi-core5 libbind9-50
12907 libbluetooth2 libcamel1.2-11 libcdio7 libcucul0 libcurl3
12908 libdirectfb-1.0-0 libdvdread3 libedata-cal1.2-6 libedataserver1.2-9
12909 libeel2-2.20 libepc-1.0-1 libepc-ui-1.0-1 libexchange-storage1.2-3
12910 libfaad0 libgd2-noxpm libgda3-3 libgda3-common libggz2 libggzcore9
12911 libggzmod4 libgksu1.2-0 libgksuui1.0-1 libgmyth0 libgnome-desktop-2
12912 libgnome-pilot2 libgnomecups1.0-1 libgnomeprint2.2-0
12913 libgnomeprintui2.2-0 libgpod3 libgraphviz4 libgtkhtml2-0
12914 libgtksourceview1.0-0 libgucharmap6 libhesiod0 libicu38 libisccc50
12915 libisccfg50 libiw29 libkpathsea4 libltdl3 liblwres50 libmagick++10
12916 libmagick10 libmalaga7 libmtp7 libmysqlclient15off libnautilus-burn4
12917 libneon27 libnm-glib0 libnm-util0 libopal-2.2 libosp5
12918 libparted1.8-10 libpisock9 libpisync1 libpoppler-glib3 libpoppler3
12919 libpt-1.10.10 libraw1394-8 libsensors3 libsmbios2 libsoup2.2-8
12920 libssh2-1 libsuitesparse-3.1.0 libswfdec-0.6-90 libtalloc1
12921 libtotem-plparser10 libtrackerclient0 libvoikko1 libxalan2-java-gcj
12922 libxerces2-java-gcj libxklavier12 libxtrap6 libxxf86misc1 libzephyr3
12923 mysql-common swfdec-gnome totem-gstreamer wodim
12924 &lt;/p&gt;&lt;/blockquote&gt;
12925
12926 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
12927
12928 &lt;blockquote&gt;&lt;p&gt;
12929 gnome gnome-desktop-environment hamster-applet python-gnomeapplet
12930 python-gnomekeyring python-wnck rhythmbox-plugins xorg
12931 xserver-xorg-input-all xserver-xorg-input-evdev
12932 xserver-xorg-input-kbd xserver-xorg-input-mouse
12933 xserver-xorg-input-synaptics xserver-xorg-video-all
12934 xserver-xorg-video-apm xserver-xorg-video-ark xserver-xorg-video-ati
12935 xserver-xorg-video-chips xserver-xorg-video-cirrus
12936 xserver-xorg-video-dummy xserver-xorg-video-fbdev
12937 xserver-xorg-video-glint xserver-xorg-video-i128
12938 xserver-xorg-video-i740 xserver-xorg-video-mach64
12939 xserver-xorg-video-mga xserver-xorg-video-neomagic
12940 xserver-xorg-video-nouveau xserver-xorg-video-nv
12941 xserver-xorg-video-r128 xserver-xorg-video-radeon
12942 xserver-xorg-video-radeonhd xserver-xorg-video-rendition
12943 xserver-xorg-video-s3 xserver-xorg-video-s3virge
12944 xserver-xorg-video-savage xserver-xorg-video-siliconmotion
12945 xserver-xorg-video-sis xserver-xorg-video-sisusb
12946 xserver-xorg-video-tdfx xserver-xorg-video-tga
12947 xserver-xorg-video-trident xserver-xorg-video-tseng
12948 xserver-xorg-video-vesa xserver-xorg-video-vmware
12949 xserver-xorg-video-voodoo
12950 &lt;/p&gt;&lt;/blockquote&gt;
12951
12952 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
12953
12954 &lt;blockquote&gt;&lt;p&gt;
12955 deskbar-applet xserver-xorg xserver-xorg-core
12956 xserver-xorg-input-wacom xserver-xorg-video-intel
12957 xserver-xorg-video-openchrome
12958 &lt;/p&gt;&lt;/blockquote&gt;
12959
12960 &lt;p&gt;I was told on IRC that the xorg-xserver package was
12961 &lt;a href=&quot;http://git.debian.org/?p=pkg-xorg/xserver/xorg-server.git;a=commit;h=9c8080d06c457932d3bfec021c69ac000aa60120&quot;&gt;changed
12962 in git&lt;/a&gt; today to try to get apt-get to not remove xorg completely.
12963 No idea when it hits Squeeze, but when it does I hope it will reduce
12964 the difference somewhat.
12965 </description>
12966 </item>
12967
12968 <item>
12969 <title>Caching password, user and group on a roaming Debian laptop</title>
12970 <link>http://people.skolelinux.org/pere/blog/Caching_password__user_and_group_on_a_roaming_Debian_laptop.html</link>
12971 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Caching_password__user_and_group_on_a_roaming_Debian_laptop.html</guid>
12972 <pubDate>Thu, 1 Jul 2010 11:40:00 +0200</pubDate>
12973 <description>&lt;p&gt;For a laptop, centralized user directories and password checking is
12974 a bit troubling. Laptops are typically used also when not connected
12975 to the network, and it is vital for a user to be able to log in or
12976 unlock the screen saver also when a central server is unavailable.
12977 This is possible by caching passwords and directory information (user
12978 and group attributes) locally, and the packages to do so are available
12979 in Debian. Here follow two recipes to set this up in Debian/Squeeze.
12980 It is also possible to set up in Debian/Lenny, but require more manual
12981 setup there because pam-auth-update is missing in Lenny.&lt;/p&gt;
12982
12983 &lt;h2&gt;LDAP/Kerberos + nscd + libpam-ccreds + libpam-mklocaluser/pam_mkhomedir&lt;/h2&gt;
12984
12985 This is the traditional method with a twist. The password caching is
12986 provided by libpam-ccreds (version 10-4 or later is needed on
12987 Squeeze), and the directory caching is done by nscd. The directory
12988 lookup and password checking is done using LDAP. If one want to use
12989 Kerberos for password checking the libpam-ldapd package can be
12990 replaced with libpam-krb5 or libpam-heimdal. If one is happy having a
12991 local home directory with the path listed in LDAP, one can use the
12992 pam_mkhomedir module from pam-modules to make this happen instead of
12993 using libpam-mklocaluser. A setup for pam-auth-update to enable
12994 pam_mkhomedir will have to be written until a fix for
12995 &lt;a href=&quot;http://bugs.debian.org/568577&quot;&gt;bug #568577&lt;/a&gt; is in the
12996 archive. Because I believe it is a bad idea to have local home
12997 directories using misleading paths like /site/server/partition/, I
12998 prefer to create a local user with the home directory in /home/. This
12999 is done using the libpam-mklocaluser package.&lt;/p&gt;
13000
13001 &lt;p&gt;These packages need to be installed and configured&lt;/p&gt;
13002
13003 &lt;blockquote&gt;&lt;pre&gt;
13004 libnss-ldapd libpam-ldapd nscd libpam-ccreds libpam-mklocaluser
13005 &lt;/pre&gt;&lt;/blockquote&gt;
13006
13007 &lt;p&gt;The ldapd packages will ask for LDAP connection information, and
13008 one have to fill in the values that fits ones own site. Make sure the
13009 PAM part uses encrypted connections, to make sure the password is not
13010 sent in clear text to the LDAP server. I&#39;ve been unable to get TLS
13011 certificate checking for a self signed certificate working, which make
13012 LDAP authentication unsafe for Debian Edu (nslcd is not checking if it
13013 is talking to the correct LDAP server), and very much welcome feedback
13014 on how to get this working.&lt;/p&gt;
13015
13016 &lt;p&gt;Because nscd do not have a default configuration fit for offline
13017 caching until &lt;a href=&quot;http://bugs.debian.org/485282&quot;&gt;bug #485282&lt;/a&gt;
13018 is fixed, this configuration should be used instead of the one
13019 currently in /etc/nscd.conf. The changes are in the fields
13020 reload-count and positive-time-to-live, and is based on the
13021 instructions I found in the
13022 &lt;a href=&quot;http://www.flyn.org/laptopldap/&quot;&gt;LDAP for Mobile Laptops&lt;/a&gt;
13023 instructions by Flyn Computing.&lt;/p&gt;
13024
13025 &lt;blockquote&gt;&lt;pre&gt;
13026 debug-level 0
13027 reload-count unlimited
13028 paranoia no
13029
13030 enable-cache passwd yes
13031 positive-time-to-live passwd 2592000
13032 negative-time-to-live passwd 20
13033 suggested-size passwd 211
13034 check-files passwd yes
13035 persistent passwd yes
13036 shared passwd yes
13037 max-db-size passwd 33554432
13038 auto-propagate passwd yes
13039
13040 enable-cache group yes
13041 positive-time-to-live group 2592000
13042 negative-time-to-live group 20
13043 suggested-size group 211
13044 check-files group yes
13045 persistent group yes
13046 shared group yes
13047 max-db-size group 33554432
13048 auto-propagate group yes
13049
13050 enable-cache hosts no
13051 positive-time-to-live hosts 2592000
13052 negative-time-to-live hosts 20
13053 suggested-size hosts 211
13054 check-files hosts yes
13055 persistent hosts yes
13056 shared hosts yes
13057 max-db-size hosts 33554432
13058
13059 enable-cache services yes
13060 positive-time-to-live services 2592000
13061 negative-time-to-live services 20
13062 suggested-size services 211
13063 check-files services yes
13064 persistent services yes
13065 shared services yes
13066 max-db-size services 33554432
13067 &lt;/pre&gt;&lt;/blockquote&gt;
13068
13069 &lt;p&gt;While we wait for a mechanism to update /etc/nsswitch.conf
13070 automatically like the one provided in
13071 &lt;a href=&quot;http://bugs.debian.org/496915&quot;&gt;bug #496915&lt;/a&gt;, the file
13072 content need to be manually replaced to ensure LDAP is used as the
13073 directory service on the machine. /etc/nsswitch.conf should normally
13074 look like this:&lt;/p&gt;
13075
13076 &lt;blockquote&gt;&lt;pre&gt;
13077 passwd: files ldap
13078 group: files ldap
13079 shadow: files ldap
13080 hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4
13081 networks: files
13082 protocols: files
13083 services: files
13084 ethers: files
13085 rpc: files
13086 netgroup: files ldap
13087 &lt;/pre&gt;&lt;/blockquote&gt;
13088
13089 &lt;p&gt;The important parts are that ldap is listed last for passwd, group,
13090 shadow and netgroup.&lt;/p&gt;
13091
13092 &lt;p&gt;With these changes in place, any user in LDAP will be able to log
13093 in locally on the machine using for example kdm, get a local home
13094 directory created and have the password as well as user and group
13095 attributes cached.
13096
13097 &lt;h2&gt;LDAP/Kerberos + nss-updatedb + libpam-ccreds +
13098 libpam-mklocaluser/pam_mkhomedir&lt;/h2&gt;
13099
13100 &lt;p&gt;Because nscd have had its share of problems, and seem to have
13101 problems doing proper caching, I&#39;ve seen suggestions and recipes to
13102 use nss-updatedb to copy parts of the LDAP database locally when the
13103 LDAP database is available. I have not tested such setup, because I
13104 discovered sssd.&lt;/p&gt;
13105
13106 &lt;h2&gt;LDAP/Kerberos + sssd + libpam-mklocaluser&lt;/h2&gt;
13107
13108 &lt;p&gt;A more flexible and robust setup than the nscd combination
13109 mentioned earlier that has shown up recently, is the
13110 &lt;a href=&quot;https://fedorahosted.org/sssd/&quot;&gt;sssd&lt;/a&gt; package from Redhat.
13111 It is part of the &lt;a href=&quot;http://www.freeipa.org/&quot;&gt;FreeIPA&lt;/A&gt; project
13112 to provide a Active Directory like directory service for Linux
13113 machines. The sssd system combines the caching of passwords and user
13114 information into one package, and remove the need for nscd and
13115 libpam-ccreds. It support LDAP and Kerberos, but not NIS. Version
13116 1.2 do not support netgroups, but it is said that it will support this
13117 in version 1.5 expected to show up later in 2010. Because the
13118 &lt;a href=&quot;http://packages.qa.debian.org/s/sssd.html&quot;&gt;sssd package&lt;/a&gt;
13119 was missing in Debian, I ended up co-maintaining it with Werner, and
13120 version 1.2 is now in testing.
13121
13122 &lt;p&gt;These packages need to be installed and configured to get the
13123 roaming setup I want&lt;/p&gt;
13124
13125 &lt;blockquote&gt;&lt;pre&gt;
13126 libpam-sss libnss-sss libpam-mklocaluser
13127 &lt;/pre&gt;&lt;/blockquote&gt;
13128
13129 The complete setup of sssd is done by editing/creating
13130 &lt;tt&gt;/etc/sssd/sssd.conf&lt;/tt&gt;.
13131
13132 &lt;blockquote&gt;&lt;pre&gt;
13133 [sssd]
13134 config_file_version = 2
13135 reconnection_retries = 3
13136 sbus_timeout = 30
13137 services = nss, pam
13138 domains = INTERN
13139
13140 [nss]
13141 filter_groups = root
13142 filter_users = root
13143 reconnection_retries = 3
13144
13145 [pam]
13146 reconnection_retries = 3
13147
13148 [domain/INTERN]
13149 enumerate = false
13150 cache_credentials = true
13151
13152 id_provider = ldap
13153 auth_provider = ldap
13154 chpass_provider = ldap
13155
13156 ldap_uri = ldap://ldap
13157 ldap_search_base = dc=skole,dc=skolelinux,dc=no
13158 ldap_tls_reqcert = never
13159 ldap_tls_cacert = /etc/ssl/certs/ca-certificates.crt
13160 &lt;/pre&gt;&lt;/blockquote&gt;
13161
13162 &lt;p&gt;I got the same problem here with certificate checking. Had to set
13163 &quot;ldap_tls_reqcert = never&quot; to get it working.&lt;/p&gt;
13164
13165 &lt;p&gt;With the libnss-sss package in testing at the moment, the
13166 nsswitch.conf file is update automatically, so there is no need to
13167 modify it manually.&lt;/p&gt;
13168
13169 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
13170 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
13171 </description>
13172 </item>
13173
13174 <item>
13175 <title>LUMA, a very nice LDAP GUI</title>
13176 <link>http://people.skolelinux.org/pere/blog/LUMA__a_very_nice_LDAP_GUI.html</link>
13177 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/LUMA__a_very_nice_LDAP_GUI.html</guid>
13178 <pubDate>Mon, 28 Jun 2010 00:30:00 +0200</pubDate>
13179 <description>&lt;p&gt;The last few days I have been looking into the status of the LDAP
13180 directory in Debian Edu, and in the process I started to miss a GUI
13181 tool to browse the LDAP tree. The only one I was able to find in
13182 Debian/Squeeze and Lenny is
13183 &lt;a href=&quot;http://luma.sourceforge.net/&quot;&gt;LUMA&lt;/a&gt;, which has proved to
13184 be a great tool to get a overview of the current LDAP directory
13185 populated by default in Skolelinux. Thanks to it, I have been able to
13186 find empty and obsolete subtrees, misplaced objects and duplicate
13187 objects. It will be installed by default in Debian/Squeeze. If you
13188 are working with LDAP, give it a go. :)&lt;/p&gt;
13189
13190 &lt;p&gt;I did notice one problem with it I have not had time to report to
13191 the BTS yet. There is no .desktop file in the package, so the tool do
13192 not show up in the Gnome and KDE menus, but only deep down in in the
13193 Debian submenu in KDE. I hope that can be fixed before Squeeze is
13194 released.&lt;/p&gt;
13195
13196 &lt;p&gt;I have not yet been able to get it to modify the tree yet. I would
13197 like to move objects and remove subtrees directly in the GUI, but have
13198 not found a way to do that with LUMA yet. So in the mean time, I use
13199 &lt;a href=&quot;http://www.lichteblau.com/ldapvi/&quot;&gt;ldapvi&lt;/a&gt; for that.&lt;/p&gt;
13200
13201 &lt;p&gt;If you have tips on other GUI tools for LDAP that might be useful
13202 in Debian Edu, please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
13203
13204 &lt;p&gt;Update 2010-06-29: Ross Reedstrom tipped us about the
13205 &lt;a href=&quot;http://packages.qa.debian.org/g/gq.html&quot;&gt;gq&lt;/a&gt; package as a
13206 useful GUI alternative. It seem like a good tool, but is unmaintained
13207 in Debian and got a RC bug keeping it out of Squeeze. Unless that
13208 changes, it will not be an option for Debian Edu based on Squeeze.&lt;/p&gt;
13209 </description>
13210 </item>
13211
13212 <item>
13213 <title>Idea for a change to LDAP schemas allowing DNS and DHCP info to be combined into one object</title>
13214 <link>http://people.skolelinux.org/pere/blog/Idea_for_a_change_to_LDAP_schemas_allowing_DNS_and_DHCP_info_to_be_combined_into_one_object.html</link>
13215 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Idea_for_a_change_to_LDAP_schemas_allowing_DNS_and_DHCP_info_to_be_combined_into_one_object.html</guid>
13216 <pubDate>Thu, 24 Jun 2010 00:35:00 +0200</pubDate>
13217 <description>&lt;p&gt;A while back, I
13218 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Time_for_new__LDAP_schemas_replacing_RFC_2307_.html&quot;&gt;complained
13219 about the fact&lt;/a&gt; that it is not possible with the provided schemas
13220 for storing DNS and DHCP information in LDAP to combine the two sets
13221 of information into one LDAP object representing a computer.&lt;/p&gt;
13222
13223 &lt;p&gt;In the mean time, I discovered that a simple fix would be to make
13224 the dhcpHost object class auxiliary, to allow it to be combined with
13225 the dNSDomain object class, and thus forming one object for one
13226 computer when storing both DHCP and DNS information in LDAP.&lt;/p&gt;
13227
13228 &lt;p&gt;If I understand this correctly, it is not safe to do this change
13229 without also changing the assigned number for the object class, and I
13230 do not know enough about LDAP schema design to do that properly for
13231 Debian Edu.&lt;/p&gt;
13232
13233 &lt;p&gt;Anyway, for future reference, this is how I believe we could change
13234 the
13235 &lt;a href=&quot;http://tools.ietf.org/html/draft-ietf-dhc-ldap-schema-00&quot;&gt;DHCP
13236 schema&lt;/a&gt; to solve at least part of the problem with the LDAP schemas
13237 available today from IETF.&lt;/p&gt;
13238
13239 &lt;pre&gt;
13240 --- dhcp.schema (revision 65192)
13241 +++ dhcp.schema (working copy)
13242 @@ -376,7 +376,7 @@
13243 objectclass ( 2.16.840.1.113719.1.203.6.6
13244 NAME &#39;dhcpHost&#39;
13245 DESC &#39;This represents information about a particular client&#39;
13246 - SUP top
13247 + SUP top AUXILIARY
13248 MUST cn
13249 MAY (dhcpLeaseDN $ dhcpHWAddress $ dhcpOptionsDN $ dhcpStatements $ dhcpComments $ dhcpOption)
13250 X-NDS_CONTAINMENT (&#39;dhcpService&#39; &#39;dhcpSubnet&#39; &#39;dhcpGroup&#39;) )
13251 &lt;/pre&gt;
13252
13253 &lt;p&gt;I very much welcome clues on how to do this properly for Debian
13254 Edu/Squeeze. We provide the DHCP schema in our debian-edu-config
13255 package, and should thus be free to rewrite it as we see fit.&lt;/p&gt;
13256
13257 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
13258 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
13259 </description>
13260 </item>
13261
13262 <item>
13263 <title>Calling tasksel like the installer, while still getting useful output</title>
13264 <link>http://people.skolelinux.org/pere/blog/Calling_tasksel_like_the_installer__while_still_getting_useful_output.html</link>
13265 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Calling_tasksel_like_the_installer__while_still_getting_useful_output.html</guid>
13266 <pubDate>Wed, 16 Jun 2010 14:55:00 +0200</pubDate>
13267 <description>&lt;p&gt;A few times I have had the need to simulate the way tasksel
13268 installs packages during the normal debian-installer run. Until now,
13269 I have ended up letting tasksel do the work, with the annoying problem
13270 of not getting any feedback at all when something fails (like a
13271 conffile question from dpkg or a download that fails), using code like
13272 this:
13273
13274 &lt;blockquote&gt;&lt;pre&gt;
13275 export DEBIAN_FRONTEND=noninteractive
13276 tasksel --new-install
13277 &lt;/pre&gt;&lt;/blockquote&gt;
13278
13279 This would invoke tasksel, let its automatic task selection pick the
13280 tasks to install, and continue to install the requested tasks without
13281 any output what so ever.
13282
13283 Recently I revisited this problem while working on the automatic
13284 package upgrade testing, because tasksel would some times hang without
13285 any useful feedback, and I want to see what is going on when it
13286 happen. Then it occured to me, I can parse the output from tasksel
13287 when asked to run in test mode, and use that aptitude command line
13288 printed by tasksel then to simulate the tasksel run. I ended up using
13289 code like this:
13290
13291 &lt;blockquote&gt;&lt;pre&gt;
13292 export DEBIAN_FRONTEND=noninteractive
13293 cmd=&quot;$(in_target tasksel -t --new-install | sed &#39;s/debconf-apt-progress -- //&#39;)&quot;
13294 $cmd
13295 &lt;/pre&gt;&lt;/blockquote&gt;
13296
13297 &lt;p&gt;The content of $cmd is typically something like &quot;&lt;tt&gt;aptitude -q
13298 --without-recommends -o APT::Install-Recommends=no -y install
13299 ~t^desktop$ ~t^gnome-desktop$ ~t^laptop$ ~pstandard ~prequired
13300 ~pimportant&lt;/tt&gt;&quot;, which will install the gnome desktop task, the
13301 laptop task and all packages with priority standard , required and
13302 important, just like tasksel would have done it during
13303 installation.&lt;/p&gt;
13304
13305 &lt;p&gt;A better approach is probably to extend tasksel to be able to
13306 install packages without using debconf-apt-progress, for use cases
13307 like this.&lt;/p&gt;
13308 </description>
13309 </item>
13310
13311 <item>
13312 <title>Officeshots taking shape</title>
13313 <link>http://people.skolelinux.org/pere/blog/Officeshots_taking_shape.html</link>
13314 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Officeshots_taking_shape.html</guid>
13315 <pubDate>Sun, 13 Jun 2010 11:40:00 +0200</pubDate>
13316 <description>&lt;p&gt;For those of us caring about document exchange and
13317 interoperability, &lt;a href=&quot;http://www.officeshots.org/&quot;&gt;OfficeShots&lt;/a&gt;
13318 is a great service. It is to ODF documents what
13319 &lt;a href=&quot;http://browsershots.org/&quot;&gt;BrowserShots&lt;/a&gt; is for web
13320 pages.&lt;/p&gt;
13321
13322 &lt;p&gt;A while back, I was contacted by Knut Yrvin at the part of Nokia
13323 that used to be Trolltech, who wanted to help the OfficeShots project
13324 and wondered if the University of Oslo where I work would be
13325 interested in supporting the project. I helped him to navigate his
13326 request to the right people at work, and his request was answered with
13327 a spot in the machine room with power and network connected, and Knut
13328 arranged funding for a machine to fill the spot. The machine is
13329 administrated by the OfficeShots people, so I do not have daily
13330 contact with its progress, and thus from time to time check back to
13331 see how the project is doing.&lt;/p&gt;
13332
13333 &lt;p&gt;Today I had a look, and was happy to see that the Dell box in our
13334 machine room now is the host for several virtual machines running as
13335 OfficeShots factories, and the project is able to render ODF documents
13336 in 17 different document processing implementation on Linux and
13337 Windows. This is great.&lt;/p&gt;
13338 </description>
13339 </item>
13340
13341 <item>
13342 <title>Lenny-&gt;Squeeze upgrades, removals by apt and aptitude</title>
13343 <link>http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__removals_by_apt_and_aptitude.html</link>
13344 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__removals_by_apt_and_aptitude.html</guid>
13345 <pubDate>Sun, 13 Jun 2010 09:05:00 +0200</pubDate>
13346 <description>&lt;p&gt;My
13347 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Automatic_upgrade_testing_from_Lenny_to_Squeeze.html&quot;&gt;testing
13348 of Debian upgrades&lt;/a&gt; from Lenny to Squeeze continues, and I&#39;ve
13349 finally made the upgrade logs available from
13350 &lt;a href=&quot;http://people.skolelinux.org/pere/debian-upgrade-testing/&quot;&gt;http://people.skolelinux.org/pere/debian-upgrade-testing/&lt;/a&gt;.
13351 I am now testing dist-upgrade of Gnome and KDE in a chroot using both
13352 apt and aptitude, and found their differences interesting. This time
13353 I will only focus on their removal plans.&lt;/p&gt;
13354
13355 &lt;p&gt;After installing a Gnome desktop and the laptop task, apt-get wants
13356 to remove 72 packages when dist-upgrading from Lenny to Squeeze. The
13357 surprising part is that it want to remove xorg and all
13358 xserver-xorg-video* drivers. Clearly not a good choice, but I am not
13359 sure why. When asking aptitude to do the same, it want to remove 129
13360 packages, but most of them are library packages I suspect are no
13361 longer needed. Both of them want to remove bluetooth packages, which
13362 I do not know. Perhaps these bluetooth packages are obsolete?&lt;/p&gt;
13363
13364 &lt;p&gt;For KDE, apt-get want to remove 82 packages, among them kdebase
13365 which seem like a bad idea and xorg the same way as with Gnome. Asking
13366 aptitude for the same, it wants to remove 192 packages, none which are
13367 too surprising.&lt;/p&gt;
13368
13369 &lt;p&gt;I guess the removal of xorg during upgrades should be investigated
13370 and avoided, and perhaps others as well. Here are the complete list
13371 of planned removals. The complete logs is available from the URL
13372 above. Note if you want to repeat these tests, that the upgrade test
13373 for kde+apt-get hung in the tasksel setup because of dpkg asking
13374 conffile questions. No idea why. I worked around it by using
13375 &#39;&lt;tt&gt;echo &gt;&gt; /proc/&lt;em&gt;pidofdpkg&lt;/em&gt;/fd/0&lt;/tt&gt;&#39; to tell dpkg to
13376 continue.&lt;/p&gt;
13377
13378 &lt;p&gt;&lt;b&gt;apt-get gnome 72&lt;/b&gt;
13379 &lt;br&gt;bluez-gnome cupsddk-drivers deskbar-applet gnome
13380 gnome-desktop-environment gnome-network-admin gtkhtml3.14
13381 iceweasel-gnome-support libavcodec51 libdatrie0 libgdl-1-0
13382 libgnomekbd2 libgnomekbdui2 libmetacity0 libslab0 libxcb-xlib0
13383 nautilus-cd-burner python-gnome2-desktop python-gnome2-extras
13384 serpentine swfdec-mozilla update-manager xorg xserver-xorg
13385 xserver-xorg-core xserver-xorg-input-all xserver-xorg-input-evdev
13386 xserver-xorg-input-kbd xserver-xorg-input-mouse
13387 xserver-xorg-input-synaptics xserver-xorg-input-wacom
13388 xserver-xorg-video-all xserver-xorg-video-apm xserver-xorg-video-ark
13389 xserver-xorg-video-ati xserver-xorg-video-chips
13390 xserver-xorg-video-cirrus xserver-xorg-video-cyrix
13391 xserver-xorg-video-dummy xserver-xorg-video-fbdev
13392 xserver-xorg-video-glint xserver-xorg-video-i128
13393 xserver-xorg-video-i740 xserver-xorg-video-imstt
13394 xserver-xorg-video-intel xserver-xorg-video-mach64
13395 xserver-xorg-video-mga xserver-xorg-video-neomagic
13396 xserver-xorg-video-nsc xserver-xorg-video-nv
13397 xserver-xorg-video-openchrome xserver-xorg-video-r128
13398 xserver-xorg-video-radeon xserver-xorg-video-radeonhd
13399 xserver-xorg-video-rendition xserver-xorg-video-s3
13400 xserver-xorg-video-s3virge xserver-xorg-video-savage
13401 xserver-xorg-video-siliconmotion xserver-xorg-video-sis
13402 xserver-xorg-video-sisusb xserver-xorg-video-tdfx
13403 xserver-xorg-video-tga xserver-xorg-video-trident
13404 xserver-xorg-video-tseng xserver-xorg-video-v4l
13405 xserver-xorg-video-vesa xserver-xorg-video-vga
13406 xserver-xorg-video-vmware xserver-xorg-video-voodoo xulrunner-1.9
13407 xulrunner-1.9-gnome-support&lt;/p&gt;
13408
13409 &lt;p&gt;&lt;b&gt;aptitude gnome 129&lt;/b&gt;
13410
13411 &lt;br&gt;bluez-gnome bluez-utils cpp-4.3 cupsddk-drivers dhcdbd
13412 djvulibre-desktop finger gnome-app-install gnome-mount
13413 gnome-network-admin gnome-spell gnome-vfs-obexftp
13414 gnome-volume-manager gstreamer0.10-gnomevfs gtkhtml3.14 libao2
13415 libavahi-compat-libdnssd1 libavahi-core5 libavcodec51 libbluetooth2
13416 libcamel1.2-11 libcdio7 libcucul0 libcupsys2 libcurl3 libdatrie0
13417 libdirectfb-1.0-0 libdvdread3 libedataserver1.2-9 libeel2-2.20
13418 libeel2-data libepc-1.0-1 libepc-ui-1.0-1 libfaad0 libgail-common
13419 libgd2-noxpm libgda3-3 libgda3-common libgdl-1-0 libgdl-1-common
13420 libggz2 libggzcore9 libggzmod4 libgksu1.2-0 libgksuui1.0-1 libgmyth0
13421 libgnomecups1.0-1 libgnomekbd2 libgnomekbdui2 libgnomeprint2.2-0
13422 libgnomeprint2.2-data libgnomeprintui2.2-0 libgnomeprintui2.2-common
13423 libgnomevfs2-bin libgpod3 libgraphviz4 libgtkhtml2-0
13424 libgtksourceview-common libgtksourceview1.0-0 libgucharmap6
13425 libhesiod0 libicu38 libiw29 libkpathsea4 libltdl3 libmagick++10
13426 libmagick10 libmalaga7 libmetacity0 libmtp7 libmysqlclient15off
13427 libnautilus-burn4 libneon27 libnm-glib0 libnm-util0 libopal-2.2
13428 libosp5 libparted1.8-10 libpoppler-glib3 libpoppler3 libpt-1.10.10
13429 libpt-1.10.10-plugins-alsa libpt-1.10.10-plugins-v4l libraw1394-8
13430 libsensors3 libslab0 libsmbios2 libsoup2.2-8 libssh2-1
13431 libsuitesparse-3.1.0 libswfdec-0.6-90 libtalloc1 libtotem-plparser10
13432 libtrackerclient0 libxalan2-java libxalan2-java-gcj libxcb-xlib0
13433 libxerces2-java libxerces2-java-gcj libxklavier12 libxtrap6
13434 libxxf86misc1 libzephyr3 mysql-common nautilus-cd-burner
13435 openoffice.org-writer2latex openssl-blacklist p7zip
13436 python-4suite-xml python-eggtrayicon python-gnome2-desktop
13437 python-gnome2-extras python-gtkhtml2 python-gtkmozembed
13438 python-numeric python-sexy serpentine svgalibg1 swfdec-gnome
13439 swfdec-mozilla totem-gstreamer update-manager wodim
13440 xserver-xorg-video-cyrix xserver-xorg-video-imstt
13441 xserver-xorg-video-nsc xserver-xorg-video-v4l xserver-xorg-video-vga
13442 zip&lt;/p&gt;
13443
13444 &lt;p&gt;&lt;b&gt;apt-get kde 82&lt;/b&gt;
13445
13446 &lt;br&gt;cupsddk-drivers karm kaudiocreator kcoloredit kcontrol kde kde-core
13447 kdeaddons kdeartwork kdebase kdebase-bin kdebase-bin-kde3
13448 kdebase-kio-plugins kdesktop kdeutils khelpcenter kicker
13449 kicker-applets knewsticker kolourpaint konq-plugins konqueror korn
13450 kpersonalizer kscreensaver ksplash libavcodec51 libdatrie0 libkiten1
13451 libxcb-xlib0 quanta superkaramba texlive-base-bin xorg xserver-xorg
13452 xserver-xorg-core xserver-xorg-input-all xserver-xorg-input-evdev
13453 xserver-xorg-input-kbd xserver-xorg-input-mouse
13454 xserver-xorg-input-synaptics xserver-xorg-input-wacom
13455 xserver-xorg-video-all xserver-xorg-video-apm xserver-xorg-video-ark
13456 xserver-xorg-video-ati xserver-xorg-video-chips
13457 xserver-xorg-video-cirrus xserver-xorg-video-cyrix
13458 xserver-xorg-video-dummy xserver-xorg-video-fbdev
13459 xserver-xorg-video-glint xserver-xorg-video-i128
13460 xserver-xorg-video-i740 xserver-xorg-video-imstt
13461 xserver-xorg-video-intel xserver-xorg-video-mach64
13462 xserver-xorg-video-mga xserver-xorg-video-neomagic
13463 xserver-xorg-video-nsc xserver-xorg-video-nv
13464 xserver-xorg-video-openchrome xserver-xorg-video-r128
13465 xserver-xorg-video-radeon xserver-xorg-video-radeonhd
13466 xserver-xorg-video-rendition xserver-xorg-video-s3
13467 xserver-xorg-video-s3virge xserver-xorg-video-savage
13468 xserver-xorg-video-siliconmotion xserver-xorg-video-sis
13469 xserver-xorg-video-sisusb xserver-xorg-video-tdfx
13470 xserver-xorg-video-tga xserver-xorg-video-trident
13471 xserver-xorg-video-tseng xserver-xorg-video-v4l
13472 xserver-xorg-video-vesa xserver-xorg-video-vga
13473 xserver-xorg-video-vmware xserver-xorg-video-voodoo xulrunner-1.9&lt;/p&gt;
13474
13475 &lt;p&gt;&lt;b&gt;aptitude kde 192&lt;/b&gt;
13476 &lt;br&gt;bluez-utils cpp-4.3 cupsddk-drivers cvs dcoprss dhcdbd
13477 djvulibre-desktop dosfstools eyesapplet fifteenapplet finger gettext
13478 ghostscript-x imlib-base imlib11 indi kandy karm kasteroids
13479 kaudiocreator kbackgammon kbstate kcoloredit kcontrol kcron kdat
13480 kdeadmin-kfile-plugins kdeartwork-misc kdeartwork-theme-window
13481 kdebase-bin-kde3 kdebase-kio-plugins kdeedu-data
13482 kdegraphics-kfile-plugins kdelirc kdemultimedia-kappfinder-data
13483 kdemultimedia-kfile-plugins kdenetwork-kfile-plugins
13484 kdepim-kfile-plugins kdepim-kio-plugins kdeprint kdesktop kdessh
13485 kdict kdnssd kdvi kedit keduca kenolaba kfax kfaxview kfouleggs
13486 kghostview khelpcenter khexedit kiconedit kitchensync klatin
13487 klickety kmailcvt kmenuedit kmid kmilo kmoon kmrml kodo kolourpaint
13488 kooka korn kpager kpdf kpercentage kpf kpilot kpoker kpovmodeler
13489 krec kregexpeditor ksayit ksim ksirc ksirtet ksmiletris ksmserver
13490 ksnake ksokoban ksplash ksvg ksysv ktip ktnef kuickshow kverbos
13491 kview kviewshell kvoctrain kwifimanager kwin kwin4 kworldclock
13492 kxsldbg libakode2 libao2 libarts1-akode libarts1-audiofile
13493 libarts1-mpeglib libarts1-xine libavahi-compat-libdnssd1
13494 libavahi-core5 libavc1394-0 libavcodec51 libbluetooth2
13495 libboost-python1.34.1 libcucul0 libcurl3 libcvsservice0 libdatrie0
13496 libdirectfb-1.0-0 libdjvulibre21 libdvdread3 libfaad0 libfreebob0
13497 libgail-common libgd2-noxpm libgraphviz4 libgsmme1c2a libgtkhtml2-0
13498 libicu38 libiec61883-0 libindex0 libiw29 libk3b3 libkcal2b libkcddb1
13499 libkdeedu3 libkdepim1a libkgantt0 libkiten1 libkleopatra1 libkmime2
13500 libkpathsea4 libkpimexchange1 libkpimidentities1 libkscan1
13501 libksieve0 libktnef1 liblockdev1 libltdl3 libmagick10 libmimelib1c2a
13502 libmozjs1d libmpcdec3 libneon27 libnm-util0 libopensync0 libpisock9
13503 libpoppler-glib3 libpoppler-qt2 libpoppler3 libraw1394-8 libsmbios2
13504 libssh2-1 libsuitesparse-3.1.0 libtalloc1 libtiff-tools
13505 libxalan2-java libxalan2-java-gcj libxcb-xlib0 libxerces2-java
13506 libxerces2-java-gcj libxtrap6 mpeglib networkstatus
13507 openoffice.org-writer2latex pmount poster psutils quanta quanta-data
13508 superkaramba svgalibg1 tex-common texlive-base texlive-base-bin
13509 texlive-common texlive-doc-base texlive-fonts-recommended
13510 xserver-xorg-video-cyrix xserver-xorg-video-imstt
13511 xserver-xorg-video-nsc xserver-xorg-video-v4l xserver-xorg-video-vga
13512 xulrunner-1.9&lt;/p&gt;
13513
13514 </description>
13515 </item>
13516
13517 <item>
13518 <title>Automatic upgrade testing from Lenny to Squeeze</title>
13519 <link>http://people.skolelinux.org/pere/blog/Automatic_upgrade_testing_from_Lenny_to_Squeeze.html</link>
13520 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatic_upgrade_testing_from_Lenny_to_Squeeze.html</guid>
13521 <pubDate>Fri, 11 Jun 2010 22:50:00 +0200</pubDate>
13522 <description>&lt;p&gt;The last few days I have done some upgrade testing in Debian, to
13523 see if the upgrade from Lenny to Squeeze will go smoothly. A few bugs
13524 have been discovered and reported in the process
13525 (&lt;a href=&quot;http://bugs.debian.org/585410&quot;&gt;#585410&lt;/a&gt; in nagios3-cgi,
13526 &lt;a href=&quot;http://bugs.debian.org/584879&quot;&gt;#584879&lt;/a&gt; already fixed in
13527 enscript and &lt;a href=&quot;http://bugs.debian.org/584861&quot;&gt;#584861&lt;/a&gt; in
13528 kdebase-workspace-data), and to get a more regular testing going on, I
13529 am working on a script to automate the test.&lt;/p&gt;
13530
13531 &lt;p&gt;The idea is to create a Lenny chroot and use tasksel to install a
13532 Gnome or KDE desktop installation inside the chroot before upgrading
13533 it. To ensure no services are started in the chroot, a policy-rc.d
13534 script is inserted. To make sure tasksel believe it is to install a
13535 desktop on a laptop, the tasksel tests are replaced in the chroot
13536 (only acceptable because this is a throw-away chroot).&lt;/p&gt;
13537
13538 &lt;p&gt;A naive upgrade from Lenny to Squeeze using aptitude dist-upgrade
13539 currently always fail because udev refuses to upgrade with the kernel
13540 in Lenny, so to avoid that problem the file /etc/udev/kernel-upgrade
13541 is created. The bug report
13542 &lt;a href=&quot;http://bugs.debian.org/566000&quot;&gt;#566000&lt;/a&gt; make me suspect
13543 this problem do not trigger in a chroot, but I touch the file anyway
13544 to make sure the upgrade go well. Testing on virtual and real
13545 hardware have failed me because of udev so far, and creating this file
13546 do the trick in such settings anyway. This is a
13547 &lt;a href=&quot;http://www.linuxquestions.org/questions/debian-26/failed-dist-upgrade-due-to-udev-config_sysfs_deprecated-nonsense-804130/&quot;&gt;known
13548 issue&lt;/a&gt; and the current udev behaviour is intended by the udev
13549 maintainer because he lack the resources to rewrite udev to keep
13550 working with old kernels or something like that. I really wish the
13551 udev upstream would keep udev backwards compatible, to avoid such
13552 upgrade problem, but given that they fail to do so, I guess
13553 documenting the way out of this mess is the best option we got for
13554 Debian Squeeze.&lt;/p&gt;
13555
13556 &lt;p&gt;Anyway, back to the task at hand, testing upgrades. This test
13557 script, which I call &lt;tt&gt;upgrade-test&lt;/tt&gt; for now, is doing the
13558 trick:&lt;/p&gt;
13559
13560 &lt;blockquote&gt;&lt;pre&gt;
13561 #!/bin/sh
13562 set -ex
13563
13564 if [ &quot;$1&quot; ] ; then
13565 desktop=$1
13566 else
13567 desktop=gnome
13568 fi
13569
13570 from=lenny
13571 to=squeeze
13572
13573 exec &amp;lt; /dev/null
13574 unset LANG
13575 mirror=http://ftp.skolelinux.org/debian
13576 tmpdir=chroot-$from-upgrade-$to-$desktop
13577 fuser -mv .
13578 debootstrap $from $tmpdir $mirror
13579 chroot $tmpdir aptitude update
13580 cat &gt; $tmpdir/usr/sbin/policy-rc.d &amp;lt;&amp;lt;EOF
13581 #!/bin/sh
13582 exit 101
13583 EOF
13584 chmod a+rx $tmpdir/usr/sbin/policy-rc.d
13585 exit_cleanup() {
13586 umount $tmpdir/proc
13587 }
13588 mount -t proc proc $tmpdir/proc
13589 # Make sure proc is unmounted also on failure
13590 trap exit_cleanup EXIT INT
13591
13592 chroot $tmpdir aptitude -y install debconf-utils
13593
13594 # Make sure tasksel autoselection trigger. It need the test scripts
13595 # to return the correct answers.
13596 echo tasksel tasksel/desktop multiselect $desktop | \
13597 chroot $tmpdir debconf-set-selections
13598
13599 # Include the desktop and laptop task
13600 for test in desktop laptop ; do
13601 echo &gt; $tmpdir/usr/lib/tasksel/tests/$test &amp;lt;&amp;lt;EOF
13602 #!/bin/sh
13603 exit 2
13604 EOF
13605 chmod a+rx $tmpdir/usr/lib/tasksel/tests/$test
13606 done
13607
13608 DEBIAN_FRONTEND=noninteractive
13609 DEBIAN_PRIORITY=critical
13610 export DEBIAN_FRONTEND DEBIAN_PRIORITY
13611 chroot $tmpdir tasksel --new-install
13612
13613 echo deb $mirror $to main &gt; $tmpdir/etc/apt/sources.list
13614 chroot $tmpdir aptitude update
13615 touch $tmpdir/etc/udev/kernel-upgrade
13616 chroot $tmpdir aptitude -y dist-upgrade
13617 fuser -mv
13618 &lt;/pre&gt;&lt;/blockquote&gt;
13619
13620 &lt;p&gt;I suspect it would be useful to test upgrades with both apt-get and
13621 with aptitude, but I have not had time to look at how they behave
13622 differently so far. I hope to get a cron job running to do the test
13623 regularly and post the result on the web. The Gnome upgrade currently
13624 work, while the KDE upgrade fail because of the bug in
13625 kdebase-workspace-data&lt;/p&gt;
13626
13627 &lt;p&gt;I am not quite sure what kind of extract from the huge upgrade logs
13628 (KDE 167 KiB, Gnome 516 KiB) it make sense to include in this blog
13629 post, so I will refrain from trying. I can report that for Gnome,
13630 aptitude report 760 packages upgraded, 448 newly installed, 129 to
13631 remove and 1 not upgraded and 1024MB need to be downloaded while for
13632 KDE the same numbers are 702 packages upgraded, 507 newly installed,
13633 193 to remove and 0 not upgraded and 1117MB need to be downloaded&lt;/p&gt;
13634
13635 &lt;p&gt;I am very happy to notice that the Gnome desktop + laptop upgrade
13636 is able to migrate to dependency based boot sequencing and parallel
13637 booting without a hitch. Was unsure if there were still bugs with
13638 packages failing to clean up their obsolete init.d script during
13639 upgrades, and no such problem seem to affect the Gnome desktop+laptop
13640 packages.&lt;/p&gt;
13641 </description>
13642 </item>
13643
13644 <item>
13645 <title>Upstart or sysvinit - as init.d scripts see it</title>
13646 <link>http://people.skolelinux.org/pere/blog/Upstart_or_sysvinit___as_init_d_scripts_see_it.html</link>
13647 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Upstart_or_sysvinit___as_init_d_scripts_see_it.html</guid>
13648 <pubDate>Sun, 6 Jun 2010 23:55:00 +0200</pubDate>
13649 <description>&lt;p&gt;If Debian is to migrate to upstart on Linux, I expect some init.d
13650 scripts to migrate (some of) their operations to upstart job while
13651 keeping the init.d for hurd and kfreebsd. The packages with such
13652 needs will need a way to get their init.d scripts to behave
13653 differently when used with sysvinit and with upstart. Because of
13654 this, I had a look at the environment variables set when a init.d
13655 script is running under upstart, and when it is not.&lt;/p&gt;
13656
13657 &lt;p&gt;With upstart, I notice these environment variables are set when a
13658 script is started from rcS.d/ (ignoring some irrelevant ones like
13659 COLUMNS):&lt;/p&gt;
13660
13661 &lt;blockquote&gt;&lt;pre&gt;
13662 DEFAULT_RUNLEVEL=2
13663 previous=N
13664 PREVLEVEL=
13665 RUNLEVEL=
13666 runlevel=S
13667 UPSTART_EVENTS=startup
13668 UPSTART_INSTANCE=
13669 UPSTART_JOB=rc-sysinit
13670 &lt;/pre&gt;&lt;/blockquote&gt;
13671
13672 &lt;p&gt;With sysvinit, these environment variables are set for the same
13673 script.&lt;/p&gt;
13674
13675 &lt;blockquote&gt;&lt;pre&gt;
13676 INIT_VERSION=sysvinit-2.88
13677 previous=N
13678 PREVLEVEL=N
13679 RUNLEVEL=S
13680 runlevel=S
13681 &lt;/pre&gt;&lt;/blockquote&gt;
13682
13683 &lt;p&gt;The RUNLEVEL and PREVLEVEL environment variables passed on from
13684 sysvinit are not set by upstart. Not sure if it is intentional or not
13685 to not be compatible with sysvinit in this regard.&lt;/p&gt;
13686
13687 &lt;p&gt;For scripts needing to behave differently when upstart is used,
13688 looking for the UPSTART_JOB environment variable seem to be a good
13689 choice.&lt;/p&gt;
13690 </description>
13691 </item>
13692
13693 <item>
13694 <title>A manual for standards wars...</title>
13695 <link>http://people.skolelinux.org/pere/blog/A_manual_for_standards_wars___.html</link>
13696 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_manual_for_standards_wars___.html</guid>
13697 <pubDate>Sun, 6 Jun 2010 14:15:00 +0200</pubDate>
13698 <description>&lt;p&gt;Via the
13699 &lt;a href=&quot;http://feedproxy.google.com/~r/robweir/antic-atom/~3/QzU4RgoAGMg/weekly-links-10.html&quot;&gt;blog
13700 of Rob Weir&lt;/a&gt; I came across the very interesting essay named
13701 &lt;a href=&quot;http://faculty.haas.berkeley.edu/shapiro/wars.pdf&quot;&gt;The Art of
13702 Standards Wars&lt;/a&gt; (PDF 25 pages). I recommend it for everyone
13703 following the standards wars of today.&lt;/p&gt;
13704 </description>
13705 </item>
13706
13707 <item>
13708 <title>Sitesummary tip: Listing computer hardware models used at site</title>
13709 <link>http://people.skolelinux.org/pere/blog/Sitesummary_tip__Listing_computer_hardware_models_used_at_site.html</link>
13710 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Sitesummary_tip__Listing_computer_hardware_models_used_at_site.html</guid>
13711 <pubDate>Thu, 3 Jun 2010 12:05:00 +0200</pubDate>
13712 <description>&lt;p&gt;When using sitesummary at a site to track machines, it is possible
13713 to get a list of the machine types in use thanks to the DMI
13714 information extracted from each machine. The script to do so is
13715 included in the sitesummary package, and here is example output from
13716 the Skolelinux build servers:&lt;/p&gt;
13717
13718 &lt;blockquote&gt;&lt;pre&gt;
13719 maintainer:~# /usr/lib/sitesummary/hardware-model-summary
13720 vendor count
13721 Dell Computer Corporation 1
13722 PowerEdge 1750 1
13723 IBM 1
13724 eserver xSeries 345 -[8670M1X]- 1
13725 Intel 2
13726 [no-dmi-info] 3
13727 maintainer:~#
13728 &lt;/pre&gt;&lt;/blockquote&gt;
13729
13730 &lt;p&gt;The quality of the report depend on the quality of the DMI tables
13731 provided in each machine. Here there are Intel machines without model
13732 information listed with Intel as vendor and no model, and virtual Xen
13733 machines listed as [no-dmi-info]. One can add -l as a command line
13734 option to list the individual machines.&lt;/p&gt;
13735
13736 &lt;p&gt;A larger list is
13737 &lt;a href=&quot;http://narvikskolen.no/sitesummary/&quot;&gt;available from the the
13738 city of Narvik&lt;/a&gt;, which uses Skolelinux on all their shools and also
13739 provide the basic sitesummary report publicly. In their report there
13740 are ~1400 machines. I know they use both Ubuntu and Skolelinux on
13741 their machines, and as sitesummary is available in both distributions,
13742 it is trivial to get all of them to report to the same central
13743 collector.&lt;/p&gt;
13744 </description>
13745 </item>
13746
13747 <item>
13748 <title>KDM fail at boot with NVidia cards - and no one try to fix it?</title>
13749 <link>http://people.skolelinux.org/pere/blog/KDM_fail_at_boot_with_NVidia_cards___and_no_one_try_to_fix_it_.html</link>
13750 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/KDM_fail_at_boot_with_NVidia_cards___and_no_one_try_to_fix_it_.html</guid>
13751 <pubDate>Tue, 1 Jun 2010 17:05:00 +0200</pubDate>
13752 <description>&lt;p&gt;It is strange to watch how a bug in Debian causing KDM to fail to
13753 start at boot when an NVidia video card is used is handled. The
13754 problem seem to be that the nvidia X.org driver uses a long time to
13755 initialize, and this duration is longer than kdm is configured to
13756 wait.&lt;/p&gt;
13757
13758 &lt;p&gt;I came across two bugs related to this issue,
13759 &lt;a href=&quot;http://bugs.debian.org/583312&quot;&gt;#583312&lt;/a&gt; initially filed
13760 against initscripts and passed on to nvidia-glx when it became obvious
13761 that the nvidia drivers were involved, and
13762 &lt;a href=&quot;http://bugs.debian.org/524751&quot;&gt;#524751&lt;/a&gt; initially filed against
13763 kdm and passed on to src:nvidia-graphics-drivers for unknown reasons.&lt;/p&gt;
13764
13765 &lt;p&gt;To me, it seem that no-one is interested in actually solving the
13766 problem nvidia video card owners experience and make sure the Debian
13767 distribution work out of the box for these users. The nvidia driver
13768 maintainers expect kdm to be set up to wait longer, while kdm expect
13769 the nvidia driver maintainers to fix the driver to start faster, and
13770 while they wait for each other I guess the users end up switching to a
13771 distribution that work for them. I have no idea what the solution is,
13772 but I am pretty sure that waiting for each other is not it.&lt;/p&gt;
13773
13774 &lt;p&gt;I wonder why we end up handling bugs this way.&lt;/p&gt;
13775 </description>
13776 </item>
13777
13778 <item>
13779 <title>Parallellized boot seem to hold up well in Debian/testing</title>
13780 <link>http://people.skolelinux.org/pere/blog/Parallellized_boot_seem_to_hold_up_well_in_Debian_testing.html</link>
13781 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Parallellized_boot_seem_to_hold_up_well_in_Debian_testing.html</guid>
13782 <pubDate>Thu, 27 May 2010 23:55:00 +0200</pubDate>
13783 <description>&lt;p&gt;A few days ago, parallel booting was enabled in Debian/testing.
13784 The feature seem to hold up pretty well, but three fairly serious
13785 issues are known and should be solved:
13786
13787 &lt;p&gt;&lt;ul&gt;
13788
13789 &lt;li&gt;The wicd package seen to
13790 &lt;a href=&quot;http://bugs.debian.org/508289&quot;&gt;break NFS mounting&lt;/a&gt; and
13791 &lt;a href=&quot;http://bugs.debian.org/581586&quot;&gt;network setup&lt;/a&gt; when
13792 parallel booting is enabled. No idea why, but the wicd maintainer
13793 seem to be on the case.&lt;/li&gt;
13794
13795 &lt;li&gt;The nvidia X driver seem to
13796 &lt;a href=&quot;http://bugs.debian.org/583312&quot;&gt;have a race condition&lt;/a&gt;
13797 triggered more easily when parallel booting is in effect. The
13798 maintainer is on the case.&lt;/li&gt;
13799
13800 &lt;li&gt;The sysv-rc package fail to properly enable dependency based boot
13801 sequencing (the shutdown is broken) when old file-rc users
13802 &lt;a href=&quot;http://bugs.debian.org/575080&quot;&gt;try to switch back&lt;/a&gt; to
13803 sysv-rc. One way to solve it would be for file-rc to create
13804 /etc/init.d/.legacy-bootordering, and another is to try to make
13805 sysv-rc more robust. Will investigate some more and probably upload a
13806 workaround in sysv-rc to help those trying to move from file-rc to
13807 sysv-rc get a working shutdown.&lt;/li&gt;
13808
13809 &lt;/ul&gt;&lt;/p&gt;
13810
13811 &lt;p&gt;All in all not many surprising issues, and all of them seem
13812 solvable before Squeeze is released. In addition to these there are
13813 some packages with bugs in their dependencies and run level settings,
13814 which I expect will be fixed in a reasonable time span.&lt;/p&gt;
13815
13816 &lt;p&gt;If you report any problems with dependencies in init.d scripts to
13817 the BTS, please usertag the report to get it to show up at
13818 &lt;a href=&quot;http://bugs.debian.org/cgi-bin/pkgreport.cgi?users=initscripts-ng-devel@lists.alioth.debian.org&quot;&gt;the
13819 list of usertagged bugs related to this&lt;/a&gt;.&lt;/p&gt;
13820
13821 &lt;p&gt;Update: Correct bug number to file-rc issue.&lt;/p&gt;
13822 </description>
13823 </item>
13824
13825 <item>
13826 <title>More flexible firmware handling in debian-installer</title>
13827 <link>http://people.skolelinux.org/pere/blog/More_flexible_firmware_handling_in_debian_installer.html</link>
13828 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/More_flexible_firmware_handling_in_debian_installer.html</guid>
13829 <pubDate>Sat, 22 May 2010 21:30:00 +0200</pubDate>
13830 <description>&lt;p&gt;After a long break from debian-installer development, I finally
13831 found time today to return to the project. Having to spend less time
13832 working dependency based boot in debian, as it is almost complete now,
13833 definitely helped freeing some time.&lt;/p&gt;
13834
13835 &lt;p&gt;A while back, I ran into a problem while working on Debian Edu. We
13836 include some firmware packages on the Debian Edu CDs, those needed to
13837 get disk and network controllers working. Without having these
13838 firmware packages available during installation, it is impossible to
13839 install Debian Edu on the given machine, and because our target group
13840 are non-technical people, asking them to provide firmware packages on
13841 an external medium is a support pain. Initially, I expected it to be
13842 enough to include the firmware packages on the CD to get
13843 debian-installer to find and use them. This proved to be wrong.
13844 Next, I hoped it was enough to symlink the relevant firmware packages
13845 to some useful location on the CD (tried /cdrom/ and
13846 /cdrom/firmware/). This also proved to not work, and at this point I
13847 found time to look at the debian-installer code to figure out what was
13848 going to work.&lt;/p&gt;
13849
13850 &lt;p&gt;The firmware loading code is in the hw-detect package, and a closer
13851 look revealed that it would only look for firmware packages outside
13852 the installation media, so the CD was never checked for firmware
13853 packages. It would only check USB sticks, floppies and other
13854 &quot;external&quot; media devices. Today I changed it to also look in the
13855 /cdrom/firmware/ directory on the mounted CD or DVD, which should
13856 solve the problem I ran into with Debian edu. I also changed it to
13857 look in /firmware/, to make sure the installer also find firmware
13858 provided in the initrd when booting the installer via PXE, to allow us
13859 to provide the same feature in the PXE setup included in Debian
13860 Edu.&lt;/p&gt;
13861
13862 &lt;p&gt;To make sure firmware deb packages with a license questions are not
13863 activated without asking if the license is accepted, I extended
13864 hw-detect to look for preinst scripts in the firmware packages, and
13865 run these before activating the firmware during installation. The
13866 license question is asked using debconf in the preinst, so this should
13867 solve the issue for the firmware packages I have looked at so far.&lt;/p&gt;
13868
13869 &lt;p&gt;If you want to discuss the details of these features, please
13870 contact us on debian-boot@lists.debian.org.&lt;/p&gt;
13871 </description>
13872 </item>
13873
13874 <item>
13875 <title>Pieces of the roaming laptop puzzle in Debian</title>
13876 <link>http://people.skolelinux.org/pere/blog/Pieces_of_the_roaming_laptop_puzzle_in_Debian.html</link>
13877 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Pieces_of_the_roaming_laptop_puzzle_in_Debian.html</guid>
13878 <pubDate>Wed, 19 May 2010 19:00:00 +0200</pubDate>
13879 <description>&lt;p&gt;Today, the last piece of the puzzle for roaming laptops in Debian
13880 Edu finally entered the Debian archive. Today, the new
13881 &lt;a href=&quot;http://packages.qa.debian.org/libp/libpam-mklocaluser.html&quot;&gt;libpam-mklocaluser&lt;/a&gt;
13882 package was accepted. Two days ago, two other pieces was accepted
13883 into unstable. The
13884 &lt;a href=&quot;http://packages.qa.debian.org/p/pam-python.html&quot;&gt;pam-python&lt;/a&gt;
13885 package needed by libpam-mklocaluser, and the
13886 &lt;a href=&quot;http://packages.qa.debian.org/s/sssd.html&quot;&gt;sssd&lt;/a&gt; package
13887 passed NEW on Monday. In addition, the
13888 &lt;a href=&quot;http://packages.qa.debian.org/libp/libpam-ccreds.html&quot;&gt;libpam-ccreds&lt;/a&gt;
13889 package we need is in experimental (version 10-4) since Saturday, and
13890 hopefully will be moved to unstable soon.&lt;/p&gt;
13891
13892 &lt;p&gt;This collection of packages allow for two different setups for
13893 roaming laptops. The traditional setup would be using libpam-ccreds,
13894 nscd and libpam-mklocaluser with LDAP or Kerberos authentication,
13895 which should work out of the box if the configuration changes proposed
13896 for nscd in &lt;a href=&quot;http://bugs.debian.org/485282&quot;&gt;BTS report
13897 #485282&lt;/a&gt; is implemented. The alternative setup is to use sssd with
13898 libpam-mklocaluser to connect to LDAP or Kerberos and let sssd take
13899 care of the caching of passwords and group information.&lt;/p&gt;
13900
13901 &lt;p&gt;I have so far been unable to get sssd to work with the LDAP server
13902 at the University, but suspect the issue is some SSL/GnuTLS related
13903 problem with the server certificate. I plan to update the Debian
13904 package to version 1.2, which is scheduled for next week, and hope to
13905 find time to make sure the next release will include both the
13906 Debian/Ubuntu specific patches. Upstream is friendly and responsive,
13907 and I am sure we will find a good solution.&lt;/p&gt;
13908
13909 &lt;p&gt;The idea is to set up the roaming laptops to authenticate using
13910 LDAP or Kerberos and create a local user with home directory in /home/
13911 when a usre in LDAP logs in via KDM or GDM for the first time, and
13912 cache the password for offline checking, as well as caching group
13913 memberhips and other relevant LDAP information. The
13914 libpam-mklocaluser package was created to make sure the local home
13915 directory is in /home/, instead of /site/server/directory/ which would
13916 be the home directory if pam_mkhomedir was used. To avoid confusion
13917 with support requests and configuration, we do not want local laptops
13918 to have users in a path that is used for the same users home directory
13919 on the home directory servers.&lt;/p&gt;
13920
13921 &lt;p&gt;One annoying problem with gdm is that it do not show the PAM
13922 message passed to the user from libpam-mklocaluser when the local user
13923 is created. Instead gdm simply reject the login with some generic
13924 message. The message is shown in kdm, ssh and login, so I guess it is
13925 a bug in gdm. Have not investigated if there is some other message
13926 type that can be used instead to get gdm to also show the message.&lt;/p&gt;
13927
13928 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
13929 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
13930 </description>
13931 </item>
13932
13933 <item>
13934 <title>Parallellized boot is now the default in Debian/unstable</title>
13935 <link>http://people.skolelinux.org/pere/blog/Parallellized_boot_is_now_the_default_in_Debian_unstable.html</link>
13936 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Parallellized_boot_is_now_the_default_in_Debian_unstable.html</guid>
13937 <pubDate>Fri, 14 May 2010 22:40:00 +0200</pubDate>
13938 <description>&lt;p&gt;Since this evening, parallel booting is the default in
13939 Debian/unstable for machines using dependency based boot sequencing.
13940 Apparently the testing of concurrent booting has been wider than
13941 expected, if I am to believe the
13942 &lt;a href=&quot;http://lists.debian.org/debian-devel/2010/05/msg00122.html&quot;&gt;input
13943 on debian-devel@&lt;/a&gt;, and I concluded a few days ago to move forward
13944 with the feature this weekend, to give us some time to detect any
13945 remaining problems before Squeeze is frozen. If serious problems are
13946 detected, it is simple to change the default back to sequential boot.
13947 The upload of the new sysvinit package also activate a new upstream
13948 version.&lt;/p&gt;
13949
13950 More information about
13951 &lt;a href=&quot;http://wiki.debian.org/LSBInitScripts/DependencyBasedBoot&quot;&gt;dependency
13952 based boot sequencing&lt;/a&gt; is available from the Debian wiki. It is
13953 currently possible to disable parallel booting when one run into
13954 problems caused by it, by adding this line to /etc/default/rcS:&lt;/p&gt;
13955
13956 &lt;blockquote&gt;&lt;pre&gt;
13957 CONCURRENCY=none
13958 &lt;/pre&gt;&lt;/blockquote&gt;
13959
13960 &lt;p&gt;If you report any problems with dependencies in init.d scripts to
13961 the BTS, please usertag the report to get it to show up at
13962 &lt;a href=&quot;http://bugs.debian.org/cgi-bin/pkgreport.cgi?users=initscripts-ng-devel@lists.alioth.debian.org&quot;&gt;the
13963 list of usertagged bugs related to this&lt;/a&gt;.&lt;/p&gt;
13964 </description>
13965 </item>
13966
13967 <item>
13968 <title>Sitesummary tip: Listing MAC address of all clients</title>
13969 <link>http://people.skolelinux.org/pere/blog/Sitesummary_tip__Listing_MAC_address_of_all_clients.html</link>
13970 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Sitesummary_tip__Listing_MAC_address_of_all_clients.html</guid>
13971 <pubDate>Fri, 14 May 2010 21:10:00 +0200</pubDate>
13972 <description>&lt;p&gt;In the recent Debian Edu versions, the
13973 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/HowTo/SiteSummary&quot;&gt;sitesummary
13974 system&lt;/a&gt; is used to keep track of the machines in the school
13975 network. Each machine will automatically report its status to the
13976 central server after boot and once per night. The network setup is
13977 also reported, and using this information it is possible to get the
13978 MAC address of all network interfaces in the machines. This is useful
13979 to update the DHCP configuration.&lt;/p&gt;
13980
13981 &lt;p&gt;To give some idea how to use sitesummary, here is a one-liner to
13982 ist all MAC addresses of all machines reporting to sitesummary. Run
13983 this on the collector host:&lt;/p&gt;
13984
13985 &lt;blockquote&gt;&lt;pre&gt;
13986 perl -MSiteSummary -e &#39;for_all_hosts(sub { print join(&quot; &quot;, get_macaddresses(shift)), &quot;\n&quot;; });&#39;
13987 &lt;/pre&gt;&lt;/blockquote&gt;
13988
13989 &lt;p&gt;This will list all MAC addresses assosiated with all machine, one
13990 line per machine and with space between the MAC addresses.&lt;/p&gt;
13991
13992 &lt;p&gt;To allow system administrators easier job at adding static DHCP
13993 addresses for hosts, it would be possible to extend this to fetch
13994 machine information from sitesummary and update the DHCP and DNS
13995 tables in LDAP using this information. Such tool is unfortunately not
13996 written yet.&lt;/p&gt;
13997 </description>
13998 </item>
13999
14000 <item>
14001 <title>systemd, an interesting alternative to upstart</title>
14002 <link>http://people.skolelinux.org/pere/blog/systemd__an_interesting_alternative_to_upstart.html</link>
14003 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/systemd__an_interesting_alternative_to_upstart.html</guid>
14004 <pubDate>Thu, 13 May 2010 22:20:00 +0200</pubDate>
14005 <description>&lt;p&gt;The last few days a new boot system called
14006 &lt;a href=&quot;http://www.freedesktop.org/wiki/Software/systemd&quot;&gt;systemd&lt;/a&gt;
14007 has been
14008 &lt;a href=&quot;http://0pointer.de/blog/projects/systemd.html&quot;&gt;introduced&lt;/a&gt;
14009
14010 to the free software world. I have not yet had time to play around
14011 with it, but it seem to be a very interesting alternative to
14012 &lt;a href=&quot;http://upstart.ubuntu.com/&quot;&gt;upstart&lt;/a&gt;, and might prove to be
14013 a good alternative for Debian when we are able to switch to an event
14014 based boot system. Tollef is
14015 &lt;a href=&quot;http://bugs.debian.org/580814&quot;&gt;in the process&lt;/a&gt; of getting
14016 systemd into Debian, and I look forward to seeing how well it work. I
14017 like the fact that systemd handles init.d scripts with dependency
14018 information natively, allowing them to run in parallel where upstart
14019 at the moment do not.&lt;/p&gt;
14020
14021 &lt;p&gt;Unfortunately do systemd have the same problem as upstart regarding
14022 platform support. It only work on recent Linux kernels, and also need
14023 some new kernel features enabled to function properly. This means
14024 kFreeBSD and Hurd ports of Debian will need a port or a different boot
14025 system. Not sure how that will be handled if systemd proves to be the
14026 way forward.&lt;/p&gt;
14027
14028 &lt;p&gt;In the mean time, based on the
14029 &lt;a href=&quot;http://lists.debian.org/debian-devel/2010/05/msg00122.html&quot;&gt;input
14030 on debian-devel@&lt;/a&gt; regarding parallel booting in Debian, I have
14031 decided to enable full parallel booting as the default in Debian as
14032 soon as possible (probably this weekend or early next week), to see if
14033 there are any remaining serious bugs in the init.d dependencies. A
14034 new version of the sysvinit package implementing this change is
14035 already in experimental. If all go well, Squeeze will be released
14036 with parallel booting enabled by default.&lt;/p&gt;
14037 </description>
14038 </item>
14039
14040 <item>
14041 <title>Parallellizing the boot in Debian Squeeze - ready for wider testing</title>
14042 <link>http://people.skolelinux.org/pere/blog/Parallellizing_the_boot_in_Debian_Squeeze___ready_for_wider_testing.html</link>
14043 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Parallellizing_the_boot_in_Debian_Squeeze___ready_for_wider_testing.html</guid>
14044 <pubDate>Thu, 6 May 2010 23:25:00 +0200</pubDate>
14045 <description>&lt;p&gt;These days, the init.d script dependencies in Squeeze are quite
14046 complete, so complete that it is actually possible to run all the
14047 init.d scripts in parallell based on these dependencies. If you want
14048 to test your Squeeze system, make sure
14049 &lt;a href=&quot;http://wiki.debian.org/LSBInitScripts/DependencyBasedBoot&quot;&gt;dependency
14050 based boot sequencing&lt;/a&gt; is enabled, and add this line to
14051 /etc/default/rcS:&lt;/p&gt;
14052
14053 &lt;blockquote&gt;&lt;pre&gt;
14054 CONCURRENCY=makefile
14055 &lt;/pre&gt;&lt;/blockquote&gt;
14056
14057 &lt;p&gt;That is it. It will cause sysv-rc to use the startpar tool to run
14058 scripts in parallel using the dependency information stored in
14059 /etc/init.d/.depend.boot, /etc/init.d/.depend.start and
14060 /etc/init.d/.depend.stop to order the scripts. Startpar is configured
14061 to try to start the kdm and gdm scripts as early as possible, and will
14062 start the facilities required by kdm or gdm as early as possible to
14063 make this happen.&lt;/p&gt;
14064
14065 &lt;p&gt;Give it a try, and see if you like the result. If some services
14066 fail to start properly, it is most likely because they have incomplete
14067 init.d script dependencies in their startup script (or some of their
14068 dependent scripts have incomplete dependencies). Report bugs and get
14069 the package maintainers to fix it. :)&lt;/p&gt;
14070
14071 &lt;p&gt;Running scripts in parallel could be the default in Debian when we
14072 manage to get the init.d script dependencies complete and correct. I
14073 expect we will get there in Squeeze+1, if we get manage to test and
14074 fix the remaining issues.&lt;/p&gt;
14075
14076 &lt;p&gt;If you report any problems with dependencies in init.d scripts to
14077 the BTS, please usertag the report to get it to show up at
14078 &lt;a href=&quot;http://bugs.debian.org/cgi-bin/pkgreport.cgi?users=initscripts-ng-devel@lists.alioth.debian.org&quot;&gt;the
14079 list of usertagged bugs related to this&lt;/a&gt;.&lt;/p&gt;
14080 </description>
14081 </item>
14082
14083 <item>
14084 <title>Forcing new users to change their password on first login</title>
14085 <link>http://people.skolelinux.org/pere/blog/Forcing_new_users_to_change_their_password_on_first_login.html</link>
14086 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Forcing_new_users_to_change_their_password_on_first_login.html</guid>
14087 <pubDate>Sun, 2 May 2010 13:47:00 +0200</pubDate>
14088 <description>&lt;p&gt;One interesting feature in Active Directory, is the ability to
14089 create a new user with an expired password, and thus force the user to
14090 change the password on the first login attempt.&lt;/p&gt;
14091
14092 &lt;p&gt;I&#39;m not quite sure how to do that with the LDAP setup in Debian
14093 Edu, but did some initial testing with a local account. The account
14094 and password aging information is available in /etc/shadow, but
14095 unfortunately, it is not possible to specify an expiration time for
14096 passwords, only a maximum age for passwords.&lt;/p&gt;
14097
14098 &lt;p&gt;A freshly created account (using adduser test) will have these
14099 settings in /etc/shadow:&lt;/p&gt;
14100
14101 &lt;blockquote&gt;&lt;pre&gt;
14102 root@tjener:~# chage -l test
14103 Last password change : May 02, 2010
14104 Password expires : never
14105 Password inactive : never
14106 Account expires : never
14107 Minimum number of days between password change : 0
14108 Maximum number of days between password change : 99999
14109 Number of days of warning before password expires : 7
14110 root@tjener:~#
14111 &lt;/pre&gt;&lt;/blockquote&gt;
14112
14113 &lt;p&gt;The only way I could come up with to create a user with an expired
14114 account, is to change the date of the last password change to the
14115 lowest value possible (January 1th 1970), and the maximum password age
14116 to the difference in days between that date and today. To make it
14117 simple, I went for 30 years (30 * 365 = 10950) and January 2th (to
14118 avoid testing if 0 is a valid value).&lt;/p&gt;
14119
14120 &lt;p&gt;After using these commands to set it up, it seem to work as
14121 intended:&lt;/p&gt;
14122
14123 &lt;blockquote&gt;&lt;pre&gt;
14124 root@tjener:~# chage -d 1 test; chage -M 10950 test
14125 root@tjener:~# chage -l test
14126 Last password change : Jan 02, 1970
14127 Password expires : never
14128 Password inactive : never
14129 Account expires : never
14130 Minimum number of days between password change : 0
14131 Maximum number of days between password change : 10950
14132 Number of days of warning before password expires : 7
14133 root@tjener:~#
14134 &lt;/pre&gt;&lt;/blockquote&gt;
14135
14136 &lt;p&gt;So far I have tested this with ssh and console, and kdm (in
14137 Squeeze) login, and all ask for a new password before login in the
14138 user (with ssh, I was thrown out and had to log in again).&lt;/p&gt;
14139
14140 &lt;p&gt;Perhaps we should set up something similar for Debian Edu, to make
14141 sure only the user itself have the account password?&lt;/p&gt;
14142
14143 &lt;p&gt;If you want to comment on or help out with implementing this for
14144 Debian Edu, please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
14145
14146 &lt;p&gt;Update 2010-05-02 17:20: Paul Tötterman tells me on IRC that the
14147 shadow(8) page in Debian/testing now state that setting the date of
14148 last password change to zero (0) will force the password to be changed
14149 on the first login. This was not mentioned in the manual in Lenny, so
14150 I did not notice this in my initial testing. I have tested it on
14151 Squeeze, and &#39;&lt;tt&gt;chage -d 0 username&lt;/tt&gt;&#39; do work there. I have not
14152 tested it on Lenny yet.&lt;/p&gt;
14153
14154 &lt;p&gt;Update 2010-05-02-19:05: Jim Paris tells me via email that an
14155 equivalent command to expire a password is &#39;&lt;tt&gt;passwd -e
14156 username&lt;/tt&gt;&#39;, which insert zero into the date of the last password
14157 change.&lt;/p&gt;
14158 </description>
14159 </item>
14160
14161 <item>
14162 <title>Thoughts on roaming laptop setup for Debian Edu</title>
14163 <link>http://people.skolelinux.org/pere/blog/Thoughts_on_roaming_laptop_setup_for_Debian_Edu.html</link>
14164 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Thoughts_on_roaming_laptop_setup_for_Debian_Edu.html</guid>
14165 <pubDate>Wed, 28 Apr 2010 20:40:00 +0200</pubDate>
14166 <description>&lt;p&gt;For some years now, I have wondered how we should handle laptops in
14167 Debian Edu. The Debian Edu infrastructure is mostly designed to
14168 handle stationary computers, and less suited for computers that come
14169 and go.&lt;/p&gt;
14170
14171 &lt;p&gt;Now I finally believe I have an sensible idea on how to adjust
14172 Debian Edu for laptops, by introducing a new profile for them, for
14173 example called Roaming Workstations. Here are my thought on this.
14174 The setup would consist of the following:&lt;/p&gt;
14175
14176 &lt;ul&gt;
14177
14178 &lt;li&gt;During installation, the user name of the owner / primary user of
14179 the laptop is requested and a local home directory is set up for
14180 the user, with uid and gid information fetched from the LDAP
14181 server. This allow the user to work also when offline. The
14182 central home directory can be available in a subdirectory on
14183 request, for example mounted via CIFS. It could be mounted
14184 automatically when a user log in while on the Debian Edu network,
14185 and unmounted when the machine is taken away (network down,
14186 hibernate, etc), it can be set up to do automatic mounting on
14187 request (using autofs), or perhaps some GUI button on the desktop
14188 can be used to access it when needed. Perhaps it is enough to use
14189 the fish protocol in KDE?&lt;/li&gt;
14190
14191 &lt;li&gt;Password checking is set up to use LDAP or Kerberos
14192 authentication when the machine is on the Debian Edu network, and
14193 to cache the password for offline checking when the machine unable
14194 to reach the LDAP or Kerberos server. This can be done using
14195 &lt;a href=&quot;http://www.padl.com/OSS/pam_ccreds.html&quot;&gt;libpam-ccreds&lt;/a&gt;
14196 or the Fedora developed
14197 &lt;a href=&quot;https://fedoraproject.org/wiki/Features/SSSD&quot;&gt;System
14198 Security Services Daemon&lt;/a&gt; packages.&lt;/li&gt;
14199
14200 &lt;li&gt;File synchronisation with the central home directory is set up
14201 using a shared directory in both the local and the central home
14202 directory, using unison.&lt;/li&gt;
14203
14204 &lt;li&gt;Printing should be set up to print to all printers broadcasting
14205 their existence on the local network, and should then work out of
14206 the box with CUPS. For sites needing accurate printer quotas, some
14207 system with Kerberos authentication or printing via ssh could be
14208 implemented.&lt;/li&gt;
14209
14210 &lt;li&gt;For users that should have local root access to their laptop,
14211 sudo should be used to allow this to the local user.&lt;/li&gt;
14212
14213 &lt;li&gt;It would be nice if user and group information from LDAP is
14214 cached on the client, but given that there are entries for the
14215 local user and primary group in /etc/, it should not be needed.&lt;/li&gt;
14216
14217 &lt;/ul&gt;
14218
14219 &lt;p&gt;I believe all the pieces to implement this are in Debian/testing at
14220 the moment. If we work quickly, we should be able to get this ready
14221 in time for the Squeeze release to freeze. Some of the pieces need
14222 tweaking, like libpam-ccreds should get support for pam-auth-update
14223 (&lt;a href=&quot;http://bugs.debian.org/566718&quot;&gt;#566718&lt;/a&gt;) and nslcd (or
14224 perhaps debian-edu-config) should get some integration code to stop
14225 its daemon when the LDAP server is unavailable to avoid long timeouts
14226 when disconnected from the net. If we get Kerberos enabled, we need
14227 to make sure we avoid long timeouts there too.&lt;/p&gt;
14228
14229 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
14230 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
14231 </description>
14232 </item>
14233
14234 <item>
14235 <title>Great book: &quot;Content: Selected Essays on Technology, Creativity, Copyright, and the Future of the Future&quot;</title>
14236 <link>http://people.skolelinux.org/pere/blog/Great_book___Content__Selected_Essays_on_Technology__Creativity__Copyright__and_the_Future_of_the_Future_.html</link>
14237 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Great_book___Content__Selected_Essays_on_Technology__Creativity__Copyright__and_the_Future_of_the_Future_.html</guid>
14238 <pubDate>Mon, 19 Apr 2010 17:10:00 +0200</pubDate>
14239 <description>&lt;p&gt;The last few weeks i have had the pleasure of reading a
14240 thought-provoking collection of essays by Cory Doctorow, on topics
14241 touching copyright, virtual worlds, the future of man when the
14242 conscience mind can be duplicated into a computer and many more. The
14243 book titled &quot;Content: Selected Essays on Technology, Creativity,
14244 Copyright, and the Future of the Future&quot; is available with few
14245 restrictions on the web, for example from
14246 &lt;a href=&quot;http://craphound.com/content/&quot;&gt;his own site&lt;/a&gt;. I read the
14247 epub-version from
14248 &lt;a href=&quot;http://www.feedbooks.com/book/2883&quot;&gt;feedbooks&lt;/a&gt; using
14249 &lt;a href=&quot;http://www.fbreader.org/&quot;&gt;fbreader&lt;/a&gt; and my N810. I
14250 strongly recommend this book.&lt;/p&gt;
14251 </description>
14252 </item>
14253
14254 <item>
14255 <title>Kerberos for Debian Edu/Squeeze?</title>
14256 <link>http://people.skolelinux.org/pere/blog/Kerberos_for_Debian_Edu_Squeeze_.html</link>
14257 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Kerberos_for_Debian_Edu_Squeeze_.html</guid>
14258 <pubDate>Wed, 14 Apr 2010 17:20:00 +0200</pubDate>
14259 <description>&lt;p&gt;&lt;a href=&quot;http://www.nuug.no/aktiviteter/20100413-kerberos/&quot;&gt;Yesterdays
14260 NUUG presentation&lt;/a&gt; about Kerberos was inspiring, and reminded me
14261 about the need to start using Kerberos in Skolelinux. Setting up a
14262 Kerberos server seem to be straight forward, and if we get this in
14263 place a long time before the Squeeze version of Debian freezes, we
14264 have a chance to migrate Skolelinux away from NFSv3 for the home
14265 directories, and over to an architecture where the infrastructure do
14266 not have to trust IP addresses and machines, and instead can trust
14267 users and cryptographic keys instead.&lt;/p&gt;
14268
14269 &lt;p&gt;A challenge will be integration and administration. Is there a
14270 Kerberos implementation for Debian where one can control the
14271 administration access in Kerberos using LDAP groups? With it, the
14272 school administration will have to maintain access control using flat
14273 files on the main server, which give a huge potential for errors.&lt;/p&gt;
14274
14275 &lt;p&gt;A related question I would like to know is how well Kerberos and
14276 pam-ccreds (offline password check) work together. Anyone know?&lt;/p&gt;
14277
14278 &lt;p&gt;Next step will be to use Kerberos for access control in Lwat and
14279 Nagios. I have no idea how much work that will be to implement. We
14280 would also need to document how to integrate with Windows AD, as such
14281 shared network will require two Kerberos realms that need to cooperate
14282 to work properly.&lt;/p&gt;
14283
14284 &lt;p&gt;I believe a good start would be to start using Kerberos on the
14285 skolelinux.no machines, and this way get ourselves experience with
14286 configuration and integration. A natural starting point would be
14287 setting up ldap.skolelinux.no as the Kerberos server, and migrate the
14288 rest of the machines from PAM via LDAP to PAM via Kerberos one at the
14289 time.&lt;/p&gt;
14290
14291 &lt;p&gt;If you would like to contribute to get this working in Skolelinux,
14292 I recommend you to see the video recording from yesterdays NUUG
14293 presentation, and start using Kerberos at home. The video show show
14294 up in a few days.&lt;/p&gt;
14295 </description>
14296 </item>
14297
14298 <item>
14299 <title>After 6 years of waiting, the Xreset.d feature is implemented</title>
14300 <link>http://people.skolelinux.org/pere/blog/After_6_years_of_waiting__the_Xreset_d_feature_is_implemented.html</link>
14301 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/After_6_years_of_waiting__the_Xreset_d_feature_is_implemented.html</guid>
14302 <pubDate>Sat, 6 Mar 2010 18:15:00 +0100</pubDate>
14303 <description>&lt;p&gt;6 years ago, as part of the Debian Edu development I am involved
14304 in, I asked for a hook in the kdm and gdm setup to run scripts as root
14305 when the user log out. A bug was submitted against the xfree86-common
14306 package in 2004 (&lt;a href=&quot;http://bugs.debian.org/230422&quot;&gt;#230422&lt;/a&gt;),
14307 and revisited every time Debian Edu was working on a new release.
14308 Today, this finally paid off.&lt;/p&gt;
14309
14310 &lt;p&gt;The framework for this feature was today commited to the git
14311 repositry for the xorg package, and the git repository for xdm has
14312 been updated to use this framework. Next on my agenda is to make sure
14313 kdm and gdm also add code to use this framework.&lt;/p&gt;
14314
14315 &lt;p&gt;In Debian Edu, we want to ability to run commands as root when the
14316 user log out, to get rid of runaway processes and do general cleanup
14317 after a user. With this framework in place, we finally can do that in
14318 a generic way that work with all display managers using this
14319 framework. My goal is to get all display managers in Debian use it,
14320 similar to how they use the Xsession.d framework today.&lt;p&gt;
14321 </description>
14322 </item>
14323
14324 <item>
14325 <title>Debian Edu / Skolelinux based on Lenny released, work continues</title>
14326 <link>http://people.skolelinux.org/pere/blog/Debian_Edu___Skolelinux_based_on_Lenny_released__work_continues.html</link>
14327 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu___Skolelinux_based_on_Lenny_released__work_continues.html</guid>
14328 <pubDate>Thu, 11 Feb 2010 17:15:00 +0100</pubDate>
14329 <description>&lt;p&gt;On Tuesday, the Debian/Lenny based version of
14330 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt; was finally
14331 shipped. This was a major leap forward for the project, and I am very
14332 pleased that we finally got the release wrapped up. Work on the first
14333 point release starts imediately, as we plan to get that one out a
14334 month after the major release, to include all fixes for bugs we found
14335 and fixed too late in the release process to include last Tuesday.&lt;/p&gt;
14336
14337 &lt;p&gt;Perhaps it even is time for some partying?&lt;/p&gt;
14338
14339 &lt;p&gt;After this first point release, my plan is to focus again on the
14340 next major release, based on Squeeze. We will try to get as many of
14341 the fixes we need into the official Debian packages before the freeze,
14342 and have just a few weeks or months to make it happen.&lt;/p&gt;
14343 </description>
14344 </item>
14345
14346 <item>
14347 <title>Automatic Munin and Nagios configuration</title>
14348 <link>http://people.skolelinux.org/pere/blog/Automatic_Munin_and_Nagios_configuration.html</link>
14349 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatic_Munin_and_Nagios_configuration.html</guid>
14350 <pubDate>Wed, 27 Jan 2010 15:15:00 +0100</pubDate>
14351 <description>&lt;p&gt;One of the new features in the next Debian/Lenny based release of
14352 Debian Edu/Skolelinux, which is scheduled for release in the next few
14353 days, is automatic configuration of the service monitoring system
14354 Nagios. The previous release had automatic configuration of trend
14355 analysis using Munin, and this Lenny based release take that a step
14356 further.&lt;/p&gt;
14357
14358 &lt;p&gt;When installing a Debian Edu Main-server, it is automatically
14359 configured as a Munin and Nagios server. In addition, it is
14360 configured to be a server for the
14361 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/HowTo/SiteSummary&quot;&gt;SiteSummary
14362 system&lt;/a&gt; I have written for use in Debian Edu. The SiteSummary
14363 system is inspired by a system used by the University of Oslo where I
14364 work. In short, the system provide a centralised collector of
14365 information about the computers on the network, and a client on each
14366 computer submitting information to this collector. This allow for
14367 automatic information on which packages are installed on each machine,
14368 which kernel the machines are using, what kind of configuration the
14369 packages got etc. This also allow us to automatically generate Munin
14370 and Nagios configuration.&lt;/p&gt;
14371
14372 &lt;p&gt;All computers reporting to the sitesummary collector with the
14373 munin-node package installed is automatically enabled as a Munin
14374 client and graphs from the statistics collected from that machine show
14375 up automatically on http://www/munin/ on the Main-server.&lt;/p&gt;
14376
14377 &lt;p&gt;All non-laptop computers reporting to the sitesummary collector are
14378 automatically monitored for network presence (ping and any network
14379 services detected). In addition, all computers (also laptops) with
14380 the nagios-nrpe-server package installed and configured the way
14381 sitesummary would configure it, are monitored for full disks, software
14382 raid status, swap free and other checks that need to run locally on
14383 the machine.&lt;/p&gt;
14384
14385 &lt;p&gt;The result is that the administrator on a school using Debian Edu
14386 based on Lenny will be able to check the health of his installation
14387 with one look at the Nagios settings, without having to spend any time
14388 keeping the Nagios configuration up-to-date.&lt;/p&gt;
14389
14390 &lt;p&gt;The only configuration one need to do to get Nagios up and running
14391 is to set the password used to get access via HTTP. The system
14392 administrator need to run &quot;&lt;tt&gt;htpasswd /etc/nagios3/htpasswd.users
14393 nagiosadmin&lt;/tt&gt;&quot; to create a nagiosadmin user and set a password for
14394 it to be able to log into the Nagios web pages. After that,
14395 everything is taken care of.&lt;/p&gt;
14396 </description>
14397 </item>
14398
14399 <item>
14400 <title>Relative popularity of document formats (MS Office vs. ODF)</title>
14401 <link>http://people.skolelinux.org/pere/blog/Relative_popularity_of_document_formats__MS_Office_vs__ODF_.html</link>
14402 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Relative_popularity_of_document_formats__MS_Office_vs__ODF_.html</guid>
14403 <pubDate>Wed, 12 Aug 2009 15:50:00 +0200</pubDate>
14404 <description>&lt;p&gt;Just for fun, I did a search right now on Google for a few file ODF
14405 and MS Office based formats (not to be mistaken for ISO or ECMA
14406 OOXML), to get an idea of their relative usage. I searched using
14407 &#39;filetype:odt&#39; and equvalent terms, and got these results:&lt;/P&gt;
14408
14409 &lt;table&gt;
14410 &lt;tr&gt;&lt;th&gt;Type&lt;/th&gt;&lt;th&gt;ODF&lt;/th&gt;&lt;th&gt;MS Office&lt;/th&gt;&lt;/tr&gt;
14411 &lt;tr&gt;&lt;td&gt;Tekst&lt;/td&gt; &lt;td&gt;odt:282000&lt;/td&gt; &lt;td&gt;docx:308000&lt;/td&gt;&lt;/tr&gt;
14412 &lt;tr&gt;&lt;td&gt;Presentasjon&lt;/td&gt; &lt;td&gt;odp:75600&lt;/td&gt; &lt;td&gt;pptx:183000&lt;/td&gt;&lt;/tr&gt;
14413 &lt;tr&gt;&lt;td&gt;Regneark&lt;/td&gt; &lt;td&gt;ods:26500 &lt;/td&gt; &lt;td&gt;xlsx:145000&lt;/td&gt;&lt;/tr&gt;
14414 &lt;/table&gt;
14415
14416 &lt;p&gt;Next, I added a &#39;site:no&#39; limit to get the numbers for Norway, and
14417 got these numbers:&lt;/p&gt;
14418
14419 &lt;table&gt;
14420 &lt;tr&gt;&lt;th&gt;Type&lt;/th&gt;&lt;th&gt;ODF&lt;/th&gt;&lt;th&gt;MS Office&lt;/th&gt;&lt;/tr&gt;
14421 &lt;tr&gt;&lt;td&gt;Tekst&lt;/td&gt; &lt;td&gt;odt:2480 &lt;/td&gt; &lt;td&gt;docx:4460&lt;/td&gt;&lt;/tr&gt;
14422 &lt;tr&gt;&lt;td&gt;Presentasjon&lt;/td&gt; &lt;td&gt;odp:299 &lt;/td&gt; &lt;td&gt;pptx:741&lt;/td&gt;&lt;/tr&gt;
14423 &lt;tr&gt;&lt;td&gt;Regneark&lt;/td&gt; &lt;td&gt;ods:187 &lt;/td&gt; &lt;td&gt;xlsx:372&lt;/td&gt;&lt;/tr&gt;
14424 &lt;/table&gt;
14425
14426 &lt;p&gt;I wonder how these numbers change over time.&lt;/p&gt;
14427
14428 &lt;p&gt;I am aware of Google returning different results and numbers based
14429 on where the search is done, so I guess these numbers will differ if
14430 they are conduced in another country. Because of this, I did the same
14431 search from a machine in California, USA, a few minutes after the
14432 search done from a machine here in Norway.&lt;/p&gt;
14433
14434
14435 &lt;table&gt;
14436 &lt;tr&gt;&lt;th&gt;Type&lt;/th&gt;&lt;th&gt;ODF&lt;/th&gt;&lt;th&gt;MS Office&lt;/th&gt;&lt;/tr&gt;
14437 &lt;tr&gt;&lt;td&gt;Tekst&lt;/td&gt; &lt;td&gt;odt:129000&lt;/td&gt; &lt;td&gt;docx:308000&lt;/td&gt;&lt;/tr&gt;
14438 &lt;tr&gt;&lt;td&gt;Presentasjon&lt;/td&gt; &lt;td&gt;odp:44200&lt;/td&gt; &lt;td&gt;pptx:93900&lt;/td&gt;&lt;/tr&gt;
14439 &lt;tr&gt;&lt;td&gt;Regneark&lt;/td&gt; &lt;td&gt;ods:26500 &lt;/td&gt; &lt;td&gt;xlsx:82400&lt;/td&gt;&lt;/tr&gt;
14440 &lt;/table&gt;
14441
14442 &lt;p&gt;And with &#39;site:no&#39;:
14443
14444 &lt;table&gt;
14445 &lt;tr&gt;&lt;th&gt;Type&lt;/th&gt;&lt;th&gt;ODF&lt;/th&gt;&lt;th&gt;MS Office&lt;/th&gt;&lt;/tr&gt;
14446 &lt;tr&gt;&lt;td&gt;Tekst&lt;/td&gt; &lt;td&gt;odt:2480&lt;/td&gt; &lt;td&gt;docx:3410&lt;/td&gt;&lt;/tr&gt;
14447 &lt;tr&gt;&lt;td&gt;Presentasjon&lt;/td&gt; &lt;td&gt;odp:175&lt;/td&gt; &lt;td&gt;pptx:604&lt;/td&gt;&lt;/tr&gt;
14448 &lt;tr&gt;&lt;td&gt;Regneark&lt;/td&gt; &lt;td&gt;ods:186 &lt;/td&gt; &lt;td&gt;xlsx:296&lt;/td&gt;&lt;/tr&gt;
14449 &lt;/table&gt;
14450
14451 &lt;p&gt;Interesting difference, not sure what to conclude from these
14452 numbers.&lt;/p&gt;
14453 </description>
14454 </item>
14455
14456 <item>
14457 <title>ISO still hope to fix OOXML</title>
14458 <link>http://people.skolelinux.org/pere/blog/ISO_still_hope_to_fix_OOXML.html</link>
14459 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/ISO_still_hope_to_fix_OOXML.html</guid>
14460 <pubDate>Sat, 8 Aug 2009 14:00:00 +0200</pubDate>
14461 <description>&lt;p&gt;According to &lt;a
14462 href=&quot;http://twerner.blogspot.com/2009/08/defects-of-office-open-xml.html&quot;&gt;a
14463 blog post from Torsten Werner&lt;/a&gt;, the current defect report for ISO
14464 29500 (ISO OOXML) is 809 pages. His interesting point is that the
14465 defect report is 71 pages more than the full ODF 1.1 specification.
14466 Personally I find it more interesting that ISO still believe ISO OOXML
14467 can be fixed in ISO. Personally, I believe it is broken beyon repair,
14468 and I completely lack any trust in ISO for being able to get anywhere
14469 close to solving the problems. I was part of the Norwegian committee
14470 involved in the OOXML fast track process, and was not impressed with
14471 Standard Norway and ISO in how they handled it.&lt;/p&gt;
14472
14473 &lt;p&gt;These days I focus on ODF instead, which seem like a specification
14474 with the future ahead of it. We are working in NUUG to organise a ODF
14475 seminar this autumn.&lt;/p&gt;
14476 </description>
14477 </item>
14478
14479 <item>
14480 <title>Debian has switched to dependency based boot sequencing</title>
14481 <link>http://people.skolelinux.org/pere/blog/Debian_has_switched_to_dependency_based_boot_sequencing.html</link>
14482 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_has_switched_to_dependency_based_boot_sequencing.html</guid>
14483 <pubDate>Mon, 27 Jul 2009 23:50:00 +0200</pubDate>
14484 <description>&lt;p&gt;Since this evening, with the upload of sysvinit version 2.87dsf-2,
14485 and the upload of insserv version 1.12.0-10 yesterday, Debian unstable
14486 have been migrated to using dependency based boot sequencing. This
14487 conclude work me and others have been doing for the last three days.
14488 It feels great to see this finally part of the default Debian
14489 installation. Now we just need to weed out the last few problems that
14490 are bound to show up, to get everything ready for Squeeze.&lt;/p&gt;
14491
14492 &lt;p&gt;The next step is migrating /sbin/init from sysvinit to upstart, and
14493 fixing the more fundamental problem of handing the event based
14494 non-predictable kernel in the early boot.&lt;/p&gt;
14495 </description>
14496 </item>
14497
14498 <item>
14499 <title>Taking over sysvinit development</title>
14500 <link>http://people.skolelinux.org/pere/blog/Taking_over_sysvinit_development.html</link>
14501 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Taking_over_sysvinit_development.html</guid>
14502 <pubDate>Wed, 22 Jul 2009 23:00:00 +0200</pubDate>
14503 <description>&lt;p&gt;After several years of frustration with the lack of activity from
14504 the existing sysvinit upstream developer, I decided a few weeks ago to
14505 take over the package and become the new upstream. The number of
14506 patches to track for the Debian package was becoming a burden, and the
14507 lack of synchronization between the distribution made it hard to keep
14508 the package up to date.&lt;/p&gt;
14509
14510 &lt;p&gt;On the new sysvinit team is the SuSe maintainer Dr. Werner Fink,
14511 and my Debian co-maintainer Kel Modderman. About 10 days ago, I made
14512 a new upstream tarball with version number 2.87dsf (for Debian, SuSe
14513 and Fedora), based on the patches currently in use in these
14514 distributions. We Debian maintainers plan to move to this tarball as
14515 the new upstream as soon as we find time to do the merge. Since the
14516 new tarball was created, we agreed with Werner at SuSe to make a new
14517 upstream project at &lt;a href=&quot;http://savannah.nongnu.org/&quot;&gt;Savannah&lt;/a&gt;, and continue
14518 development there. The project is registered and currently waiting
14519 for approval by the Savannah administrators, and as soon as it is
14520 approved, we will import the old versions from svn and continue
14521 working on the future release.&lt;/p&gt;
14522
14523 &lt;p&gt;It is a bit ironic that this is done now, when some of the involved
14524 distributions are moving to upstart as a syvinit replacement.&lt;/p&gt;
14525 </description>
14526 </item>
14527
14528 <item>
14529 <title>Debian boots quicker and quicker</title>
14530 <link>http://people.skolelinux.org/pere/blog/Debian_boots_quicker_and_quicker.html</link>
14531 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_boots_quicker_and_quicker.html</guid>
14532 <pubDate>Wed, 24 Jun 2009 21:40:00 +0200</pubDate>
14533 <description>&lt;p&gt;I spent Monday and tuesday this week in London with a lot of the
14534 people involved in the boot system on Debian and Ubuntu, to see if we
14535 could find more ways to speed up the boot system. This was an Ubuntu
14536 funded
14537 &lt;a href=&quot;https://wiki.ubuntu.com/FoundationsTeam/BootPerformance/DebianUbuntuSprint&quot;&gt;developer
14538 gathering&lt;/a&gt;. It was quite productive. We also discussed the future
14539 of boot systems, and ways to handle the increasing number of boot
14540 issues introduced by the Linux kernel becoming more and more
14541 asynchronous and event base. The Ubuntu approach using udev and
14542 upstart might be a good way forward. Time will show.&lt;/p&gt;
14543
14544 &lt;p&gt;Anyway, there are a few ways at the moment to speed up the boot
14545 process in Debian. All of these should be applied to get a quick
14546 boot:&lt;/p&gt;
14547
14548 &lt;ul&gt;
14549
14550 &lt;li&gt;Use dash as /bin/sh.&lt;/li&gt;
14551
14552 &lt;li&gt;Disable the init.d/hwclock*.sh scripts and make sure the hardware
14553 clock is in UTC.&lt;/li&gt;
14554
14555 &lt;li&gt;Install and activate the insserv package to enable
14556 &lt;a href=&quot;http://wiki.debian.org/LSBInitScripts/DependencyBasedBoot&quot;&gt;dependency
14557 based boot sequencing&lt;/a&gt;, and enable concurrent booting.&lt;/li&gt;
14558
14559 &lt;/ul&gt;
14560
14561 These points are based on the Google summer of code work done by
14562 &lt;a href=&quot;http://initscripts-ng.alioth.debian.org/soc2006-bootsystem/&quot;&gt;Carlos
14563 Villegas&lt;/a&gt;.
14564
14565 &lt;p&gt;Support for makefile-style concurrency during boot was uploaded to
14566 unstable yesterday. When we tested it, we were able to cut 6 seconds
14567 from the boot sequence. It depend on very correct dependency
14568 declaration in all init.d scripts, so I expect us to find edge cases
14569 where the dependences in some scripts are slightly wrong when we start
14570 using this.&lt;/p&gt;
14571
14572 &lt;p&gt;On our IRC channel for this effort, #pkg-sysvinit, a new idea was
14573 introduced by Raphael Geissert today, one that could affect the
14574 startup speed as well. Instead of starting some scripts concurrently
14575 from rcS.d/ and another set of scripts from rc2.d/, it would be
14576 possible to run a of them in the same process. A quick way to test
14577 this would be to enable insserv and run &#39;mv /etc/rc2.d/S* /etc/rcS.d/;
14578 insserv&#39;. Will need to test if that work. :)&lt;/p&gt;
14579 </description>
14580 </item>
14581
14582 <item>
14583 <title>Two projects that have improved the quality of free software a lot</title>
14584 <link>http://people.skolelinux.org/pere/blog/Two_projects_that_have_improved_the_quality_of_free_software_a_lot.html</link>
14585 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Two_projects_that_have_improved_the_quality_of_free_software_a_lot.html</guid>
14586 <pubDate>Sat, 2 May 2009 15:00:00 +0200</pubDate>
14587 <description>&lt;p&gt;There are two software projects that have had huge influence on the
14588 quality of free software, and I wanted to mention both in case someone
14589 do not yet know them.&lt;/p&gt;
14590
14591 &lt;p&gt;The first one is &lt;a href=&quot;http://valgrind.org/&quot;&gt;valgrind&lt;/a&gt;, a
14592 tool to detect and expose errors in the memory handling of programs.
14593 It is easy to use, all one need to do is to run &#39;valgrind program&#39;,
14594 and it will report any problems on stdout. It is even better if the
14595 program include debug information. With debug information, it is able
14596 to report the source file name and line number where the problem
14597 occurs. It can report things like &#39;reading past memory block in file
14598 X line N, the memory block was allocated in file Y, line M&#39;, and
14599 &#39;using uninitialised value in control logic&#39;. This tool has made it
14600 trivial to investigate reproducible crash bugs in programs, and have
14601 reduced the number of this kind of bugs in free software a lot.
14602
14603 &lt;p&gt;The second one is
14604 &lt;a href=&quot;http://en.wikipedia.org/wiki/Coverity&quot;&gt;Coverity&lt;/a&gt; which is
14605 a source code checker. It is able to process the source of a program
14606 and find problems in the logic without running the program. It
14607 started out as the Stanford Checker and became well known when it was
14608 used to find bugs in the Linux kernel. It is now a commercial tool
14609 and the company behind it is running
14610 &lt;a href=&quot;http://www.scan.coverity.com/&quot;&gt;a community service&lt;/a&gt; for the
14611 free software community, where a lot of free software projects get
14612 their source checked for free. Several thousand defects have been
14613 found and fixed so far. It can find errors like &#39;lock L taken in file
14614 X line N is never released if exiting in line M&#39;, or &#39;the code in file
14615 Y lines O to P can never be executed&#39;. The projects included in the
14616 community service project have managed to get rid of a lot of
14617 reliability problems thanks to Coverity.&lt;/p&gt;
14618
14619 &lt;p&gt;I believe tools like this, that are able to automatically find
14620 errors in the source, are vital to improve the quality of software and
14621 make sure we can get rid of the crashing and failing software we are
14622 surrounded by today.&lt;/p&gt;
14623 </description>
14624 </item>
14625
14626 <item>
14627 <title>No patch is not better than a useless patch</title>
14628 <link>http://people.skolelinux.org/pere/blog/No_patch_is_not_better_than_a_useless_patch.html</link>
14629 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/No_patch_is_not_better_than_a_useless_patch.html</guid>
14630 <pubDate>Tue, 28 Apr 2009 09:30:00 +0200</pubDate>
14631 <description>&lt;p&gt;Julien Blache
14632 &lt;a href=&quot;http://blog.technologeek.org/2009/04/12/214&quot;&gt;claim that no
14633 patch is better than a useless patch&lt;/a&gt;. I completely disagree, as a
14634 patch allow one to discuss a concrete and proposed solution, and also
14635 prove that the issue at hand is important enough for someone to spent
14636 time on fixing it. No patch do not provide any of these positive
14637 properties.&lt;/p&gt;
14638 </description>
14639 </item>
14640
14641 <item>
14642 <title>Recording video from cron using VLC</title>
14643 <link>http://people.skolelinux.org/pere/blog/Recording_video_from_cron_using_VLC.html</link>
14644 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Recording_video_from_cron_using_VLC.html</guid>
14645 <pubDate>Sun, 5 Apr 2009 10:00:00 +0200</pubDate>
14646 <description>&lt;p&gt;One think I have wanted to figure out for a along time is how to
14647 run vlc from cron to do recording of video streams on the net. The
14648 task is trivial with mplayer, but I do not really trust the security
14649 of mplayer (it crashes too often on strange input), and thus prefer
14650 vlc. I finally found a way to do it today. I spent an hour or so
14651 searching the web for recipes and reading the documentation. The
14652 hardest part was to get rid of the GUI window, but after finding the
14653 dummy interface, the command line finally presented itself:&lt;/p&gt;
14654
14655 &lt;blockquote&gt;&lt;pre&gt;URL=http://www.ping.uio.no/video/rms-oslo_2009.ogg
14656 SAVEFILE=rms.ogg
14657 DISPLAY= vlc -q $URL \
14658 --sout=&quot;#duplicate{dst=std{access=file,url=&#39;$SAVEFILE&#39;},dst=nodisplay}&quot; \
14659 --intf=dummy&lt;/pre&gt;&lt;/blockquote&gt;
14660
14661 &lt;p&gt;The command stream the URL and store it in the SAVEFILE by
14662 duplicating the output stream to &quot;nodisplay&quot; and the file, using the
14663 dummy interface. The dummy interface and the nodisplay output make
14664 sure no X interface is needed.&lt;/p&gt;
14665
14666 &lt;p&gt;The cron job then need to start this job with the appropriate URL
14667 and file name to save, sleep for the duration wanted, and then kill
14668 the vlc process with SIGTERM. Here is a complete script
14669 &lt;tt&gt;vlc-record&lt;/tt&gt; to use from &lt;tt&gt;at&lt;/tt&gt; or &lt;tt&gt;cron&lt;/tt&gt;:&lt;/p&gt;
14670
14671 &lt;blockquote&gt;&lt;pre&gt;#!/bin/sh
14672 set -e
14673 URL=&quot;$1&quot;
14674 SAVEFILE=&quot;$2&quot;
14675 DURATION=&quot;$3&quot;
14676 DISPLAY= vlc -q &quot;$URL&quot; \
14677 --sout=&quot;#duplicate{dst=std{access=file,url=&#39;$SAVEFILE&#39;},dst=nodisplay}&quot; \
14678 --intf=dummy &lt; /dev/null &gt; /dev/null 2&gt;&amp;1 &amp;
14679 pid=$!
14680 sleep $DURATION
14681 kill $pid
14682 wait $pid&lt;/pre&gt;&lt;/blockquote&gt;
14683 </description>
14684 </item>
14685
14686 <item>
14687 <title>Standardize on protocols and formats, not vendors and applications</title>
14688 <link>http://people.skolelinux.org/pere/blog/Standardize_on_protocols_and_formats__not_vendors_and_applications.html</link>
14689 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Standardize_on_protocols_and_formats__not_vendors_and_applications.html</guid>
14690 <pubDate>Mon, 30 Mar 2009 11:50:00 +0200</pubDate>
14691 <description>&lt;p&gt;Where I work at the University of Oslo, one decision stand out as a
14692 very good one to form a long lived computer infrastructure. It is the
14693 simple one, lost by many in todays computer industry: Standardize on
14694 open network protocols and open exchange/storage formats, not applications.
14695 Applications come and go, while protocols and files tend to stay, and
14696 thus one want to make it easy to change application and vendor, while
14697 avoiding conversion costs and locking users to a specific platform or
14698 application.&lt;/p&gt;
14699
14700 &lt;p&gt;This approach make it possible to replace the client applications
14701 independently of the server applications. One can even allow users to
14702 use several different applications as long as they handle the selected
14703 protocol and format. In the normal case, only one client application
14704 is recommended and users only get help if they choose to use this
14705 application, but those that want to deviate from the easy path are not
14706 blocked from doing so.&lt;/p&gt;
14707
14708 &lt;p&gt;It also allow us to replace the server side without forcing the
14709 users to replace their applications, and thus allow us to select the
14710 best server implementation at any moment, when scale and resouce
14711 requirements change.&lt;/p&gt;
14712
14713 &lt;p&gt;I strongly recommend standardizing - on open network protocols and
14714 open formats, but I would never recommend standardizing on a single
14715 application that do not use open network protocol or open formats.&lt;/p&gt;
14716 </description>
14717 </item>
14718
14719 <item>
14720 <title>Returning from Skolelinux developer gathering</title>
14721 <link>http://people.skolelinux.org/pere/blog/Returning_from_Skolelinux_developer_gathering.html</link>
14722 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Returning_from_Skolelinux_developer_gathering.html</guid>
14723 <pubDate>Sun, 29 Mar 2009 21:00:00 +0200</pubDate>
14724 <description>&lt;p&gt;I&#39;m sitting on the train going home from this weekends Debian
14725 Edu/Skolelinux development gathering. I got a bit done tuning the
14726 desktop, and looked into the dynamic service location protocol
14727 implementation avahi. It look like it could be useful for us. Almost
14728 30 people participated, and I believe it was a great environment to
14729 get to know the Skolelinux system. Walter Bender, involved in the
14730 development of the Sugar educational platform, presented his stuff and
14731 also helped me improve my OLPC installation. He also showed me that
14732 his Turtle Art application can be used in standalone mode, and we
14733 agreed that I would help getting it packaged for Debian. As a
14734 standalone application it would be great for Debian Edu. We also
14735 tried to get the video conferencing working with two OLPCs, but that
14736 proved to be too hard for us. The application seem to need more work
14737 before it is ready for me. I look forward to getting home and relax
14738 now. :)&lt;/p&gt;
14739 </description>
14740 </item>
14741
14742 <item>
14743 <title>Time for new LDAP schemas replacing RFC 2307?</title>
14744 <link>http://people.skolelinux.org/pere/blog/Time_for_new__LDAP_schemas_replacing_RFC_2307_.html</link>
14745 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Time_for_new__LDAP_schemas_replacing_RFC_2307_.html</guid>
14746 <pubDate>Sun, 29 Mar 2009 20:30:00 +0200</pubDate>
14747 <description>&lt;p&gt;The state of standardized LDAP schemas on Linux is far from
14748 optimal. There is RFC 2307 documenting one way to store NIS maps in
14749 LDAP, and a modified version of this normally called RFC 2307bis, with
14750 some modifications to be compatible with Active Directory. The RFC
14751 specification handle the content of a lot of system databases, but do
14752 not handle DNS zones and DHCP configuration.&lt;/p&gt;
14753
14754 &lt;p&gt;In &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu/Skolelinux&lt;/a&gt;,
14755 we would like to store information about users, SMB clients/hosts,
14756 filegroups, netgroups (users and hosts), DHCP and DNS configuration,
14757 and LTSP configuration in LDAP. These objects have a lot in common,
14758 but with the current LDAP schemas it is not possible to have one
14759 object per entity. For example, one need to have at least three LDAP
14760 objects for a given computer, one with the SMB related stuff, one with
14761 DNS information and another with DHCP information. The schemas
14762 provided for DNS and DHCP are impossible to combine into one LDAP
14763 object. In addition, it is impossible to implement quick queries for
14764 netgroup membership, because of the way NIS triples are implemented.
14765 It just do not scale. I believe it is time for a few RFC
14766 specifications to cleam up this mess.&lt;/p&gt;
14767
14768 &lt;p&gt;I would like to have one LDAP object representing each computer in
14769 the network, and this object can then keep the SMB (ie host key), DHCP
14770 (mac address/name) and DNS (name/IP address) settings in one place.
14771 It need to be efficently stored to make sure it scale well.&lt;/p&gt;
14772
14773 &lt;p&gt;I would also like to have a quick way to map from a user or
14774 computer and to the net group this user or computer is a member.&lt;/p&gt;
14775
14776 &lt;p&gt;Active Directory have done a better job than unix heads like myself
14777 in this regard, and the unix side need to catch up. Time to start a
14778 new IETF work group?&lt;/p&gt;
14779 </description>
14780 </item>
14781
14782 <item>
14783 <title>Checking server hardware support status for Dell, HP and IBM servers</title>
14784 <link>http://people.skolelinux.org/pere/blog/Checking_server_hardware_support_status_for_Dell__HP_and_IBM_servers.html</link>
14785 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Checking_server_hardware_support_status_for_Dell__HP_and_IBM_servers.html</guid>
14786 <pubDate>Sat, 28 Feb 2009 23:50:00 +0100</pubDate>
14787 <description>&lt;p&gt;At work, we have a few hundred Linux servers, and with that amount
14788 of hardware it is important to keep track of when the hardware support
14789 contract expire for each server. We have a machine (and service)
14790 register, which until recently did not contain much useful besides the
14791 machine room location and contact information for the system owner for
14792 each machine. To make it easier for us to track support contract
14793 status, I&#39;ve recently spent time on extending the machine register to
14794 include information about when the support contract expire, and to tag
14795 machines with expired contracts to make it easy to get a list of such
14796 machines. I extended a perl script already being used to import
14797 information about machines into the register, to also do some screen
14798 scraping off the sites of Dell, HP and IBM (our majority of machines
14799 are from these vendors), and automatically check the support status
14800 for the relevant machines. This make the support status information
14801 easily available and I hope it will make it easier for the computer
14802 owner to know when to get new hardware or renew the support contract.
14803 The result of this work documented that 27% of the machines in the
14804 registry is without a support contract, and made it very easy to find
14805 them. 27% might seem like a lot, but I see it more as the case of us
14806 using machines a bit longer than the 3 years a normal support contract
14807 last, to have test machines and a platform for less important
14808 services. After all, the machines without a contract are working fine
14809 at the moment and the lack of contract is only a problem if any of
14810 them break down. When that happen, we can either fix it using spare
14811 parts from other machines or move the service to another old
14812 machine.&lt;/p&gt;
14813
14814 &lt;p&gt;I believe the code for screen scraping the Dell site was originally
14815 written by Trond Hasle Amundsen, and later adjusted by me and Morten
14816 Werner Forsbring. The HP scraping was written by me after reading a
14817 nice article in ;login: about how to use WWW::Mechanize, and the IBM
14818 scraping was written by me based on the Dell code. I know the HTML
14819 parsing could be done using nice libraries, but did not want to
14820 introduce more dependencies. This is the current incarnation:&lt;/p&gt;
14821
14822 &lt;pre&gt;
14823 use LWP::Simple;
14824 use POSIX;
14825 use WWW::Mechanize;
14826 use Date::Parse;
14827 [...]
14828 sub get_support_info {
14829 my ($machine, $model, $serial, $productnumber) = @_;
14830 my $str;
14831
14832 if ( $model =~ m/^Dell / ) {
14833 # fetch website from Dell support
14834 my $url = &quot;http://support.euro.dell.com/support/topics/topic.aspx/emea/shared/support/my_systems_info/no/details?c=no&amp;amp;cs=nodhs1&amp;amp;l=no&amp;amp;s=dhs&amp;amp;ServiceTag=$serial&quot;;
14835 my $webpage = get($url);
14836 return undef unless ($webpage);
14837
14838 my $daysleft = -1;
14839 my @lines = split(/\n/, $webpage);
14840 foreach my $line (@lines) {
14841 next unless ($line =~ m/Beskrivelse/);
14842 $line =~ s/&amp;lt;[^&gt;]+?&gt;/;/gm;
14843 $line =~ s/^.+?;(Beskrivelse;)/$1/;
14844
14845 my @f = split(/\;/, $line);
14846 @f = @f[13 .. $#f];
14847 my $lastend = &quot;&quot;;
14848 while ($f[3] eq &quot;DELL&quot;) {
14849 my ($type, $startstr, $endstr, $days) = @f[0, 5, 7, 10];
14850
14851 my $start = POSIX::strftime(&quot;%Y-%m-%d&quot;,
14852 localtime(str2time($startstr)));
14853 my $end = POSIX::strftime(&quot;%Y-%m-%d&quot;,
14854 localtime(str2time($endstr)));
14855 $str .= &quot;$type $start -&gt; $end &quot;;
14856 @f = @f[14 .. $#f];
14857 $lastend = $end if ($end gt $lastend);
14858 }
14859 my $today = POSIX::strftime(&quot;%Y-%m-%d&quot;, localtime(time));
14860 tag_machine_unsupported($machine)
14861 if ($lastend lt $today);
14862 }
14863 } elsif ( $model =~ m/^HP / ) {
14864 my $mech = WWW::Mechanize-&gt;new();
14865 my $url =
14866 &#39;http://www1.itrc.hp.com/service/ewarranty/warrantyInput.do&#39;;
14867 $mech-&gt;get($url);
14868 my $fields = {
14869 &#39;BODServiceID&#39; =&gt; &#39;NA&#39;,
14870 &#39;RegisteredPurchaseDate&#39; =&gt; &#39;&#39;,
14871 &#39;country&#39; =&gt; &#39;NO&#39;,
14872 &#39;productNumber&#39; =&gt; $productnumber,
14873 &#39;serialNumber1&#39; =&gt; $serial,
14874 };
14875 $mech-&gt;submit_form( form_number =&gt; 2,
14876 fields =&gt; $fields );
14877 # Next step is screen scraping
14878 my $content = $mech-&gt;content();
14879
14880 $content =~ s/&amp;lt;[^&gt;]+?&gt;/;/gm;
14881 $content =~ s/\s+/ /gm;
14882 $content =~ s/;\s*;/;;/gm;
14883 $content =~ s/;[\s;]+/;/gm;
14884
14885 my $today = POSIX::strftime(&quot;%Y-%m-%d&quot;, localtime(time));
14886
14887 while ($content =~ m/;Warranty Type;/) {
14888 my ($type, $status, $startstr, $stopstr) = $content =~
14889 m/;Warranty Type;([^;]+);.+?;Status;(\w+);Start Date;([^;]+);End Date;([^;]+);/;
14890 $content =~ s/^.+?;Warranty Type;//;
14891 my $start = POSIX::strftime(&quot;%Y-%m-%d&quot;,
14892 localtime(str2time($startstr)));
14893 my $end = POSIX::strftime(&quot;%Y-%m-%d&quot;,
14894 localtime(str2time($stopstr)));
14895
14896 $str .= &quot;$type ($status) $start -&gt; $end &quot;;
14897
14898 tag_machine_unsupported($machine)
14899 if ($end lt $today);
14900 }
14901 } elsif ( $model =~ m/^IBM / ) {
14902 # This code ignore extended support contracts.
14903 my ($producttype) = $model =~ m/.*-\[(.{4}).+\]-/;
14904 if ($producttype &amp;amp;&amp;amp; $serial) {
14905 my $content =
14906 get(&quot;http://www-947.ibm.com/systems/support/supportsite.wss/warranty?action=warranty&amp;amp;brandind=5000008&amp;amp;Submit=Submit&amp;amp;type=$producttype&amp;amp;serial=$serial&quot;);
14907 if ($content) {
14908 $content =~ s/&amp;lt;[^&gt;]+?&gt;/;/gm;
14909 $content =~ s/\s+/ /gm;
14910 $content =~ s/;\s*;/;;/gm;
14911 $content =~ s/;[\s;]+/;/gm;
14912
14913 $content =~ s/^.+?;Warranty status;//;
14914 my ($status, $end) = $content =~ m/;Warranty status;([^;]+)\s*;Expiration date;(\S+) ;/;
14915
14916 $str .= &quot;($status) -&gt; $end &quot;;
14917
14918 my $today = POSIX::strftime(&quot;%Y-%m-%d&quot;, localtime(time));
14919 tag_machine_unsupported($machine)
14920 if ($end lt $today);
14921 }
14922 }
14923 }
14924 return $str;
14925 }
14926 &lt;/pre&gt;
14927
14928 &lt;p&gt;Here are some examples on how to use the function, using fake
14929 serial numbers. The information passed in as arguments are fetched
14930 from dmidecode.&lt;/p&gt;
14931
14932 &lt;pre&gt;
14933 print get_support_info(&quot;hp.host&quot;, &quot;HP ProLiant BL460c G1&quot;, &quot;1234567890&quot;
14934 &quot;447707-B21&quot;);
14935 print get_support_info(&quot;dell.host&quot;, &quot;Dell Inc. PowerEdge 2950&quot;, &quot;1234567&quot;);
14936 print get_support_info(&quot;ibm.host&quot;, &quot;IBM eserver xSeries 345 -[867061X]-&quot;,
14937 &quot;1234567&quot;);
14938 &lt;/pre&gt;
14939
14940 &lt;p&gt;I would recommend this approach for tracking support contracts for
14941 everyone with more than a few computers to administer. :)&lt;/p&gt;
14942
14943 &lt;p&gt;Update 2009-03-06: The IBM page do not include extended support
14944 contracts, so it is useless in that case. The original Dell code do
14945 not handle extended support contracts either, but has been updated to
14946 do so.&lt;/p&gt;
14947 </description>
14948 </item>
14949
14950 <item>
14951 <title>Using bar codes at a computing center</title>
14952 <link>http://people.skolelinux.org/pere/blog/Using_bar_codes_at_a_computing_center.html</link>
14953 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Using_bar_codes_at_a_computing_center.html</guid>
14954 <pubDate>Fri, 20 Feb 2009 08:50:00 +0100</pubDate>
14955 <description>&lt;p&gt;At work with the University of Oslo, we have several hundred computers
14956 in our computing center. This give us a challenge in tracking the
14957 location and cabling of the computers, when they are added, moved and
14958 removed. Some times the location register is not updated when a
14959 computer is inserted or moved and we then have to search the room for
14960 the &quot;missing&quot; computer.&lt;/p&gt;
14961
14962 &lt;p&gt;In the last issue of Linux Journal, I came across a project
14963 &lt;a href=&quot;http://www.libdmtx.org/&quot;&gt;libdmtx&lt;/a&gt; to write and read bar
14964 code blocks as defined in the
14965 &lt;a href=&quot;http://en.wikipedia.org/wiki/Data_Matrix&quot;&gt;The Data Matrix
14966 Standard&lt;/a&gt;. This is bar codes that can be read with a normal
14967 digital camera, for example that on a cell phone, and several such bar
14968 codes can be read by libdmtx from one picture. The bar code standard
14969 allow up to 2 KiB to be written in the tag. There is another project
14970 with &lt;a href=&quot;http://www.terryburton.co.uk/barcodewriter/&quot;&gt;a bar code
14971 writer written in postscript&lt;/a&gt; capable of creating such bar codes,
14972 but this was the first time I found a tool to read these bar
14973 codes.&lt;/p&gt;
14974
14975 &lt;p&gt;It occurred to me that this could be used to tag and track the
14976 machines in our computing center. If both racks and computers are
14977 tagged this way, we can use a picture of the rack and all its
14978 computers to detect the rack location of any computer in that rack.
14979 If we do this regularly for the entire room, we will find all
14980 locations, and can detect movements and removals.&lt;/p&gt;
14981
14982 &lt;p&gt;I decided to test if this would work in practice, and picked a
14983 random rack and tagged all the machines with their names. Next, I
14984 took pictures with my digital camera, and gave the dmtxread program
14985 these JPEG pictures to see how many tags it could read. This worked
14986 fairly well. If the pictures was well focused and not taken from the
14987 side, all tags in the image could be read. Because of limited space
14988 between the racks, I was unable to get a good picture of the entire
14989 rack, but could without problem read all tags from a picture covering
14990 about half the rack. I had to limit the search time used by dmtxread
14991 to 60000 ms to make sure it terminated in a reasonable time frame.&lt;/p&gt;
14992
14993 &lt;p&gt;My conclusion is that this could work, and we should probably look
14994 at adjusting our computer tagging procedures to use bar codes for
14995 easier automatic tracking of computers.&lt;/p&gt;
14996 </description>
14997 </item>
14998
14999 <item>
15000 <title>When web browser developers make a video player...</title>
15001 <link>http://people.skolelinux.org/pere/blog/When_web_browser_developers_make_a_video_player___.html</link>
15002 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/When_web_browser_developers_make_a_video_player___.html</guid>
15003 <pubDate>Sat, 17 Jan 2009 18:50:00 +0100</pubDate>
15004 <description>&lt;p&gt;As part of the work we do in &lt;a href=&quot;http://www.nuug.no&quot;&gt;NUUG&lt;/a&gt;
15005 to publish video recordings of our monthly presentations, we provide a
15006 page with embedded video for easy access to the recording. Putting a
15007 good set of HTML tags together to get working embedded video in all
15008 browsers and across all operating systems is not easy. I hope this
15009 will become easier when the &amp;lt;video&amp;gt; tag is implemented in all
15010 browsers, but I am not sure. We provide the recordings in several
15011 formats, MPEG1, Ogg Theora, H.264 and Quicktime, and want the
15012 browser/media plugin to pick one it support and use it to play the
15013 recording, using whatever embed mechanism the browser understand.
15014 There is at least four different tags to use for this, the new HTML5
15015 &amp;lt;video&amp;gt; tag, the &amp;lt;object&amp;gt; tag, the &amp;lt;embed&amp;gt; tag and
15016 the &amp;lt;applet&amp;gt; tag. All of these take a lot of options, and
15017 finding the best options is a major challenge.&lt;/p&gt;
15018
15019 &lt;p&gt;I just tested the experimental Opera browser available from &lt;a
15020 href=&quot;http://labs.opera.com&quot;&gt;labs.opera.com&lt;/a&gt;, to see how it handled
15021 a &amp;lt;video&amp;gt; tag with a few video sources and no extra attributes.
15022 I was not very impressed. The browser start by fetching a picture
15023 from the video stream. Not sure if it is the first frame, but it is
15024 definitely very early in the recording. So far, so good. Next,
15025 instead of streaming the 76 MiB video file, it start to download all
15026 of it, but do not start to play the video. This mean I have to wait
15027 for several minutes for the downloading to finish. When the download
15028 is done, the playing of the video do not start! Waiting for the
15029 download, but I do not get to see the video? Some testing later, I
15030 discover that I have to add the controls=&quot;true&quot; attribute to be able
15031 to get a play button to pres to start the video. Adding
15032 autoplay=&quot;true&quot; did not help. I sure hope this is a misfeature of the
15033 test version of Opera, and that future implementations of the
15034 &amp;lt;video&amp;gt; tag will stream recordings by default, or at least start
15035 playing when the download is done.&lt;/p&gt;
15036
15037 &lt;p&gt;The test page I used (since changed to add more attributes) is
15038 &lt;a href=&quot;http://www.nuug.no/aktiviteter/20090113-foredrag-om-foredrag/&quot;&gt;available
15039 from the nuug site&lt;/a&gt;. Will have to test it with the new Firefox
15040 too.&lt;/p&gt;
15041
15042 &lt;p&gt;In the test process, I discovered a missing feature. I was unable
15043 to find a way to get the URL of the playing video out of Opera, so I
15044 am not quite sure it picked the Ogg Theora version of the video. I
15045 sure hope it was using the announced Ogg Theora support. :)&lt;/p&gt;
15046 </description>
15047 </item>
15048
15049 <item>
15050 <title>Software video mixer on a USB stick</title>
15051 <link>http://people.skolelinux.org/pere/blog/Software_video_mixer_on_a_USB_stick.html</link>
15052 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Software_video_mixer_on_a_USB_stick.html</guid>
15053 <pubDate>Sun, 28 Dec 2008 15:40:00 +0100</pubDate>
15054 <description>&lt;p&gt;The &lt;a href=&quot;http://www.nuug.no/&quot;&gt;Norwegian Unix User Group&lt;/a&gt; is
15055 recording our montly presentation on video, and recently we have
15056 worked on improving the quality of the recordings by mixing the slides
15057 directly with the video stream. For this, we use the
15058 &lt;a href=&quot;http://dvswitch.alioth.debian.org/&quot;&gt;dvswitch&lt;/a&gt; package from
15059 the Debian video team. As this require quite one computer per video
15060 source, and NUUG do not have enough laptops available, we need to
15061 borrow laptops. And to avoid having to install extra software on
15062 these borrwed laptops, I have wrapped up all the programs needed on a
15063 bootable USB stick. The software required is dvswitch with assosiated
15064 source, sink and mixer applications and
15065 &lt;a href=&quot;http://www.kinodv.org/&quot;&gt;dvgrab&lt;/a&gt;. To allow this setup to
15066 work without any configuration, I&#39;ve patched dvswitch to use
15067 &lt;a href=&quot;http://www.avahi.org/&quot;&gt;avahi&lt;/a&gt; to connect the various parts
15068 together. And to allow us to use laptops without firewire plugs, I
15069 upgraded dvgrab to the one from Debian/unstable to get one that work
15070 with USB sources. We have not yet tested this setup in a production
15071 setup, but I hope it will work properly, and allow us to set up a
15072 video mixer in a very short time frame. We will need it for
15073 &lt;a href=&quot;http://www.goopen.no/&quot;&gt;Go Open 2009&lt;/a&gt;.&lt;/p&gt;
15074
15075 &lt;p&gt;&lt;a href=&quot;http://www.nuug.no/pub/video/bin/usbstick-dvswitch.img.gz&quot;&gt;The
15076 USB image&lt;/a&gt; is for a 1 GB memory stick, but can be used on any
15077 larger stick as well.&lt;/p&gt;
15078 </description>
15079 </item>
15080
15081 <item>
15082 <title>Devcamp brought us closer to the Lenny based Debian Edu release</title>
15083 <link>http://people.skolelinux.org/pere/blog/Devcamp_brought_us_closer_to_the_Lenny_based_Debian_Edu_release.html</link>
15084 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Devcamp_brought_us_closer_to_the_Lenny_based_Debian_Edu_release.html</guid>
15085 <pubDate>Sun, 7 Dec 2008 12:00:00 +0100</pubDate>
15086 <description>&lt;p&gt;This weekend we had a small developer gathering for Debian Edu in
15087 Oslo. Most of Saturday was used for the general assemly for the
15088 member organization, but the rest of the weekend I used to tune the
15089 LTSP installation. LTSP now work out of the box on the 10-network.
15090 Acer Aspire One proved to be a very nice thin client, with both
15091 screen, mouse and keybard in a small box. Was working on getting the
15092 diskless workstation setup configured out of the box, but did not
15093 finish it before the weekend was up.&lt;/p&gt;
15094
15095 &lt;p&gt;Did not find time to look at the 4 VGA cards in one box we got from
15096 the Brazilian group, so that will have to wait for the next
15097 development gathering. Would love to have the Debian Edu installer
15098 automatically detect and configure a multiseat setup when it find one
15099 of these cards.&lt;/p&gt;
15100 </description>
15101 </item>
15102
15103 <item>
15104 <title>The sorry state of multimedia browser plugins in Debian</title>
15105 <link>http://people.skolelinux.org/pere/blog/The_sorry_state_of_multimedia_browser_plugins_in_Debian.html</link>
15106 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_sorry_state_of_multimedia_browser_plugins_in_Debian.html</guid>
15107 <pubDate>Tue, 25 Nov 2008 00:10:00 +0100</pubDate>
15108 <description>&lt;p&gt;Recently I have spent some time evaluating the multimedia browser
15109 plugins available in Debian Lenny, to see which one we should use by
15110 default in Debian Edu. We need an embedded video playing plugin with
15111 control buttons to pause or stop the video, and capable of streaming
15112 all the multimedia content available on the web. The test results and
15113 notes are available on
15114 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/BrowserMultimedia&quot;&gt;the
15115 Debian wiki&lt;/a&gt;. I was surprised how few of the plugins are able to
15116 fill this need. My personal video player favorite, VLC, has a really
15117 bad plugin which fail on a lot of the test pages. A lot of the MIME
15118 types I would expect to work with any free software player (like
15119 video/ogg), just do not work. And simple formats like the
15120 audio/x-mplegurl format (m3u playlists), just isn&#39;t supported by the
15121 totem and vlc plugins. I hope the situation will improve soon. No
15122 wonder sites use the proprietary Adobe flash to play video.&lt;/p&gt;
15123
15124 &lt;p&gt;For Lenny, we seem to end up with the mplayer plugin. It seem to
15125 be the only one fitting our needs. :/&lt;/p&gt;
15126 </description>
15127 </item>
15128
15129 </channel>
15130 </rss>