]> pere.pagekite.me Git - homepage.git/blob - blog/tags/english/english.rss
19150908ecee6fc1dda91c1f96cf8b6397a4c004
[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>Suddenly I am the new upstream of the lsdvd command line tool</title>
11 <link>http://people.skolelinux.org/pere/blog/Suddenly_I_am_the_new_upstream_of_the_lsdvd_command_line_tool.html</link>
12 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Suddenly_I_am_the_new_upstream_of_the_lsdvd_command_line_tool.html</guid>
13 <pubDate>Thu, 25 Sep 2014 11:20:00 +0200</pubDate>
14 <description>&lt;p&gt;I use the &lt;a href=&quot;https://sourceforge.net/p/lsdvd/&quot;&gt;lsdvd tool&lt;/a&gt;
15 to handle my fairly large DVD collection. It is a nice command line
16 tool to get details about a DVD, like title, tracks, track length,
17 etc, in XML, perl or human readable format. But lsdvd have not seen
18 any new development since 2006 and had a few irritating bugs affecting
19 its use with some DVDs. Upstream seemed to be dead, and in January I
20 sent a small probe asking for a version control repository for the
21 project, without any reply. But I use it regularly and would like to
22 get &lt;a href=&quot;https://packages.qa.debian.org/lsdvd&quot;&gt;an updated version
23 into Debian&lt;/a&gt;. So two weeks ago I tried harder to get in touch with
24 the project admin, and after getting a reply from him explaining that
25 he was no longer interested in the project, I asked if I could take
26 over. And yesterday, I became project admin.&lt;/p&gt;
27
28 &lt;p&gt;I&#39;ve been in touch with a Gentoo developer and the Debian
29 maintainer interested in joining forces to maintain the upstream
30 project, and I hope we can get a new release out fairly quickly,
31 collecting the patches spread around on the internet into on place.
32 I&#39;ve added the relevant Debian patches to the freshly created git
33 repository, and expect the Gentoo patches to make it too. If you got
34 a DVD collection and care about command line tools, check out
35 &lt;a href=&quot;https://sourceforge.net/p/lsdvd/git/ci/master/tree/&quot;&gt;the git source&lt;/a&gt; and join
36 &lt;a href=&quot;https://sourceforge.net/p/lsdvd/mailman/&quot;&gt;the project mailing
37 list&lt;/a&gt;. :)&lt;/p&gt;
38 </description>
39 </item>
40
41 <item>
42 <title>Speeding up the Debian installer using eatmydata and dpkg-divert</title>
43 <link>http://people.skolelinux.org/pere/blog/Speeding_up_the_Debian_installer_using_eatmydata_and_dpkg_divert.html</link>
44 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Speeding_up_the_Debian_installer_using_eatmydata_and_dpkg_divert.html</guid>
45 <pubDate>Tue, 16 Sep 2014 14:00:00 +0200</pubDate>
46 <description>&lt;p&gt;The &lt;a href=&quot;https://www.debian.org/&quot;&gt;Debian&lt;/a&gt; installer could be
47 a lot quicker. When we install more than 2000 packages in
48 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux / Debian Edu&lt;/a&gt; using
49 tasksel in the installer, unpacking the binary packages take forever.
50 A part of the slow I/O issue was discussed in
51 &lt;a href=&quot;https://bugs.debian.org/613428&quot;&gt;bug #613428&lt;/a&gt; about too
52 much file system sync-ing done by dpkg, which is the package
53 responsible for unpacking the binary packages. Other parts (like code
54 executed by postinst scripts) might also sync to disk during
55 installation. All this sync-ing to disk do not really make sense to
56 me. If the machine crash half-way through, I start over, I do not try
57 to salvage the half installed system. So the failure sync-ing is
58 supposed to protect against, hardware or system crash, is not really
59 relevant while the installer is running.&lt;/p&gt;
60
61 &lt;p&gt;A few days ago, I thought of a way to get rid of all the file
62 system sync()-ing in a fairly non-intrusive way, without the need to
63 change the code in several packages. The idea is not new, but I have
64 not heard anyone propose the approach using dpkg-divert before. It
65 depend on the small and clever package
66 &lt;a href=&quot;https://packages.qa.debian.org/eatmydata&quot;&gt;eatmydata&lt;/a&gt;, which
67 uses LD_PRELOAD to replace the system functions for syncing data to
68 disk with functions doing nothing, thus allowing programs to live
69 dangerous while speeding up disk I/O significantly. Instead of
70 modifying the implementation of dpkg, apt and tasksel (which are the
71 packages responsible for selecting, fetching and installing packages),
72 it occurred to me that we could just divert the programs away, replace
73 them with a simple shell wrapper calling
74 &quot;eatmydata&amp;nbsp;$program&amp;nbsp;$@&quot;, to get the same effect.
75 Two days ago I decided to test the idea, and wrapped up a simple
76 implementation for the Debian Edu udeb.&lt;/p&gt;
77
78 &lt;p&gt;The effect was stunning. In my first test it reduced the running
79 time of the pkgsel step (installing tasks) from 64 to less than 44
80 minutes (20 minutes shaved off the installation) on an old Dell
81 Latitude D505 machine. I am not quite sure what the optimised time
82 would have been, as I messed up the testing a bit, causing the debconf
83 priority to get low enough for two questions to pop up during
84 installation. As soon as I saw the questions I moved the installation
85 along, but do not know how long the question were holding up the
86 installation. I did some more measurements using Debian Edu Jessie,
87 and got these results. The time measured is the time stamp in
88 /var/log/syslog between the &quot;pkgsel: starting tasksel&quot; and the
89 &quot;pkgsel: finishing up&quot; lines, if you want to do the same measurement
90 yourself. In Debian Edu, the tasksel dialog do not show up, and the
91 timing thus do not depend on how quickly the user handle the tasksel
92 dialog.&lt;/p&gt;
93
94 &lt;p&gt;&lt;table&gt;
95
96 &lt;tr&gt;
97 &lt;th&gt;Machine/setup&lt;/th&gt;
98 &lt;th&gt;Original tasksel&lt;/th&gt;
99 &lt;th&gt;Optimised tasksel&lt;/th&gt;
100 &lt;th&gt;Reduction&lt;/th&gt;
101 &lt;/tr&gt;
102
103 &lt;tr&gt;
104 &lt;td&gt;Latitude D505 Main+LTSP LXDE&lt;/td&gt;
105 &lt;td&gt;64 min (07:46-08:50)&lt;/td&gt;
106 &lt;td&gt;&lt;44 min (11:27-12:11)&lt;/td&gt;
107 &lt;td&gt;&gt;20 min 18%&lt;/td&gt;
108 &lt;/tr&gt;
109
110 &lt;tr&gt;
111 &lt;td&gt;Latitude D505 Roaming LXDE&lt;/td&gt;
112 &lt;td&gt;57 min (08:48-09:45)&lt;/td&gt;
113 &lt;td&gt;34 min (07:43-08:17)&lt;/td&gt;
114 &lt;td&gt;23 min 40%&lt;/td&gt;
115 &lt;/tr&gt;
116
117 &lt;tr&gt;
118 &lt;td&gt;Latitude D505 Minimal&lt;/td&gt;
119 &lt;td&gt;22 min (10:37-10:59)&lt;/td&gt;
120 &lt;td&gt;11 min (11:16-11:27)&lt;/td&gt;
121 &lt;td&gt;11 min 50%&lt;/td&gt;
122 &lt;/tr&gt;
123
124 &lt;tr&gt;
125 &lt;td&gt;Thinkpad X200 Minimal&lt;/td&gt;
126 &lt;td&gt;6 min (08:19-08:25)&lt;/td&gt;
127 &lt;td&gt;4 min (08:04-08:08)&lt;/td&gt;
128 &lt;td&gt;2 min 33%&lt;/td&gt;
129 &lt;/tr&gt;
130
131 &lt;tr&gt;
132 &lt;td&gt;Thinkpad X200 Roaming KDE&lt;/td&gt;
133 &lt;td&gt;19 min (09:21-09:40)&lt;/td&gt;
134 &lt;td&gt;15 min (10:25-10:40)&lt;/td&gt;
135 &lt;td&gt;4 min 21%&lt;/td&gt;
136 &lt;/tr&gt;
137
138 &lt;/table&gt;&lt;/p&gt;
139
140 &lt;p&gt;The test is done using a netinst ISO on a USB stick, so some of the
141 time is spent downloading packages. The connection to the Internet
142 was 100Mbit/s during testing, so downloading should not be a
143 significant factor in the measurement. Download typically took a few
144 seconds to a few minutes, depending on the amount of packages being
145 installed.&lt;/p&gt;
146
147 &lt;p&gt;The speedup is implemented by using two hooks in
148 &lt;a href=&quot;https://www.debian.org/devel/debian-installer/&quot;&gt;Debian
149 Installer&lt;/a&gt;, the pre-pkgsel.d hook to set up the diverts, and the
150 finish-install.d hook to remove the divert at the end of the
151 installation. I picked the pre-pkgsel.d hook instead of the
152 post-base-installer.d hook because I test using an ISO without the
153 eatmydata package included, and the post-base-installer.d hook in
154 Debian Edu can only operate on packages included in the ISO. The
155 negative effect of this is that I am unable to activate this
156 optimization for the kernel installation step in d-i. If the code is
157 moved to the post-base-installer.d hook, the speedup would be larger
158 for the entire installation.&lt;/p&gt;
159
160 &lt;p&gt;I&#39;ve implemented this in the
161 &lt;a href=&quot;https://packages.qa.debian.org/debian-edu-install&quot;&gt;debian-edu-install&lt;/a&gt;
162 git repository, and plan to provide the optimization as part of the
163 Debian Edu installation. If you want to test this yourself, you can
164 create two files in the installer (or in an udeb). One shell script
165 need do go into /usr/lib/pre-pkgsel.d/, with content like this:&lt;/p&gt;
166
167 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
168 #!/bin/sh
169 set -e
170 . /usr/share/debconf/confmodule
171 info() {
172 logger -t my-pkgsel &quot;info: $*&quot;
173 }
174 error() {
175 logger -t my-pkgsel &quot;error: $*&quot;
176 }
177 override_install() {
178 apt-install eatmydata || true
179 if [ -x /target/usr/bin/eatmydata ] ; then
180 for bin in dpkg apt-get aptitude tasksel ; do
181 file=/usr/bin/$bin
182 # Test that the file exist and have not been diverted already.
183 if [ -f /target$file ] ; then
184 info &quot;diverting $file using eatmydata&quot;
185 printf &quot;#!/bin/sh\neatmydata $bin.distrib \&quot;\$@\&quot;\n&quot; \
186 &gt; /target$file.edu
187 chmod 755 /target$file.edu
188 in-target dpkg-divert --package debian-edu-config \
189 --rename --quiet --add $file
190 ln -sf ./$bin.edu /target$file
191 else
192 error &quot;unable to divert $file, as it is missing.&quot;
193 fi
194 done
195 else
196 error &quot;unable to find /usr/bin/eatmydata after installing the eatmydata pacage&quot;
197 fi
198 }
199
200 override_install
201 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
202
203 &lt;p&gt;To clean up, another shell script should go into
204 /usr/lib/finish-install.d/ with code like this:
205
206 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
207 #! /bin/sh -e
208 . /usr/share/debconf/confmodule
209 error() {
210 logger -t my-finish-install &quot;error: $@&quot;
211 }
212 remove_install_override() {
213 for bin in dpkg apt-get aptitude tasksel ; do
214 file=/usr/bin/$bin
215 if [ -x /target$file.edu ] ; then
216 rm /target$file
217 in-target dpkg-divert --package debian-edu-config \
218 --rename --quiet --remove $file
219 rm /target$file.edu
220 else
221 error &quot;Missing divert for $file.&quot;
222 fi
223 done
224 sync # Flush file buffers before continuing
225 }
226
227 remove_install_override
228 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
229
230 &lt;p&gt;In Debian Edu, I placed both code fragments in a separate script
231 edu-eatmydata-install and call it from the pre-pkgsel.d and
232 finish-install.d scripts.&lt;/p&gt;
233
234 &lt;p&gt;By now you might ask if this change should get into the normal
235 Debian installer too? I suspect it should, but am not sure the
236 current debian-installer coordinators find it useful enough. It also
237 depend on the side effects of the change. I&#39;m not aware of any, but I
238 guess we will see if the change is safe after some more testing.
239 Perhaps there is some package in Debian depending on sync() and
240 fsync() having effect? Perhaps it should go into its own udeb, to
241 allow those of us wanting to enable it to do so without affecting
242 everyone.&lt;/p&gt;
243
244 &lt;p&gt;Update 2014-09-24: Since a few days ago, enabling this optimization
245 will break installation of all programs using gnutls because of
246 &lt;ahref=&quot;https://bugs.debian.org/702711&quot;&gt;bug #702711. An updated
247 eatmydata package in Debian will solve it.&lt;/p&gt;
248 </description>
249 </item>
250
251 <item>
252 <title>Good bye subkeys.pgp.net, welcome pool.sks-keyservers.net</title>
253 <link>http://people.skolelinux.org/pere/blog/Good_bye_subkeys_pgp_net__welcome_pool_sks_keyservers_net.html</link>
254 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Good_bye_subkeys_pgp_net__welcome_pool_sks_keyservers_net.html</guid>
255 <pubDate>Wed, 10 Sep 2014 13:10:00 +0200</pubDate>
256 <description>&lt;p&gt;Yesterday, I had the pleasure of attending a talk with the
257 &lt;a href=&quot;http://www.nuug.no/&quot;&gt;Norwegian Unix User Group&lt;/a&gt; about
258 &lt;a href=&quot;http://www.nuug.no/aktiviteter/20140909-sks-keyservers/&quot;&gt;the
259 OpenPGP keyserver pool sks-keyservers.net&lt;/a&gt;, and was very happy to
260 learn that there is a large set of publicly available key servers to
261 use when looking for peoples public key. So far I have used
262 subkeys.pgp.net, and some times wwwkeys.nl.pgp.net when the former
263 were misbehaving, but those days are ended. The servers I have used
264 up until yesterday have been slow and some times unavailable. I hope
265 those problems are gone now.&lt;/p&gt;
266
267 &lt;p&gt;Behind the round robin DNS entry of the
268 &lt;a href=&quot;https://sks-keyservers.net/&quot;&gt;sks-keyservers.net&lt;/a&gt; service
269 there is a pool of more than 100 keyservers which are checked every
270 day to ensure they are well connected and up to date. It must be
271 better than what I have used so far. :)&lt;/p&gt;
272
273 &lt;p&gt;Yesterdays speaker told me that the service is the default
274 keyserver provided by the default configuration in GnuPG, but this do
275 not seem to be used in Debian. Perhaps it should?&lt;/p&gt;
276
277 &lt;p&gt;Anyway, I&#39;ve updated my ~/.gnupg/options file to now include this
278 line:&lt;/p&gt;
279
280 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
281 keyserver pool.sks-keyservers.net
282 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
283
284 &lt;p&gt;With GnuPG version 2 one can also locate the keyserver using SRV
285 entries in DNS. Just for fun, I did just that at work, so now every
286 user of GnuPG at the University of Oslo should find a OpenGPG
287 keyserver automatically should their need it:&lt;/p&gt;
288
289 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
290 % host -t srv _pgpkey-http._tcp.uio.no
291 _pgpkey-http._tcp.uio.no has SRV record 0 100 11371 pool.sks-keyservers.net.
292 %
293 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
294
295 &lt;p&gt;Now if only
296 &lt;a href=&quot;http://ietfreport.isoc.org/idref/draft-shaw-openpgp-hkp/&quot;&gt;the
297 HKP lookup protocol&lt;/a&gt; supported finding signature paths, I would be
298 very happy. It can look up a given key or search for a user ID, but I
299 normally do not want that, but to find a trust path from my key to
300 another key. Given a user ID or key ID, I would like to find (and
301 download) the keys representing a signature path from my key to the
302 key in question, to be able to get a trust path between the two keys.
303 This is as far as I can tell not possible today. Perhaps something
304 for a future version of the protocol?&lt;/p&gt;
305 </description>
306 </item>
307
308 <item>
309 <title>Do you need an agreement with MPEG-LA to publish and broadcast H.264 video in Norway?</title>
310 <link>http://people.skolelinux.org/pere/blog/Do_you_need_an_agreement_with_MPEG_LA_to_publish_and_broadcast_H_264_video_in_Norway_.html</link>
311 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Do_you_need_an_agreement_with_MPEG_LA_to_publish_and_broadcast_H_264_video_in_Norway_.html</guid>
312 <pubDate>Mon, 25 Aug 2014 22:10:00 +0200</pubDate>
313 <description>&lt;p&gt;Two years later, I am still not sure if it is legal here in Norway
314 to use or publish a video in H.264 or MPEG4 format edited by the
315 commercially licensed video editors, without limiting the use to
316 create &quot;personal&quot; or &quot;non-commercial&quot; videos or get a license
317 agreement with &lt;a href=&quot;http://www.mpegla.com&quot;&gt;MPEG LA&lt;/a&gt;. If one
318 want to publish and broadcast video in a non-personal or commercial
319 setting, it might be that those tools can not be used, or that video
320 format can not be used, without breaking their copyright license. I
321 am not sure.
322 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Trenger_en_avtale_med_MPEG_LA_for___publisere_og_kringkaste_H_264_video_.html&quot;&gt;Back
323 then&lt;/a&gt;, I found that the copyright license terms for Adobe Premiere
324 and Apple Final Cut Pro both specified that one could not use the
325 program to produce anything else without a patent license from MPEG
326 LA. The issue is not limited to those two products, though. Other
327 much used products like those from Avid and Sorenson Media have terms
328 of use are similar to those from Adobe and Apple. The complicating
329 factor making me unsure if those terms have effect in Norway or not is
330 that the patents in question are not valid in Norway, but copyright
331 licenses are.&lt;/p&gt;
332
333 &lt;p&gt;These are the terms for Avid Artist Suite, according to their
334 &lt;a href=&quot;http://www.avid.com/US/about-avid/legal-notices/legal-enduserlicense2&quot;&gt;published
335 end user&lt;/a&gt;
336 &lt;a href=&quot;http://www.avid.com/static/resources/common/documents/corporate/LICENSE.pdf&quot;&gt;license
337 text&lt;/a&gt; (converted to lower case text for easier reading):&lt;/p&gt;
338
339 &lt;p&gt;&lt;blockquote&gt;
340 &lt;p&gt;18.2. MPEG-4. MPEG-4 technology may be included with the
341 software. MPEG LA, L.L.C. requires this notice: &lt;/p&gt;
342
343 &lt;p&gt;This product is licensed under the MPEG-4 visual patent portfolio
344 license for the personal and non-commercial use of a consumer for (i)
345 encoding video in compliance with the MPEG-4 visual standard (“MPEG-4
346 video”) and/or (ii) decoding MPEG-4 video that was encoded by a
347 consumer engaged in a personal and non-commercial activity and/or was
348 obtained from a video provider licensed by MPEG LA to provide MPEG-4
349 video. No license is granted or shall be implied for any other
350 use. Additional information including that relating to promotional,
351 internal and commercial uses and licensing may be obtained from MPEG
352 LA, LLC. See http://www.mpegla.com. This product is licensed under
353 the MPEG-4 systems patent portfolio license for encoding in compliance
354 with the MPEG-4 systems standard, except that an additional license
355 and payment of royalties are necessary for encoding in connection with
356 (i) data stored or replicated in physical media which is paid for on a
357 title by title basis and/or (ii) data which is paid for on a title by
358 title basis and is transmitted to an end user for permanent storage
359 and/or use, such additional license may be obtained from MPEG LA,
360 LLC. See http://www.mpegla.com for additional details.&lt;/p&gt;
361
362 &lt;p&gt;18.3. H.264/AVC. H.264/AVC technology may be included with the
363 software. MPEG LA, L.L.C. requires this notice:&lt;/p&gt;
364
365 &lt;p&gt;This product is licensed under the AVC patent portfolio license for
366 the personal use of a consumer or other uses in which it does not
367 receive remuneration to (i) encode video in compliance with the AVC
368 standard (“AVC video”) and/or (ii) decode AVC video that was encoded
369 by a consumer engaged in a personal activity and/or was obtained from
370 a video provider licensed to provide AVC video. No license is granted
371 or shall be implied for any other use. Additional information may be
372 obtained from MPEG LA, L.L.C. See http://www.mpegla.com.&lt;/p&gt;
373 &lt;/blockquote&gt;&lt;/p&gt;
374
375 &lt;p&gt;Note the requirement that the videos created can only be used for
376 personal or non-commercial purposes.&lt;/p&gt;
377
378 &lt;p&gt;The Sorenson Media software have
379 &lt;a href=&quot;http://www.sorensonmedia.com/terms/&quot;&gt;similar terms&lt;/a&gt;:&lt;/p&gt;
380
381 &lt;p&gt;&lt;blockquote&gt;
382
383 &lt;p&gt;With respect to a license from Sorenson pertaining to MPEG-4 Video
384 Decoders and/or Encoders: Any such product is licensed under the
385 MPEG-4 visual patent portfolio license for the personal and
386 non-commercial use of a consumer for (i) encoding video in compliance
387 with the MPEG-4 visual standard (“MPEG-4 video”) and/or (ii) decoding
388 MPEG-4 video that was encoded by a consumer engaged in a personal and
389 non-commercial activity and/or was obtained from a video provider
390 licensed by MPEG LA to provide MPEG-4 video. No license is granted or
391 shall be implied for any other use. Additional information including
392 that relating to promotional, internal and commercial uses and
393 licensing may be obtained from MPEG LA, LLC. See
394 http://www.mpegla.com.&lt;/p&gt;
395
396 &lt;p&gt;With respect to a license from Sorenson pertaining to MPEG-4
397 Consumer Recorded Data Encoder, MPEG-4 Systems Internet Data Encoder,
398 MPEG-4 Mobile Data Encoder, and/or MPEG-4 Unique Use Encoder: Any such
399 product is licensed under the MPEG-4 systems patent portfolio license
400 for encoding in compliance with the MPEG-4 systems standard, except
401 that an additional license and payment of royalties are necessary for
402 encoding in connection with (i) data stored or replicated in physical
403 media which is paid for on a title by title basis and/or (ii) data
404 which is paid for on a title by title basis and is transmitted to an
405 end user for permanent storage and/or use. Such additional license may
406 be obtained from MPEG LA, LLC. See http://www.mpegla.com for
407 additional details.&lt;/p&gt;
408
409 &lt;/blockquote&gt;&lt;/p&gt;
410
411 &lt;p&gt;Some free software like
412 &lt;a href=&quot;https://handbrake.fr/&quot;&gt;Handbrake&lt;/A&gt; and
413 &lt;a href=&quot;http://ffmpeg.org/&quot;&gt;FFMPEG&lt;/a&gt; uses GPL/LGPL licenses and do
414 not have any such terms included, so for those, there is no
415 requirement to limit the use to personal and non-commercial.&lt;/p&gt;
416 </description>
417 </item>
418
419 <item>
420 <title>Debian Edu interview: Bernd Zeitzen</title>
421 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Bernd_Zeitzen.html</link>
422 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Bernd_Zeitzen.html</guid>
423 <pubDate>Thu, 31 Jul 2014 08:30:00 +0200</pubDate>
424 <description>&lt;p&gt;The complete and free “out of the box” software solution for
425 schools, &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
426 Skolelinux&lt;/a&gt;, is used quite a lot in Germany, and one of the people
427 involved is Bernd Zeitzen, who show up on the project mailing lists
428 from time to time with interesting questions and tips on how to adjust
429 the setup. I managed to interview him this summer.&lt;/p&gt;
430
431 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
432
433 &lt;p&gt;My name is Bernd Zeitzen and I&#39;m married with Hedda, a self
434 employed physiotherapist. My former profession is tool maker, but I
435 haven&#39;t worked for 30 years in this job. 30 years ago I started to
436 support my wife and become her officeworker and a few years later the
437 administrator for a small computer network, today based on Ubuntu
438 Server (Samba, OpenVPN). For her daily work she has to use Windows
439 Desktops because the software she needs to organize her business only
440 works with Windows . :-(&lt;/p&gt;
441
442 &lt;p&gt;In 1988 we started with one PC and DOS, then I learned to use
443 Windows 98, 2000, XP, …, 8, Ubuntu, MacOSX. Today we are running a
444 Linux server with 6 Windows clients and 10 persons (teacher of
445 children with special needs, speech therapist, occupational therapist,
446 psychologist and officeworkers) using our Samba shares via OpenVPN to
447 work with the documentations of our patients.&lt;/p&gt;
448
449 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
450 project?&lt;/strong&gt;&lt;/p&gt;
451
452 &lt;p&gt;Two years ago a friend of mine asked me, if I want to get a job in
453 his school (&lt;a href=&quot;http://www.gymnasium-harsewinkel.de/&quot;&gt;Gymnasium
454 Harsewinkel&lt;/a&gt;). They started with Skolelinux / Debian Edu and they
455 were looking for people to give support to the teachers using the
456 software and the network and teaching the pupils increasing their
457 computer skills in optional lessons. I&#39;m spending 4-6 hours a week
458 with this job.&lt;/p&gt;
459
460 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
461 Edu?&lt;/strong&gt;&lt;/p&gt;
462
463 &lt;p&gt;The independence.&lt;/p&gt;
464
465 &lt;p&gt;First: Every person is allowed to use, share and develop the
466 software. Even if you are poor, you are allowed to use the software
467 included in Skolelinux/Debian Edu and all the other Free Software.&lt;/p&gt;
468
469 &lt;p&gt;Second: The software runs on old machines and this gives us the
470 possibility to recycle computers, weeded out from offices. The
471 servers and desktops are running for more than two years and they are
472 working reliable. &lt;/p&gt;
473
474 &lt;p&gt;We have two servers (one tjener and one terminal server), 45
475 workstations in three classrooms and seven laptops as a mobile
476 solution for all classrooms. These machines are all booting from the
477 terminal server. In the moment we are installing 30 laptops as mobile
478 workstations. Then the pupils have the possibility to work with these
479 machines in their classrooms. Internet access is realized by a WLAN
480 router, connected to the schools network. This is all done without a
481 dedicated system administrator or a computer science teacher.&lt;/p&gt;
482
483 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
484 Edu?&lt;/strong&gt;&lt;/p&gt;
485
486 &lt;p&gt;Teachers and pupils are Windows users. &amp;lt;Irony on&amp;gt; And Linux
487 isn&#39;t cool. It&#39;s software for freaks using the command line. &amp;lt;Irony
488 off&amp;gt; They don&#39;t realize the stability of the system. &lt;/p&gt;
489
490 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
491
492 &lt;p&gt;Firefox, Thunderbird, LibreOffice, Ubuntu Server 12.04 (Samba,
493 Apache, MySQL, Joomla!, … and Skolelinux / Debian Edu)&lt;/p&gt;
494
495 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
496 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
497
498 &lt;p&gt;In Germany we have the situation: every school is free to decide
499 which software they want to use. This decision is influenced by
500 teachers who learned to use Windows and MS Office. They buy a PC with
501 Windows preinstalled and an additional testing version of MS
502 Office. They don&#39;t know about the possibility to use Free Software
503 instead. Another problem are the publisher of school books. They
504 develop their software, added to the school books, for Windows.&lt;/p&gt;
505 </description>
506 </item>
507
508 <item>
509 <title>98.6 percent done with the Norwegian draft translation of Free Culture</title>
510 <link>http://people.skolelinux.org/pere/blog/98_6_percent_done_with_the_Norwegian_draft_translation_of_Free_Culture.html</link>
511 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/98_6_percent_done_with_the_Norwegian_draft_translation_of_Free_Culture.html</guid>
512 <pubDate>Wed, 23 Jul 2014 22:40:00 +0200</pubDate>
513 <description>&lt;p&gt;This summer I finally had time to continue working on the Norwegian
514 &lt;a href=&quot;http://www.docbook.org/&quot;&gt;docbook&lt;/a&gt; version of the 2004 book
515 &lt;a href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; by Lawrence Lessig,
516 to get a Norwegian text explaining the problems with todays copyright
517 law. Yesterday, I finally completed translated the book text. There
518 are still some foot/end notes left to translate, the colophon page
519 need to be rewritten, and a few words and phrases still need to be
520 translated, but the Norwegian text is ready for the first proof
521 reading. :) More spell checking is needed, and several illustrations
522 need to be cleaned up. The work stopped up because I had to give
523 priority to other projects the last year, and the progress graph of
524 the translation show this very well:&lt;/p&gt;
525
526 &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;
527
528 &lt;p&gt;If you want to read the result, check out the
529 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;
530 project pages and the
531 &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;,
532 &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;
533 and HTML version available in the
534 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig/tree/master/archive&quot;&gt;archive
535 directory&lt;/a&gt;.&lt;/p&gt;
536
537 &lt;p&gt;Please report typos, bugs and improvements to the github project if
538 you find any.&lt;/p&gt;
539 </description>
540 </item>
541
542 <item>
543 <title>From English wiki to translated PDF and epub via Docbook</title>
544 <link>http://people.skolelinux.org/pere/blog/From_English_wiki_to_translated_PDF_and_epub_via_Docbook.html</link>
545 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/From_English_wiki_to_translated_PDF_and_epub_via_Docbook.html</guid>
546 <pubDate>Tue, 17 Jun 2014 11:30:00 +0200</pubDate>
547 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux
548 project&lt;/a&gt; provide an instruction manual for teachers, system
549 administrators and other users that contain useful tips for setting up
550 and maintaining a Debian Edu installation. This text is about how the
551 text processing of this manual is handled in the project.&lt;/p&gt;
552
553 &lt;p&gt;One goal of the project is to provide information in the native
554 language of its users, and for this we need to handle translations.
555 But we also want to make sure each language contain the same
556 information, so for this we need a good way to keep the translations
557 in sync. And we want it to be easy for our users to improve the
558 documentation, avoiding the need to learn special formats or tools to
559 contribute, and the obvious way to do this is to make it possible to
560 edit the documentation using a web browser. We also want it to be
561 easy for translators to keep the translation up to date, and give them
562 help in figuring out what need to be translated. Here is the list of
563 tools and the process we have found trying to reach all these
564 goals.&lt;/p&gt;
565
566 &lt;p&gt;We maintain the authoritative source of our manual in the
567 &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Documentation/Wheezy/&quot;&gt;Debian
568 wiki&lt;/a&gt;, as several wiki pages written in English. It consist of one
569 front page with references to the different chapters, several pages
570 for each chapter, and finally one &quot;collection page&quot; gluing all the
571 chapters together into one large web page (aka
572 &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Documentation/Wheezy/AllInOne&quot;&gt;the
573 AllInOne page&lt;/a&gt;). The AllInOne page is the one used for further
574 processing and translations. Thanks to the fact that the
575 &lt;a href=&quot;http://moinmo.in/&quot;&gt;MoinMoin&lt;/a&gt; installation on
576 wiki.debian.org support exporting pages in
577 &lt;a href=&quot;http://www.docbook.org/&quot;&gt;the Docbook format&lt;/a&gt;, we can fetch
578 the list of pages to export using the raw version of the AllInOne
579 page, loop over each of them to generate a Docbook XML version of the
580 manual. This process also download images and transform image
581 references to use the locally downloaded images. The generated
582 Docbook XML files are slightly broken, so some post-processing is done
583 using the &lt;tt&gt;documentation/scripts/get_manual&lt;/tt&gt; program, and the
584 result is a nice Docbook XML file (debian-edu-wheezy-manual.xml) and
585 a handfull of images. The XML file can now be used to generate PDF, HTML
586 and epub versions of the English manual. This is the basic step of
587 our process, making PDF (using dblatex), HTML (using xsltproc) and
588 epub (using dbtoepub) version from Docbook XML, and the resulting files
589 are placed in the debian-edu-doc-en binary package.&lt;/p&gt;
590
591 &lt;p&gt;But English documentation is not enough for us. We want translated
592 documentation too, and we want to make it easy for translators to
593 track the English original. For this we use the
594 &lt;a href=&quot;http://packages.qa.debian.org/p/poxml.html&quot;&gt;poxml&lt;/a&gt; package,
595 which allow us to transform the English Docbook XML file into a
596 translation file (a .pot file), usable with the normal gettext based
597 translation tools used by those translating free software. The pot
598 file is used to create and maintain translation files (several .po
599 files), which the translations update with the native language
600 translations of all titles, paragraphs and blocks of text in the
601 original. The next step is combining the original English Docbook XML
602 and the translation file (say debian-edu-wheezy-manual.nb.po), to
603 create a translated Docbook XML file (in this case
604 debian-edu-wheezy-manual.nb.xml). This translated (or partly
605 translated, if the translation is not complete) Docbook XML file can
606 then be used like the original to create a PDF, HTML and epub version
607 of the documentation.&lt;/p&gt;
608
609 &lt;p&gt;The translators use different tools to edit the .po files. We
610 recommend using
611 &lt;a href=&quot;http://www.kde.org/applications/development/lokalize/&quot;&gt;lokalize&lt;/a&gt;,
612 while some use emacs and vi, others can use web based editors like
613 &lt;a href=&quot;http://pootle.translatehouse.org/&quot;&gt;Poodle&lt;/a&gt; or
614 &lt;a href=&quot;https://www.transifex.com/&quot;&gt;Transifex&lt;/a&gt;. All we care about
615 is where the .po file end up, in our git repository. Updated
616 translations can either be committed directly to git, or submitted as
617 &lt;a href=&quot;https://bugs.debian.org/src:debian-edu-doc&quot;&gt;bug reports
618 against the debian-edu-doc package&lt;/a&gt;.&lt;/p&gt;
619
620 &lt;p&gt;One challenge is images, which both might need to be translated (if
621 they show translated user applications), and are needed in different
622 formats when creating PDF and HTML versions (epub is a HTML version in
623 this regard). For this we transform the original PNG images to the
624 needed density and format during build, and have a way to provide
625 translated images by storing translated versions in
626 images/$LANGUAGECODE/. I am a bit unsure about the details here. The
627 package maintainers know more.&lt;/p&gt;
628
629 &lt;p&gt;If you wonder what the result look like, we provide
630 &lt;a href=&quot;http://maintainer.skolelinux.org/debian-edu-doc/&quot;&gt;the content
631 of the documentation packages on the web&lt;/a&gt;. See for example the
632 &lt;a href=&quot;http://maintainer.skolelinux.org/debian-edu-doc/it/debian-edu-wheezy-manual.pdf&quot;&gt;Italian
633 PDF version&lt;/a&gt; or the
634 &lt;a href=&quot;http://maintainer.skolelinux.org/debian-edu-doc/de/debian-edu-wheezy-manual.html&quot;&gt;German
635 HTML version&lt;/a&gt;. We do not yet build the epub version by default,
636 but perhaps it will be done in the future.&lt;/p&gt;
637
638 &lt;p&gt;To learn more, check out
639 &lt;a href=&quot;http://packages.qa.debian.org/d/debian-edu-doc.html&quot;&gt;the
640 debian-edu-doc package&lt;/a&gt;,
641 &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Documentation/Wheezy/&quot;&gt;the
642 manual on the wiki&lt;/a&gt; and
643 &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Documentation/Wheezy/Translations&quot;&gt;the
644 translation instructions&lt;/a&gt; in the manual.&lt;/p&gt;
645 </description>
646 </item>
647
648 <item>
649 <title>Free software car computer solution?</title>
650 <link>http://people.skolelinux.org/pere/blog/Free_software_car_computer_solution_.html</link>
651 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_software_car_computer_solution_.html</guid>
652 <pubDate>Thu, 29 May 2014 18:45:00 +0200</pubDate>
653 <description>&lt;p&gt;Dear lazyweb. I&#39;m planning to set up a small Raspberry Pi computer
654 in my car, connected to
655 &lt;a href=&quot;http://www.dx.com/p/400a-4-0-tft-lcd-digital-monitor-for-vehicle-parking-reverse-camera-1440x272-12v-dc-57776&quot;&gt;a
656 small screen&lt;/a&gt; next to the rear mirror. I plan to hook it up with a
657 GPS and a USB wifi card too. The idea is to get my own
658 &quot;&lt;a href=&quot;http://en.wikipedia.org/wiki/Carputer&quot;&gt;Carputer&lt;/a&gt;&quot;. But I
659 wonder if someone already created a good free software solution for
660 such car computer.&lt;/p&gt;
661
662 &lt;p&gt;This is my current wish list for such system:&lt;/p&gt;
663
664 &lt;ul&gt;
665
666 &lt;li&gt;Work on Raspberry Pi.&lt;/li&gt;
667
668 &lt;li&gt;Show current speed limit based on location, and warn if going too
669 fast (for example using color codes yellow and red on the screen,
670 or make a sound). This could be done either using either data from
671 &lt;a href=&quot;http://www.openstreetmap.org/&quot;&gt;Openstreetmap&lt;/a&gt; or OCR
672 info gathered from a dashboard camera.&lt;/li&gt;
673
674 &lt;li&gt;Track automatic toll road passes and their cost, show total spent
675 and make it possible to calculate toll costs for planned
676 route.&lt;/li&gt;
677
678 &lt;li&gt;Collect GPX tracks for use with OpenStreetMap.&lt;/li&gt;
679
680 &lt;li&gt;Automatically detect and use any wireless connection to connect
681 to home server. Try IP over DNS
682 (&lt;a href=&quot;http://dev.kryo.se/iodine/&quot;&gt;iodine&lt;/a&gt;) or ICMP
683 (&lt;a href=&quot;http://code.gerade.org/hans/&quot;&gt;Hans&lt;/a&gt;) if direct
684 connection do not work.&lt;/li&gt;
685
686 &lt;li&gt;Set up mesh network to talk to other cars with the same system,
687 or some standard car mesh protocol.&lt;/li&gt;
688
689 &lt;li&gt;Warn when approaching speed cameras and speed camera ranges
690 (speed calculated between two cameras).&lt;/li&gt;
691
692 &lt;li&gt;Suport dashboard/front facing camera to discover speed limits and
693 run OCR to track registration number of passing cars.&lt;/li&gt;
694
695 &lt;/ul&gt;
696
697 &lt;p&gt;If you know of any free software car computer system supporting
698 some or all of these features, please let me know.&lt;/p&gt;
699 </description>
700 </item>
701
702 <item>
703 <title>Half the Coverity issues in Gnash fixed in the next release</title>
704 <link>http://people.skolelinux.org/pere/blog/Half_the_Coverity_issues_in_Gnash_fixed_in_the_next_release.html</link>
705 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Half_the_Coverity_issues_in_Gnash_fixed_in_the_next_release.html</guid>
706 <pubDate>Tue, 29 Apr 2014 14:20:00 +0200</pubDate>
707 <description>&lt;p&gt;I&#39;ve been following &lt;a href=&quot;http://www.getgnash.org/&quot;&gt;the Gnash
708 project&lt;/a&gt; for quite a while now. It is a free software
709 implementation of Adobe Flash, both a standalone player and a browser
710 plugin. Gnash implement support for the AVM1 format (and not the
711 newer AVM2 format - see
712 &lt;a href=&quot;http://lightspark.github.io/&quot;&gt;Lightspark&lt;/a&gt; for that one),
713 allowing several flash based sites to work. Thanks to the friendly
714 developers at Youtube, it also work with Youtube videos, because the
715 Javascript code at Youtube detect Gnash and serve a AVM1 player to
716 those users. :) Would be great if someone found time to implement AVM2
717 support, but it has not happened yet. If you install both Lightspark
718 and Gnash, Lightspark will invoke Gnash if it find a AVM1 flash file,
719 so you can get both handled as free software. Unfortunately,
720 Lightspark so far only implement a small subset of AVM2, and many
721 sites do not work yet.&lt;/p&gt;
722
723 &lt;p&gt;A few months ago, I started looking at
724 &lt;a href=&quot;http://scan.coverity.com/&quot;&gt;Coverity&lt;/a&gt;, the static source
725 checker used to find heaps and heaps of bugs in free software (thanks
726 to the donation of a scanning service to free software projects by the
727 company developing this non-free code checker), and Gnash was one of
728 the projects I decided to check out. Coverity is able to find lock
729 errors, memory errors, dead code and more. A few days ago they even
730 extended it to also be able to find the heartbleed bug in OpenSSL.
731 There are heaps of checks being done on the instrumented code, and the
732 amount of bogus warnings is quite low compared to the other static
733 code checkers I have tested over the years.&lt;/p&gt;
734
735 &lt;p&gt;Since a few weeks ago, I&#39;ve been working with the other Gnash
736 developers squashing bugs discovered by Coverity. I was quite happy
737 today when I checked the current status and saw that of the 777 issues
738 detected so far, 374 are marked as fixed. This make me confident that
739 the next Gnash release will be more stable and more dependable than
740 the previous one. Most of the reported issues were and are in the
741 test suite, but it also found a few in the rest of the code.&lt;/p&gt;
742
743 &lt;p&gt;If you want to help out, you find us on
744 &lt;a href=&quot;https://lists.gnu.org/mailman/listinfo/gnash-dev&quot;&gt;the
745 gnash-dev mailing list&lt;/a&gt; and on
746 &lt;a href=&quot;irc://irc.freenode.net/#gnash&quot;&gt;the #gnash channel on
747 irc.freenode.net IRC server&lt;/a&gt;.&lt;/p&gt;
748 </description>
749 </item>
750
751 <item>
752 <title>Install hardware dependent packages using tasksel (Isenkram 0.7)</title>
753 <link>http://people.skolelinux.org/pere/blog/Install_hardware_dependent_packages_using_tasksel__Isenkram_0_7_.html</link>
754 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Install_hardware_dependent_packages_using_tasksel__Isenkram_0_7_.html</guid>
755 <pubDate>Wed, 23 Apr 2014 14:50:00 +0200</pubDate>
756 <description>&lt;p&gt;It would be nice if it was easier in Debian to get all the hardware
757 related packages relevant for the computer installed automatically.
758 So I implemented one, using
759 &lt;a href=&quot;http://packages.qa.debian.org/isenkram&quot;&gt;my Isenkram
760 package&lt;/a&gt;. To use it, install the tasksel and isenkram packages and
761 run tasksel as user root. You should be presented with a new option,
762 &quot;Hardware specific packages (autodetected by isenkram)&quot;. When you
763 select it, tasksel will install the packages isenkram claim is fit for
764 the current hardware, hot pluggable or not.&lt;p&gt;
765
766 &lt;p&gt;The implementation is in two files, one is the tasksel menu entry
767 description, and the other is the script used to extract the list of
768 packages to install. The first part is in
769 &lt;tt&gt;/usr/share/tasksel/descs/isenkram.desc&lt;/tt&gt; and look like
770 this:&lt;/p&gt;
771
772 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
773 Task: isenkram
774 Section: hardware
775 Description: Hardware specific packages (autodetected by isenkram)
776 Based on the detected hardware various hardware specific packages are
777 proposed.
778 Test-new-install: mark show
779 Relevance: 8
780 Packages: for-current-hardware
781 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
782
783 &lt;p&gt;The second part is in
784 &lt;tt&gt;/usr/lib/tasksel/packages/for-current-hardware&lt;/tt&gt; and look like
785 this:&lt;/p&gt;
786
787 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
788 #!/bin/sh
789 #
790 (
791 isenkram-lookup
792 isenkram-autoinstall-firmware -l
793 ) | sort -u
794 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
795
796 &lt;p&gt;All in all, a very short and simple implementation making it
797 trivial to install the hardware dependent package we all may want to
798 have installed on our machines. I&#39;ve not been able to find a way to
799 get tasksel to tell you exactly which packages it plan to install
800 before doing the installation. So if you are curious or careful,
801 check the output from the isenkram-* command line tools first.&lt;/p&gt;
802
803 &lt;p&gt;The information about which packages are handling which hardware is
804 fetched either from the isenkram package itself in
805 /usr/share/isenkram/, from git.debian.org or from the APT package
806 database (using the Modaliases header). The APT package database
807 parsing have caused a nasty resource leak in the isenkram daemon (bugs
808 &lt;a href=&quot;http://bugs.debian.org/719837&quot;&gt;#719837&lt;/a&gt; and
809 &lt;a href=&quot;http://bugs.debian.org/730704&quot;&gt;#730704&lt;/a&gt;). The cause is in
810 the python-apt code (bug
811 &lt;a href=&quot;http://bugs.debian.org/745487&quot;&gt;#745487&lt;/a&gt;), but using a
812 workaround I was able to get rid of the file descriptor leak and
813 reduce the memory leak from ~30 MiB per hardware detection down to
814 around 2 MiB per hardware detection. It should make the desktop
815 daemon a lot more useful. The fix is in version 0.7 uploaded to
816 unstable today.&lt;/p&gt;
817
818 &lt;p&gt;I believe the current way of mapping hardware to packages in
819 Isenkram is is a good draft, but in the future I expect isenkram to
820 use the AppStream data source for this. A proposal for getting proper
821 AppStream support into Debian is floating around as
822 &lt;a href=&quot;https://wiki.debian.org/DEP-11&quot;&gt;DEP-11&lt;/a&gt;, and
823 &lt;a href=&quot;https://wiki.debian.org/SummerOfCode2014/Projects#SummerOfCode2014.2FProjects.2FAppStreamDEP11Implementation.AppStream.2FDEP-11_for_the_Debian_Archive&quot;&gt;GSoC
824 project&lt;/a&gt; will take place this summer to improve the situation. I
825 look forward to seeing the result, and welcome patches for isenkram to
826 start using the information when it is ready.&lt;/p&gt;
827
828 &lt;p&gt;If you want your package to map to some specific hardware, either
829 add a &quot;Xb-Modaliases&quot; header to your control file like I did in
830 &lt;a href=&quot;http://packages.qa.debian.org/pymissile&quot;&gt;the pymissile
831 package&lt;/a&gt; or submit a bug report with the details to the isenkram
832 package. See also
833 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/tags/isenkram/&quot;&gt;all my
834 blog posts tagged isenkram&lt;/a&gt; for details on the notation. I expect
835 the information will be migrated to AppStream eventually, but for the
836 moment I got no better place to store it.&lt;/p&gt;
837 </description>
838 </item>
839
840 <item>
841 <title>FreedomBox milestone - all packages now in Debian Sid</title>
842 <link>http://people.skolelinux.org/pere/blog/FreedomBox_milestone___all_packages_now_in_Debian_Sid.html</link>
843 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/FreedomBox_milestone___all_packages_now_in_Debian_Sid.html</guid>
844 <pubDate>Tue, 15 Apr 2014 22:10:00 +0200</pubDate>
845 <description>&lt;p&gt;The &lt;a href=&quot;https://wiki.debian.org/FreedomBox&quot;&gt;Freedombox
846 project&lt;/a&gt; is working on providing the software and hardware to make
847 it easy for non-technical people to host their data and communication
848 at home, and being able to communicate with their friends and family
849 encrypted and away from prying eyes. It is still going strong, and
850 today a major mile stone was reached.&lt;/p&gt;
851
852 &lt;p&gt;Today, the last of the packages currently used by the project to
853 created the system images were accepted into Debian Unstable. It was
854 the freedombox-setup package, which is used to configure the images
855 during build and on the first boot. Now all one need to get going is
856 the build code from the freedom-maker git repository and packages from
857 Debian. And once the freedombox-setup package enter testing, we can
858 build everything directly from Debian. :)&lt;/p&gt;
859
860 &lt;p&gt;Some key packages used by Freedombox are
861 &lt;a href=&quot;http://packages.qa.debian.org/freedombox-setup&quot;&gt;freedombox-setup&lt;/a&gt;,
862 &lt;a href=&quot;http://packages.qa.debian.org/plinth&quot;&gt;plinth&lt;/a&gt;,
863 &lt;a href=&quot;http://packages.qa.debian.org/pagekite&quot;&gt;pagekite&lt;/a&gt;,
864 &lt;a href=&quot;http://packages.qa.debian.org/tor&quot;&gt;tor&lt;/a&gt;,
865 &lt;a href=&quot;http://packages.qa.debian.org/privoxy&quot;&gt;privoxy&lt;/a&gt;,
866 &lt;a href=&quot;http://packages.qa.debian.org/owncloud&quot;&gt;owncloud&lt;/a&gt; and
867 &lt;a href=&quot;http://packages.qa.debian.org/dnsmasq&quot;&gt;dnsmasq&lt;/a&gt;. There
868 are plans to integrate more packages into the setup. User
869 documentation is maintained on the Debian wiki. Please
870 &lt;a href=&quot;https://wiki.debian.org/FreedomBox/Manual/Jessie&quot;&gt;check out
871 the manual&lt;/a&gt; and help us improve it.&lt;/p&gt;
872
873 &lt;p&gt;To test for yourself and create boot images with the FreedomBox
874 setup, run this on a Debian machine using a user with sudo rights to
875 become root:&lt;/p&gt;
876
877 &lt;p&gt;&lt;pre&gt;
878 sudo apt-get install git vmdebootstrap mercurial python-docutils \
879 mktorrent extlinux virtualbox qemu-user-static binfmt-support \
880 u-boot-tools
881 git clone http://anonscm.debian.org/git/freedombox/freedom-maker.git \
882 freedom-maker
883 make -C freedom-maker dreamplug-image raspberry-image virtualbox-image
884 &lt;/pre&gt;&lt;/p&gt;
885
886 &lt;p&gt;Root access is needed to run debootstrap and mount loopback
887 devices. See the README in the freedom-maker git repo for more
888 details on the build. If you do not want all three images, trim the
889 make line. Note that the virtualbox-image target is not really
890 virtualbox specific. It create a x86 image usable in kvm, qemu,
891 vmware and any other x86 virtual machine environment. You might need
892 the version of vmdebootstrap in Jessie to get the build working, as it
893 include fixes for a race condition with kpartx.&lt;/p&gt;
894
895 &lt;p&gt;If you instead want to install using a Debian CD and the preseed
896 method, boot a Debian Wheezy ISO and use this boot argument to load
897 the preseed values:&lt;/p&gt;
898
899 &lt;p&gt;&lt;pre&gt;
900 url=&lt;a href=&quot;http://www.reinholdtsen.name/freedombox/preseed-jessie.dat&quot;&gt;http://www.reinholdtsen.name/freedombox/preseed-jessie.dat&lt;/a&gt;
901 &lt;/pre&gt;&lt;/p&gt;
902
903 &lt;p&gt;I have not tested it myself the last few weeks, so I do not know if
904 it still work.&lt;/p&gt;
905
906 &lt;p&gt;If you wonder how to help, one task you could look at is using
907 systemd as the boot system. It will become the default for Linux in
908 Jessie, so we need to make sure it is usable on the Freedombox. I did
909 a simple test a few weeks ago, and noticed dnsmasq failed to start
910 during boot when using systemd. I suspect there are other problems
911 too. :) To detect problems, there is a test suite included, which can
912 be run from the plinth web interface.&lt;/p&gt;
913
914 &lt;p&gt;Give it a go and let us know how it goes on the mailing list, and help
915 us get the new release published. :) Please join us on
916 &lt;a href=&quot;irc://irc.debian.org:6667/%23freedombox&quot;&gt;IRC (#freedombox on
917 irc.debian.org)&lt;/a&gt; and
918 &lt;a href=&quot;http://lists.alioth.debian.org/mailman/listinfo/freedombox-discuss&quot;&gt;the
919 mailing list&lt;/a&gt; if you want to help make this vision come true.&lt;/p&gt;
920 </description>
921 </item>
922
923 <item>
924 <title>S3QL, a locally mounted cloud file system - nice free software</title>
925 <link>http://people.skolelinux.org/pere/blog/S3QL__a_locally_mounted_cloud_file_system___nice_free_software.html</link>
926 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/S3QL__a_locally_mounted_cloud_file_system___nice_free_software.html</guid>
927 <pubDate>Wed, 9 Apr 2014 11:30:00 +0200</pubDate>
928 <description>&lt;p&gt;For a while now, I have been looking for a sensible offsite backup
929 solution for use at home. My requirements are simple, it must be
930 cheap and locally encrypted (in other words, I keep the encryption
931 keys, the storage provider do not have access to my private files).
932 One idea me and my friends had many years ago, before the cloud
933 storage providers showed up, was to use Google mail as storage,
934 writing a Linux block device storing blocks as emails in the mail
935 service provided by Google, and thus get heaps of free space. On top
936 of this one can add encryption, RAID and volume management to have
937 lots of (fairly slow, I admit that) cheap and encrypted storage. But
938 I never found time to implement such system. But the last few weeks I
939 have looked at a system called
940 &lt;a href=&quot;https://bitbucket.org/nikratio/s3ql/&quot;&gt;S3QL&lt;/a&gt;, a locally
941 mounted network backed file system with the features I need.&lt;/p&gt;
942
943 &lt;p&gt;S3QL is a fuse file system with a local cache and cloud storage,
944 handling several different storage providers, any with Amazon S3,
945 Google Drive or OpenStack API. There are heaps of such storage
946 providers. S3QL can also use a local directory as storage, which
947 combined with sshfs allow for file storage on any ssh server. S3QL
948 include support for encryption, compression, de-duplication, snapshots
949 and immutable file systems, allowing me to mount the remote storage as
950 a local mount point, look at and use the files as if they were local,
951 while the content is stored in the cloud as well. This allow me to
952 have a backup that should survive fire. The file system can not be
953 shared between several machines at the same time, as only one can
954 mount it at the time, but any machine with the encryption key and
955 access to the storage service can mount it if it is unmounted.&lt;/p&gt;
956
957 &lt;p&gt;It is simple to use. I&#39;m using it on Debian Wheezy, where the
958 package is included already. So to get started, run &lt;tt&gt;apt-get
959 install s3ql&lt;/tt&gt;. Next, pick a storage provider. I ended up picking
960 Greenqloud, after reading their nice recipe on
961 &lt;a href=&quot;https://greenqloud.zendesk.com/entries/44611757-How-To-Use-S3QL-to-mount-a-StorageQloud-bucket-on-Debian-Wheezy&quot;&gt;how
962 to use S3QL with their Amazon S3 service&lt;/a&gt;, because I trust the laws
963 in Iceland more than those in USA when it come to keeping my personal
964 data safe and private, and thus would rather spend money on a company
965 in Iceland. Another nice recipe is available from the article
966 &lt;a href=&quot;http://www.admin-magazine.com/HPC/Articles/HPC-Cloud-Storage&quot;&gt;S3QL
967 Filesystem for HPC Storage&lt;/a&gt; by Jeff Layton in the HPC section of
968 Admin magazine. When the provider is picked, figure out how to get
969 the API key needed to connect to the storage API. With Greencloud,
970 the key did not show up until I had added payment details to my
971 account.&lt;/p&gt;
972
973 &lt;p&gt;Armed with the API access details, it is time to create the file
974 system. First, create a new bucket in the cloud. This bucket is the
975 file system storage area. I picked a bucket name reflecting the
976 machine that was going to store data there, but any name will do.
977 I&#39;ll refer to it as &lt;tt&gt;bucket-name&lt;/tt&gt; below. In addition, one need
978 the API login and password, and a locally created password. Store it
979 all in ~root/.s3ql/authinfo2 like this:
980
981 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
982 [s3c]
983 storage-url: s3c://s.greenqloud.com:443/bucket-name
984 backend-login: API-login
985 backend-password: API-password
986 fs-passphrase: local-password
987 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
988
989 &lt;p&gt;I create my local passphrase using &lt;tt&gt;pwget 50&lt;/tt&gt; or similar,
990 but any sensible way to create a fairly random password should do it.
991 Armed with these details, it is now time to run mkfs, entering the API
992 details and password to create it:&lt;/p&gt;
993
994 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
995 # mkdir -m 700 /var/lib/s3ql-cache
996 # mkfs.s3ql --cachedir /var/lib/s3ql-cache --authfile /root/.s3ql/authinfo2 \
997 --ssl s3c://s.greenqloud.com:443/bucket-name
998 Enter backend login:
999 Enter backend password:
1000 Before using S3QL, make sure to read the user&#39;s guide, especially
1001 the &#39;Important Rules to Avoid Loosing Data&#39; section.
1002 Enter encryption password:
1003 Confirm encryption password:
1004 Generating random encryption key...
1005 Creating metadata tables...
1006 Dumping metadata...
1007 ..objects..
1008 ..blocks..
1009 ..inodes..
1010 ..inode_blocks..
1011 ..symlink_targets..
1012 ..names..
1013 ..contents..
1014 ..ext_attributes..
1015 Compressing and uploading metadata...
1016 Wrote 0.00 MB of compressed metadata.
1017 # &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
1018
1019 &lt;p&gt;The next step is mounting the file system to make the storage available.
1020
1021 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
1022 # mount.s3ql --cachedir /var/lib/s3ql-cache --authfile /root/.s3ql/authinfo2 \
1023 --ssl --allow-root s3c://s.greenqloud.com:443/bucket-name /s3ql
1024 Using 4 upload threads.
1025 Downloading and decompressing metadata...
1026 Reading metadata...
1027 ..objects..
1028 ..blocks..
1029 ..inodes..
1030 ..inode_blocks..
1031 ..symlink_targets..
1032 ..names..
1033 ..contents..
1034 ..ext_attributes..
1035 Mounting filesystem...
1036 # df -h /s3ql
1037 Filesystem Size Used Avail Use% Mounted on
1038 s3c://s.greenqloud.com:443/bucket-name 1.0T 0 1.0T 0% /s3ql
1039 #
1040 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
1041
1042 &lt;p&gt;The file system is now ready for use. I use rsync to store my
1043 backups in it, and as the metadata used by rsync is downloaded at
1044 mount time, no network traffic (and storage cost) is triggered by
1045 running rsync. To unmount, one should not use the normal umount
1046 command, as this will not flush the cache to the cloud storage, but
1047 instead running the umount.s3ql command like this:
1048
1049 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
1050 # umount.s3ql /s3ql
1051 #
1052 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
1053
1054 &lt;p&gt;There is a fsck command available to check the file system and
1055 correct any problems detected. This can be used if the local server
1056 crashes while the file system is mounted, to reset the &quot;already
1057 mounted&quot; flag. This is what it look like when processing a working
1058 file system:&lt;/p&gt;
1059
1060 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
1061 # fsck.s3ql --force --ssl s3c://s.greenqloud.com:443/bucket-name
1062 Using cached metadata.
1063 File system seems clean, checking anyway.
1064 Checking DB integrity...
1065 Creating temporary extra indices...
1066 Checking lost+found...
1067 Checking cached objects...
1068 Checking names (refcounts)...
1069 Checking contents (names)...
1070 Checking contents (inodes)...
1071 Checking contents (parent inodes)...
1072 Checking objects (reference counts)...
1073 Checking objects (backend)...
1074 ..processed 5000 objects so far..
1075 ..processed 10000 objects so far..
1076 ..processed 15000 objects so far..
1077 Checking objects (sizes)...
1078 Checking blocks (referenced objects)...
1079 Checking blocks (refcounts)...
1080 Checking inode-block mapping (blocks)...
1081 Checking inode-block mapping (inodes)...
1082 Checking inodes (refcounts)...
1083 Checking inodes (sizes)...
1084 Checking extended attributes (names)...
1085 Checking extended attributes (inodes)...
1086 Checking symlinks (inodes)...
1087 Checking directory reachability...
1088 Checking unix conventions...
1089 Checking referential integrity...
1090 Dropping temporary indices...
1091 Backing up old metadata...
1092 Dumping metadata...
1093 ..objects..
1094 ..blocks..
1095 ..inodes..
1096 ..inode_blocks..
1097 ..symlink_targets..
1098 ..names..
1099 ..contents..
1100 ..ext_attributes..
1101 Compressing and uploading metadata...
1102 Wrote 0.89 MB of compressed metadata.
1103 #
1104 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
1105
1106 &lt;p&gt;Thanks to the cache, working on files that fit in the cache is very
1107 quick, about the same speed as local file access. Uploading large
1108 amount of data is to me limited by the bandwidth out of and into my
1109 house. Uploading 685 MiB with a 100 MiB cache gave me 305 kiB/s,
1110 which is very close to my upload speed, and downloading the same
1111 Debian installation ISO gave me 610 kiB/s, close to my download speed.
1112 Both were measured using &lt;tt&gt;dd&lt;/tt&gt;. So for me, the bottleneck is my
1113 network, not the file system code. I do not know what a good cache
1114 size would be, but suspect that the cache should e larger than your
1115 working set.&lt;/p&gt;
1116
1117 &lt;p&gt;I mentioned that only one machine can mount the file system at the
1118 time. If another machine try, it is told that the file system is
1119 busy:&lt;/p&gt;
1120
1121 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
1122 # mount.s3ql --cachedir /var/lib/s3ql-cache --authfile /root/.s3ql/authinfo2 \
1123 --ssl --allow-root s3c://s.greenqloud.com:443/bucket-name /s3ql
1124 Using 8 upload threads.
1125 Backend reports that fs is still mounted elsewhere, aborting.
1126 #
1127 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
1128
1129 &lt;p&gt;The file content is uploaded when the cache is full, while the
1130 metadata is uploaded once every 24 hour by default. To ensure the
1131 file system content is flushed to the cloud, one can either umount the
1132 file system, or ask S3QL to flush the cache and metadata using
1133 s3qlctrl:
1134
1135 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
1136 # s3qlctrl upload-meta /s3ql
1137 # s3qlctrl flushcache /s3ql
1138 #
1139 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
1140
1141 &lt;p&gt;If you are curious about how much space your data uses in the
1142 cloud, and how much compression and deduplication cut down on the
1143 storage usage, you can use s3qlstat on the mounted file system to get
1144 a report:&lt;/p&gt;
1145
1146 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
1147 # s3qlstat /s3ql
1148 Directory entries: 9141
1149 Inodes: 9143
1150 Data blocks: 8851
1151 Total data size: 22049.38 MB
1152 After de-duplication: 21955.46 MB (99.57% of total)
1153 After compression: 21877.28 MB (99.22% of total, 99.64% of de-duplicated)
1154 Database size: 2.39 MB (uncompressed)
1155 (some values do not take into account not-yet-uploaded dirty blocks in cache)
1156 #
1157 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
1158
1159 &lt;p&gt;I mentioned earlier that there are several possible suppliers of
1160 storage. I did not try to locate them all, but am aware of at least
1161 &lt;a href=&quot;https://www.greenqloud.com/&quot;&gt;Greenqloud&lt;/a&gt;,
1162 &lt;a href=&quot;http://drive.google.com/&quot;&gt;Google Drive&lt;/a&gt;,
1163 &lt;a href=&quot;http://aws.amazon.com/s3/&quot;&gt;Amazon S3 web serivces&lt;/a&gt;,
1164 &lt;a href=&quot;http://www.rackspace.com/&quot;&gt;Rackspace&lt;/a&gt; and
1165 &lt;a href=&quot;http://crowncloud.net/&quot;&gt;Crowncloud&lt;/A&gt;. The latter even
1166 accept payment in Bitcoin. Pick one that suit your need. Some of
1167 them provide several GiB of free storage, but the prize models are
1168 quite different and you will have to figure out what suits you
1169 best.&lt;/p&gt;
1170
1171 &lt;p&gt;While researching this blog post, I had a look at research papers
1172 and posters discussing the S3QL file system. There are several, which
1173 told me that the file system is getting a critical check by the
1174 science community and increased my confidence in using it. One nice
1175 poster is titled
1176 &quot;&lt;a href=&quot;http://www.lanl.gov/orgs/adtsc/publications/science_highlights_2013/docs/pg68_69.pdf&quot;&gt;An
1177 Innovative Parallel Cloud Storage System using OpenStack’s SwiftObject
1178 Store and Transformative Parallel I/O Approach&lt;/a&gt;&quot; by Hsing-Bung
1179 Chen, Benjamin McClelland, David Sherrill, Alfred Torrez, Parks Fields
1180 and Pamela Smith. Please have a look.&lt;/p&gt;
1181
1182 &lt;p&gt;Given my problems with different file systems earlier, I decided to
1183 check out the mounted S3QL file system to see if it would be usable as
1184 a home directory (in other word, that it provided POSIX semantics when
1185 it come to locking and umask handling etc). Running
1186 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Testing_if_a_file_system_can_be_used_for_home_directories___.html&quot;&gt;my
1187 test code to check file system semantics&lt;/a&gt;, I was happy to discover that
1188 no error was found. So the file system can be used for home
1189 directories, if one chooses to do so.&lt;/p&gt;
1190
1191 &lt;p&gt;If you do not want a locally file system, and want something that
1192 work without the Linux fuse file system, I would like to mention the
1193 &lt;a href=&quot;http://www.tarsnap.com/&quot;&gt;Tarsnap service&lt;/a&gt;, which also
1194 provide locally encrypted backup using a command line client. It have
1195 a nicer access control system, where one can split out read and write
1196 access, allowing some systems to write to the backup and others to
1197 only read from it.&lt;/p&gt;
1198
1199 &lt;p&gt;As usual, if you use Bitcoin and want to show your support of my
1200 activities, please send Bitcoin donations to my address
1201 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&amp;label=PetterReinholdtsenBlog&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
1202 </description>
1203 </item>
1204
1205 <item>
1206 <title>ReactOS Windows clone - nice free software</title>
1207 <link>http://people.skolelinux.org/pere/blog/ReactOS_Windows_clone___nice_free_software.html</link>
1208 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/ReactOS_Windows_clone___nice_free_software.html</guid>
1209 <pubDate>Tue, 1 Apr 2014 12:10:00 +0200</pubDate>
1210 <description>&lt;p&gt;Microsoft have announced that Windows XP reaches its end of life
1211 2014-04-08, in 7 days. But there are heaps of machines still running
1212 Windows XP, and depending on Windows XP to run their applications, and
1213 upgrading will be expensive, both when it comes to money and when it
1214 comes to the amount of effort needed to migrate from Windows XP to a
1215 new operating system. Some obvious options (buy new a Windows
1216 machine, buy a MacOSX machine, install Linux on the existing machine)
1217 are already well known and covered elsewhere. Most of them involve
1218 leaving the user applications installed on Windows XP behind and
1219 trying out replacements or updated versions. In this blog post I want
1220 to mention one strange bird that allow people to keep the hardware and
1221 the existing Windows XP applications and run them on a free software
1222 operating system that is Windows XP compatible.&lt;/p&gt;
1223
1224 &lt;p&gt;&lt;a href=&quot;http://www.reactos.org/&quot;&gt;ReactOS&lt;/a&gt; is a free software
1225 operating system (GNU GPL licensed) working on providing a operating
1226 system that is binary compatible with Windows, able to run windows
1227 programs directly and to use Windows drivers for hardware directly.
1228 The project goal is for Windows user to keep their existing machines,
1229 drivers and software, and gain the advantages from user a operating
1230 system without usage limitations caused by non-free licensing. It is
1231 a Windows clone running directly on the hardware, so quite different
1232 from the approach taken by &lt;a href=&quot;http://www.winehq.org/&quot;&gt;the Wine
1233 project&lt;/a&gt;, which make it possible to run Windows binaries on
1234 Linux.&lt;/p&gt;
1235
1236 &lt;p&gt;The ReactOS project share code with the Wine project, so most
1237 shared libraries available on Windows are already implemented already.
1238 There is also a software manager like the one we are used to on Linux,
1239 allowing the user to install free software applications with a simple
1240 click directly from the Internet. Check out the
1241 &lt;a href=&quot;http://www.reactos.org/screenshots&quot;&gt;screen shots on the
1242 project web site&lt;/a&gt; for an idea what it look like (it looks just like
1243 Windows before metro).&lt;/p&gt;
1244
1245 &lt;p&gt;I do not use ReactOS myself, preferring Linux and Unix like
1246 operating systems. I&#39;ve tested it, and it work fine in a virt-manager
1247 virtual machine. The browser, minesweeper, notepad etc is working
1248 fine as far as I can tell. Unfortunately, my main test application
1249 is the software included on a CD with the Lego Mindstorms NXT, which
1250 seem to install just fine from CD but fail to leave any binaries on
1251 the disk after the installation. So no luck with that test software.
1252 No idea why, but hope someone else figure out and fix the problem.
1253 I&#39;ve tried the ReactOS Live ISO on a physical machine, and it seemed
1254 to work just fine. If you like Windows and want to keep running your
1255 old Windows binaries, check it out by
1256 &lt;a href=&quot;http://www.reactos.org/download&quot;&gt;downloading&lt;/a&gt; the
1257 installation CD, the live CD or the preinstalled virtual machine
1258 image.&lt;/p&gt;
1259 </description>
1260 </item>
1261
1262 <item>
1263 <title>Debian Edu interview: Roger Marsal</title>
1264 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Roger_Marsal.html</link>
1265 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Roger_Marsal.html</guid>
1266 <pubDate>Sun, 30 Mar 2014 11:40:00 +0200</pubDate>
1267 <description>&lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;
1268 keep gaining new users. Some weeks ago, a person showed up on IRC,
1269 &lt;a href=&quot;irc://irc.debian.org/#debian-edu&quot;&gt;#debian-edu&lt;/a&gt;, with a
1270 wish to contribute, and I managed to get a interview with this great
1271 contributor Roger Marsal to learn more about his background.&lt;/p&gt;
1272
1273 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
1274
1275 &lt;p&gt;My name is Roger Marsal, I&#39;m 27 years old (1986 generation) and I
1276 live in Barcelona, Spain. I&#39;ve got a strong business background and I
1277 work as a patrimony manager and as a real estate agent. Additionally,
1278 I&#39;ve co-founded a British based tech company that is nowadays on the
1279 last development phase of a new social networking concept.&lt;/p&gt;
1280
1281 &lt;p&gt;I&#39;m a Linux enthusiast that started its journey with Ubuntu four years
1282 ago and have recently switched to Debian seeking rock solid stability
1283 and as a necessary step to gain expertise.&lt;/p&gt;
1284
1285 &lt;p&gt;In a nutshell, I spend my days working and learning as much as I
1286 can to face both my job, entrepreneur project and feed my Linux
1287 hunger.&lt;/p&gt;
1288
1289 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
1290 project?&lt;/strong&gt;&lt;/p&gt;
1291
1292 &lt;p&gt;I discovered the &lt;a href=&quot;http://www.ltsp.org/&quot;&gt;LTSP&lt;/a&gt; advantages
1293 with &quot;Ubuntu 12.04 alternate install&quot; and after a year of use I
1294 started looking for an alternative. Even though I highly value and
1295 respect the Ubuntu project, I thought it was necessary for me to
1296 change to a more robust and stable alternative. As far as I was using
1297 Debian on my personal laptop I thought it would be fine to install
1298 Debian and configure an LTSP server myself. Surprised, I discovered
1299 that the Debian project also supported a kind of Edubuntu equivalent,
1300 and after having some pain I obtained a Debian Edu network up and
1301 running. I just loved it.&lt;/p&gt;
1302
1303 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
1304 Edu?&lt;/strong&gt;&lt;/p&gt;
1305
1306 &lt;p&gt;I found a main advantage in that, once you know &quot;the tips and
1307 tricks&quot;, a new installation just works out of the box. It&#39;s the most
1308 complete alternative I&#39;ve found to create an LTSP network. All the
1309 other distributions seems to be made of plastic, Debian Edu seems to
1310 be made of steel.&lt;/p&gt;
1311
1312 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
1313 Edu?&lt;/strong&gt;&lt;/p&gt;
1314
1315 &lt;p&gt;I found two main disadvantages.&lt;/p&gt;
1316
1317 &lt;p&gt;I&#39;m not an expert but I&#39;ve got notions and I had to spent a considerable
1318 amount of time trying to bring up a standard network topology. I&#39;m quite
1319 stubborn and I just worked until I did but I&#39;m sure many people with few
1320 resources (not big schools, but academies for example) would have switched
1321 or dropped.&lt;/p&gt;
1322
1323 &lt;p&gt;It&#39;s amazing how such a complex system like Debian Edu has achieved
1324 this out-of-the-box state. Even though tweaking without breaking gets
1325 more difficult, as more factors have to be considered. This can
1326 discourage many people too.&lt;/p&gt;
1327
1328 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
1329
1330 &lt;p&gt;I use Debian, Firefox, Okular, Inkscape, LibreOffice and
1331 Virtualbox.&lt;/p&gt;
1332
1333
1334 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
1335 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
1336
1337 &lt;p&gt;I don&#39;t think there is a need for a particular strategy. The free
1338 attribute in both &quot;freedom&quot; and &quot;no price&quot; meanings is what will
1339 really bring free software to schools. In my experience I can think of
1340 the &lt;a href=&quot;http://www.r-project.org/&quot;&gt;&quot;R&quot; statistical language&lt;/a&gt;; a
1341 few years a ago was an extremely nerd tool for university people.
1342 Today it&#39;s being increasingly used to teach statistics at many
1343 different level of studies. I believe free and open software will
1344 increasingly gain popularity, but I&#39;m sure schools will be one of the
1345 first scenarios where this will happen.&lt;/p&gt;
1346 </description>
1347 </item>
1348
1349 <item>
1350 <title>Public Trusted Timestamping services for everyone</title>
1351 <link>http://people.skolelinux.org/pere/blog/Public_Trusted_Timestamping_services_for_everyone.html</link>
1352 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Public_Trusted_Timestamping_services_for_everyone.html</guid>
1353 <pubDate>Tue, 25 Mar 2014 12:50:00 +0100</pubDate>
1354 <description>&lt;p&gt;Did you ever need to store logs or other files in a way that would
1355 allow it to be used as evidence in court, and needed a way to
1356 demonstrate without reasonable doubt that the file had not been
1357 changed since it was created? Or, did you ever need to document that
1358 a given document was received at some point in time, like some
1359 archived document or the answer to an exam, and not changed after it
1360 was received? The problem in these settings is to remove the need to
1361 trust yourself and your computers, while still being able to prove
1362 that a file is the same as it was at some given time in the past.&lt;/p&gt;
1363
1364 &lt;p&gt;A solution to these problems is to have a trusted third party
1365 &quot;stamp&quot; the document and verify that at some given time the document
1366 looked a given way. Such
1367 &lt;a href=&quot;https://en.wikipedia.org/wiki/Notarius&quot;&gt;notarius&lt;/a&gt; service
1368 have been around for thousands of years, and its digital equivalent is
1369 called a
1370 &lt;a href=&quot;http://en.wikipedia.org/wiki/Trusted_timestamping&quot;&gt;trusted
1371 timestamping service&lt;/a&gt;. &lt;a href=&quot;http://www.ietf.org/&quot;&gt;The Internet
1372 Engineering Task Force&lt;/a&gt; standardised how such service could work a
1373 few years ago as &lt;a href=&quot;http://tools.ietf.org/html/rfc3161&quot;&gt;RFC
1374 3161&lt;/a&gt;. The mechanism is simple. Create a hash of the file in
1375 question, send it to a trusted third party which add a time stamp to
1376 the hash and sign the result with its private key, and send back the
1377 signed hash + timestamp. Both email, FTP and HTTP can be used to
1378 request such signature, depending on what is provided by the service
1379 used. Anyone with the document and the signature can then verify that
1380 the document matches the signature by creating their own hash and
1381 checking the signature using the trusted third party public key.
1382 There are several commercial services around providing such
1383 timestamping. A quick search for
1384 &quot;&lt;a href=&quot;https://duckduckgo.com/?q=rfc+3161+service&quot;&gt;rfc 3161
1385 service&lt;/a&gt;&quot; pointed me to at least
1386 &lt;a href=&quot;https://www.digistamp.com/technical/how-a-digital-time-stamp-works/&quot;&gt;DigiStamp&lt;/a&gt;,
1387 &lt;a href=&quot;http://www.quovadisglobal.co.uk/CertificateServices/SigningServices/TimeStamp.aspx&quot;&gt;Quo
1388 Vadis&lt;/a&gt;,
1389 &lt;a href=&quot;https://www.globalsign.com/timestamp-service/&quot;&gt;Global Sign&lt;/a&gt;
1390 and &lt;a href=&quot;http://www.globaltrustfinder.com/TSADefault.aspx&quot;&gt;Global
1391 Trust Finder&lt;/a&gt;. The system work as long as the private key of the
1392 trusted third party is not compromised.&lt;/p&gt;
1393
1394 &lt;p&gt;But as far as I can tell, there are very few public trusted
1395 timestamp services available for everyone. I&#39;ve been looking for one
1396 for a while now. But yesterday I found one over at
1397 &lt;a href=&quot;https://www.pki.dfn.de/zeitstempeldienst/&quot;&gt;Deutches
1398 Forschungsnetz&lt;/a&gt; mentioned in
1399 &lt;a href=&quot;http://www.d-mueller.de/blog/dealing-with-trusted-timestamps-in-php-rfc-3161/&quot;&gt;a
1400 blog by David Müller&lt;/a&gt;. I then found
1401 &lt;a href=&quot;http://www.rz.uni-greifswald.de/support/dfn-pki-zertifikate/zeitstempeldienst.html&quot;&gt;a
1402 good recipe on how to use the service&lt;/a&gt; over at the University of
1403 Greifswald.&lt;/p&gt;
1404
1405 &lt;p&gt;&lt;a href=&quot;http://www.openssl.org/&quot;&gt;The OpenSSL library&lt;/a&gt; contain
1406 both server and tools to use and set up your own signing service. See
1407 the ts(1SSL), tsget(1SSL) manual pages for more details. The
1408 following shell script demonstrate how to extract a signed timestamp
1409 for any file on the disk in a Debian environment:&lt;/p&gt;
1410
1411 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
1412 #!/bin/sh
1413 set -e
1414 url=&quot;http://zeitstempel.dfn.de&quot;
1415 caurl=&quot;https://pki.pca.dfn.de/global-services-ca/pub/cacert/chain.txt&quot;
1416 reqfile=$(mktemp -t tmp.XXXXXXXXXX.tsq)
1417 resfile=$(mktemp -t tmp.XXXXXXXXXX.tsr)
1418 cafile=chain.txt
1419 if [ ! -f $cafile ] ; then
1420 wget -O $cafile &quot;$caurl&quot;
1421 fi
1422 openssl ts -query -data &quot;$1&quot; -cert | tee &quot;$reqfile&quot; \
1423 | /usr/lib/ssl/misc/tsget -h &quot;$url&quot; -o &quot;$resfile&quot;
1424 openssl ts -reply -in &quot;$resfile&quot; -text 1&gt;&amp;2
1425 openssl ts -verify -data &quot;$1&quot; -in &quot;$resfile&quot; -CAfile &quot;$cafile&quot; 1&gt;&amp;2
1426 base64 &lt; &quot;$resfile&quot;
1427 rm &quot;$reqfile&quot; &quot;$resfile&quot;
1428 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
1429
1430 &lt;p&gt;The argument to the script is the file to timestamp, and the output
1431 is a base64 encoded version of the signature to STDOUT and details
1432 about the signature to STDERR. Note that due to
1433 &lt;a href=&quot;http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=742553&quot;&gt;a bug
1434 in the tsget script&lt;/a&gt;, you might need to modify the included script
1435 and remove the last line. Or just write your own HTTP uploader using
1436 curl. :) Now you too can prove and verify that files have not been
1437 changed.&lt;/p&gt;
1438
1439 &lt;p&gt;But the Internet need more public trusted timestamp services.
1440 Perhaps something for &lt;a href=&quot;http://www.uninett.no/&quot;&gt;Uninett&lt;/a&gt; or
1441 my work place the &lt;a href=&quot;http://www.uio.no/&quot;&gt;University of Oslo&lt;/a&gt;
1442 to set up?&lt;/p&gt;
1443 </description>
1444 </item>
1445
1446 <item>
1447 <title>Video DVD reader library / python-dvdvideo - nice free software</title>
1448 <link>http://people.skolelinux.org/pere/blog/Video_DVD_reader_library___python_dvdvideo___nice_free_software.html</link>
1449 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Video_DVD_reader_library___python_dvdvideo___nice_free_software.html</guid>
1450 <pubDate>Fri, 21 Mar 2014 15:25:00 +0100</pubDate>
1451 <description>&lt;p&gt;Keeping your DVD collection safe from scratches and curious
1452 children fingers while still having it available when you want to see a
1453 movie is not straight forward. My preferred method at the moment is
1454 to store a full copy of the ISO on a hard drive, and use VLC, Popcorn
1455 Hour or other useful players to view the resulting file. This way the
1456 subtitles and bonus material are still available and using the ISO is
1457 just like inserting the original DVD record in the DVD player.&lt;/p&gt;
1458
1459 &lt;p&gt;Earlier I used dd for taking security copies, but it do not handle
1460 DVDs giving read errors (which are quite a few of them). I&#39;ve also
1461 tried using
1462 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Ripping_problematic_DVDs_using_dvdbackup_and_genisoimage.html&quot;&gt;dvdbackup
1463 and genisoimage&lt;/a&gt;, but these days I use the marvellous python library
1464 and program
1465 &lt;a href=&quot;http://bblank.thinkmo.de/blog/new-software-python-dvdvideo&quot;&gt;python-dvdvideo&lt;/a&gt;
1466 written by Bastian Blank. It is
1467 &lt;a href=&quot;http://packages.qa.debian.org/p/python-dvdvideo.html&quot;&gt;in Debian
1468 already&lt;/a&gt; and the binary package name is python3-dvdvideo. Instead
1469 of trying to read every block from the DVD, it parses the file
1470 structure and figure out which block on the DVD is actually in used,
1471 and only read those blocks from the DVD. This work surprisingly well,
1472 and I have been able to almost backup my entire DVD collection using
1473 this method.&lt;/p&gt;
1474
1475 &lt;p&gt;So far, python-dvdvideo have failed on between 10 and
1476 20 DVDs, which is a small fraction of my collection. The most common
1477 problem is
1478 &lt;a href=&quot;https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=720831&quot;&gt;DVDs
1479 using UTF-16 instead of UTF-8 characters&lt;/a&gt;, which according to
1480 Bastian is against the DVD specification (and seem to cause some
1481 players to fail too). A rarer problem is what seem to be inconsistent
1482 DVD structures, as the python library
1483 &lt;a href=&quot;https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=723079&quot;&gt;claim
1484 there is a overlap between objects&lt;/a&gt;. An equally rare problem claim
1485 &lt;a href=&quot;https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=741878&quot;&gt;some
1486 value is out of range&lt;/a&gt;. No idea what is going on there. I wish I
1487 knew enough about the DVD format to fix these, to ensure my movie
1488 collection will stay with me in the future.&lt;/p&gt;
1489
1490 &lt;p&gt;So, if you need to keep your DVDs safe, back them up using
1491 python-dvdvideo. :)&lt;/p&gt;
1492 </description>
1493 </item>
1494
1495 <item>
1496 <title>Freedombox on Dreamplug, Raspberry Pi and virtual x86 machine</title>
1497 <link>http://people.skolelinux.org/pere/blog/Freedombox_on_Dreamplug__Raspberry_Pi_and_virtual_x86_machine.html</link>
1498 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Freedombox_on_Dreamplug__Raspberry_Pi_and_virtual_x86_machine.html</guid>
1499 <pubDate>Fri, 14 Mar 2014 11:00:00 +0100</pubDate>
1500 <description>&lt;p&gt;The &lt;a href=&quot;https://wiki.debian.org/FreedomBox&quot;&gt;Freedombox
1501 project&lt;/a&gt; is working on providing the software and hardware for
1502 making it easy for non-technical people to host their data and
1503 communication at home, and being able to communicate with their
1504 friends and family encrypted and away from prying eyes. It has been
1505 going on for a while, and is slowly progressing towards a new test
1506 release (0.2).&lt;/p&gt;
1507
1508 &lt;p&gt;And what day could be better than the Pi day to announce that the
1509 new version will provide &quot;hard drive&quot; / SD card / USB stick images for
1510 Dreamplug, Raspberry Pi and VirtualBox (or any other virtualization
1511 system), and can also be installed using a Debian installer preseed
1512 file. The Debian based Freedombox is now based on Debian Jessie,
1513 where most of the needed packages used are already present. Only one,
1514 the freedombox-setup package, is missing. To try to build your own
1515 boot image to test the current status, fetch the freedom-maker scripts
1516 and build using
1517 &lt;a href=&quot;http://packages.qa.debian.org/vmdebootstrap&quot;&gt;vmdebootstrap&lt;/a&gt;
1518 with a user with sudo access to become root:
1519
1520 &lt;pre&gt;
1521 git clone http://anonscm.debian.org/git/freedombox/freedom-maker.git \
1522 freedom-maker
1523 sudo apt-get install git vmdebootstrap mercurial python-docutils \
1524 mktorrent extlinux virtualbox qemu-user-static binfmt-support \
1525 u-boot-tools
1526 make -C freedom-maker dreamplug-image raspberry-image virtualbox-image
1527 &lt;/pre&gt;
1528
1529 &lt;p&gt;Root access is needed to run debootstrap and mount loopback
1530 devices. See the README for more details on the build. If you do not
1531 want all three images, trim the make line. But note that thanks to &lt;a
1532 href=&quot;https://bugs.debian.org/741407&quot;&gt;a race condition in
1533 vmdebootstrap&lt;/a&gt;, the build might fail without the patch to the
1534 kpartx call.&lt;/p&gt;
1535
1536 &lt;p&gt;If you instead want to install using a Debian CD and the preseed
1537 method, boot a Debian Wheezy ISO and use this boot argument to load
1538 the preseed values:&lt;/p&gt;
1539
1540 &lt;pre&gt;
1541 url=&lt;a href=&quot;http://www.reinholdtsen.name/freedombox/preseed-jessie.dat&quot;&gt;http://www.reinholdtsen.name/freedombox/preseed-jessie.dat&lt;/a&gt;
1542 &lt;/pre&gt;
1543
1544 &lt;p&gt;But note that due to &lt;a href=&quot;https://bugs.debian.org/740673&quot;&gt;a
1545 recently introduced bug in apt in Jessie&lt;/a&gt;, the installer will
1546 currently hang while setting up APT sources. Killing the
1547 &#39;&lt;tt&gt;apt-cdrom ident&lt;/tt&gt;&#39; process when it hang a few times during the
1548 installation will get the installation going. This affect all
1549 installations in Jessie, and I expect it will be fixed soon.&lt;/p&gt;
1550
1551 &lt;p&gt;Give it a go and let us know how it goes on the mailing list, and help
1552 us get the new release published. :) Please join us on
1553 &lt;a href=&quot;irc://irc.debian.org:6667/%23freedombox&quot;&gt;IRC (#freedombox on
1554 irc.debian.org)&lt;/a&gt; and
1555 &lt;a href=&quot;http://lists.alioth.debian.org/mailman/listinfo/freedombox-discuss&quot;&gt;the
1556 mailing list&lt;/a&gt; if you want to help make this vision come true.&lt;/p&gt;
1557 </description>
1558 </item>
1559
1560 <item>
1561 <title>How to add extra storage servers in Debian Edu / Skolelinux</title>
1562 <link>http://people.skolelinux.org/pere/blog/How_to_add_extra_storage_servers_in_Debian_Edu___Skolelinux.html</link>
1563 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_add_extra_storage_servers_in_Debian_Edu___Skolelinux.html</guid>
1564 <pubDate>Wed, 12 Mar 2014 12:50:00 +0100</pubDate>
1565 <description>&lt;p&gt;On larger sites, it is useful to use a dedicated storage server for
1566 storing user home directories and data. The design for handling this
1567 in &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;, is
1568 to update the automount rules in LDAP and let the automount daemon on
1569 the clients take care of the rest. I was reminded about the need to
1570 document this better when one of the customers of
1571 &lt;a href=&quot;http://www.slxdrift.no/&quot;&gt;Skolelinux Drift AS&lt;/a&gt;, where I am
1572 on the board of directors, asked about how to do this. The steps to
1573 get this working are the following:&lt;/p&gt;
1574
1575 &lt;p&gt;&lt;ol&gt;
1576
1577 &lt;li&gt;Add new storage server in DNS. I use nas-server.intern as the
1578 example host here.&lt;/li&gt;
1579
1580 &lt;li&gt;Add automoun LDAP information about this server in LDAP, to allow
1581 all clients to automatically mount it on reqeust.&lt;/li&gt;
1582
1583 &lt;li&gt;Add the relevant entries in tjener.intern:/etc/fstab, because
1584 tjener.intern do not use automount to avoid mounting loops.&lt;/li&gt;
1585
1586 &lt;/ol&gt;&lt;/p&gt;
1587
1588 &lt;p&gt;DNS entries are added in GOsa², and not described here. Follow the
1589 &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Documentation/Wheezy/GettingStarted&quot;&gt;instructions
1590 in the manual&lt;/a&gt; (Machine Management with GOsa² in section Getting
1591 started).&lt;/p&gt;
1592
1593 &lt;p&gt;Ensure that the NFS export points on the server are exported to the
1594 relevant subnets or machines:&lt;/p&gt;
1595
1596 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
1597 root@tjener:~# showmount -e nas-server
1598 Export list for nas-server:
1599 /storage 10.0.0.0/8
1600 root@tjener:~#
1601 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
1602
1603 &lt;p&gt;Here everything on the backbone network is granted access to the
1604 /storage export. With NFSv3 it is slightly better to limit it to
1605 netgroup membership or single IP addresses to have some limits on the
1606 NFS access.&lt;/p&gt;
1607
1608 &lt;p&gt;The next step is to update LDAP. This can not be done using GOsa²,
1609 because it lack a module for automount. Instead, use ldapvi and add
1610 the required LDAP objects using an editor.&lt;/p&gt;
1611
1612 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
1613 ldapvi --ldap-conf -ZD &#39;(cn=admin)&#39; -b ou=automount,dc=skole,dc=skolelinux,dc=no
1614 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
1615
1616 &lt;p&gt;When the editor show up, add the following LDAP objects at the
1617 bottom of the document. The &quot;/&amp;&quot; part in the last LDAP object is a
1618 wild card matching everything the nas-server exports, removing the
1619 need to list individual mount points in LDAP.&lt;/p&gt;
1620
1621 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
1622 add cn=nas-server,ou=auto.skole,ou=automount,dc=skole,dc=skolelinux,dc=no
1623 objectClass: automount
1624 cn: nas-server
1625 automountInformation: -fstype=autofs --timeout=60 ldap:ou=auto.nas-server,ou=automount,dc=skole,dc=skolelinux,dc=no
1626
1627 add ou=auto.nas-server,ou=automount,dc=skole,dc=skolelinux,dc=no
1628 objectClass: top
1629 objectClass: automountMap
1630 ou: auto.nas-server
1631
1632 add cn=/,ou=auto.nas-server,ou=automount,dc=skole,dc=skolelinux,dc=no
1633 objectClass: automount
1634 cn: /
1635 automountInformation: -fstype=nfs,tcp,rsize=32768,wsize=32768,rw,intr,hard,nodev,nosuid,noatime nas-server.intern:/&amp;
1636 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
1637
1638 &lt;p&gt;The last step to remember is to mount the relevant mount points in
1639 tjener.intern by adding them to /etc/fstab, creating the mount
1640 directories using mkdir and running &quot;mount -a&quot; to mount them.&lt;/p&gt;
1641
1642 &lt;p&gt;When this is done, your users should be able to access the files on
1643 the storage server directly by just visiting the
1644 /tjener/nas-server/storage/ directory using any application on any
1645 workstation, LTSP client or LTSP server.&lt;/p&gt;
1646 </description>
1647 </item>
1648
1649 <item>
1650 <title>New home and release 1.0 for netgroup and innetgr (aka ng-utils)</title>
1651 <link>http://people.skolelinux.org/pere/blog/New_home_and_release_1_0_for_netgroup_and_innetgr__aka_ng_utils_.html</link>
1652 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/New_home_and_release_1_0_for_netgroup_and_innetgr__aka_ng_utils_.html</guid>
1653 <pubDate>Sat, 22 Feb 2014 21:45:00 +0100</pubDate>
1654 <description>&lt;p&gt;Many years ago, I wrote a GPL licensed version of the netgroup and
1655 innetgr tools, because I needed them in
1656 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;. I called the project
1657 ng-utils, and it has served me well. I placed the project under the
1658 &lt;a href=&quot;http://www.hungry.com/&quot;&gt;Hungry Programmer&lt;/a&gt; umbrella, and it was maintained in our CVS
1659 repository. But many years ago, the CVS repository was dropped (lost,
1660 not migrated to new hardware, not sure), and the project have lacked a
1661 proper home since then.&lt;/p&gt;
1662
1663 &lt;p&gt;Last summer, I had a look at the package and made a new release
1664 fixing a irritating crash bug, but was unable to store the changes in
1665 a proper source control system. I applied for a project on
1666 &lt;a href=&quot;https://alioth.debian.org/&quot;&gt;Alioth&lt;/a&gt;, but did not have time
1667 to follow up on it. Until today. :)&lt;/p&gt;
1668
1669 &lt;p&gt;After many hours of cleaning and migration, the ng-utils project
1670 now have a new home, and a git repository with the highlight of the
1671 history of the project. I published all release tarballs and imported
1672 them into the git repository. As the project is really stable and not
1673 expected to gain new features any time soon, I decided to make a new
1674 release and call it 1.0. Visit the new project home on
1675 &lt;a href=&quot;https://alioth.debian.org/projects/ng-utils/&quot;&gt;https://alioth.debian.org/projects/ng-utils/&lt;/a&gt;
1676 if you want to check it out. The new version is also uploaded into
1677 &lt;a href=&quot;http://packages.qa.debian.org/n/ng-utils.html&quot;&gt;Debian Unstable&lt;/a&gt;.&lt;/p&gt;
1678 </description>
1679 </item>
1680
1681 <item>
1682 <title>Testing sysvinit from experimental in Debian Hurd</title>
1683 <link>http://people.skolelinux.org/pere/blog/Testing_sysvinit_from_experimental_in_Debian_Hurd.html</link>
1684 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Testing_sysvinit_from_experimental_in_Debian_Hurd.html</guid>
1685 <pubDate>Mon, 3 Feb 2014 13:40:00 +0100</pubDate>
1686 <description>&lt;p&gt;A few days ago I decided to try to help the Hurd people to get
1687 their changes into sysvinit, to allow them to use the normal sysvinit
1688 boot system instead of their old one. This follow up on the
1689 &lt;a href=&quot;https://teythoon.cryptobitch.de//categories/gsoc.html&quot;&gt;great
1690 Google Summer of Code work&lt;/a&gt; done last summer by Justus Winter to
1691 get Debian on Hurd working more like Debian on Linux. To get started,
1692 I downloaded a prebuilt hard disk image from
1693 &lt;a href=&quot;http://ftp.debian-ports.org/debian-cd/hurd-i386/current/debian-hurd.img.tar.gz&quot;&gt;http://ftp.debian-ports.org/debian-cd/hurd-i386/current/debian-hurd.img.tar.gz&lt;/a&gt;,
1694 and started it using virt-manager.&lt;/p&gt;
1695
1696 &lt;p&gt;The first think I had to do after logging in (root without any
1697 password) was to get the network operational. I followed
1698 &lt;a href=&quot;https://www.debian.org/ports/hurd/hurd-install&quot;&gt;the
1699 instructions on the Debian GNU/Hurd ports page&lt;/a&gt; and ran these
1700 commands as root to get the machine to accept a IP address from the
1701 kvm internal DHCP server:&lt;/p&gt;
1702
1703 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
1704 settrans -fgap /dev/netdde /hurd/netdde
1705 kill $(ps -ef|awk &#39;/[p]finet/ { print $2}&#39;)
1706 kill $(ps -ef|awk &#39;/[d]evnode/ { print $2}&#39;)
1707 dhclient /dev/eth0
1708 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
1709
1710 &lt;p&gt;After this, the machine had internet connectivity, and I could
1711 upgrade it and install the sysvinit packages from experimental and
1712 enable it as the default boot system in Hurd.&lt;/p&gt;
1713
1714 &lt;p&gt;But before I did that, I set a password on the root user, as ssh is
1715 running on the machine it for ssh login to work a password need to be
1716 set. Also, note that a bug somewhere in openssh on Hurd block
1717 compression from working. Remember to turn that off on the client
1718 side.&lt;/p&gt;
1719
1720 &lt;p&gt;Run these commands as root to upgrade and test the new sysvinit
1721 stuff:&lt;/p&gt;
1722
1723 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
1724 cat &gt; /etc/apt/sources.list.d/experimental.list &amp;lt;&amp;lt;EOF
1725 deb http://http.debian.net/debian/ experimental main
1726 EOF
1727 apt-get update
1728 apt-get dist-upgrade
1729 apt-get install -t experimental initscripts sysv-rc sysvinit \
1730 sysvinit-core sysvinit-utils
1731 update-alternatives --config runsystem
1732 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
1733
1734 &lt;p&gt;To reboot after switching boot system, you have to use
1735 &lt;tt&gt;reboot-hurd&lt;/tt&gt; instead of just &lt;tt&gt;reboot&lt;/tt&gt;, as there is not
1736 yet a sysvinit process able to receive the signals from the normal
1737 &#39;reboot&#39; command. After switching to sysvinit as the boot system,
1738 upgrading every package and rebooting, the network come up with DHCP
1739 after boot as it should, and the settrans/pkill hack mentioned at the
1740 start is no longer needed. But for some strange reason, there are no
1741 longer any login prompt in the virtual console, so I logged in using
1742 ssh instead.
1743
1744 &lt;p&gt;Note that there are some race conditions in Hurd making the boot
1745 fail some times. No idea what the cause is, but hope the Hurd porters
1746 figure it out. At least Justus said on IRC (#debian-hurd on
1747 irc.debian.org) that they are aware of the problem. A way to reduce
1748 the impact is to upgrade to the Hurd packages built by Justus by
1749 adding this repository to the machine:&lt;/p&gt;
1750
1751 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
1752 cat &gt; /etc/apt/sources.list.d/hurd-ci.list &amp;lt;&amp;lt;EOF
1753 deb http://darnassus.sceen.net/~teythoon/hurd-ci/ sid main
1754 EOF
1755 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
1756
1757 &lt;p&gt;At the moment the prebuilt virtual machine get some packages from
1758 http://ftp.debian-ports.org/debian, because some of the packages in
1759 unstable do not yet include the required patches that are lingering in
1760 BTS. This is the completely list of &quot;unofficial&quot; packages installed:&lt;/p&gt;
1761
1762 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
1763 # aptitude search &#39;?narrow(?version(CURRENT),?origin(Debian Ports))&#39;
1764 i emacs - GNU Emacs editor (metapackage)
1765 i gdb - GNU Debugger
1766 i hurd-recommended - Miscellaneous translators
1767 i isc-dhcp-client - ISC DHCP client
1768 i isc-dhcp-common - common files used by all the isc-dhcp* packages
1769 i libc-bin - Embedded GNU C Library: Binaries
1770 i libc-dev-bin - Embedded GNU C Library: Development binaries
1771 i libc0.3 - Embedded GNU C Library: Shared libraries
1772 i A libc0.3-dbg - Embedded GNU C Library: detached debugging symbols
1773 i libc0.3-dev - Embedded GNU C Library: Development Libraries and Hea
1774 i multiarch-support - Transitional package to ensure multiarch compatibilit
1775 i A x11-common - X Window System (X.Org) infrastructure
1776 i xorg - X.Org X Window System
1777 i A xserver-xorg - X.Org X server
1778 i A xserver-xorg-input-all - X.Org X server -- input driver metapackage
1779 #
1780 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
1781
1782 &lt;p&gt;All in all, testing hurd has been an interesting experience. :)
1783 X.org did not work out of the box and I never took the time to follow
1784 the porters instructions to fix it. This time I was interested in the
1785 command line stuff.&lt;p&gt;
1786 </description>
1787 </item>
1788
1789 <item>
1790 <title>A fist full of non-anonymous Bitcoins</title>
1791 <link>http://people.skolelinux.org/pere/blog/A_fist_full_of_non_anonymous_Bitcoins.html</link>
1792 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_fist_full_of_non_anonymous_Bitcoins.html</guid>
1793 <pubDate>Wed, 29 Jan 2014 14:10:00 +0100</pubDate>
1794 <description>&lt;p&gt;Bitcoin is a incredible use of peer to peer communication and
1795 encryption, allowing direct and immediate money transfer without any
1796 central control. It is sometimes claimed to be ideal for illegal
1797 activity, which I believe is quite a long way from the truth. At least
1798 I would not conduct illegal money transfers using a system where the
1799 details of every transaction are kept forever. This point is
1800 investigated in
1801 &lt;a href=&quot;https://www.usenix.org/publications/login&quot;&gt;USENIX ;login:&lt;/a&gt;
1802 from December 2013, in the article
1803 &quot;&lt;a href=&quot;https://www.usenix.org/system/files/login/articles/03_meiklejohn-online.pdf&quot;&gt;A
1804 Fistful of Bitcoins - Characterizing Payments Among Men with No
1805 Names&lt;/a&gt;&quot; by Sarah Meiklejohn, Marjori Pomarole,Grant Jordan, Kirill
1806 Levchenko, Damon McCoy, Geoffrey M. Voelker, and Stefan Savage. They
1807 analyse the transaction log in the Bitcoin system, using it to find
1808 addresses belong to individuals and organisations and follow the flow
1809 of money from both Bitcoin theft and trades on Silk Road to where the
1810 money end up. This is how they wrap up their article:&lt;/p&gt;
1811
1812 &lt;p&gt;&lt;blockquote&gt;
1813 &lt;p&gt;&quot;To demonstrate the usefulness of this type of analysis, we turned
1814 our attention to criminal activity. In the Bitcoin economy, criminal
1815 activity can appear in a number of forms, such as dealing drugs on
1816 Silk Road or simply stealing someone else’s bitcoins. We followed the
1817 flow of bitcoins out of Silk Road (in particular, from one notorious
1818 address) and from a number of highly publicized thefts to see whether
1819 we could track the bitcoins to known services. Although some of the
1820 thieves attempted to use sophisticated mixing techniques (or possibly
1821 mix services) to obscure the flow of bitcoins, for the most part
1822 tracking the bitcoins was quite straightforward, and we ultimately saw
1823 large quantities of bitcoins flow to a variety of exchanges directly
1824 from the point of theft (or the withdrawal from Silk Road).&lt;/p&gt;
1825
1826 &lt;p&gt;As acknowledged above, following stolen bitcoins to the point at
1827 which they are deposited into an exchange does not in itself identify
1828 the thief; however, it does enable further de-anonymization in the
1829 case in which certain agencies can determine (through, for example,
1830 subpoena power) the real-world owner of the account into which the
1831 stolen bitcoins were deposited. Because such exchanges seem to serve
1832 as chokepoints into and out of the Bitcoin economy (i.e., there are
1833 few alternative ways to cash out), we conclude that using Bitcoin for
1834 money laundering or other illicit purposes does not (at least at
1835 present) seem to be particularly attractive.&quot;&lt;/p&gt;
1836 &lt;/blockquote&gt;&lt;p&gt;
1837
1838 &lt;p&gt;These researches are not the first to analyse the Bitcoin
1839 transaction log. The 2011 paper
1840 &quot;&lt;a href=&quot;http://arxiv.org/abs/1107.4524&quot;&gt;An Analysis of Anonymity in
1841 the Bitcoin System&lt;/A&gt;&quot; by Fergal Reid and Martin Harrigan is
1842 summarized like this:&lt;/p&gt;
1843
1844 &lt;p&gt;&lt;blockquote&gt;
1845 &quot;Anonymity in Bitcoin, a peer-to-peer electronic currency system, is a
1846 complicated issue. Within the system, users are identified by
1847 public-keys only. An attacker wishing to de-anonymize its users will
1848 attempt to construct the one-to-many mapping between users and
1849 public-keys and associate information external to the system with the
1850 users. Bitcoin tries to prevent this attack by storing the mapping of
1851 a user to his or her public-keys on that user&#39;s node only and by
1852 allowing each user to generate as many public-keys as required. In
1853 this chapter we consider the topological structure of two networks
1854 derived from Bitcoin&#39;s public transaction history. We show that the
1855 two networks have a non-trivial topological structure, provide
1856 complementary views of the Bitcoin system and have implications for
1857 anonymity. We combine these structures with external information and
1858 techniques such as context discovery and flow analysis to investigate
1859 an alleged theft of Bitcoins, which, at the time of the theft, had a
1860 market value of approximately half a million U.S. dollars.&quot;
1861 &lt;/blockquote&gt;&lt;/p&gt;
1862
1863 &lt;p&gt;I hope these references can help kill the urban myth that Bitcoin
1864 is anonymous. It isn&#39;t really a good fit for illegal activites. Use
1865 cash if you need to stay anonymous, at least until regular DNA
1866 sampling of notes and coins become the norm. :)&lt;/p&gt;
1867
1868 &lt;p&gt;As usual, if you use Bitcoin and want to show your support of my
1869 activities, please send Bitcoin donations to my address
1870 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&amp;label=PetterReinholdtsenBlog&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
1871 </description>
1872 </item>
1873
1874 <item>
1875 <title>New chrpath release 0.16</title>
1876 <link>http://people.skolelinux.org/pere/blog/New_chrpath_release_0_16.html</link>
1877 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/New_chrpath_release_0_16.html</guid>
1878 <pubDate>Tue, 14 Jan 2014 11:00:00 +0100</pubDate>
1879 <description>&lt;p&gt;&lt;a href=&quot;http://www.coverity.com/&quot;&gt;Coverity&lt;/a&gt; is a nice tool to
1880 find problems in C, C++ and Java code using static source code
1881 analysis. It can detect a lot of different problems, and is very
1882 useful to find memory and locking bugs in the error handling part of
1883 the source. The company behind it provide
1884 &lt;a href=&quot;https://scan.coverity.com/&quot;&gt;check of free software projects as
1885 a community service&lt;/a&gt;, and many hundred free software projects are
1886 already checked. A few days ago I decided to have a closer look at
1887 the Coverity system, and discovered that the
1888 &lt;a href=&quot;http://www.gnu.org/software/gnash/&quot;&gt;gnash&lt;/a&gt; and
1889 &lt;a href=&quot;http://sourceforge.net/projects/ipmitool/&quot;&gt;ipmitool&lt;/a&gt;
1890 projects I am involved with was already registered. But these are
1891 fairly big, and I would also like to have a small and easy project to
1892 check, and decided to &lt;a href=&quot;http://scan.coverity.com/projects/1179&quot;&gt;request
1893 checking of the chrpath project&lt;/a&gt;. It was
1894 added to the checker and discovered seven potential defects. Six of
1895 these were real, mostly resource &quot;leak&quot; when the program detected an
1896 error. Nothing serious, as the resources would be released a fraction
1897 of a second later when the program exited because of the error, but it
1898 is nice to do it right in case the source of the program some time in
1899 the future end up in a library. Having fixed all defects and added
1900 &lt;a href=&quot;https://lists.alioth.debian.org/mailman/listinfo/chrpath-devel&quot;&gt;a
1901 mailing list for the chrpath developers&lt;/a&gt;, I decided it was time to
1902 publish a new release. These are the release notes:&lt;/p&gt;
1903
1904 &lt;p&gt;New in 0.16 released 2014-01-14:&lt;/p&gt;
1905
1906 &lt;ul&gt;
1907
1908 &lt;li&gt;Fixed all minor bugs discovered by Coverity.&lt;/li&gt;
1909 &lt;li&gt;Updated config.sub and config.guess from the GNU project.&lt;/li&gt;
1910 &lt;li&gt;Mention new project mailing list in the documentation.&lt;/li&gt;
1911
1912 &lt;/ul&gt;
1913
1914 &lt;p&gt;You can
1915 &lt;a href=&quot;https://alioth.debian.org/frs/?group_id=31052&quot;&gt;download the
1916 new version 0.16 from alioth&lt;/a&gt;. Please let us know via the Alioth
1917 project if something is wrong with the new release. The test suite
1918 did not discover any old errors, so if you find a new one, please also
1919 include a test suite check.&lt;/p&gt;
1920 </description>
1921 </item>
1922
1923 <item>
1924 <title>Debian Edu interview: Dominik George</title>
1925 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Dominik_George.html</link>
1926 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Dominik_George.html</guid>
1927 <pubDate>Wed, 25 Dec 2013 13:40:00 +0100</pubDate>
1928 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux
1929 project&lt;/a&gt; consist of both newcomers and old timers, and this time I
1930 was able to get an interview with a newcomer in the project who showed
1931 up on the IRC channel a few weeks ago to let us know about his
1932 successful installation of Debian Edu Wheezy in his School. Say hello
1933 to &lt;a href=&quot;https://www.ohloh.net/accounts/Natureshadow&quot;&gt;Dominik
1934 George&lt;/a&gt;.&lt;/p&gt;
1935
1936 &lt;!-- http://www.dominik-george.de/images/foto.jpg --&gt;
1937
1938 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
1939
1940 &lt;p&gt;I am a 23 year-old student from Germany who has spent half of his
1941 life with open source. In &quot;real life&quot;, I am, as already mentioned, a
1942 student in the fields of Computer Science, Electrical Engineering,
1943 Information Technologies and Anglistics. Due to my (only partially
1944 voluntary) huge engagement in the open source world, these things are
1945 a bit vacant right now however.&lt;/p&gt;
1946
1947 &lt;p&gt;I also have been working as a project teacher at a Gymasnium
1948 (public school) for various years now. I took up that work some time
1949 around 2005 when still attending that school myself and have continued
1950 it until today. I also had been running the (kind of very advanced)
1951 network of that school together with a team of very interested and
1952 talented students in the age of 11 to 15 years, who took the chance to
1953 learn a lot about open source and networking before I left the school
1954 to help building another school&#39;s informational education concept from
1955 scratch.&lt;/p&gt;
1956
1957 &lt;p&gt;That said, one might see me as a kind of &quot;glue&quot; between school kids
1958 and the elderly of teachers as well as between the open source
1959 ecosystem and the (even more complex) educational ecosystem.&lt;/p&gt;
1960
1961 &lt;p&gt;When I am not busy with open source or education, I like Geocaching
1962 and cycling.&lt;/p&gt;
1963
1964 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
1965 project?&lt;/strong&gt;&lt;/p&gt;
1966
1967 &lt;p&gt;I think that happened some time around 2009 when I first attended
1968 &lt;a href=&quot;http://www.froscon.org&quot;&gt;FrOSCon&lt;/a&gt; and visited the project
1969 booth. I think I wasn&#39;t too interested back then because I used to
1970 have an attitude of disliking software that does too much stuff on its
1971 own. Maybe I was too inexperienced to realise the upsides of an
1972 &quot;out-of-the-box&quot; solution ;).&lt;/p&gt;
1973
1974 &lt;p&gt;The first time I actively talked to Skolelinux people was at
1975 &lt;a href=&quot;http://www.openrheinruhr.de&quot;&gt;OpenRheinRuhr&lt;/a&gt; 2011 when the
1976 BiscuIT project, a home-grewn software used by my school for various
1977 really cool things from timetables and class contact lists to lunch
1978 ordering, student ID card printing and project elections first got to
1979 a stage where it could have been published. I asked the Skolelinux
1980 guys running the booth if the project were interested in it and gave a
1981 small demonstration, but there wasn&#39;t any real feedback and the guys
1982 seemed rather uninterested.&lt;/p&gt;
1983
1984 &lt;p&gt;After I left the school where I developed the software, it got
1985 mostly lost, but I am now reimplementing it for my new school. I have
1986 reusability and compatibility in mind, and I hop there will be a new
1987 basis for contributing it to the Skolelinux project ;)!&lt;/p&gt;
1988
1989 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
1990 Edu?&lt;/strong&gt;&lt;/p&gt;
1991
1992 &lt;p&gt;The most important advantage seems to be that it &quot;just
1993 works&quot;. After overcoming some minor (but still very annoying) glitches
1994 in the installer, I got a fully functional, working school network,
1995 without the month-long hassle I experienced when setting all that up
1996 from scratch in earlier years. And above that, it rocked - I didn&#39;t
1997 have any real hardware at hand, because the school was just founded
1998 and has no money whatsoever, so I installed a combined server (main
1999 server, terminal services and workstation) in a VM on my personal
2000 notebook, bridging the LTSP network interface to the ethernet port,
2001 and then PXE-booted the Windows notebooks that were lying around from
2002 it. I could use 8 clients without any performance issues, by using a
2003 tiny little VM on a tiny little notebook. I think that&#39;s enough to say
2004 that it rocks!&lt;/p&gt;
2005
2006 &lt;p&gt;Secondly, there are marketing reasons. Life&#39;s bad, and so no
2007 politician will ever permit a setup described as &quot;Debian, an universal
2008 operating system, with some really cool educational tools&quot; while they
2009 will be jsut fine with &quot;Skolelinux, a single-purpose solution for your
2010 school network&quot;, even if both turn out to be the very same thing (yes,
2011 this is unfair towards the Skolelinux project, and must not be taken
2012 too seriously - you get the idea, anyway).&lt;/p&gt;
2013
2014 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
2015 Edu?&lt;/strong&gt;&lt;/p&gt;
2016
2017 &lt;p&gt;I have not been involved with Skolelinux long enough to really
2018 answer this question in a fair way. Thus, please allow me to put it in
2019 other words: &quot;What do you expect from Skolelinux to keep liking it?&quot; I
2020 can list a few points about that:&lt;/p&gt;
2021
2022 &lt;ul&gt;
2023
2024 &lt;li&gt;always strive to get all things integrated into Debian upstream
2025 &lt;li&gt;be open to discussion about changes and the like, even with newcomers
2026 &lt;li&gt;be helpful at being helpful ;)
2027
2028 &lt;/ul&gt;
2029
2030 &lt;p&gt;I&#39;m really sorry I cannot say much more about that :(!&lt;/p&gt;
2031
2032 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
2033
2034 &lt;p&gt;First of all, all software I use is free and open. I have abandoned
2035 all non-free software (except for firmware on my darned phone) this
2036 year.&lt;/p&gt;
2037
2038 &lt;p&gt;I run Debian GNU/Linux on all PC systems I use. On that, I mostly
2039 run text tools. I use
2040 &lt;a href=&quot;https://www.mirbsd.org/mksh.htm&quot;&gt;mksh&lt;/a&gt; as shell,
2041 &lt;a href=&quot;https://www.mirbsd.org/jupp.htm&quot;&gt;jupp&lt;/a&gt; as very advanced
2042 text editor (I even got the developer to help me write a script/macro
2043 based full-featured student management software with the two),
2044 &lt;a href=&quot;http://mcabber.com/&quot;&gt;mcabber&lt;/a&gt; for XMPP and
2045 &lt;a href=&quot;http://www.irssi.org/&quot;&gt;irssi&lt;/a&gt; for IRC. For that overly
2046 coloured world called the WWW, I use
2047 &lt;a href=&quot;https://www.mozilla.org/en-US/firefox/new/&quot;&gt;Iceweasel
2048 (Firefox)&lt;/a&gt;. Oh, and &lt;a href=&quot;http://www.mutt.org/&quot;&gt;mutt&lt;/a&gt; for
2049 e-mail.&lt;/p&gt;
2050
2051 &lt;p&gt;However, while I am personally aware of the fact that text tools
2052 are more efficient and powerful than anything else, I also use (or at
2053 least operate) some tools that are suitable to bring open source to
2054 kids. One of these things is &lt;a href=&quot;http://jappix.org/&quot;&gt;Jappix&lt;/a&gt;,
2055 which I already introduced to some kids even before they got aware of
2056 Facebook, making them see for themselves that they do not need
2057 Facebook now ;).&lt;/p&gt;
2058
2059 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
2060 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
2061
2062 &lt;p&gt;Well, that&#39;s a two-sided thing. One side is what I believe, and one
2063 side is what I have experienced.&lt;/p&gt;
2064
2065 &lt;p&gt;I believe that the right strategy is showing them the benefits. But
2066 that won&#39;t work out as long as the acceptance of free alternatives
2067 grows globally. What I mean is that if all the kids are almost forced
2068 to use Windows, Facebook, Skype, you name it at home, they will not
2069 see why they would want to use alternatives at school. I have seen
2070 students take seat in front of a fully-functional, modern Debian
2071 desktop that could do anything their Windows at home could do, and
2072 they jsut refused to use it because &quot;Linux sucks&quot;. It is something
2073 that makes the council of our city spend around 600000 € to buy
2074 software - not including hardware, mind you - for operating school
2075 networks, and for installing a system that, as has been proved, does
2076 not work. For those of you readers who are good at maths, have you
2077 already found out how many lives could have been saved with that money
2078 if we had instead used it to bring education to parts of the world
2079 that need it? I have, and found it to be nothing less dramatic than
2080 plain criminal.&lt;/p&gt;
2081
2082 &lt;p&gt;That said, the only feasible way appears to be the bottom up
2083 method. We have to bring free software to kids and parents. I have
2084 founded an association named
2085 &lt;a href=&quot;https://www.teckids.org&quot;&gt;Teckids&lt;/a&gt; here in Germany that does
2086 just that. We organise several events for kids and adolescents in the
2087 area of free and open source software, for example the
2088 &lt;a href=&quot;http://kids.froscon.org&quot;&gt;FrogLabs&lt;/a&gt;, which share staff with
2089 Teckids and are the youth programme of
2090 &lt;a href=&quot;http://www.froscon.org&quot;&gt;the Free and Open Source Software
2091 Conference (FrOSCon)&lt;/a&gt;. We do a lot more than most other conferences
2092 - this year, we first offered the FrogLabs as a holiday camp for kids
2093 aged 10 to 16. It was a huge success, with approx. 30 kids taking part
2094 and learning with and about free software through a whole weekend. All
2095 of us had a lot of fun, and the results were really exciting.&lt;/p&gt;
2096
2097 &lt;p&gt;Apart from that, we are preparing a campaign that is supposed to bring
2098 the message of free alternatives to stuff kids use every day to them and
2099 their parents, e.g. the use of Jabber / Jappix instead of Facebook and
2100 Skype. To make that possible, we are planning to get together a team of
2101 clever kids who understand very well what their peers need and can bring
2102 it across to them. So we will have a peer-driven network of adolescents
2103 who teach each other and collect feedback from the community of minors.
2104 We then take that feedback and our own experience to work closely with
2105 open source projects, such as Skolelinux or Jappix, at improving their
2106 software in a way that makes it more and more attractive for the target
2107 group. At least I hope that we will have good cooperation with
2108 Skolelinux in the future ;)!&lt;/p&gt;
2109
2110 &lt;p&gt;So in conclusion, what I believe is that, if it weren&#39;t for the world
2111 being so bad, it should be very clear to the political decision makers
2112 that the only way to go nowadays is free software for various reasons,
2113 but I have learnt that the only way that seems to work is bottom up.&lt;/p&gt;
2114
2115 &lt;!--
2116
2117 &gt; * Who should be interviewed with this questions in the future?
2118
2119 That&#39;s probably the hardest question of them all, as I do not know the
2120 community. However, I would be willing to do the following:
2121
2122 &lt;li&gt;Run an interview with a German headteacher who is very open to
2123 free software, and also prefers it, but cannot really use it because
2124 of the decision makers above;
2125 &lt;li&gt;Run interviews with some kids, both with and without previous
2126 knowledge about free software
2127
2128 If that is wanted, just let me know ;).
2129
2130 --&gt;
2131 </description>
2132 </item>
2133
2134 <item>
2135 <title>Debian Edu interview: Klaus Knopper</title>
2136 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Klaus_Knopper.html</link>
2137 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Klaus_Knopper.html</guid>
2138 <pubDate>Fri, 6 Dec 2013 09:50:00 +0100</pubDate>
2139 <description>&lt;p&gt;It has been a while since I managed to publish the last interview,
2140 but the &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
2141 Skolelinux&lt;/a&gt; community is still going strong, and yesterday we even
2142 had a new school administrator show up on
2143 &lt;a href=&quot;irc://irc.debian.org/#debian-edu&quot;&gt;#debian-edu&lt;/a&gt; to share
2144 his success story with installing Debian Edu at their school. This
2145 time I have been able to get some helpful comments from the creator of
2146 Knoppix, Klaus Knopper, who was involved in a Skolelinux project in
2147 Germany a few years ago.&lt;/p&gt;
2148
2149 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
2150
2151 &lt;p&gt;I am Klaus Knopper. I have a master degree in electrical
2152 engineering, and is currently professor in information management at
2153 the university of applied sciences Kaiserslautern / Germany and
2154 freelance Open Source software developer and consultant.&lt;/p&gt;
2155
2156 &lt;p&gt;All of this is pretty much of the work I spend my days with. Apart
2157 from teaching, I&#39;m also conducting some more or less experimental
2158 projects like the &lt;a href=&quot;http://www.knoppix.org&quot;&gt;Knoppix GNU/Linux live
2159 system&lt;/a&gt; (Debian-based like Skolelinux),
2160 &lt;a href=&quot;http://www.knopper.net/knoppix-adriane/index-en.html&quot;&gt;ADRIANE&lt;/a&gt;
2161 (a blind-friendly talking desktop system) and
2162 &lt;a href=&quot;http://www.knopper.net/linbo/index-en.html&quot;&gt;LINBO&lt;/a&gt;
2163 (Linux-based network boot console, a fast remote install and repair
2164 system supporting various operating systems).&lt;/p&gt;
2165
2166 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
2167 project?&lt;/strong&gt;&lt;/p&gt;
2168
2169 &lt;p&gt;The credit for this have to go to Kurt Gramlich, who is the German
2170 coordinator for Skolelinux. We were looking for an all-in-one open
2171 source community-supported distribution for schools, and Kurt
2172 introduced us to Skolelinux for this purpose.&lt;/p&gt;
2173
2174 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
2175 Edu?&lt;/strong&gt;&lt;/p&gt;
2176
2177 &lt;ul&gt;
2178 &lt;li&gt;Quick installation,&lt;/li&gt;
2179 &lt;li&gt;works (almost) out of the box,&lt;/li&gt;
2180 &lt;li&gt;contains many useful software packages for teaching and learning,&lt;/li&gt;
2181 &lt;li&gt;is a purely community-based distro and not controlled by a
2182 single company,&lt;/li&gt;
2183 &lt;li&gt;has a large number of supporters and teachers who share their
2184 experience and problem solutions.&lt;/li&gt;
2185 &lt;/ul&gt;
2186
2187 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
2188 Edu?&lt;/strong&gt;&lt;/p&gt;
2189
2190 &lt;ul&gt;
2191 &lt;li&gt;Skolelinux is - as we had to learn - not easily upgradable to
2192 the next version. Opposed to its genuine Debian base, upgrading to
2193 a new version means a full new installation from scratch to get it
2194 working again reliably.
2195
2196 &lt;li&gt;Skolelinux is based on Debian/stable, and therefore always a
2197 little outdated in terms of program versions compared to Edubuntu or
2198 similar educational Linux distros, which rather use Debian/testing
2199 as their base.
2200
2201 &lt;li&gt;Skolelinux has some very self-opinionated and stubborn default
2202 configuration which in my opinion adds unnecessary complexity and is
2203 not always suitable for a schools needs, the preset network
2204 configuration is actually a core definition feature of Skolelinux
2205 and not easy to change, so schools sometimes have to change their
2206 network configuration to make it &quot;Skolelinux-compatible&quot;.
2207
2208 &lt;li&gt;Some proposed extensions, which were made available as
2209 contribution, like secure examination mode and lecture material
2210 distribution and collection, were not accepted into the mainline
2211 Skolelinux development and are now not easy to maintain in the
2212 future because of Skolelinux somewhat undeterministic update
2213 schemes.&lt;/li&gt;
2214
2215 &lt;li&gt;Skolelinux has only a very tiny number of base developers
2216 compared to Debian.&lt;/li&gt;
2217
2218 &lt;/ul&gt;
2219
2220 &lt;p&gt;For these reasons and experience from our project, I would now
2221 rather consider using plain Debian for schools next time, until
2222 Skolelinux is more closely integrated into Debian and becomes
2223 upgradeable without reinstallation.&lt;/p&gt;
2224
2225 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
2226
2227 &lt;p&gt;GNU/Linux with LXDE desktop, bash for interactive dialog and
2228 programming, texlive for documentation and correspondence,
2229 occasionally LibreOffice for document format conversion. Various
2230 programming languages for teaching.&lt;/p&gt;
2231
2232 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
2233 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
2234
2235 &lt;p&gt;Strong arguments are&lt;/p&gt;
2236
2237 &lt;ul&gt;
2238
2239 &lt;li&gt;Knowledge is free, and so should be methods and tools for
2240 teaching and learning.&lt;/li&gt;
2241
2242 &lt;li&gt;Students can learn with and use the same software at school, at
2243 home, and at their working place without running into license or
2244 conversion problems.&lt;/li&gt;
2245
2246 &lt;li&gt;Closed source or proprietary software hides knowledge rather
2247 than exposing it, and proprietary software vendors try to bind
2248 customers to certain products. But teachers need to teach
2249 science, not products.&lt;/li&gt;
2250
2251 &lt;li&gt;If you have everything you for daily work as open source, what
2252 would you need proprietary software for?&lt;/li&gt;
2253
2254 &lt;/ul&gt;
2255 </description>
2256 </item>
2257
2258 <item>
2259 <title>Dugnadsnett for alle, a wireless community network in Oslo, take shape</title>
2260 <link>http://people.skolelinux.org/pere/blog/Dugnadsnett_for_alle__a_wireless_community_network_in_Oslo__take_shape.html</link>
2261 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Dugnadsnett_for_alle__a_wireless_community_network_in_Oslo__take_shape.html</guid>
2262 <pubDate>Sat, 30 Nov 2013 10:10:00 +0100</pubDate>
2263 <description>&lt;p&gt;If you want the ability to electronically communicate directly with
2264 your neighbors and friends using a network controlled by your peers in
2265 stead of centrally controlled by a few corporations, or would like to
2266 experiment with interesting network technology, the
2267 &lt;a href=&quot;http://www.dugnadsnett.no/&quot;&gt;Dugnasnett for alle i Oslo&lt;/a&gt;
2268 might be project for you. 39 mesh nodes are currently being planned,
2269 in the freshly started initiative from NUUG and Hackeriet to create a
2270 wireless community network. The work is inspired by
2271 &lt;a href=&quot;http://freifunk.net/&quot;&gt;Freifunk&lt;/a&gt;,
2272 &lt;a href=&quot;http://www.awmn.net/&quot;&gt;Athens Wireless Metropolitan
2273 Network&lt;/a&gt;, &lt;a href=&quot;http://en.wikipedia.org/wiki/Roofnet&quot;&gt;Roofnet&lt;/a&gt;
2274 and other successful mesh networks around the globe. Two days ago we
2275 held a workshop to try to get people started on setting up their own
2276 mesh node, and there we decided to create a new mailing list
2277 &lt;a href=&quot;http://lists.nuug.no/mailman/listinfo/dugnadsnett&quot;&gt;dugnadsnett
2278 (at) nuug.no&lt;/a&gt; and IRC channel
2279 &lt;a href=&quot;irc://irc.freenode.net/#dugnadsnett.no&quot;&gt;#dugnadsnett.no&lt;/a&gt; to
2280 coordinate the work. See also the NUUG blog post
2281 &lt;a href=&quot;http://www.nuug.no/news/E_postliste_og_IRC_kanal_for_Dugnadsnett_for_alle_i_Oslo.shtml&quot;&gt;announcing
2282 the mailing list and IRC channel&lt;/a&gt;.&lt;/p&gt;
2283 </description>
2284 </item>
2285
2286 <item>
2287 <title>New chrpath release 0.15</title>
2288 <link>http://people.skolelinux.org/pere/blog/New_chrpath_release_0_15.html</link>
2289 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/New_chrpath_release_0_15.html</guid>
2290 <pubDate>Sun, 24 Nov 2013 09:30:00 +0100</pubDate>
2291 <description>&lt;p&gt;After many years break from the package and a vain hope that
2292 development would be continued by someone else, I finally pulled my
2293 acts together this morning and wrapped up a new release of chrpath,
2294 the command line tool to modify the rpath and runpath of already
2295 compiled ELF programs. The update was triggered by the persistence of
2296 Isha Vishnoi at IBM, which needed a new config.guess file to get
2297 support for the ppc64le architecture (powerpc 64-bit Little Endian) he
2298 is working on. I checked the
2299 &lt;a href=&quot;http://packages.qa.debian.org/chrpath&quot;&gt;Debian&lt;/a&gt;,
2300 &lt;a href=&quot;https://launchpad.net/ubuntu/+source/chrpath&quot;&gt;Ubuntu&lt;/a&gt; and
2301 &lt;a href=&quot;https://admin.fedoraproject.org/pkgdb/acls/name/chrpath&quot;&gt;Fedora&lt;/a&gt;
2302 packages for interesting patches (failed to find the source from
2303 OpenSUSE and Mandriva packages), and found quite a few nice fixes.
2304 These are the release notes:&lt;/p&gt;
2305
2306 &lt;p&gt;New in 0.15 released 2013-11-24:&lt;/p&gt;
2307
2308 &lt;ul&gt;
2309
2310 &lt;li&gt;Updated config.sub and config.guess from the GNU project to work
2311 with newer architectures. Thanks to isha vishnoi for the heads
2312 up.&lt;/li&gt;
2313
2314 &lt;li&gt;Updated README with current URLs.&lt;/li&gt;
2315
2316 &lt;li&gt;Added byteswap fix found in Ubuntu, credited Jeremy Kerr and
2317 Matthias Klose.&lt;/li&gt;
2318
2319 &lt;li&gt;Added missing help for -k|--keepgoing option, using patch by
2320 Petr Machata found in Fedora.&lt;/li&gt;
2321
2322 &lt;li&gt;Rewrite removal of RPATH/RUNPATH to make sure the entry in
2323 .dynamic is a NULL terminated string. Based on patch found in
2324 Fedora credited Axel Thimm and Christian Krause.&lt;/li&gt;
2325
2326 &lt;/ul&gt;
2327
2328 &lt;p&gt;You can
2329 &lt;a href=&quot;https://alioth.debian.org/frs/?group_id=31052&quot;&gt;download the
2330 new version 0.15 from alioth&lt;/a&gt;. Please let us know via the Alioth
2331 project if something is wrong with the new release. The test suite
2332 did not discover any old errors, so if you find a new one, please also
2333 include a testsuite check.&lt;/p&gt;
2334 </description>
2335 </item>
2336
2337 <item>
2338 <title>All drones should be radio marked with what they do and who they belong to</title>
2339 <link>http://people.skolelinux.org/pere/blog/All_drones_should_be_radio_marked_with_what_they_do_and_who_they_belong_to.html</link>
2340 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/All_drones_should_be_radio_marked_with_what_they_do_and_who_they_belong_to.html</guid>
2341 <pubDate>Thu, 21 Nov 2013 15:40:00 +0100</pubDate>
2342 <description>&lt;p&gt;Drones, flying robots, are getting more and more popular. The most
2343 know ones are the killer drones used by some government to murder
2344 people they do not like without giving them the chance of a fair
2345 trial, but the technology have many good uses too, from mapping and
2346 forest maintenance to photography and search and rescue. I am sure it
2347 is just a question of time before &quot;bad drones&quot; are in the hands of
2348 private enterprises and not only state criminals but petty criminals
2349 too. The drone technology is very useful and very dangerous. To have
2350 some control over the use of drones, I agree with Daniel Suarez in his
2351 TED talk
2352 &quot;&lt;a href=&quot;https://archive.org/details/DanielSuarez_2013G&quot;&gt;The kill
2353 decision shouldn&#39;t belong to a robot&lt;/a&gt;&quot;, where he suggested this
2354 little gem to keep the good while limiting the bad use of drones:&lt;/p&gt;
2355
2356 &lt;blockquote&gt;
2357
2358 &lt;p&gt;Each robot and drone should have a cryptographically signed
2359 I.D. burned in at the factory that can be used to track its movement
2360 through public spaces. We have license plates on cars, tail numbers on
2361 aircraft. This is no different. And every citizen should be able to
2362 download an app that shows the population of drones and autonomous
2363 vehicles moving through public spaces around them, both right now and
2364 historically. And civic leaders should deploy sensors and civic drones
2365 to detect rogue drones, and instead of sending killer drones of their
2366 own up to shoot them down, they should notify humans to their
2367 presence. And in certain very high-security areas, perhaps civic
2368 drones would snare them and drag them off to a bomb disposal facility.&lt;/p&gt;
2369
2370 &lt;p&gt;But notice, this is more an immune system than a weapons system. It
2371 would allow us to avail ourselves of the use of autonomous vehicles
2372 and drones while still preserving our open, civil society.&lt;/p&gt;
2373
2374 &lt;/blockquote&gt;
2375
2376 &lt;p&gt;The key is that &lt;em&gt;every citizen&lt;/em&gt; should be able to read the
2377 radio beacons sent from the drones in the area, to be able to check
2378 both the government and others use of drones. For such control to be
2379 effective, everyone must be able to do it. What should such beacon
2380 contain? At least formal owner, purpose, contact information and GPS
2381 location. Probably also the origin and target position of the current
2382 flight. And perhaps some registration number to be able to look up
2383 the drone in a central database tracking their movement. Robots
2384 should not have privacy. It is people who need privacy.&lt;/p&gt;
2385 </description>
2386 </item>
2387
2388 <item>
2389 <title>Lets make a wireless community network in Oslo!</title>
2390 <link>http://people.skolelinux.org/pere/blog/Lets_make_a_wireless_community_network_in_Oslo_.html</link>
2391 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lets_make_a_wireless_community_network_in_Oslo_.html</guid>
2392 <pubDate>Wed, 13 Nov 2013 21:00:00 +0100</pubDate>
2393 <description>&lt;p&gt;Today NUUG and Hackeriet announced
2394 &lt;a href=&quot;http://www.nuug.no/news/Bli_med___bygge_dugnadsnett_for_alle_i_Oslo.shtml&quot;&gt;our
2395 plans to join forces and create a wireless community network in
2396 Oslo&lt;/a&gt;. The workshop to help people get started will take place
2397 Thursday 2013-11-28, but we already are collecting the geolocation of
2398 people joining forces to make this happen. We have
2399 &lt;a href=&quot;https://github.com/petterreinholdtsen/meshfx-node/blob/master/oslo-nodes.geojson&quot;&gt;9
2400 locations plotted on the map&lt;/a&gt;, but we will need more before we have
2401 a connected mesh spread across Oslo. If this sound interesting to
2402 you, please join us at the workshop. If you are too impatient to wait
2403 15 days, please join us on the IRC channel
2404 &lt;a href=&quot;irc://irc.freenode.net/%23nuug&quot;&gt;#nuug on irc.freenode.net&lt;/a&gt;
2405 right away. :)&lt;/p&gt;
2406 </description>
2407 </item>
2408
2409 <item>
2410 <title>Running TP-Link MR3040 as a batman-adv mesh node using openwrt</title>
2411 <link>http://people.skolelinux.org/pere/blog/Running_TP_Link_MR3040_as_a_batman_adv_mesh_node_using_openwrt.html</link>
2412 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Running_TP_Link_MR3040_as_a_batman_adv_mesh_node_using_openwrt.html</guid>
2413 <pubDate>Sun, 10 Nov 2013 23:00:00 +0100</pubDate>
2414 <description>&lt;p&gt;Continuing my research into mesh networking, I was recommended to
2415 use TP-Link 3040 and 3600 access points as mesh nodes, and the pair I
2416 bought arrived on Friday. Here are my notes on how to set up the
2417 MR3040 as a mesh node using
2418 &lt;a href=&quot;http://www.openwrt.org/&quot;&gt;OpenWrt&lt;/a&gt;.&lt;/p&gt;
2419
2420 &lt;p&gt;I started by following the instructions on the OpenWRT wiki for
2421 &lt;a href=&quot;http://wiki.openwrt.org/toh/tp-link/tl-mr3040&quot;&gt;TL-MR3040&lt;/a&gt;,
2422 and downloaded
2423 &lt;a href=&quot;http://downloads.openwrt.org/snapshots/trunk/ar71xx/openwrt-ar71xx-generic-tl-mr3040-v2-squashfs-factory.bin&quot;&gt;the
2424 recommended firmware image&lt;/a&gt;
2425 (openwrt-ar71xx-generic-tl-mr3040-v2-squashfs-factory.bin) and
2426 uploaded it into the original web interface. The flashing went fine,
2427 and the machine was available via telnet on the ethernet port. After
2428 logging in and setting the root password, ssh was available and I
2429 could start to set it up as a batman-adv mesh node.&lt;/p&gt;
2430
2431 &lt;p&gt;I started off by reading the instructions from
2432 &lt;a href=&quot;http://wirelessafrica.meraka.org.za/wiki/index.php?title=Antoine&#39;s_Research&quot;&gt;Wireless
2433 Africa&lt;/a&gt;, which had quite a lot of useful information, but
2434 eventually I followed the recipe from the Open Mesh wiki for
2435 &lt;a href=&quot;http://www.open-mesh.org/projects/batman-adv/wiki/Batman-adv-openwrt-config&quot;&gt;using
2436 batman-adv on OpenWrt&lt;/a&gt;. A small snag was the fact that the
2437 &lt;tt&gt;opkg install kmod-batman-adv&lt;/tt&gt; command did not work as it
2438 should. The batman-adv kernel module would fail to load because its
2439 dependency crc16 was not already loaded. I
2440 &lt;a href=&quot;https://dev.openwrt.org/ticket/14452&quot;&gt;reported the bug&lt;/a&gt; to
2441 the openwrt project and hope it will be fixed soon. But the problem
2442 only seem to affect initial testing of batman-adv, as configuration
2443 seem to work when booting from scratch.&lt;/p&gt;
2444
2445 &lt;p&gt;The setup is done using files in /etc/config/. I did not bridge
2446 the Ethernet and mesh interfaces this time, to be able to hook up the
2447 box on my local network and log into it for configuration updates.
2448 The following files were changed and look like this after modifying
2449 them:&lt;/p&gt;
2450
2451 &lt;p&gt;&lt;tt&gt;/etc/config/network&lt;/tt&gt;&lt;/p&gt;
2452
2453 &lt;pre&gt;
2454
2455 config interface &#39;loopback&#39;
2456 option ifname &#39;lo&#39;
2457 option proto &#39;static&#39;
2458 option ipaddr &#39;127.0.0.1&#39;
2459 option netmask &#39;255.0.0.0&#39;
2460
2461 config globals &#39;globals&#39;
2462 option ula_prefix &#39;fdbf:4c12:3fed::/48&#39;
2463
2464 config interface &#39;lan&#39;
2465 option ifname &#39;eth0&#39;
2466 option type &#39;bridge&#39;
2467 option proto &#39;dhcp&#39;
2468 option ipaddr &#39;192.168.1.1&#39;
2469 option netmask &#39;255.255.255.0&#39;
2470 option hostname &#39;tl-mr3040&#39;
2471 option ip6assign &#39;60&#39;
2472
2473 config interface &#39;mesh&#39;
2474 option ifname &#39;adhoc0&#39;
2475 option mtu &#39;1528&#39;
2476 option proto &#39;batadv&#39;
2477 option mesh &#39;bat0&#39;
2478 &lt;/pre&gt;
2479
2480 &lt;p&gt;&lt;tt&gt;/etc/config/wireless&lt;/tt&gt;&lt;/p&gt;
2481 &lt;pre&gt;
2482
2483 config wifi-device &#39;radio0&#39;
2484 option type &#39;mac80211&#39;
2485 option channel &#39;11&#39;
2486 option hwmode &#39;11ng&#39;
2487 option path &#39;platform/ar933x_wmac&#39;
2488 option htmode &#39;HT20&#39;
2489 list ht_capab &#39;SHORT-GI-20&#39;
2490 list ht_capab &#39;SHORT-GI-40&#39;
2491 list ht_capab &#39;RX-STBC1&#39;
2492 list ht_capab &#39;DSSS_CCK-40&#39;
2493 option disabled &#39;0&#39;
2494
2495 config wifi-iface &#39;wmesh&#39;
2496 option device &#39;radio0&#39;
2497 option ifname &#39;adhoc0&#39;
2498 option network &#39;mesh&#39;
2499 option encryption &#39;none&#39;
2500 option mode &#39;adhoc&#39;
2501 option bssid &#39;02:BA:00:00:00:01&#39;
2502 option ssid &#39;meshfx@hackeriet&#39;
2503 &lt;/pre&gt;
2504 &lt;p&gt;&lt;tt&gt;/etc/config/batman-adv&lt;/tt&gt;&lt;/p&gt;
2505 &lt;pre&gt;
2506
2507 config &#39;mesh&#39; &#39;bat0&#39;
2508 option interfaces &#39;adhoc0&#39;
2509 option &#39;aggregated_ogms&#39;
2510 option &#39;ap_isolation&#39;
2511 option &#39;bonding&#39;
2512 option &#39;fragmentation&#39;
2513 option &#39;gw_bandwidth&#39;
2514 option &#39;gw_mode&#39;
2515 option &#39;gw_sel_class&#39;
2516 option &#39;log_level&#39;
2517 option &#39;orig_interval&#39;
2518 option &#39;vis_mode&#39;
2519 option &#39;bridge_loop_avoidance&#39;
2520 option &#39;distributed_arp_table&#39;
2521 option &#39;network_coding&#39;
2522 option &#39;hop_penalty&#39;
2523
2524 # yet another batX instance
2525 # config &#39;mesh&#39; &#39;bat5&#39;
2526 # option &#39;interfaces&#39; &#39;second_mesh&#39;
2527 &lt;/pre&gt;
2528
2529 &lt;p&gt;The mesh node is now operational. I have yet to test its range,
2530 but I hope it is good. I have not yet tested the TP-Link 3600 box
2531 still wrapped up in plastic.&lt;/p&gt;
2532 </description>
2533 </item>
2534
2535 <item>
2536 <title>Debian init.d boot script example for rsyslog</title>
2537 <link>http://people.skolelinux.org/pere/blog/Debian_init_d_boot_script_example_for_rsyslog.html</link>
2538 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_init_d_boot_script_example_for_rsyslog.html</guid>
2539 <pubDate>Sat, 2 Nov 2013 22:40:00 +0100</pubDate>
2540 <description>&lt;p&gt;If one of the points of switching to a new init system in Debian is
2541 &lt;a href=&quot;http://thomas.goirand.fr/blog/?p=147&quot;&gt;to get rid of huge
2542 init.d scripts&lt;/a&gt;, I doubt we need to switch away from sysvinit and
2543 init.d scripts at all. Here is an example init.d script, ie a rewrite
2544 of /etc/init.d/rsyslog:&lt;/p&gt;
2545
2546 &lt;p&gt;&lt;pre&gt;
2547 #!/lib/init/init-d-script
2548 ### BEGIN INIT INFO
2549 # Provides: rsyslog
2550 # Required-Start: $remote_fs $time
2551 # Required-Stop: umountnfs $time
2552 # X-Stop-After: sendsigs
2553 # Default-Start: 2 3 4 5
2554 # Default-Stop: 0 1 6
2555 # Short-Description: enhanced syslogd
2556 # Description: Rsyslog is an enhanced multi-threaded syslogd.
2557 # It is quite compatible to stock sysklogd and can be
2558 # used as a drop-in replacement.
2559 ### END INIT INFO
2560 DESC=&quot;enhanced syslogd&quot;
2561 DAEMON=/usr/sbin/rsyslogd
2562 &lt;/pre&gt;&lt;/p&gt;
2563
2564 &lt;p&gt;Pretty minimalistic to me... For the record, the original sysv-rc
2565 script was 137 lines, and the above is just 15 lines, most of it meta
2566 info/comments.&lt;/p&gt;
2567
2568 &lt;p&gt;How to do this, you ask? Well, one create a new script
2569 /lib/init/init-d-script looking something like this:
2570
2571 &lt;p&gt;&lt;pre&gt;
2572 #!/bin/sh
2573
2574 # Define LSB log_* functions.
2575 # Depend on lsb-base (&gt;= 3.2-14) to ensure that this file is present
2576 # and status_of_proc is working.
2577 . /lib/lsb/init-functions
2578
2579 #
2580 # Function that starts the daemon/service
2581
2582 #
2583 do_start()
2584 {
2585 # Return
2586 # 0 if daemon has been started
2587 # 1 if daemon was already running
2588 # 2 if daemon could not be started
2589 start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test &gt; /dev/null \
2590 || return 1
2591 start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \
2592 $DAEMON_ARGS \
2593 || return 2
2594 # Add code here, if necessary, that waits for the process to be ready
2595 # to handle requests from services started subsequently which depend
2596 # on this one. As a last resort, sleep for some time.
2597 }
2598
2599 #
2600 # Function that stops the daemon/service
2601 #
2602 do_stop()
2603 {
2604 # Return
2605 # 0 if daemon has been stopped
2606 # 1 if daemon was already stopped
2607 # 2 if daemon could not be stopped
2608 # other if a failure occurred
2609 start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME
2610 RETVAL=&quot;$?&quot;
2611 [ &quot;$RETVAL&quot; = 2 ] &amp;&amp; return 2
2612 # Wait for children to finish too if this is a daemon that forks
2613 # and if the daemon is only ever run from this initscript.
2614 # If the above conditions are not satisfied then add some other code
2615 # that waits for the process to drop all resources that could be
2616 # needed by services started subsequently. A last resort is to
2617 # sleep for some time.
2618 start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON
2619 [ &quot;$?&quot; = 2 ] &amp;&amp; return 2
2620 # Many daemons don&#39;t delete their pidfiles when they exit.
2621 rm -f $PIDFILE
2622 return &quot;$RETVAL&quot;
2623 }
2624
2625 #
2626 # Function that sends a SIGHUP to the daemon/service
2627 #
2628 do_reload() {
2629 #
2630 # If the daemon can reload its configuration without
2631 # restarting (for example, when it is sent a SIGHUP),
2632 # then implement that here.
2633 #
2634 start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME
2635 return 0
2636 }
2637
2638 SCRIPTNAME=$1
2639 scriptbasename=&quot;$(basename $1)&quot;
2640 echo &quot;SN: $scriptbasename&quot;
2641 if [ &quot;$scriptbasename&quot; != &quot;init-d-library&quot; ] ; then
2642 script=&quot;$1&quot;
2643 shift
2644 . $script
2645 else
2646 exit 0
2647 fi
2648
2649 NAME=$(basename $DAEMON)
2650 PIDFILE=/var/run/$NAME.pid
2651
2652 # Exit if the package is not installed
2653 #[ -x &quot;$DAEMON&quot; ] || exit 0
2654
2655 # Read configuration variable file if it is present
2656 [ -r /etc/default/$NAME ] &amp;&amp; . /etc/default/$NAME
2657
2658 # Load the VERBOSE setting and other rcS variables
2659 . /lib/init/vars.sh
2660
2661 case &quot;$1&quot; in
2662 start)
2663 [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_daemon_msg &quot;Starting $DESC&quot; &quot;$NAME&quot;
2664 do_start
2665 case &quot;$?&quot; in
2666 0|1) [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_end_msg 0 ;;
2667 2) [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_end_msg 1 ;;
2668 esac
2669 ;;
2670 stop)
2671 [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_daemon_msg &quot;Stopping $DESC&quot; &quot;$NAME&quot;
2672 do_stop
2673 case &quot;$?&quot; in
2674 0|1) [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_end_msg 0 ;;
2675 2) [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_end_msg 1 ;;
2676 esac
2677 ;;
2678 status)
2679 status_of_proc &quot;$DAEMON&quot; &quot;$NAME&quot; &amp;&amp; exit 0 || exit $?
2680 ;;
2681 #reload|force-reload)
2682 #
2683 # If do_reload() is not implemented then leave this commented out
2684 # and leave &#39;force-reload&#39; as an alias for &#39;restart&#39;.
2685 #
2686 #log_daemon_msg &quot;Reloading $DESC&quot; &quot;$NAME&quot;
2687 #do_reload
2688 #log_end_msg $?
2689 #;;
2690 restart|force-reload)
2691 #
2692 # If the &quot;reload&quot; option is implemented then remove the
2693 # &#39;force-reload&#39; alias
2694 #
2695 log_daemon_msg &quot;Restarting $DESC&quot; &quot;$NAME&quot;
2696 do_stop
2697 case &quot;$?&quot; in
2698 0|1)
2699 do_start
2700 case &quot;$?&quot; in
2701 0) log_end_msg 0 ;;
2702 1) log_end_msg 1 ;; # Old process is still running
2703 *) log_end_msg 1 ;; # Failed to start
2704 esac
2705 ;;
2706 *)
2707 # Failed to stop
2708 log_end_msg 1
2709 ;;
2710 esac
2711 ;;
2712 *)
2713 echo &quot;Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}&quot; &gt;&amp;2
2714 exit 3
2715 ;;
2716 esac
2717
2718 :
2719 &lt;/pre&gt;&lt;/p&gt;
2720
2721 &lt;p&gt;It is based on /etc/init.d/skeleton, and could be improved quite a
2722 lot. I did not really polish the approach, so it might not always
2723 work out of the box, but you get the idea. I did not try very hard to
2724 optimize it nor make it more robust either.&lt;/p&gt;
2725
2726 &lt;p&gt;A better argument for switching init system in Debian than reducing
2727 the size of init scripts (which is a good thing to do anyway), is to
2728 get boot system that is able to handle the kernel events sensibly and
2729 robustly, and do not depend on the boot to run sequentially. The boot
2730 and the kernel have not behaved sequentially in years.&lt;/p&gt;
2731 </description>
2732 </item>
2733
2734 <item>
2735 <title>Browser plugin for SPICE (spice-xpi) uploaded to Debian</title>
2736 <link>http://people.skolelinux.org/pere/blog/Browser_plugin_for_SPICE__spice_xpi__uploaded_to_Debian.html</link>
2737 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Browser_plugin_for_SPICE__spice_xpi__uploaded_to_Debian.html</guid>
2738 <pubDate>Fri, 1 Nov 2013 11:00:00 +0100</pubDate>
2739 <description>&lt;p&gt;&lt;a href=&quot;http://www.spice-space.org/&quot;&gt;The SPICE protocol&lt;/a&gt; for
2740 remote display access is the preferred solution with oVirt and RedHat
2741 Enterprise Virtualization, and I was sad to discover the other day
2742 that the browser plugin needed to use these systems seamlessly was
2743 missing in Debian. The &lt;a href=&quot;http://bugs.debian.org/668284&quot;&gt;request
2744 for a package&lt;/a&gt; was from 2012-04-10 with no progress since
2745 2013-04-01, so I decided to wrap up a package based on the great work
2746 from Cajus Pollmeier and put it in a collab-maint maintained git
2747 repository to get a package I could use. I would very much like
2748 others to help me maintain the package (or just take over, I do not
2749 mind), but as no-one had volunteered so far, I just uploaded it to
2750 NEW. I hope it will be available in Debian in a few days.&lt;/p&gt;
2751
2752 &lt;p&gt;The source is now available from
2753 &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;
2754 </description>
2755 </item>
2756
2757 <item>
2758 <title>Teaching vmdebootstrap to create Raspberry Pi SD card images</title>
2759 <link>http://people.skolelinux.org/pere/blog/Teaching_vmdebootstrap_to_create_Raspberry_Pi_SD_card_images.html</link>
2760 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Teaching_vmdebootstrap_to_create_Raspberry_Pi_SD_card_images.html</guid>
2761 <pubDate>Sun, 27 Oct 2013 17:00:00 +0100</pubDate>
2762 <description>&lt;p&gt;The
2763 &lt;a href=&quot;http://packages.qa.debian.org/v/vmdebootstrap.html&quot;&gt;vmdebootstrap&lt;/a&gt;
2764 program is a a very nice system to create virtual machine images. It
2765 create a image file, add a partition table, mount it and run
2766 debootstrap in the mounted directory to create a Debian system on a
2767 stick. Yesterday, I decided to try to teach it how to make images for
2768 &lt;a href=&quot;https://wiki.debian.org/RaspberryPi&quot;&gt;Raspberry Pi&lt;/a&gt;, as part
2769 of a plan to simplify the build system for
2770 &lt;a href=&quot;https://wiki.debian.org/FreedomBox&quot;&gt;the FreedomBox
2771 project&lt;/a&gt;. The FreedomBox project already uses vmdebootstrap for
2772 the virtualbox images, but its current build system made multistrap
2773 based system for Dreamplug images, and it is lacking support for
2774 Raspberry Pi.&lt;/p&gt;
2775
2776 &lt;p&gt;Armed with the knowledge on how to build &quot;foreign&quot; (aka non-native
2777 architecture) chroots for Raspberry Pi, I dived into the vmdebootstrap
2778 code and adjusted it to be able to build armel images on my amd64
2779 Debian laptop. I ended up giving vmdebootstrap five new options,
2780 allowing me to replicate the image creation process I use to make
2781 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/A_Raspberry_Pi_based_batman_adv_Mesh_network_node.html&quot;&gt;Debian
2782 Jessie based mesh node images for the Raspberry Pi&lt;/a&gt;. First, the
2783 &lt;tt&gt;--foreign /path/to/binfm_handler&lt;/tt&gt; option tell vmdebootstrap to
2784 call debootstrap with --foreign and to copy the handler into the
2785 generated chroot before running the second stage. This allow
2786 vmdebootstrap to create armel images on an amd64 host. Next I added
2787 two new options &lt;tt&gt;--bootsize size&lt;/tt&gt; and &lt;tt&gt;--boottype
2788 fstype&lt;/tt&gt; to teach it to create a separate /boot/ partition with the
2789 given file system type, allowing me to create an image with a vfat
2790 partition for the /boot/ stuff. I also added a &lt;tt&gt;--variant
2791 variant&lt;/tt&gt; option to allow me to create smaller images without the
2792 Debian base system packages installed. Finally, I added an option
2793 &lt;tt&gt;--no-extlinux&lt;/tt&gt; to tell vmdebootstrap to not install extlinux
2794 as a boot loader. It is not needed on the Raspberry Pi and probably
2795 most other non-x86 architectures. The changes were accepted by the
2796 upstream author of vmdebootstrap yesterday and today, and is now
2797 available from
2798 &lt;a href=&quot;http://git.liw.fi/cgi-bin/cgit/cgit.cgi/vmdebootstrap/&quot;&gt;the
2799 upstream project page&lt;/a&gt;.&lt;/p&gt;
2800
2801 &lt;p&gt;To use it to build a Raspberry Pi image using Debian Jessie, first
2802 create a small script (the customize script) to add the non-free
2803 binary blob needed to boot the Raspberry Pi and the APT source
2804 list:&lt;/p&gt;
2805
2806 &lt;p&gt;&lt;pre&gt;
2807 #!/bin/sh
2808 set -e # Exit on first error
2809 rootdir=&quot;$1&quot;
2810 cd &quot;$rootdir&quot;
2811 cat &amp;lt;&amp;lt;EOF &gt; etc/apt/sources.list
2812 deb http://http.debian.net/debian/ jessie main contrib non-free
2813 EOF
2814 # Install non-free binary blob needed to boot Raspberry Pi. This
2815 # install a kernel somewhere too.
2816 wget https://raw.github.com/Hexxeh/rpi-update/master/rpi-update \
2817 -O $rootdir/usr/bin/rpi-update
2818 chmod a+x $rootdir/usr/bin/rpi-update
2819 mkdir -p $rootdir/lib/modules
2820 touch $rootdir/boot/start.elf
2821 chroot $rootdir rpi-update
2822 &lt;/pre&gt;&lt;/p&gt;
2823
2824 &lt;p&gt;Next, fetch the latest vmdebootstrap script and call it like this
2825 to build the image:&lt;/p&gt;
2826
2827 &lt;pre&gt;
2828 sudo ./vmdebootstrap \
2829 --variant minbase \
2830 --arch armel \
2831 --distribution jessie \
2832 --mirror http://http.debian.net/debian \
2833 --image test.img \
2834 --size 600M \
2835 --bootsize 64M \
2836 --boottype vfat \
2837 --log-level debug \
2838 --verbose \
2839 --no-kernel \
2840 --no-extlinux \
2841 --root-password raspberry \
2842 --hostname raspberrypi \
2843 --foreign /usr/bin/qemu-arm-static \
2844 --customize `pwd`/customize \
2845 --package netbase \
2846 --package git-core \
2847 --package binutils \
2848 --package ca-certificates \
2849 --package wget \
2850 --package kmod
2851 &lt;/pre&gt;&lt;/p&gt;
2852
2853 &lt;p&gt;The list of packages being installed are the ones needed by
2854 rpi-update to make the image bootable on the Raspberry Pi, with the
2855 exception of netbase, which is needed by debootstrap to find
2856 /etc/hosts with the minbase variant. I really wish there was a way to
2857 set up an Raspberry Pi using only packages in the Debian archive, but
2858 that is not possible as far as I know, because it boots from the GPU
2859 using a non-free binary blob.&lt;/p&gt;
2860
2861 &lt;p&gt;The build host need debootstrap, kpartx and qemu-user-static and
2862 probably a few others installed. I have not checked the complete
2863 build dependency list.&lt;/p&gt;
2864
2865 &lt;p&gt;The resulting image will not use the hardware floating point unit
2866 on the Raspberry PI, because the armel architecture in Debian is not
2867 optimized for that use. So the images created will be a bit slower
2868 than &lt;a href=&quot;http://www.raspbian.org/&quot;&gt;Raspbian&lt;/a&gt; based images.&lt;/p&gt;
2869 </description>
2870 </item>
2871
2872 <item>
2873 <title>A Raspberry Pi based batman-adv Mesh network node</title>
2874 <link>http://people.skolelinux.org/pere/blog/A_Raspberry_Pi_based_batman_adv_Mesh_network_node.html</link>
2875 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_Raspberry_Pi_based_batman_adv_Mesh_network_node.html</guid>
2876 <pubDate>Mon, 21 Oct 2013 11:40:00 +0200</pubDate>
2877 <description>&lt;p&gt;The last few days I have been experimenting with
2878 &lt;a href=&quot;http://www.open-mesh.org/projects/batman-adv/wiki&quot;&gt;the
2879 batman-adv mesh technology&lt;/a&gt;. I want to gain some experience to see
2880 if it will fit &lt;a href=&quot;https://wiki.debian.org/FreedomBox&quot;&gt;the
2881 Freedombox project&lt;/a&gt;, and together with my neighbors try to build a
2882 mesh network around the park where I live. Batman-adv is a layer 2
2883 mesh system (&quot;ethernet&quot; in other words), where the mesh network appear
2884 as if all the mesh clients are connected to the same switch.&lt;/p&gt;
2885
2886 &lt;p&gt;My hardware of choice was the Linksys WRT54GL routers I had lying
2887 around, but I&#39;ve been unable to get them working with batman-adv. So
2888 instead, I started playing with a
2889 &lt;a href=&quot;http://www.raspberrypi.org/&quot;&gt;Raspberry Pi&lt;/a&gt;, and tried to
2890 get it working as a mesh node. My idea is to use it to create a mesh
2891 node which function as a switch port, where everything connected to
2892 the Raspberry Pi ethernet plug is connected (bridged) to the mesh
2893 network. This allow me to hook a wifi base station like the Linksys
2894 WRT54GL to the mesh by plugging it into a Raspberry Pi, and allow
2895 non-mesh clients to hook up to the mesh. This in turn is useful for
2896 Android phones using &lt;a href=&quot;http://servalproject.org/&quot;&gt;the Serval
2897 Project&lt;/a&gt; voip client, allowing every one around the playground to
2898 phone and message each other for free. The reason is that Android
2899 phones do not see ad-hoc wifi networks (they are filtered away from
2900 the GUI view), and can not join the mesh without being rooted. But if
2901 they are connected using a normal wifi base station, they can talk to
2902 every client on the local network.&lt;/p&gt;
2903
2904 &lt;p&gt;To get this working, I&#39;ve created a debian package
2905 &lt;a href=&quot;https://github.com/petterreinholdtsen/meshfx-node&quot;&gt;meshfx-node&lt;/a&gt;
2906 and a script
2907 &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;
2908 to create the Raspberry Pi boot image. I&#39;m using Debian Jessie (and
2909 not Raspbian), to get more control over the packages available.
2910 Unfortunately a huge binary blob need to be inserted into the boot
2911 image to get it booting, but I&#39;ll ignore that for now. Also, as
2912 Debian lack support for the CPU features available in the Raspberry
2913 Pi, the system do not use the hardware floating point unit. I hope
2914 the routing performance isn&#39;t affected by the lack of hardware FPU
2915 support.&lt;/p&gt;
2916
2917 &lt;p&gt;To create an image, run the following with a sudo enabled user
2918 after inserting the target SD card into the build machine:&lt;/p&gt;
2919
2920 &lt;p&gt;&lt;pre&gt;
2921 % wget -O build-rpi-mesh-node \
2922 https://raw.github.com/petterreinholdtsen/meshfx-node/master/build-rpi-mesh-node
2923 % sudo bash -x ./build-rpi-mesh-node &gt; build.log 2&gt;&amp;1
2924 % dd if=/root/rpi/rpi_basic_jessie_$(date +%Y%m%d).img of=/dev/mmcblk0 bs=1M
2925 %
2926 &lt;/pre&gt;&lt;/p&gt;
2927
2928 &lt;p&gt;Booting with the resulting SD card on a Raspberry PI with a USB
2929 wifi card inserted should give you a mesh node. At least it does for
2930 me with a the wifi card I am using. The default mesh settings are the
2931 ones used by the Oslo mesh project at Hackeriet, as I mentioned in
2932 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Oslo_community_mesh_network___with_NUUG_and_Hackeriet_at_Hausmania.html&quot;&gt;an
2933 earlier blog post about this mesh testing&lt;/a&gt;.&lt;/p&gt;
2934
2935 &lt;p&gt;The mesh node was not horribly expensive either. I bought
2936 everything over the counter in shops nearby. If I had ordered online
2937 from the lowest bidder, the price should be significantly lower:&lt;/p&gt;
2938
2939 &lt;p&gt;&lt;table&gt;
2940
2941 &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;
2942 &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;
2943 &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;
2944 &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;
2945 &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;
2946 &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;
2947
2948 &lt;/table&gt;&lt;/p&gt;
2949
2950 &lt;p&gt;Now my mesh network at home consist of one laptop in the basement
2951 connected to my production network, one Raspberry Pi node on the 1th
2952 floor that can be seen by my neighbor across the park, and one
2953 play-node I use to develop the image building script. And some times
2954 I hook up my work horse laptop to the mesh to test it. I look forward
2955 to figuring out what kind of latency the batman-adv setup will give,
2956 and how much packet loss we will experience around the park. :)&lt;/p&gt;
2957 </description>
2958 </item>
2959
2960 <item>
2961 <title>Perl library to control the Spykee robot moved to github</title>
2962 <link>http://people.skolelinux.org/pere/blog/Perl_library_to_control_the_Spykee_robot_moved_to_github.html</link>
2963 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Perl_library_to_control_the_Spykee_robot_moved_to_github.html</guid>
2964 <pubDate>Sat, 19 Oct 2013 10:20:00 +0200</pubDate>
2965 <description>&lt;p&gt;Back in 2010, I created a Perl library to talk to
2966 &lt;a href=&quot;http://en.wikipedia.org/wiki/Spykee&quot;&gt;the Spykee robot&lt;/a&gt;
2967 (with two belts, wifi, USB and Linux) and made it available from my
2968 web page. Today I concluded that it should move to a site that is
2969 easier to use to cooperate with others, and moved it to github. If
2970 you got a Spykee robot, you might want to check out
2971 &lt;a href=&quot;https://github.com/petterreinholdtsen/libspykee-perl&quot;&gt;the
2972 libspykee-perl github repository&lt;/a&gt;.&lt;/p&gt;
2973 </description>
2974 </item>
2975
2976 <item>
2977 <title>Good causes: Debian Outreach Program for Women, EFF documenting the spying and Open access in Norway</title>
2978 <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>
2979 <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>
2980 <pubDate>Tue, 15 Oct 2013 21:30:00 +0200</pubDate>
2981 <description>&lt;p&gt;The last few days I came across a few good causes that should get
2982 wider attention. I recommend signing and donating to each one of
2983 these. :)&lt;/p&gt;
2984
2985 &lt;p&gt;Via &lt;a href=&quot;http://www.debian.org/News/weekly/2013/18/&quot;&gt;Debian
2986 Project News for 2013-10-14&lt;/a&gt; I came across the Outreach Program for
2987 Women program which is a Google Summer of Code like initiative to get
2988 more women involved in free software. One debian sponsor has offered
2989 to match &lt;a href=&quot;http://debian.ch/opw2013&quot;&gt;any donation done to Debian
2990 earmarked&lt;/a&gt; for this initiative. I donated a few minutes ago, and
2991 hope you will to. :)&lt;/p&gt;
2992
2993 &lt;p&gt;And the Electronic Frontier Foundation just announced plans to
2994 create &lt;a href=&quot;https://supporters.eff.org/donate/nsa-videos&quot;&gt;video
2995 documentaries about the excessive spying&lt;/a&gt; on every Internet user that
2996 take place these days, and their need to fund the work. I&#39;ve already
2997 donated. Are you next?&lt;/p&gt;
2998
2999 &lt;p&gt;For my Norwegian audience, the organisation Studentenes og
3000 Akademikernes Internasjonale Hjelpefond is collecting signatures for a
3001 statement under the heading
3002 &lt;a href=&quot;http://saih.no/Bloggers_United/&quot;&gt;Bloggers United for Open
3003 Access&lt;/a&gt; for those of us asking for more focus on open access in the
3004 Norwegian government. So far 499 signatures. I hope you will sign it
3005 too.&lt;/p&gt;
3006 </description>
3007 </item>
3008
3009 <item>
3010 <title>Oslo community mesh network - with NUUG and Hackeriet at Hausmania</title>
3011 <link>http://people.skolelinux.org/pere/blog/Oslo_community_mesh_network___with_NUUG_and_Hackeriet_at_Hausmania.html</link>
3012 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Oslo_community_mesh_network___with_NUUG_and_Hackeriet_at_Hausmania.html</guid>
3013 <pubDate>Fri, 11 Oct 2013 14:10:00 +0200</pubDate>
3014 <description>&lt;p&gt;Wireless mesh networks are self organising and self healing
3015 networks that can be used to connect computers across small and large
3016 areas, depending on the radio technology used. Normal wifi equipment
3017 can be used to create home made radio networks, and there are several
3018 successful examples like
3019 &lt;a href=&quot;http://www.freifunk.net/&quot;&gt;Freifunk&lt;/a&gt; and
3020 &lt;a href=&quot;http://www.awmn.net/&quot;&gt;Athens Wireless Metropolitan Network&lt;/a&gt;
3021 (see
3022 &lt;a href=&quot;http://en.wikipedia.org/wiki/List_of_wireless_community_networks_by_region#Greece&quot;&gt;wikipedia
3023 for a large list&lt;/a&gt;) around the globe. To give you an idea how it
3024 work, check out the nice overview of the Kiel Freifunk community which
3025 can be seen from their
3026 &lt;a href=&quot;http://freifunk.in-kiel.de/ffmap/nodes.html&quot;&gt;dynamically
3027 updated node graph and map&lt;/a&gt;, where one can see how the mesh nodes
3028 automatically handle routing and recover from nodes disappearing.
3029 There is also a small community mesh network group in Oslo, Norway,
3030 and that is the main topic of this blog post.&lt;/p&gt;
3031
3032 &lt;p&gt;I&#39;ve wanted to check out mesh networks for a while now, and hoped
3033 to do it as part of my involvement with the &lt;a
3034 href=&quot;http://www.nuug.no/&quot;&gt;NUUG member organisation&lt;/a&gt; community, and
3035 my recent involvement in
3036 &lt;a href=&quot;https://wiki.debian.org/FreedomBox&quot;&gt;the Freedombox project&lt;/a&gt;
3037 finally lead me to give mesh networks some priority, as I suspect a
3038 Freedombox should use mesh networks to connect neighbours and family
3039 when possible, given that most communication between people are
3040 between those nearby (as shown for example by research on Facebook
3041 communication patterns). It also allow people to communicate without
3042 any central hub to tap into for those that want to listen in on the
3043 private communication of citizens, which have become more and more
3044 important over the years.&lt;/p&gt;
3045
3046 &lt;p&gt;So far I have only been able to find one group of people in Oslo
3047 working on community mesh networks, over at the hack space
3048 &lt;a href=&quot;http://hackeriet.no/&quot;&gt;Hackeriet&lt;/a&gt; at Husmania. They seem to
3049 have started with some Freifunk based effort using OLSR, called
3050 &lt;a href=&quot;http://oslo.freifunk.net/index.php?title=Main_Page&quot;&gt;the Oslo
3051 Freifunk project&lt;/a&gt;, but that effort is now dead and the people
3052 behind it have moved on to a batman-adv based system called
3053 &lt;a href=&quot;http://meshfx.org/trac&quot;&gt;meshfx&lt;/a&gt;. Unfortunately the wiki
3054 site for the Oslo Freifunk project is no longer possible to update to
3055 reflect this fact, so the old project page can&#39;t be updated to point to
3056 the new project. A while back, the people at Hackeriet invited people
3057 from the Freifunk community to Oslo to talk about mesh networks. I
3058 came across this video where Hans Jørgen Lysglimt interview the
3059 speakers about this talk (from
3060 &lt;a href=&quot;https://www.youtube.com/watch?v=N2Kd7CLkhSY&quot;&gt;youtube&lt;/a&gt;):&lt;/p&gt;
3061
3062 &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;
3063
3064 &lt;p&gt;I mentioned OLSR and batman-adv, which are mesh routing protocols.
3065 There are heaps of different protocols, and I am still struggling to
3066 figure out which one would be &quot;best&quot; for some definitions of best, but
3067 given that the community mesh group in Oslo is so small, I believe it
3068 is best to hook up with the existing one instead of trying to create a
3069 completely different setup, and thus I have decided to focus on
3070 batman-adv for now. It sure help me to know that the very cool
3071 &lt;a href=&quot;http://www.servalproject.org/&quot;&gt;Serval project in Australia&lt;/a&gt;
3072 is using batman-adv as their meshing technology when it create a self
3073 organizing and self healing telephony system for disaster areas and
3074 less industrialized communities. Check out this cool video presenting
3075 that project (from
3076 &lt;a href=&quot;https://www.youtube.com/watch?v=30qNfzJCQOA&quot;&gt;youtube&lt;/a&gt;):&lt;/p&gt;
3077
3078 &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;
3079
3080 &lt;p&gt;According to the wikipedia page on
3081 &lt;a href=&quot;http://en.wikipedia.org/wiki/Wireless_mesh_network&quot;&gt;Wireless
3082 mesh network&lt;/a&gt; there are around 70 competing schemes for routing
3083 packets across mesh networks, and OLSR, B.A.T.M.A.N. and
3084 B.A.T.M.A.N. advanced are protocols used by several free software
3085 based community mesh networks.&lt;/p&gt;
3086
3087 &lt;p&gt;The batman-adv protocol is a bit special, as it provide layer 2
3088 (as in ethernet ) routing, allowing ipv4 and ipv6 to work on the same
3089 network. One way to think about it is that it provide a mesh based
3090 vlan you can bridge to or handle like any other vlan connected to your
3091 computer. The required drivers are already in the Linux kernel at
3092 least since Debian Wheezy, and it is fairly easy to set up. A
3093 &lt;a href=&quot;http://www.open-mesh.org/projects/batman-adv/wiki/Quick-start-guide&quot;&gt;good
3094 introduction&lt;/a&gt; is available from the Open Mesh project. These are
3095 the key settings needed to join the Oslo meshfx network:&lt;/p&gt;
3096
3097 &lt;p&gt;&lt;table&gt;
3098 &lt;tr&gt;&lt;th&gt;Setting&lt;/th&gt;&lt;th&gt;Value&lt;/th&gt;&lt;/tr&gt;
3099 &lt;tr&gt;&lt;td&gt;Protocol / kernel module&lt;/td&gt;&lt;td&gt;batman-adv&lt;/td&gt;&lt;/tr&gt;
3100 &lt;tr&gt;&lt;td&gt;ESSID&lt;/td&gt;&lt;td&gt;meshfx@hackeriet&lt;/td&gt;&lt;/tr&gt;
3101 &lt;td&gt;Channel / Frequency&lt;/td&gt;&lt;td&gt;11 / 2462&lt;/td&gt;&lt;/tr&gt;
3102 &lt;td&gt;Cell ID&lt;/td&gt;&lt;td&gt;02:BA:00:00:00:01&lt;/td&gt;
3103 &lt;/table&gt;&lt;/p&gt;
3104
3105 &lt;p&gt;The reason for setting ad-hoc wifi Cell ID is to work around bugs
3106 in firmware used in wifi card and wifi drivers. (See a nice post from
3107 VillageTelco about
3108 &quot;&lt;a href=&quot;http://tiebing.blogspot.no/2009/12/ad-hoc-cell-splitting-re-post-original.html&quot;&gt;Information
3109 about cell-id splitting, stuck beacons, and failed IBSS merges!&lt;/a&gt;
3110 for details.) When these settings are activated and you have some
3111 other mesh node nearby, your computer will be connected to the mesh
3112 network and can communicate with any mesh node that is connected to
3113 any of the nodes in your network of nodes. :)&lt;/p&gt;
3114
3115 &lt;p&gt;My initial plan was to reuse my old Linksys WRT54GL as a mesh node,
3116 but that seem to be very hard, as I have not been able to locate a
3117 firmware supporting batman-adv. If anyone know how to use that old
3118 wifi access point with batman-adv these days, please let me know.&lt;/p&gt;
3119
3120 &lt;p&gt;If you find this project interesting and want to join, please join
3121 us on IRC, either channel
3122 &lt;a href=&quot;irc://irc.freenode.net/#oslohackerspace&quot;&gt;#oslohackerspace&lt;/a&gt;
3123 or &lt;a href=&quot;irc://irc.freenode.net/#nuug&quot;&gt;#nuug&lt;/a&gt; on
3124 irc.freenode.net.&lt;/p&gt;
3125
3126 &lt;p&gt;While investigating mesh networks in Oslo, I came across an old
3127 research paper from the university of Stavanger and Telenor Research
3128 and Innovation called
3129 &lt;a href=&quot;http://folk.uio.no/paalee/publications/netrel-egeland-iswcs-2008.pdf&quot;&gt;The
3130 reliability of wireless backhaul mesh networks&lt;/a&gt; and elsewhere
3131 learned that Telenor have been experimenting with mesh networks at
3132 Grünerløkka in Oslo. So mesh networks are also interesting for
3133 commercial companies, even though Telenor discovered that it was hard
3134 to figure out a good business plan for mesh networking and as far as I
3135 know have closed down the experiment. Perhaps Telenor or others would
3136 be interested in a cooperation?&lt;/p&gt;
3137
3138 &lt;p&gt;&lt;strong&gt;Update 2013-10-12&lt;/strong&gt;: I was just
3139 &lt;a href=&quot;http://lists.alioth.debian.org/pipermail/freedombox-discuss/2013-October/005900.html&quot;&gt;told
3140 by the Serval project developers&lt;/a&gt; that they no longer use
3141 batman-adv (but are compatible with it), but their own crypto based
3142 mesh system.&lt;/p&gt;
3143 </description>
3144 </item>
3145
3146 <item>
3147 <title>Skolelinux / Debian Edu 7.1 install and overview video from Marcelo Salvador</title>
3148 <link>http://people.skolelinux.org/pere/blog/Skolelinux___Debian_Edu_7_1_install_and_overview_video_from_Marcelo_Salvador.html</link>
3149 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux___Debian_Edu_7_1_install_and_overview_video_from_Marcelo_Salvador.html</guid>
3150 <pubDate>Tue, 8 Oct 2013 17:10:00 +0200</pubDate>
3151 <description>&lt;p&gt;The other day I was pleased and surprised to discover that Marcelo
3152 Salvador had published a
3153 &lt;a href=&quot;https://www.youtube.com/watch?v=w-GgpdqgLFc&quot;&gt;video on
3154 Youtube&lt;/a&gt; showing how to install the standalone Debian Edu /
3155 Skolelinux profile. This is the profile intended for use at home or
3156 on laptops that should not be integrated into the provided network
3157 services (no central home directory, no Kerberos / LDAP directory etc,
3158 in other word a single user machine). The result is 11 minutes long,
3159 and show some user applications (seem to be rather randomly picked).
3160 Missed a few of my favorites like celestia, planets and chromium
3161 showing the &lt;a href=&quot;http://www.zygotebody.com/&quot;&gt;Zygote Body 3D model
3162 of the human body&lt;/a&gt;, but I guess he did not know about those or find
3163 other programs more interesting. :) And the video do not show the
3164 advantages I believe is one of the most valuable featuers in Debian
3165 Edu, its central school server making it possible to run hundreds of
3166 computers without hard drives by installing one central
3167 &lt;a href=&quot;http://www.ltsp.org/&quot;&gt;LTSP server&lt;/a&gt;.&lt;/p&gt;
3168
3169 &lt;p&gt;Anyway, check out the video, embedded below and linked to above:&lt;/p&gt;
3170
3171 &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;
3172
3173 &lt;p&gt;Are there other nice videos demonstrating Skolelinux? Please let
3174 me know. :)&lt;/p&gt;
3175 </description>
3176 </item>
3177
3178 <item>
3179 <title>Finally, Debian Edu Wheezy is released today!</title>
3180 <link>http://people.skolelinux.org/pere/blog/Finally__Debian_Edu_Wheezy_is_released_today_.html</link>
3181 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Finally__Debian_Edu_Wheezy_is_released_today_.html</guid>
3182 <pubDate>Sun, 29 Sep 2013 10:20:00 +0200</pubDate>
3183 <description>&lt;p&gt;A few hours ago, the announcement for the first stable release of
3184 Debian Edu Wheezy went out from the Debian publicity team. The
3185 complete announcement text can be found at
3186 &lt;a href=&quot;http://www.debian.org/News/2013/20130928&quot;&gt;the Debian News
3187 section&lt;/a&gt;, translated to several languages. Please check it out.&lt;/p&gt;
3188
3189 &lt;p&gt;There is one minor known problem that we will fix very soon. One
3190 can not install a amd64 Thin Client Server using PXE, as the /var/
3191 partition is too small. A workaround is to extend the partition (use
3192 lvresize + resize2fs in tty 2 while installing).&lt;/p&gt;
3193 </description>
3194 </item>
3195
3196 <item>
3197 <title>Videos about the Freedombox project - for inspiration and learning</title>
3198 <link>http://people.skolelinux.org/pere/blog/Videos_about_the_Freedombox_project___for_inspiration_and_learning.html</link>
3199 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Videos_about_the_Freedombox_project___for_inspiration_and_learning.html</guid>
3200 <pubDate>Fri, 27 Sep 2013 14:10:00 +0200</pubDate>
3201 <description>&lt;p&gt;The &lt;a href=&quot;http://www.freedomboxfoundation.org/&quot;&gt;Freedombox
3202 project&lt;/a&gt; have been going on for a while, and have presented the
3203 vision, ideas and solution several places. Here is a little
3204 collection of videos of talks and presentation of the project.&lt;/p&gt;
3205
3206 &lt;ul&gt;
3207
3208 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=ukvUz5taxvA&quot;&gt;FreedomBox -
3209 2,5 minute marketing film&lt;/a&gt; (Youtube)&lt;/li&gt;
3210
3211 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=SzW25QTVWsE&quot;&gt;Eben Moglen
3212 discusses the Freedombox on CBS news 2011&lt;/a&gt; (Youtube)&lt;/li&gt;
3213
3214 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=Ae8SZbxfE0g&quot;&gt;Eben Moglen -
3215 Freedom in the Cloud - Software Freedom, Privacy and and Security for
3216 Web 2.0 and Cloud computing at ISOC-NY Public Meeting 2010&lt;/a&gt;
3217 (Youtube)&lt;/li&gt;
3218
3219 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=vNaIji_3xBE&quot;&gt;Fosdem 2011
3220 Keynote by Eben Moglen presenting the Freedombox&lt;/a&gt; (Youtube)&lt;/li&gt;
3221
3222 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=9bDDUyJSQ9s&quot;&gt;Presentation of
3223 the Freedombox by James Vasile at Elevate in Gratz 2011&lt;/a&gt; (Youtube)&lt;/li&gt;
3224
3225 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=zQTmnk27g9s&quot;&gt; Freedombox -
3226 Discovery, Identity, and Trust by Nick Daly at Freedombox Hackfest New
3227 York City in 2012&lt;/a&gt; (Youtube)&lt;/li&gt;
3228
3229 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=tkbSB4Ba7Ck&quot;&gt;Introduction
3230 to the Freedombox at Freedombox Hackfest New York City in 2012&lt;/a&gt;
3231 (Youtube)&lt;/li&gt;
3232
3233 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=z-P2Jaeg0aQ&quot;&gt;Freedom, Out
3234 of the Box! by Bdale Garbee at linux.conf.au Ballarat, 2012&lt;/a&gt; (Youtube) &lt;/li&gt;
3235
3236 &lt;li&gt;&lt;a href=&quot;https://archive.fosdem.org/2013/schedule/event/freedombox/&quot;&gt;Freedombox
3237 1.0 by Eben Moglen and Bdale Garbee at Fosdem 2013&lt;/a&gt; (FOSDEM) &lt;/li&gt;
3238
3239 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=e1LpYX2zVYg&quot;&gt;What is the
3240 FreedomBox today by Bdale Garbee at Debconf13 in Vaumarcus
3241 2013&lt;/a&gt; (Youtube)&lt;/li&gt;
3242
3243 &lt;/ul&gt;
3244
3245 &lt;p&gt;A larger list is available from
3246 &lt;a href=&quot;https://wiki.debian.org/FreedomBox/TalksAndPresentations&quot;&gt;the
3247 Freedombox Wiki&lt;/a&gt;.&lt;/p&gt;
3248
3249 &lt;p&gt;On other news, I am happy to report that Freedombox based on Debian
3250 Jessie is coming along quite well, and soon both Owncloud and using
3251 Tor should be available for testers of the Freedombox solution. :) In
3252 a few weeks I hope everything needed to test it is included in Debian.
3253 The withsqlite package is already in Debian, and the plinth package is
3254 pending in NEW. The third and vital part of that puzzle is the
3255 metapackage/setup framework, which is still pending an upload. Join
3256 us on &lt;a href=&quot;irc://irc.debian.org:6667/%23freedombox&quot;&gt;IRC
3257 (#freedombox on irc.debian.org)&lt;/a&gt; and
3258 &lt;a href=&quot;http://lists.alioth.debian.org/mailman/listinfo/freedombox-discuss&quot;&gt;the
3259 mailing list&lt;/a&gt; if you want to help make this vision come true.&lt;/p&gt;
3260 </description>
3261 </item>
3262
3263 <item>
3264 <title>Third and probably last beta release of Debian Edu Wheezy</title>
3265 <link>http://people.skolelinux.org/pere/blog/Third_and_probably_last_beta_release_of_Debian_Edu_Wheezy.html</link>
3266 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Third_and_probably_last_beta_release_of_Debian_Edu_Wheezy.html</guid>
3267 <pubDate>Mon, 16 Sep 2013 21:30:00 +0200</pubDate>
3268 <description>&lt;p&gt;The third wheezy based beta release of Debian Edu was wrapped up
3269 today. This is the release announcement from Holger Levsen:&lt;/p&gt;
3270
3271 &lt;blockquote&gt;
3272 &lt;p&gt;Hi,&lt;/p&gt;
3273
3274 &lt;p&gt;it is my pleasure to announce the third beta release (beta 2 for
3275 short) of &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
3276 Skolelinux&lt;/a&gt; based on Debian Wheezy!&lt;/p&gt;
3277
3278 &lt;p&gt;Please test these images extensivly, if no new problems are found
3279 we plan to do this final Debian Edu Wheezy release this coming
3280 weekend. We are not aware of any major problems or blockers in beta2,
3281 if you find something, please notify us immediately!&lt;/p&gt;
3282
3283 &lt;p&gt;(More about the remaining steps for the Edu Wheezy release in
3284 another mail to the edu list tonight or tomorrow...)&lt;/p&gt;
3285
3286 &lt;p&gt;Noteworthy changes and software updates for Debian Edu 7.1+edu0~b2
3287 compared to beta1:&lt;/p&gt;
3288
3289 &lt;ul&gt;
3290
3291 &lt;li&gt;The KDE proxy setup has been adjusted to use the provided wpad.dat. This
3292 also gets Chromium to use this proxy.&lt;/li&gt;
3293 &lt;li&gt;Install kdepim-groupware with KDE desktops to make sure korganizer
3294 understand ical/dav sources.&lt;/li&gt;
3295 &lt;li&gt;Increased default maximum size of /var/spool/squid and /skole/backup on the
3296 main server.&lt;/li&gt;
3297 &lt;li&gt;A source DVD image containing all source packages is now available as well.&lt;/li&gt;
3298 &lt;li&gt;Updates for chromium (29.0.1547.57-1~deb7u1), imagemagick
3299 (6.7.7.10-5+deb7u2), php5 (5.4.4-14+deb7u4), libmodplug
3300 (0.8.8.4-3+deb7u1+git20130828), tiff (4.0.2-6+deb7u2), linux-image
3301 (3.2.0-4-486_3.2.46-1+deb7u1).&lt;/li&gt;
3302
3303 &lt;/ul&gt;
3304
3305 &lt;p&gt;Where to get it:&lt;/p&gt;
3306
3307 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
3308
3309 &lt;ul&gt;
3310 &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;
3311 &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;
3312 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-CD.iso .&lt;/li&gt;
3313 &lt;/ul&gt;
3314
3315 &lt;p&gt;The SHA1SUM of this image is: 3a1c89f4666df80eebcd46c5bf5fedb866f9472f&lt;/p&gt;
3316
3317 &lt;p&gt;To download the multiarch USB stick ISO release you can use
3318 &lt;ul&gt;
3319 &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;
3320 &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;
3321 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-USB.iso .&lt;/li&gt;
3322 &lt;/ul&gt;
3323
3324 &lt;p&gt;The SHA1SUM of this image is: 702d1718548f401c74bfa6df9f032cc3ee16597e&lt;/p&gt;
3325
3326 &lt;p&gt;The Source DVD image has the filename
3327 debian-edu-7.1+edu0~b2-source-DVD.iso and the SHA1SUM
3328 089eed8b3f962db47aae1f6a9685e9bb2fa30ca5 and is available the same way
3329 as the other isos.&lt;/p&gt;
3330
3331 &lt;p&gt;How to report bugs&lt;/p&gt;
3332
3333 &lt;p&gt;For information how to report bugs please see
3334 &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;
3335
3336
3337 &lt;p&gt;About Debian Edu and Skolelinux&lt;/p&gt;
3338
3339 &lt;p&gt;Debian Edu, also known as Skolelinux, is a Linux distribution based
3340 on Debian providing an out-of-the box environment of a completely
3341 configured school network. Immediately after installation a school
3342 server running all services needed for a school network is set up just
3343 waiting for users and machines being added via GOsa², a comfortable
3344 Web-UI. A netbooting environment is prepared using PXE, so after
3345 initial installation of the main server from CD or USB stick all other
3346 machines can be installed via the network. The provided school server
3347 provides LDAP database and Kerberos authentication service,
3348 centralized home directories, DHCP server, web proxy and many other
3349 services. The desktop contains more than 60 educational software
3350 packages and more are available from the Debian archive, and schools
3351 can choose between KDE, Gnome, LXDE and Xfce desktop environment.&lt;/p&gt;
3352
3353 &lt;p&gt;This is the seventh test release based on Debian Wheezy. Basically
3354 this is an updated and slightly improved version compared to the
3355 Squeeze release.&lt;/p&gt;
3356
3357 &lt;p&gt;Notes for upgrades from Alpha Prereleases&lt;/p&gt;
3358
3359 &lt;p&gt;Alpha based installations should reinstall or downgrade the
3360 versions of gosa and libpam-mklocaluser to the ones used in this beta
3361 release. Both alpha and beta0 based installations should reinstall or
3362 deal with gosa.conf manually; there are two options: (1) Keep
3363 gosa.conf and edit this file as outlined on the mailing list. (2)
3364 Accept the new version of gosa.conf and replace both contained admin
3365 password placeholders with the password hashes found in the old one
3366 (backup copy!). In both cases all users need to change their password
3367 to make sure a password is set for CIFS access to their home
3368 directory.&lt;/p&gt;
3369
3370
3371 &lt;p&gt;cheers,
3372 &lt;br&gt; Holger&lt;/p&gt;
3373 &lt;/blockquote&gt;
3374 </description>
3375 </item>
3376
3377 <item>
3378 <title>Recipe to test the Freedombox project on amd64 or Raspberry Pi</title>
3379 <link>http://people.skolelinux.org/pere/blog/Recipe_to_test_the_Freedombox_project_on_amd64_or_Raspberry_Pi.html</link>
3380 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Recipe_to_test_the_Freedombox_project_on_amd64_or_Raspberry_Pi.html</guid>
3381 <pubDate>Tue, 10 Sep 2013 14:20:00 +0200</pubDate>
3382 <description>&lt;p&gt;I was introduced to the
3383 &lt;a href=&quot;http://www.freedomboxfoundation.org/&quot;&gt;Freedombox project&lt;/a&gt;
3384 in 2010, when Eben Moglen presented his vision about serving the need
3385 of non-technical people to keep their personal information private and
3386 within the legal protection of their own homes. The idea is to give
3387 people back the power over their network and machines, and return
3388 Internet back to its intended peer-to-peer architecture. Instead of
3389 depending on a central service, the Freedombox will give everyone
3390 control over their own basic infrastructure.&lt;/p&gt;
3391
3392 &lt;p&gt;I&#39;ve intended to join the effort since then, but other tasks have
3393 taken priority. But this summers nasty news about the misuse of trust
3394 and privilege exercised by the &quot;western&quot; intelligence gathering
3395 communities increased my eagerness to contribute to a point where I
3396 actually started working on the project a while back.&lt;/p&gt;
3397
3398 &lt;p&gt;The &lt;a href=&quot;https://alioth.debian.org/projects/freedombox/&quot;&gt;initial
3399 Debian initiative&lt;/a&gt; based on the vision from Eben Moglen, is to
3400 create a simple and cheap Debian based appliance that anyone can hook
3401 up in their home and get access to secure and private services and
3402 communication. The initial deployment platform have been the
3403 &lt;a href=&quot;http://www.globalscaletechnologies.com/t-dreamplugdetails.aspx&quot;&gt;Dreamplug&lt;/a&gt;,
3404 which is a piece of hardware I do not own. So to be able to test what
3405 the current Freedombox setup look like, I had to come up with a way to install
3406 it on some hardware I do have access to. I have rewritten the
3407 &lt;a href=&quot;https://github.com/NickDaly/freedom-maker&quot;&gt;freedom-maker&lt;/a&gt;
3408 image build framework to use .deb packages instead of only copying
3409 setup into the boot images, and thanks to this rewrite I am able to
3410 set up any machine supported by Debian Wheezy as a Freedombox, using
3411 the previously mentioned deb (and a few support debs for packages
3412 missing in Debian).&lt;/p&gt;
3413
3414 &lt;p&gt;The current Freedombox setup consist of a set of bootstrapping
3415 scripts
3416 (&lt;a href=&quot;https://github.com/petterreinholdtsen/freedombox-setup&quot;&gt;freedombox-setup&lt;/a&gt;),
3417 and a administrative web interface
3418 (&lt;a href=&quot;https://github.com/NickDaly/Plinth&quot;&gt;plinth&lt;/a&gt; + exmachina +
3419 withsqlite), as well as a privacy enhancing proxy based on
3420 &lt;a href=&quot;http://packages.qa.debian.org/privoxy&quot;&gt;privoxy&lt;/a&gt;
3421 (freedombox-privoxy). There is also a web/javascript based XMPP
3422 client (&lt;a href=&quot;http://packages.qa.debian.org/jwchat&quot;&gt;jwchat&lt;/a&gt;)
3423 trying (unsuccessfully so far) to talk to the XMPP server
3424 (&lt;a href=&quot;http://packages.qa.debian.org/ejabberd&quot;&gt;ejabberd&lt;/a&gt;). The
3425 web interface is pluggable, and the goal is to use it to enable OpenID
3426 services, mesh network connectivity, use of TOR, etc, etc. Not much of
3427 this is really working yet, see
3428 &lt;a href=&quot;https://github.com/NickDaly/freedombox-todos/blob/master/TODO&quot;&gt;the
3429 project TODO&lt;/a&gt; for links to GIT repositories. Most of the code is
3430 on github at the moment. The HTTP proxy is operational out of the
3431 box, and the admin web interface can be used to add/remove plinth
3432 users. I&#39;ve not been able to do anything else with it so far, but
3433 know there are several branches spread around github and other places
3434 with lots of half baked features.&lt;/p&gt;
3435
3436 &lt;p&gt;Anyway, if you want to have a look at the current state, the
3437 following recipes should work to give you a test machine to poke
3438 at.&lt;/p&gt;
3439
3440 &lt;p&gt;&lt;strong&gt;Debian Wheezy amd64&lt;/strong&gt;&lt;/p&gt;
3441
3442 &lt;ol&gt;
3443
3444 &lt;li&gt;Fetch normal Debian Wheezy installation ISO.&lt;/li&gt;
3445 &lt;li&gt;Boot from it, either as CD or USB stick.&lt;/li&gt;
3446 &lt;li&gt;&lt;p&gt;Press [tab] on the boot prompt and add this as a boot argument
3447 to the Debian installer:&lt;p&gt;
3448 &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;
3449
3450 &lt;li&gt;Answer the few language/region/password questions and pick disk to
3451 install on.&lt;/li&gt;
3452
3453 &lt;li&gt;When the installation is finished and the machine have rebooted a
3454 few times, your Freedombox is ready for testing.&lt;/li&gt;
3455
3456 &lt;/ol&gt;
3457
3458 &lt;p&gt;&lt;strong&gt;Raspberry Pi Raspbian&lt;/strong&gt;&lt;/p&gt;
3459
3460 &lt;ol&gt;
3461
3462 &lt;li&gt;Fetch a Raspbian SD card image, create SD card.&lt;/li&gt;
3463 &lt;li&gt;Boot from SD card, extend file system to fill the card completely.&lt;/li&gt;
3464 &lt;li&gt;&lt;p&gt;Log in and add this to /etc/sources.list:&lt;/p&gt;
3465 &lt;pre&gt;
3466 deb &lt;a href=&quot;http://www.reinholdtsen.name/freedombox/&quot;&gt;http://www.reinholdtsen.name/freedombox&lt;/a&gt; wheezy main
3467 &lt;/pre&gt;&lt;/li&gt;
3468 &lt;li&gt;&lt;p&gt;Run this as root:&lt;/p&gt;
3469 &lt;pre&gt;
3470 wget -O - http://www.reinholdtsen.name/freedombox/BE1A583D.asc | \
3471 apt-key add -
3472 apt-get update
3473 apt-get install freedombox-setup
3474 /usr/lib/freedombox/setup
3475 &lt;/pre&gt;&lt;/li&gt;
3476 &lt;li&gt;Reboot into your freshly created Freedombox.&lt;/li&gt;
3477
3478 &lt;/ol&gt;
3479
3480 &lt;p&gt;You can test it on other architectures too, but because the
3481 freedombox-privoxy package is binary, it will only work as intended on
3482 the architectures where I have had time to build the binary and put it
3483 in my APT repository. But do not let this stop you. It is only a
3484 short &quot;&lt;tt&gt;apt-get source -b freedombox-privoxy&lt;/tt&gt;&quot; away. :)&lt;/p&gt;
3485
3486 &lt;p&gt;Note that by default Freedombox is a DHCP server on the
3487 192.168.1.0/24 subnet, so if this is your subnet be careful and turn
3488 off the DHCP server by running &quot;&lt;tt&gt;update-rc.d isc-dhcp-server
3489 disable&lt;/tt&gt;&quot; as root.&lt;/p&gt;
3490
3491 &lt;p&gt;Please let me know if this works for you, or if you have any
3492 problems. We gather on the IRC channel
3493 &lt;a href=&quot;irc://irc.debian.org:6667/%23freedombox&quot;&gt;#freedombox&lt;/a&gt; on
3494 irc.debian.org and the
3495 &lt;a href=&quot;http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/freedombox-discuss&quot;&gt;project
3496 mailing list&lt;/a&gt;.&lt;/p&gt;
3497
3498 &lt;p&gt;Once you get your freedombox operational, you can visit
3499 &lt;tt&gt;http://your-host-name:8001/&lt;/tt&gt; to see the state of the plint
3500 welcome screen (dead end - do not be surprised if you are unable to
3501 get past it), and next visit &lt;tt&gt;http://your-host-name:8001/help/&lt;/tt&gt;
3502 to look at the rest of plinth. The default user is &#39;admin&#39; and the
3503 default password is &#39;secret&#39;.&lt;/p&gt;
3504 </description>
3505 </item>
3506
3507 <item>
3508 <title>Second beta release (beta 1) of Debian Edu/Skolelinux based on Debian Wheezy</title>
3509 <link>http://people.skolelinux.org/pere/blog/Second_beta_release__beta_1__of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</link>
3510 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Second_beta_release__beta_1__of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</guid>
3511 <pubDate>Thu, 22 Aug 2013 09:30:00 +0200</pubDate>
3512 <description>&lt;p&gt;The second wheezy based beta release of Debian Edu was wrapped up
3513 today, slightly delayed because of some bugs in the initial Windows
3514 integration fixes . This is the release announcement:&lt;/p&gt;
3515
3516 &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;
3517
3518 &lt;p&gt;These are the release notes for Debian Edu / Skolelinux
3519 7.1+edu0~b1, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
3520
3521 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
3522
3523 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
3524 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
3525 out-of-the box environment of a completely configured school
3526 network. Immediately after installation a school server running all
3527 services needed for a school network is set up just waiting for users
3528 and machines being added via GOsa², a comfortable Web-UI. A netbooting
3529 environment is prepared using PXE, so after initial installation of
3530 the main server from CD or USB stick all other machines can be
3531 installed via the network. The provided school server provides LDAP
3532 database and Kerberos authentication service, centralized home
3533 directories, DHCP server, web proxy and many other services. The
3534 desktop contains
3535 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;more
3536 than 60 educational software packages&lt;/a&gt; and more are available from
3537 the Debian archive, and schools can choose between KDE, Gnome, LXDE
3538 and Xfce desktop environment.&lt;/p&gt;
3539
3540 &lt;p&gt;This is the sixth test release based on Debian Wheezy. Basically this
3541 is an updated and slightly improved version compared to the Squeeze
3542 release.&lt;/p&gt;
3543
3544 &lt;p&gt;ALERT: Alpha based installations should reinstall or downgrade the
3545 versions of gosa and libpam-mklocaluser to the ones used in this beta
3546 release. Both alpha and beta0 based installations should reinstall or
3547 deal with gosa.conf manually; there are two options: (1) Keep
3548 gosa.conf and edit this file as outlined
3549 &lt;a href=&quot;http://lists.debian.org/debian-edu/2013/08/msg00127.html&quot;&gt;on
3550 the mailing list&lt;/a&gt;. (2) Accept the new version of gosa.conf and
3551 replace both contained admin password placeholders with the password
3552 hashes found in the old one (backup copy!). In both cases every user
3553 need to change their their password to make sure a password is set for
3554 CIFS access to their home directory.&lt;/p&gt;
3555
3556 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
3557
3558 &lt;ul&gt;
3559
3560 &lt;li&gt;Added ssh askpass packages to default installation, to ensure ssh
3561 work also without a attached tty.&lt;/li&gt;
3562 &lt;li&gt;Add the command-not-found package to the default installation to
3563 make it easier to figure out where to find missing command line
3564 tools. Please note, that the command &#39;update-command-not-found&#39;
3565 has to be run as root to actually make it useful (internet access
3566 required).&lt;/li&gt;
3567
3568 &lt;/ul&gt;
3569
3570 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
3571
3572 &lt;ul&gt;
3573
3574 &lt;li&gt;Adjusted the USB stick ISO image build to include every tool
3575 needed for desktop=xfce installations.&lt;/li&gt;
3576 &lt;li&gt;Adjust thin-client-server task to work when installing from USB
3577 stick ISO image.&lt;/li&gt;
3578 &lt;li&gt;Made new grub artwork (changed png from indexed to RGB format).&lt;/li&gt;
3579 &lt;li&gt;Minor cleanup in the CUPS setup.&lt;/li&gt;
3580 &lt;li&gt;Make sure that bootstrapping of the Samba domain really happens
3581 during installation of the main server and adjust SID handling to
3582 cope with this.&lt;/li&gt;
3583 &lt;li&gt;Make Samba passwords changeable (again) via GOsa².&lt;/li&gt;
3584 &lt;li&gt;Fix generation of LM and NT password hashes via GOsa² to avoid
3585 empty password hashes.&lt;/li&gt;
3586 &lt;li&gt;Adapted Samba machine domain joining to latest change in the
3587 smbldap-tools Perl package, fixing bugs blocking Windows machines
3588 from joining the Samba domain.&lt;/li&gt;
3589
3590 &lt;/ul&gt;
3591
3592 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
3593
3594 &lt;ul&gt;
3595
3596 &lt;li&gt;KDE fails to understand the wpad.dat file provided, causing it to
3597 not use the http proxy as it should.&lt;/li&gt;
3598 &lt;li&gt;Chromium also fails to use the proxy when using the KDE desktop
3599 (using the KDE configuration).&lt;/li&gt;
3600
3601 &lt;/ul&gt;
3602
3603 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
3604
3605 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
3606
3607 &lt;ul&gt;
3608
3609 &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;
3610
3611 &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;
3612
3613 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-CD.iso .&lt;/li&gt;
3614
3615 &lt;/ul&gt;
3616
3617 &lt;p&gt;The MD5SUM of this image is: 1e357f80b55e703523f2254adde6d78b
3618 &lt;br&gt;The SHA1SUM of this image is: 7157f9be5fd27c7694d713c6ecfed61c3edda3b2&lt;/p&gt;
3619
3620 &lt;p&gt;To download the multiarch USB stick ISO release you can use&lt;/p&gt;
3621
3622 &lt;ul&gt;
3623
3624 &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;
3625 &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;
3626 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-USB.iso .&lt;/li&gt;
3627
3628 &lt;/ul&gt;
3629
3630 &lt;p&gt;The MD5SUM of this image is: 7a8408ead59cf7e3cef25afb6e91590b
3631 &lt;br&gt;The SHA1SUM of this image is: f1817c031f02790d5edb3bfa0dcf8451088ad119&lt;/p&gt;
3632
3633
3634 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
3635
3636 &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;
3637 </description>
3638 </item>
3639
3640 <item>
3641 <title>Intel 180 SSD disk with Lenovo firmware can not use Intel firmware</title>
3642 <link>http://people.skolelinux.org/pere/blog/Intel_180_SSD_disk_with_Lenovo_firmware_can_not_use_Intel_firmware.html</link>
3643 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Intel_180_SSD_disk_with_Lenovo_firmware_can_not_use_Intel_firmware.html</guid>
3644 <pubDate>Sun, 18 Aug 2013 14:00:00 +0200</pubDate>
3645 <description>&lt;p&gt;Earlier, I reported about
3646 &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
3647 problems using an Intel SSD 520 Series 180 GB disk&lt;/a&gt;. Friday I was
3648 told by IBM that the original disk should be thrown away. And as
3649 there no longer was a problem if I bricked the firmware, I decided
3650 today to try to install Intel firmware to replace the Lenovo firmware
3651 currently on the disk.&lt;/p&gt;
3652
3653 &lt;p&gt;I searched the Intel site for firmware, and found
3654 &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;
3655 (aka Intel SATA Solid-State Drive Firmware Update Tool) which
3656 according to the site should contain the latest firmware for SSD
3657 disks. I inserted the broken disk in one of my spare laptops and
3658 booted the ISO from a USB stick. The disk was recognized, but the
3659 program claimed the newest firmware already were installed and refused
3660 to insert any Intel firmware. So no change, and the disk is still
3661 unable to handle write load. :( I guess the only way to get them
3662 working would be if Lenovo releases new firmware. No idea how likely
3663 that is. Anyway, just blogging about this test for completeness. I
3664 got a working Samsung disk, and see no point in spending more time on
3665 the broken disks.&lt;/p&gt;
3666 </description>
3667 </item>
3668
3669 <item>
3670 <title>90 percent done with the Norwegian draft translation of Free Culture</title>
3671 <link>http://people.skolelinux.org/pere/blog/90_percent_done_with_the_Norwegian_draft_translation_of_Free_Culture.html</link>
3672 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/90_percent_done_with_the_Norwegian_draft_translation_of_Free_Culture.html</guid>
3673 <pubDate>Fri, 2 Aug 2013 10:40:00 +0200</pubDate>
3674 <description>&lt;p&gt;It has been a while since my last update. Since last summer, I
3675 have worked on a Norwegian
3676 &lt;a href=&quot;http://www.docbook.org/&quot;&gt;docbook&lt;/a&gt; version of the 2004 book
3677 &lt;a href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; by Lawrence Lessig,
3678 to get a Norwegian text explaining the problems with the copyright
3679 law. Yesterday, I finally broken the 90% mark, when counting the
3680 number of strings to translate. Due to real life constraints, I have
3681 not had time to work on it since March, but when the summer broke out,
3682 I found time to work on it again. Still lots of work left, but the
3683 first draft is nearing completion. I created a graph to show the
3684 progress of the translation:&lt;/p&gt;
3685
3686 &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;
3687
3688 &lt;p&gt;When the first draft is done, the translated text need to be
3689 proof read, and the remaining formatting problems with images and SVG
3690 drawings need to be fixed. There are probably also some index entries
3691 missing that need to be added. This can be done by comparing the
3692 index entries listed in the SiSU version of the book, or comparing the
3693 English docbook version with the paper version. Last, the colophon
3694 page with ISBN numbers etc need to be wrapped up before the release is
3695 done. I should also figure out how to get correct Norwegian sorting
3696 of the index pages. All docbook tools I have tried so far (xmlto,
3697 docbook-xsl, dblatex) get the order of symbols and the special
3698 Norwegian letters ÆØÅ wrong.&lt;/p&gt;
3699
3700 &lt;p&gt;There is still need for translators and people with docbook
3701 knowledge, to be able to get a good looking book (I still struggle
3702 with dblatex, xmlto and docbook-xsl) as well as to do the draft
3703 translation and proof reading. And I would like the figures to be
3704 redrawn as SVGs to make it easy to translate them. Any SVG master
3705 around? There are also some legal terms that are unfamiliar to me.
3706 If you want to help, please get in touch with me, and check out the
3707 project files currently available from
3708 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;.&lt;/p&gt;
3709
3710 &lt;p&gt;If you are curious what the translated book currently look like,
3711 the updated
3712 &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;
3713 and
3714 &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;
3715 are published on github. The HTML version is published as well, but
3716 github hand it out with MIME type text/plain, confusing browsers, so I
3717 saw no point in linking to that version.&lt;/p&gt;
3718 </description>
3719 </item>
3720
3721 <item>
3722 <title>First beta release of Debian Edu/Skolelinux based on Debian Wheezy</title>
3723 <link>http://people.skolelinux.org/pere/blog/First_beta_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</link>
3724 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_beta_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</guid>
3725 <pubDate>Sat, 27 Jul 2013 20:30:00 +0200</pubDate>
3726 <description>&lt;p&gt;The first wheezy based beta release of Debian Edu was wrapped up
3727 today. This is the release announcement:&lt;/p&gt;
3728
3729 &lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.1+edu0~b0 released
3730 2013-07-27&lt;/strong&gt;&lt;/p&gt;
3731
3732 &lt;p&gt;These are the release notes for for Debian Edu / Skolelinux
3733 7.1+edu0~b0, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
3734
3735 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
3736
3737 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
3738 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
3739 out-of-the box environment of a completely configured school
3740 network. Immediately after installation a school server running all
3741 services needed for a school network is set up just waiting for users
3742 and machines being added via GOsa², a comfortable Web-UI. A netbooting
3743 environment is prepared using PXE, so after initial installation of
3744 the main server from CD, DVD or USB stick all other machines can be
3745 installed via the network. The provided school server provides LDAP
3746 database and Kerberos authentication service, centralized home
3747 directories, DHCP server, web proxy and many other services. The
3748 desktop contains
3749 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;more
3750 than 60 educational software packages&lt;/a&gt; and more are available from
3751 the Debian archive, and schools can choose between KDE, Gnome, LXDE
3752 and Xfce desktop environment.&lt;/p&gt;
3753
3754 &lt;p&gt;This is the fifth test release based on Debian Wheezy. Basically
3755 this is an updated and slightly improved version compared to the
3756 Squeeze release.&lt;/p&gt;
3757
3758 &lt;p&gt;ALERT: Alpha based installations should reinstall or downgrade the
3759 versions of gosa and libpam-mklocaluser to the ones used in this beta
3760 release.&lt;/p&gt;
3761
3762 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
3763
3764 &lt;ul&gt;
3765
3766 &lt;li&gt;Switched roaming workstation profiles from wicd to network-manager
3767 for network configuration, as wicd didn&#39;t work any more.&lt;/li&gt;
3768 &lt;li&gt;Changed version numbers of patched gosa and libpam-mklocaluser
3769 packages to make sure our locally patched versions will be replaced
3770 by the official packages when they are released from Debian. Those
3771 installing alpha version need to reinstall or manually downgrade gosa
3772 and libpam-mklocaluser.&lt;/li&gt;
3773 &lt;li&gt;Added bluetooth tools to the default desktop (bluedevil, blueman).&lt;/li&gt;
3774 &lt;li&gt;Added tools for sharing the desktop on KDE (krdc, krfb).&lt;/li&gt;
3775 &lt;li&gt;Added valgrind to the default installation for easier debugging of
3776 crash bugs.&lt;/li&gt;
3777
3778 &lt;/ul&gt;
3779
3780 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
3781
3782 &lt;ul&gt;
3783
3784 &lt;li&gt;Fixed artwork package to work with gnome, no longer break
3785 desktop=gnome installations.&lt;/li&gt;
3786 &lt;li&gt;Adjusted installer to now work when forced to use a proxy with the
3787 netinst CD.&lt;/li&gt;
3788 &lt;li&gt;Fixed code detecting and setting/loading hardware specific
3789 setup/firmware to work more robust out of the box.&lt;/li&gt;
3790 &lt;li&gt;Adjusted Kerberos setup to detect realm and server settings at
3791 install time instead of dynamically at run time. This avoid a crash
3792 with krb5-auth-dialog on diskless workstations without a DNS name.&lt;/li&gt;
3793 &lt;li&gt;Worked around misfeature in network-manager not calling the dhclient
3794 exit hooks, causing automatic proxy configuration and automatic host
3795 name setting at run time to work again.&lt;/li&gt;
3796 &lt;li&gt;Fixed feature setting the default Iceweasel start page from URL
3797 fetched from LDAP, to allow schools to set the global default by
3798 updating the dc=skole,dc=skolelinux,dc=no LDAP object.&lt;/li&gt;
3799 &lt;li&gt;Changed default host name on all networked machines to be unique
3800 (generated from MAC or reverse DNS) after boot.&lt;/li&gt;
3801 &lt;li&gt;Adjusted partition sizes to make sure they are big enough.&lt;/li&gt;
3802
3803 &lt;/ul&gt;
3804
3805 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
3806
3807 &lt;ul&gt;
3808
3809 &lt;li&gt;Grub is missing the new artwork.&lt;/li&gt;
3810 &lt;li&gt;KDE fail to understand the wpad.dat file provided, causing it to
3811 not use the http proxy as it should.&lt;/li&gt;
3812 &lt;li&gt;Chromium also fail to use the proxy.&lt;/li&gt;
3813
3814 &lt;/ul&gt;
3815
3816 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
3817
3818 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
3819
3820 &lt;ul&gt;
3821
3822 &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;
3823
3824 &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;
3825
3826 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-CD.iso .&lt;/li&gt;
3827
3828 &lt;/ul&gt;
3829
3830 &lt;p&gt;The MD5SUM of this image is: 55d5de9765b6dccd5d9ec33cf1a07109
3831 &lt;br&gt;The SHA1SUM of this image is: 996a1d9517740e4d627d100de2d12b23dd545a3f&lt;/p&gt;
3832
3833 &lt;p&gt;To download the multiarch USB stick ISO release you can use&lt;/p&gt;
3834
3835 &lt;ul&gt;
3836
3837 &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;
3838 &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;
3839 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-USB.iso .&lt;/li&gt;
3840
3841 &lt;/ul&gt;
3842
3843 &lt;p&gt;The MD5SUM of this image is: d8f0818c51a78d357de794066f289f69
3844 &lt;br&gt;The SHA1SUM of this image is: 49185ca354e8d0543240423746924f76a6cee733&lt;/p&gt;
3845
3846
3847 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
3848
3849 &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;
3850 </description>
3851 </item>
3852
3853 <item>
3854 <title>How to fix a Thinkpad X230 with a broken 180 GB SSD disk</title>
3855 <link>http://people.skolelinux.org/pere/blog/How_to_fix_a_Thinkpad_X230_with_a_broken_180_GB_SSD_disk.html</link>
3856 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_fix_a_Thinkpad_X230_with_a_broken_180_GB_SSD_disk.html</guid>
3857 <pubDate>Wed, 17 Jul 2013 23:50:00 +0200</pubDate>
3858 <description>&lt;p&gt;Today I switched to
3859 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html&quot;&gt;my
3860 new laptop&lt;/a&gt;. I&#39;ve previously written about the problems I had with
3861 my new Thinkpad X230, which was delivered with an
3862 &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
3863 GB Intel SSD disk with Lenovo firmware&lt;/a&gt; that did not handle
3864 sustained writes. My hardware supplier have been very forthcoming in
3865 trying to find a solution, and after first trying with another
3866 identical 180 GB disks they decided to send me a 256 GB Samsung SSD
3867 disk instead to fix it once and for all. The Samsung disk survived
3868 the installation of Debian with encrypted disks (filling the disk with
3869 random data during installation killed the first two), and I thus
3870 decided to trust it with my data. I have installed it as a Debian Edu
3871 Wheezy roaming workstation hooked up with my Debian Edu Squeeze main
3872 server at home using Kerberos and LDAP, and will use it as my work
3873 station from now on.&lt;/p&gt;
3874
3875 &lt;p&gt;As this is a solid state disk with no moving parts, I believe the
3876 Debian Wheezy default installation need to be tuned a bit to increase
3877 performance and increase life time of the disk. The Linux kernel and
3878 user space applications do not yet adjust automatically to such
3879 environment. To make it easier for my self, I created a draft Debian
3880 package &lt;tt&gt;ssd-setup&lt;/tt&gt; to handle this tuning. The
3881 &lt;a href=&quot;http://anonscm.debian.org/gitweb/?p=collab-maint/ssd-setup.git&quot;&gt;source
3882 for the ssd-setup package&lt;/a&gt; is available from collab-maint, and it
3883 is set up to adjust the setup of the machine by just installing the
3884 package. If there is any non-SSD disk in the machine, the package
3885 will refuse to install, as I did not try to write any logic to sort
3886 file systems in SSD and non-SSD file systems.&lt;/p&gt;
3887
3888 &lt;p&gt;I consider the package a draft, as I am a bit unsure how to best
3889 set up Debian Wheezy with an SSD. It is adjusted to my use case,
3890 where I set up the machine with one large encrypted partition (in
3891 addition to /boot), put LVM on top of this and set up partitions on
3892 top of this again. See the README file in the package source for the
3893 references I used to pick the settings. At the moment these
3894 parameters are tuned:&lt;/p&gt;
3895
3896 &lt;ul&gt;
3897
3898 &lt;li&gt;Set up cryptsetup to pass TRIM commands to the physical disk
3899 (adding discard to /etc/crypttab)&lt;/li&gt;
3900
3901 &lt;li&gt;Set up LVM to pass on TRIM commands to the underlying device (in
3902 this case a cryptsetup partition) by changing issue_discards from
3903 0 to 1 in /etc/lvm/lvm.conf.&lt;/li&gt;
3904
3905 &lt;li&gt;Set relatime as a file system option for ext3 and ext4 file
3906 systems.&lt;/li&gt;
3907
3908 &lt;li&gt;Tell swap to use TRIM commands by adding &#39;discard&#39; to
3909 /etc/fstab.&lt;/li&gt;
3910
3911 &lt;li&gt;Change I/O scheduler from cfq to deadline using a udev rule.&lt;/li&gt;
3912
3913 &lt;li&gt;Run fstrim on every ext3 and ext4 file system every night (from
3914 cron.daily).&lt;/li&gt;
3915
3916 &lt;li&gt;Adjust sysctl values vm.swappiness to 1 and vm.vfs_cache_pressure
3917 to 50 to reduce the kernel eagerness to swap out processes.&lt;/li&gt;
3918
3919 &lt;/ul&gt;
3920
3921 &lt;p&gt;During installation, I cancelled the part where the installer fill
3922 the disk with random data, as this would kill the SSD performance for
3923 little gain. My goal with the encrypted file system is to ensure
3924 those stealing my laptop end up with a brick and not a working
3925 computer. I have no hope in keeping the really resourceful people
3926 from getting the data on the disk (see
3927 &lt;a href=&quot;http://xkcd.com/538/&quot;&gt;XKCD #538&lt;/a&gt; for an explanation why).
3928 Thus I concluded that adding the discard option to crypttab is the
3929 right thing to do.&lt;/p&gt;
3930
3931 &lt;p&gt;I considered using the noop I/O scheduler, as several recommended
3932 it for SSD, but others recommended deadline and a benchmark I found
3933 indicated that deadline might be better for interactive use.&lt;/p&gt;
3934
3935 &lt;p&gt;I also considered using the &#39;discard&#39; file system option for ext3
3936 and ext4, but read that it would give a performance hit ever time a
3937 file is removed, and thought it best to that that slowdown once a day
3938 instead of during my work.&lt;/p&gt;
3939
3940 &lt;p&gt;My package do not set up tmpfs on /var/run, /var/lock and /tmp, as
3941 this is already done by Debian Edu.&lt;/p&gt;
3942
3943 &lt;p&gt;I have not yet started on the user space tuning. I expect
3944 iceweasel need some tuning, and perhaps other applications too, but
3945 have not yet had time to investigate those parts.&lt;/p&gt;
3946
3947 &lt;p&gt;The package should work on Ubuntu too, but I have not yet tested it
3948 there.&lt;/p&gt;
3949
3950 &lt;p&gt;As for the answer to the question in the title of this blog post,
3951 as far as I know, the only solution I know about is to replace the
3952 disk. It might be possible to flash it with Intel firmware instead of
3953 the Lenovo firmware. But I have not tried and did not want to do so
3954 without approval from Lenovo as I wanted to keep the warranty on the
3955 disk until a solution was found and they wanted the broken disks
3956 back.&lt;/p&gt;
3957 </description>
3958 </item>
3959
3960 <item>
3961 <title>Intel SSD 520 Series 180 GB with Lenovo firmware still lock up from sustained writes</title>
3962 <link>http://people.skolelinux.org/pere/blog/Intel_SSD_520_Series_180_GB_with_Lenovo_firmware_still_lock_up_from_sustained_writes.html</link>
3963 <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>
3964 <pubDate>Wed, 10 Jul 2013 13:30:00 +0200</pubDate>
3965 <description>&lt;p&gt;A few days ago, I wrote about
3966 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html&quot;&gt;the
3967 problems I experienced with my new X230 and its SSD disk&lt;/a&gt;, which
3968 was dying during installation because it is unable to cope with
3969 sustained write. My supplier is in contact with
3970 &lt;a href=&quot;http://www.lenovo.com/&quot;&gt;Lenovo&lt;/a&gt;, and they wanted to send a
3971 replacement disk to try to fix the problem. They decided to send an
3972 identical model, so my hopes for a permanent fix was slim.&lt;/p&gt;
3973
3974 &lt;p&gt;Anyway, today I got the replacement disk and tried to install
3975 Debian Edu Wheezy with encrypted disk on it. The new disk have the
3976 same firmware version as the original. This time my hope raised
3977 slightly as the installation progressed, as the original disk used to
3978 die after 4-7% of the disk was written to, while this time it kept
3979 going past 10%, 20%, 40% and even past 50%. But around 60%, the disk
3980 died again and I was back on square one. I still do not have a new
3981 laptop with a disk I can trust. I can not live with a disk that might
3982 lock up when I download a new
3983 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; ISO or
3984 other large files. I look forward to hearing from my supplier with
3985 the next proposal from Lenovo.&lt;/p&gt;
3986
3987 &lt;p&gt;The original disk is marked Intel SSD 520 Series 180 GB,
3988 11S0C38722Z1ZNME35X1TR, ISN: CVCV321407HB180EGN, SA: G57560302, FW:
3989 LF1i, 29MAY2013, PBA: G39779-300, LBA 351,651,888, LI P/N: 0C38722,
3990 Pb-free 2LI, LC P/N: 16-200366, WWN: 55CD2E40002756C4, Model:
3991 SSDSC2BW180A3L 2.5&quot; 6Gb/s SATA SSD 180G 5V 1A, ASM P/N 0C38732, FRU
3992 P/N 45N8295, P0C38732.&lt;/p&gt;
3993
3994 &lt;p&gt;The replacement disk is marked Intel SSD 520 Series 180 GB,
3995 11S0C38722Z1ZNDE34N0L0, ISN: CVCV315306RK180EGN, SA: G57560-302, FW:
3996 LF1i, 22APR2013, PBA: G39779-300, LBA 351,651,888, LI P/N: 0C38722,
3997 Pb-free 2LI, LC P/N: 16-200366, WWN: 55CD2E40000AB69E, Model:
3998 SSDSC2BW180A3L 2.5&quot; 6Gb/s SATA SSD 180G 5V 1A, ASM P/N 0C38732, FRU
3999 P/N 45N8295, P0C38732.&lt;/p&gt;
4000
4001 &lt;p&gt;The only difference is in the first number (serial number?), ISN,
4002 SA, date and WNPP values. Mentioning all the details here in case
4003 someone is able to use the information to find a way to identify the
4004 failing disk among working ones (if any such working disk actually
4005 exist).&lt;/p&gt;
4006 </description>
4007 </item>
4008
4009 <item>
4010 <title>July 13th: Debian/Ubuntu BSP and Skolelinux/Debian Edu developer gathering in Oslo</title>
4011 <link>http://people.skolelinux.org/pere/blog/July_13th__Debian_Ubuntu_BSP_and_Skolelinux_Debian_Edu_developer_gathering_in_Oslo.html</link>
4012 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/July_13th__Debian_Ubuntu_BSP_and_Skolelinux_Debian_Edu_developer_gathering_in_Oslo.html</guid>
4013 <pubDate>Tue, 9 Jul 2013 10:40:00 +0200</pubDate>
4014 <description>&lt;p&gt;The upcoming Saturday, 2013-07-13, we are organising a combined
4015 Debian Edu developer gathering and Debian and Ubuntu bug squashing
4016 party in Oslo. It is organised by &lt;a href=&quot;http://www.nuug.no/&quot;&gt;the
4017 member assosiation NUUG&lt;/a&gt; and
4018 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;the Debian Edu / Skolelinux
4019 project&lt;/a&gt; together with &lt;a href=&quot;http://bitraf.no/&quot;&gt;the hack space
4020 Bitraf&lt;/a&gt;.&lt;/p&gt;
4021
4022 &lt;p&gt;It starts 10:00 and continue until late evening. Everyone is
4023 welcome, and there is no fee to participate. There is on the other
4024 hand limited space, and only room for 30 people. Please put your name
4025 on &lt;a href=&quot;http://wiki.debian.org/BSP/2013/07/13/no/Oslo&quot;&gt;the event
4026 wiki page&lt;/a&gt; if you plan to join us.&lt;/p&gt;
4027 </description>
4028 </item>
4029
4030 <item>
4031 <title>The Thinkpad is dead, long live the Thinkpad X230?</title>
4032 <link>http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html</link>
4033 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html</guid>
4034 <pubDate>Fri, 5 Jul 2013 08:30:00 +0200</pubDate>
4035 <description>&lt;p&gt;Half a year ago, I reported that I had to find a
4036 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Thank_you_Thinkpad_X41__for_your_long_and_trustworthy_service.html&quot;&gt;replacement
4037 for my trusty old Thinkpad X41&lt;/a&gt;. Unfortunately I did not have much
4038 time to spend on it, and it took a while to find a model I believe
4039 will do the job, but two days ago the replacement finally arrived. I
4040 ended up picking a
4041 &lt;a href=&quot;http://www.linlap.com/lenovo_thinkpad_x230&quot;&gt;Thinkpad X230&lt;/a&gt;
4042 with SSD disk (NZDAJMN). I first test installed Debian Edu Wheezy as
4043 a roaming workstation, and it seemed to work flawlessly. But my
4044 second installation with encrypted disk was not as successful. More
4045 on that below.&lt;/p&gt;
4046
4047 &lt;p&gt;I had a hard time trying to track down a good laptop, as my most
4048 important requirements (robust and with a good keyboard) are never
4049 listed in the feature list. But I did get good help from the search
4050 feature at &lt;a href=&quot;http://www.prisjakt.no/&quot;&gt;Prisjakt&lt;/a&gt;, which
4051 allowed me to limit the list of interesting laptops based on my other
4052 requirements. A bit surprising that SSD disk are not disks according
4053 to that search interface, so I had to drop specifying the number of
4054 disks from my search parameters. I also asked around among friends to
4055 get their impression on keyboards and robustness.&lt;/p&gt;
4056
4057 &lt;p&gt;So the new laptop arrived, and it is quite a lot wider than the
4058 X41. I am not quite convinced about the keyboard, as it is
4059 significantly wider than my old keyboard, and I have to stretch my
4060 hand a lot more to reach the edges. But the key response is fairly
4061 good and the individual key shape is fairly easy to handle, so I hope
4062 I will get used to it. My old X40 was starting to fail, and I really
4063 needed a new laptop now. :)&lt;/p&gt;
4064
4065 &lt;p&gt;Turning off the touch pad was simple. All it took was a quick
4066 visit to the BIOS during boot it disable it.&lt;/p&gt;
4067
4068 &lt;p&gt;But there is a fatal problem with the laptop. The 180 GB SSD disk
4069 lock up during load. And this happen when installing Debian Wheezy
4070 with encrypted disk, while the disk is being filled with random data.
4071 I also tested to install Ubuntu Raring, and it happen there too if I
4072 reenable the code to fill the disk with random data (it is disabled by
4073 default in Ubuntu). And the bug with is already known. It was
4074 reported to Debian as &lt;a href=&quot;http://bugs.debian.org/691427&quot;&gt;BTS
4075 report #691427 2012-10-25&lt;/a&gt; (journal commit I/O error on brand-new
4076 Thinkpad T430s ext4 on lvm on SSD). It is also reported to the Linux
4077 kernel developers as
4078 &lt;a href=&quot;https://bugzilla.kernel.org/show_bug.cgi?id=51861&quot;&gt;Kernel bugzilla
4079 report #51861 2012-12-20&lt;/a&gt; (Intel SSD 520 stops working under load
4080 (SSDSC2BW180A3L in Lenovo ThinkPad T430s)). It is also reported on the
4081 Lenovo forums, both for
4082 &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
4083 2012-11-10&lt;/a&gt; and for
4084 &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
4085 03-20-2013&lt;/a&gt;. The problem do not only affect installation. The
4086 reports state that the disk lock up during use if many writes are done
4087 on the disk, so it is much no use to work around the installation
4088 problem and end up with a computer that can lock up at any moment.
4089 There is even a
4090 &lt;a href=&quot;https://git.efficios.com/?p=test-ssd.git&quot;&gt;small C program
4091 available&lt;/a&gt; that will lock up the hard drive after running a few
4092 minutes by writing to a file.&lt;/p&gt;
4093
4094 &lt;p&gt;I&#39;ve contacted my supplier and asked how to handle this, and after
4095 contacting PCHELP Norway (request 01D1FDP) which handle support
4096 requests for Lenovo, his first suggestion was to upgrade the disk
4097 firmware. Unfortunately there is no newer firmware available from
4098 Lenovo, as my disk already have the most recent one (version LF1i). I
4099 hope to hear more from him today and hope the problem can be
4100 fixed. :)&lt;/p&gt;
4101 </description>
4102 </item>
4103
4104 <item>
4105 <title>The Thinkpad is dead, long live the Thinkpad X230</title>
4106 <link>http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230.html</link>
4107 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230.html</guid>
4108 <pubDate>Thu, 4 Jul 2013 09:20:00 +0200</pubDate>
4109 <description>&lt;p&gt;Half a year ago, I reported that I had to find a replacement for my
4110 trusty old Thinkpad X41. Unfortunately I did not have much time to
4111 spend on it, but today the replacement finally arrived. I ended up
4112 picking a &lt;a href=&quot;http://www.linlap.com/lenovo_thinkpad_x230&quot;&gt;Thinkpad
4113 X230&lt;/a&gt; with SSD disk (NZDAJMN). I first test installed Debian Edu
4114 Wheezy as a roaming workstation, and it worked flawlessly. As I write
4115 this, it is installing what I hope will be a more final installation,
4116 with a encrypted hard drive to ensure any dope head stealing it end up
4117 with an expencive door stop.&lt;/p&gt;
4118
4119 &lt;p&gt;I had a hard time trying to track down a good laptop, as my most
4120 important requirements (robust and with a good keyboard) are never
4121 listed in the feature list. But I did get good help from the search
4122 feature at &lt;ahref=&quot;http://www.prisjakt.no/&quot;&gt;Prisjakt&lt;/a&gt;, which
4123 allowed me to limit the list of interesting laptops based on my other
4124 requirements. A bit surprising that SSD disk are not disks, so I had
4125 to drop number of disks from my search parameters.&lt;/p&gt;
4126
4127 &lt;p&gt;I am not quite convinced about the keyboard, as it is significantly
4128 wider than my old keyboard, and I have to stretch my hand a lot more
4129 to reach the edges. But the key response is fairly good and the
4130 individual key shape is fairly easy to handle, so I hope I will get
4131 used to it. My old X40 was starting to fail, and I really needed a
4132 new laptop now. :)&lt;/p&gt;
4133
4134 &lt;p&gt;I look forward to figuring out how to turn off the touch pad.&lt;/p&gt;
4135 </description>
4136 </item>
4137
4138 <item>
4139 <title>Fourth alpha release of Debian Edu/Skolelinux based on Debian Wheezy</title>
4140 <link>http://people.skolelinux.org/pere/blog/Fourth_alpha_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</link>
4141 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Fourth_alpha_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</guid>
4142 <pubDate>Wed, 3 Jul 2013 14:00:00 +0200</pubDate>
4143 <description>&lt;p&gt;The fourth wheezy based alpha release of Debian Edu was wrapped up
4144 today. This is the release announcement:&lt;/p&gt;
4145
4146 &lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.1+edu0~alpha3 released
4147 2013-07-03&lt;/strong&gt;&lt;/p&gt;
4148
4149 &lt;p&gt;These are the release notes for for Debian Edu / Skolelinux
4150 7.1+edu0~alpha3, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
4151
4152 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
4153
4154 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
4155 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
4156 out-of-the box environment of a completely configured school
4157 network. Immediately after installation a school server running all
4158 services needed for a school network is set up just waiting for users
4159 and machines being added via GOsa², a comfortable Web-UI. A netbooting
4160 environment is prepared using PXE, so after initial installation of
4161 the main server from CD, DVD or USB stick all other machines can be
4162 installed via the network. The provided school server provides LDAP
4163 database and Kerberos authentication service, centralized home
4164 directories, DHCP server, web proxy and many other services. The
4165 desktop contains
4166 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;more
4167 than 60 educational software packages&lt;/a&gt; and more are available from
4168 the Debian archive, and schools can choose between KDE, Gnome, LXDE
4169 and Xfce desktop environment.&lt;/p&gt;
4170
4171 &lt;p&gt;This is the fourth test release based on Debian Wheezy. Basically
4172 this is an updated and slightly improved version compared to the
4173 Squeeze release.&lt;/p&gt;
4174
4175 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
4176 &lt;ul&gt;
4177 &lt;li&gt;Dropped ispell dictionaries from our default installation.&lt;/li&gt;
4178 &lt;li&gt;Dropped menu-xdg from the KDE desktop option, to drop the Debian
4179 submenu. It was not included with Gnome, LXDE or Xfce, so this
4180 brings KDE in line with the others.&lt;/li&gt;
4181 &lt;li&gt;Dropped xdrawchem, xjig and xsok from our default installation as
4182 they don&#39;t have a desktop menu entry and thus won&#39;t show up in the
4183 menu now that menu-xdg was removed.&lt;/li&gt;
4184 &lt;li&gt;Removed the killer system to kill left behind processes on
4185 multi-user machines, as it was no longer able to understand when a
4186 X display was in use and killed the processes of the active users
4187 too.&lt;/li&gt;
4188 &lt;li&gt;Dropped the golearn (from goplay) package as the debtags in wheezy
4189 are too few to make the package useful.&lt;/li&gt;
4190 &lt;/ul&gt;
4191 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
4192 &lt;ul&gt;
4193 &lt;li&gt;Updated artwork matching http://wiki.debian.org/DebianArt/Themes/Joy
4194 &lt;li&gt;Multi-arch i386/amd64 USB stick ISO available.&lt;/li&gt;
4195 &lt;li&gt;Got rid of ispell/wordlist related debconf questions that showed
4196 up for some language options.&lt;/li&gt;
4197 &lt;li&gt;Switched to using http.debian.net as APT source by default.&lt;/li&gt;
4198 &lt;li&gt;Fixed proxy configuration on Main Server installations.&lt;/li&gt;
4199 &lt;li&gt;Changed LTSP setup to ask dpkg to use force-unsafe-io the same way
4200 d-i is doing it.&lt;/li&gt;
4201 &lt;li&gt;Made sure root and user passwords were not left behind in the
4202 debconf database after installation on Main Server installations.&lt;/li&gt;
4203 &lt;li&gt;Made Roaming Workstation dynamic setup more robust and added draft
4204 script setup-ad-client to hook a Roaming Workstation up to a
4205 Active Directory server instead of a Debian Edu Main Server.&lt;/li&gt;
4206 &lt;li&gt;Update system to install needed firmware packages during
4207 installation, to work properly in Wheezy.&lt;/li&gt;
4208 &lt;li&gt;Update system to handle hardware quirks (debian-edu-hwsetup).&lt;/li&gt;
4209 &lt;li&gt;Corrected PXE installation setup to properly pass selected desktop
4210 and keymap settings to PXE installation clients.&lt;/li&gt;
4211 &lt;li&gt;LTSP diskless workstations use sshfs by default, allowing them to
4212 work without adding them to DNS and NIS netgroups for NFS access.&lt;/li&gt;
4213 &lt;/ul&gt;
4214 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
4215 &lt;ul&gt;
4216 &lt;li&gt;No mass import of user account data in GOsa (ldif or csv)
4217 available yet (698840).&lt;/li&gt;
4218 &lt;li&gt;Artwork not enabled for all desktops.&lt;/li&gt;
4219 &lt;/ul&gt;
4220 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
4221
4222 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
4223 &lt;ul&gt;
4224 &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;
4225 &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;
4226 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso .&lt;/li&gt;
4227 &lt;/ul&gt;
4228
4229 &lt;p&gt;The MD5SUM of this image is: 2b161a99d2a848c376d8d04e3854e30c
4230 &lt;br&gt;The SHA1SUM of this image is: 498922e9c508c0a7ee9dbe1dfe5bf830d779c3c8&lt;/p&gt;
4231
4232 &lt;p&gt;To download the multiarch USB stick ISO release you can use&lt;/p&gt;
4233 &lt;ul&gt;
4234 &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;
4235 &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;
4236 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso .&lt;/li&gt;
4237 &lt;/ul&gt;
4238
4239 &lt;p&gt;The MD5SUM of this image is: 25e808e403a4c15dbef1d13c37d572ac
4240 &lt;br&gt;The SHA1SUM of this image is: 15ecfc93eb6b4f453b7eb0bc04b6a279262d9721&lt;/p&gt;
4241
4242 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
4243
4244 &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;
4245 </description>
4246 </item>
4247
4248 <item>
4249 <title>Automatically locate and install required firmware packages on Debian (Isenkram 0.4)</title>
4250 <link>http://people.skolelinux.org/pere/blog/Automatically_locate_and_install_required_firmware_packages_on_Debian__Isenkram_0_4_.html</link>
4251 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatically_locate_and_install_required_firmware_packages_on_Debian__Isenkram_0_4_.html</guid>
4252 <pubDate>Tue, 25 Jun 2013 11:50:00 +0200</pubDate>
4253 <description>&lt;p&gt;It annoys me when the computer fail to do automatically what it is
4254 perfectly capable of, and I have to do it manually to get things
4255 working. One such task is to find out what firmware packages are
4256 needed to get the hardware on my computer working. Most often this
4257 affect the wifi card, but some times it even affect the RAID
4258 controller or the ethernet card. Today I pushed version 0.4 of the
4259 &lt;a href=&quot;http://packages.qa.debian.org/isenkram&quot;&gt;Isenkram package&lt;/a&gt;
4260 including a new script isenkram-autoinstall-firmware handling the
4261 process of asking all the loaded kernel modules what firmware files
4262 they want, find debian packages providing these files and install the
4263 debian packages. Here is a test run on my laptop:&lt;/p&gt;
4264
4265 &lt;p&gt;&lt;pre&gt;
4266 # isenkram-autoinstall-firmware
4267 info: kernel drivers requested extra firmware: ipw2200-bss.fw ipw2200-ibss.fw ipw2200-sniffer.fw
4268 info: fetching http://http.debian.net/debian/dists/squeeze/Contents-i386.gz
4269 info: locating packages with the requested firmware files
4270 info: Updating APT sources after adding non-free APT source
4271 info: trying to install firmware-ipw2x00
4272 firmware-ipw2x00
4273 firmware-ipw2x00
4274 Preconfiguring packages ...
4275 Selecting previously deselected package firmware-ipw2x00.
4276 (Reading database ... 259727 files and directories currently installed.)
4277 Unpacking firmware-ipw2x00 (from .../firmware-ipw2x00_0.28+squeeze1_all.deb) ...
4278 Setting up firmware-ipw2x00 (0.28+squeeze1) ...
4279 #
4280 &lt;/pre&gt;&lt;/p&gt;
4281
4282 &lt;p&gt;When all the requested firmware is present, a simple message is
4283 printed instead:&lt;/p&gt;
4284
4285 &lt;p&gt;&lt;pre&gt;
4286 # isenkram-autoinstall-firmware
4287 info: did not find any firmware files requested by loaded kernel modules. exiting
4288 #
4289 &lt;/pre&gt;&lt;/p&gt;
4290
4291 &lt;p&gt;It could use some polish, but it is already working well and saving
4292 me some time when setting up new machines. :)&lt;/p&gt;
4293
4294 &lt;p&gt;So, how does it work? It look at the set of currently loaded
4295 kernel modules, and look up each one of them using modinfo, to find
4296 the firmware files listed in the module meta-information. Next, it
4297 download the Contents file from a nearby APT mirror, and search for
4298 the firmware files in this file to locate the package with the
4299 requested firmware file. If the package is in the non-free section, a
4300 non-free APT source is added and the package is installed using
4301 &lt;tt&gt;apt-get install&lt;/tt&gt;. The end result is a slightly better working
4302 machine.&lt;/p&gt;
4303
4304 &lt;p&gt;I hope someone find time to implement a more polished version of
4305 this script as part of the hw-detect debian-installer module, to
4306 finally fix &lt;a href=&quot;http://bugs.debian.org/655507&quot;&gt;BTS report
4307 #655507&lt;/a&gt;. There really is no need to insert USB sticks with
4308 firmware during a PXE install when the packages already are available
4309 from the nearby Debian mirror.&lt;/p&gt;
4310 </description>
4311 </item>
4312
4313 <item>
4314 <title>The value of a good distro wide test suite...</title>
4315 <link>http://people.skolelinux.org/pere/blog/The_value_of_a_good_distro_wide_test_suite___.html</link>
4316 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_value_of_a_good_distro_wide_test_suite___.html</guid>
4317 <pubDate>Sat, 22 Jun 2013 07:00:00 +0200</pubDate>
4318 <description>&lt;p&gt;In the &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
4319 Skolelinux&lt;/a&gt; project, we include a post-installation test suite,
4320 which check that services are running, working, and return the
4321 expected results. It runs automatically just after the first boot on
4322 test installations (using test ISOs), but not on production
4323 installations (using non-test ISOs). It test that the LDAP service is
4324 operating, Kerberos is responding, DNS is replying, file systems are
4325 online resizable, etc, etc. And it check that the PXE service is
4326 configured, which is the topic of this post.&lt;/p&gt;
4327
4328 &lt;p&gt;The last week I&#39;ve fixed the DVD and USB stick ISOs for our Debian
4329 Edu Wheezy release. These ISOs are supposed to be able to install a
4330 complete system without any Internet connection, but for that to
4331 happen all the needed packages need to be on them. Thanks to our test
4332 suite, I discovered that we had forgotten to adjust our PXE setup to
4333 cope with the new names and paths used by the netboot d-i packages.
4334 When Internet connectivity was available, the installer fall back to
4335 using wget to fetch d-i boot images, but when offline it require
4336 working packages to get it working. And the packages changed name
4337 from debian-installer-6.0-netboot-$arch to
4338 debian-installer-7.0-netboot-$arch, we no longer pulled in the
4339 packages during installation. Without our test suite, I suspect we
4340 would never have discovered this before release. Now it is fixed
4341 right after we got the ISOs operational.&lt;/p&gt;
4342
4343 &lt;p&gt;Another by-product of the test suite is that we can ask system
4344 administrators with problems getting Debian Edu to work, to run the
4345 test suite using &lt;tt&gt;/usr/sbin/debian-edu-test-install&lt;/tt&gt; and see if
4346 any errors are detected. This usually pinpoint the subsystem causing
4347 the problem.&lt;/p&gt;
4348
4349 &lt;p&gt;If you want to help us help kids learn how to share and create,
4350 please join us on
4351 &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;#debian-edu on
4352 irc.debian.org&lt;/a&gt; and the
4353 &lt;a href=&quot;http://lists.debian.org/debian-edu/&quot;&gt;debian-edu@&lt;/a&gt; mailing
4354 list.&lt;/p&gt;
4355 </description>
4356 </item>
4357
4358 <item>
4359 <title>Debian Edu interview: Victor Nițu</title>
4360 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Victor_Ni_u.html</link>
4361 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Victor_Ni_u.html</guid>
4362 <pubDate>Mon, 17 Jun 2013 10:50:00 +0200</pubDate>
4363 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and
4364 Skolelinux&lt;/a&gt; distribution have users and contributors all around the
4365 globe. And a while back, an enterprising young man showed up on
4366 &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;our IRC channel
4367 #debian-edu&lt;/a&gt; and started asking questions about how Debian Edu
4368 worked. We answered as good as we could, and even convinced him to
4369 help us with translations. And today I managed to get an interview
4370 with him, to learn more about him.&lt;/p&gt;
4371
4372 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
4373
4374 &lt;p&gt;I&#39;m a 25 year old free software enthusiast, living in Romania,
4375 which is also my country of origin. Back in 2009, at a New Year&#39;s Eve
4376 party, I had a very nice &lt;strike&gt;beer&lt;/strike&gt; discussion with a
4377 friend, when we realized we have no organised Debian community in our
4378 country. A few days later, we put together the infrastructure for such
4379 community and even gathered a nice Debian-ish crowd. Since then, I
4380 began my quest as a free software hacker and activist and I am
4381 constantly trying to cover as much ground as possible on that
4382 field.&lt;/p&gt;
4383
4384 &lt;p&gt;A few years ago I founded a small web development company, which
4385 provided me the flexible schedule I needed so much for my
4386 activities. For the last 13 months, I have been the Technical Director
4387 of &lt;a href=&quot;http://ceata.org/&quot;&gt;Fundația Ceata&lt;/a&gt;, which is a free
4388 software activist organisation endorsed by the FSF and the FSFE, and
4389 the only one we have in our country.&lt;/p&gt;
4390
4391 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
4392 project?&lt;/strong&gt;&lt;/p&gt;
4393
4394 &lt;p&gt;The idea of participating in the Debian Edu project was a surprise
4395 even to me, since I never used it before I began getting involved in
4396 it. This year I had a great opportunity to deliver a talk on
4397 educational software, and I knew immediately where to look. It was a
4398 love at first sight, since I was previously involved with some of the
4399 technologies the project incorporates, and I rapidly found a lot of
4400 ways to contribute.&lt;/p&gt;
4401
4402 &lt;p&gt;My first contributions consisted in translating the installer and
4403 configuration dialogs, then I found some bugs to squash (I still
4404 haven&#39;t fixed them yet though), and I even got my eyes on some other
4405 areas where I can prove myself helpful. Since the appetite for free
4406 software in my country is pretty low, I&#39;ll be happy to be the first
4407 one around here advocating for the project&#39;s adoption in educational
4408 environments, and maybe even get my hands dirty in creating a flavour
4409 for our own needs. I am not used to make very advanced plannings, so
4410 from now on, time will tell what I&#39;ll be doing next, but I think I
4411 have a pretty consistent starting point.&lt;/p&gt;
4412
4413 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
4414 Edu?&lt;/strong&gt;&lt;/p&gt;
4415
4416 &lt;p&gt;Not a long time ago, I was in the position of configuring and
4417 maintaining a LDAP server on some Debian derivative, and I must say it
4418 took me a while. A long time ago, I was maintaining a bigger
4419 Samba-powered infrastructure, and I must say I spent quite a lot of
4420 time on it. I have similar stories about many of the services included
4421 with Skolelinux, and the main advantage I see about it is the
4422 out-of-the box availability of them, making it quite competitive when
4423 it comes to managing a school&#39;s network, for example.&lt;/p&gt;
4424
4425 &lt;p&gt;Of course, there is more to say about Skolelinux than the
4426 availability of the software included, its flexibility in various
4427 scenarios is something I can&#39;t wait to experiment &quot;into the wild&quot; (I
4428 only played with virtual machines so far). And I am sure there is a
4429 lot more I haven&#39;t discovered yet about it, being so new within the
4430 project.&lt;/p&gt;
4431
4432 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
4433 Edu?&lt;/strong&gt;&lt;/p&gt;
4434
4435 &lt;p&gt;As usual, when it comes to Debian Blends, I see as the biggest
4436 disadvantage the lack of a numerous team dedicated to the
4437 project. Every day I see the same names in the changelogs, and I have
4438 a constantly fear of the bus factor in this story. I&#39;d like to see
4439 Debian Edu advertised more as an entry point into the Debian
4440 ecosystem, especially amongst newcomers and students. IMHO there are a
4441 lot low-hanging fruits in terms of bug squashing, and enough
4442 opportunities to get the feeling of the Debian Project&#39;s dynamics. Not
4443 to mention it&#39;s a very fun blend to work on!&lt;/p&gt;
4444
4445 &lt;p&gt;Derived from the previous statement, is the delay in catching up
4446 with the main Debian release and documentation. This is common though
4447 to all blends and derivatives, but it&#39;s an issue we can all work
4448 on.&lt;/p&gt;
4449
4450 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
4451
4452 &lt;p&gt;I can hardly imagine myself spending a day without Vim, since my
4453 daily routine covers writing code and hacking configuration files. I
4454 am a fan of the Awesome window manager (but I also like the
4455 Enlightenment project a lot!),
4456 &lt;a href=&quot;http://www.claws-mail.org/‎&quot;&gt;Claws Mail&lt;/a&gt; due to its ease of
4457 use and very configurable behaviour. Recently I fell in love with
4458 &lt;a href=&quot;https://launchpad.net/redshift&quot;&gt;Redshift&lt;/a&gt;, which helps me
4459 get through the night without headaches. Of course, there is much more
4460 stuff in this bag, but I&#39;ll need a blog on my own for doing this!&lt;/p&gt;
4461
4462 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
4463 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
4464
4465 &lt;p&gt;Well, on this field, I cannot do much more than experiment right
4466 now. So, being far from having a recipe for success, I can only assume
4467 that:&lt;/p&gt;
4468
4469 &lt;ul&gt;
4470
4471 &lt;li&gt;schools would like to get rid of proprietary software&lt;/li&gt;
4472
4473 &lt;li&gt;students will love the openness of the system, and will want to
4474 experiment with it - maybe we need to harvest the native curiosity
4475 of teenagers more?&lt;/li&gt;
4476
4477 &lt;li&gt;there is no &quot;right one&quot; when it comes to strategies, but it would
4478 be useful to have some success stories published somewhere, so
4479 other can get some inspiration from them (I know I&#39;d promote
4480 them!)&lt;/li&gt;
4481
4482 &lt;li&gt;more active promotion - talks, conferences, even small school
4483 lectures can do magical things if they encounter at least one
4484 person interested. Who knows who that person might be? ;-)&lt;/li&gt;
4485
4486 &lt;/ul&gt;
4487
4488 &lt;p&gt;I also see some problems in getting Skolelinux into schools; for
4489 example, in our country we have a great deal of corruption issues, so
4490 it might be hard(er) to fight against proprietary solutions. Also,
4491 people who relied on commercial software for all their lives, would be
4492 very hard to convert against their will.&lt;/p&gt;
4493 </description>
4494 </item>
4495
4496 <item>
4497 <title>Debian Edu interview: Jonathan Carter</title>
4498 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Jonathan_Carter.html</link>
4499 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Jonathan_Carter.html</guid>
4500 <pubDate>Wed, 12 Jun 2013 09:50:00 +0200</pubDate>
4501 <description>&lt;p&gt;There is a certain cross-over between the
4502 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux
4503 project&lt;/a&gt; and &lt;a href=&quot;http://www.edubuntu.org/&quot;&gt;the Edubuntu
4504 project&lt;/a&gt;, and for example the LTSP packages in Debian are a joint
4505 effort between the projects. One person with a foot in both camps is
4506 Jonathan Carter, which I am now happy to present to you.&lt;/p&gt;
4507
4508 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
4509
4510 &lt;p&gt;I&#39;m a South-African free software geek who lives in Cape Town. My
4511 days vary quite a bit since I&#39;m involved in too many things. As I&#39;m
4512 getting older I&#39;m learning how to focus a bit more :)&lt;/p&gt;
4513
4514 &lt;p&gt;I&#39;m also an Edubuntu contributor and I love when there are
4515 opportunities for the Edubuntu and Debian Edu projects to benefit from
4516 each other.&lt;/p&gt;
4517
4518 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
4519 project?&lt;/strong&gt;&lt;/p&gt;
4520
4521 &lt;p&gt;I&#39;ve been somewhat familiar with the project before, but I think my
4522 first direct exposure to the project was when I met Petter
4523 [Reinholdtsen] and Knut [Yrvin] at the Edubuntu summit in 2005 in
4524 London. They provided great feedback that helped the bootstrapping of
4525 Edubuntu. Back then Edubuntu (and even Ubuntu) was still very new and
4526 it was great getting input from people who have been around longer. I
4527 was also still very excitable and said yes to everything and to this
4528 day I have a big todo list backlog that I&#39;m catching up with. I think
4529 over the years the relationship between Edubuntu and Debian-Edu has
4530 been gradually improving, although I think there&#39;s a lot that we could
4531 still improve on in terms of working together on packages. I&#39;m sure
4532 we&#39;ll get there one day.&lt;/p&gt;
4533
4534 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
4535 Edu?&lt;/strong&gt;&lt;/p&gt;
4536
4537 &lt;p&gt;Debian itself already has so many advantages. I could go on about
4538 it for pages, but in essence I love that it&#39;s a very honest project
4539 that puts its users first with no hidden agendas and also produces
4540 very high quality work.&lt;/p&gt;
4541
4542 &lt;p&gt;I think the advantage of Debian Edu is that it makes many common
4543 set-up tasks simpler so that administrators can get up and running
4544 with a lot less effort and frustration. At the same time I think it
4545 helps to standardise installations in schools so that it&#39;s easier for
4546 community members and commercial suppliers to support.&lt;/p&gt;
4547
4548 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
4549 Edu?&lt;/strong&gt;&lt;/p&gt;
4550
4551 &lt;p&gt;I had to re-type this one a few times because I&#39;m trying to
4552 separate &quot;disadvantages&quot; from &quot;areas that need improvement&quot; (which is
4553 what I originally rambled on about)&lt;/p&gt;
4554
4555 &lt;p&gt;The biggest disadvantage I can think of is lack of manpower. The
4556 project could do so much more if there were more good contributors. I
4557 think some of the problems are external too. Free software and free
4558 content in education is a no-brainer but it takes some time to catch
4559 on. When you&#39;ve been working with the same proprietary eco-system for
4560 years and have gotten used to it, it can be hard to adjust to some
4561 concepts in the free software world. It would be nice if there were
4562 more Debian Edu consultants across the world. I&#39;d love to be one
4563 myself but I&#39;m already so over-committed that it&#39;s just not possible
4564 currently.&lt;/p&gt;
4565
4566 &lt;p&gt;I think the best short-term solution to that large-scale problem is
4567 for schools to be pro-active and share their experiences and grow
4568 their skills in-house. I&#39;m often saddened to see how much money
4569 educational institutions spend on 3rd party solutions that they don&#39;t
4570 have access to after the service has ended and they could&#39;ve gotten so
4571 much more value otherwise by being more self-sustainable and
4572 autonomous.&lt;/p&gt;
4573
4574 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
4575
4576 &lt;p&gt;My main laptop dual-boots between Debian and Windows 7. I was
4577 Windows free for years but started dual-booting again last year for
4578 some games which help me focus and relax (Starcraft II in
4579 particular). Gaming support on Linux is improving in leaps and bounds
4580 so I suppose I&#39;ll soon be able to regain that disk space :)&lt;/p&gt;
4581
4582 &lt;p&gt;Besides that I rely on Icedove, Chromium, Terminator, Byobu, irssi,
4583 git, Tomboy, KVM, VLC and LibreOffice. Recently I&#39;ve been torn on
4584 which desktop environment I like and I&#39;m taking some refuge in Xfce
4585 while I figure that out. I like tools that keep things simple. I enjoy
4586 Python and shell scripting. I went to an Arduino workshop recently and
4587 it was awesome seeing how easy and simple the IDE software was to get
4588 up and running in Debian compared to the users running Windows and OS
4589 X.&lt;/p&gt;
4590
4591 &lt;p&gt;I also use mc which some people frown upon slightly. I got used to
4592 using Norton Commander in the early 90&#39;s and it stuck (I think the
4593 people who sneer at it is just jealous that they don&#39;t know how to use
4594 it :p)
4595
4596 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
4597 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
4598
4599 &lt;p&gt;I think trying to force it is unproductive. I also think that in
4600 many cases it&#39;s appropriate for schools to use non-free systems and I
4601 don&#39;t think that there&#39;s any particular moral or ethical problem with
4602 that.&lt;/p&gt;
4603
4604 &lt;p&gt;I do think though that free software can already solve so so many
4605 problems in educational institutions and it&#39;s just a shame not taking
4606 advantage of that.&lt;/p&gt;
4607
4608 &lt;p&gt;I also think that some curricula need serious review. For example,
4609 some areas of the world rely heavily on very specific versions of MS
4610 Office, teaching students to parrot menu items instead of learning the
4611 general concepts. I think that&#39;s very unproductive because firstly, MS
4612 Office&#39;s interface changes drastically every few years and on top of
4613 that it also locks in a generation to a product that might not be the
4614 best solution for them.&lt;/p&gt;
4615
4616 &lt;p&gt;To answer your question, I believe that the right strategy is to
4617 educate and inform, giving someone the information they require to
4618 make a decision that would work for them.&lt;/p&gt;
4619 </description>
4620 </item>
4621
4622 <item>
4623 <title>Fixing the Linux black screen of death on machines with Intel HD video</title>
4624 <link>http://people.skolelinux.org/pere/blog/Fixing_the_Linux_black_screen_of_death_on_machines_with_Intel_HD_video.html</link>
4625 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Fixing_the_Linux_black_screen_of_death_on_machines_with_Intel_HD_video.html</guid>
4626 <pubDate>Tue, 11 Jun 2013 11:00:00 +0200</pubDate>
4627 <description>&lt;p&gt;When installing RedHat, Fedora, Debian and Ubuntu on some machines,
4628 the screen just turn black when Linux boot, either during installation
4629 or on first boot from the hard disk. I&#39;ve seen it once in a while the
4630 last few years, but only recently understood the cause. I&#39;ve seen it
4631 on HP laptops, and on my latest acquaintance the Packard Bell laptop.
4632 The reason seem to be in the wiring of some laptops. The system to
4633 control the screen background light is inverted, so when Linux try to
4634 turn the brightness fully on, it end up turning it off instead. I do
4635 not know which Linux drivers are affected, but this post is about the
4636 i915 driver used by the
4637 &lt;a href=&quot;http://www.linlap.com/packard_bell_easynote_lv&quot;&gt;Packard Bell
4638 EasyNote LV&lt;/a&gt;, Thinkpad X40 and many other laptops.&lt;/p&gt;
4639
4640 &lt;p&gt;The problem can be worked around two ways. Either by adding
4641 i915.invert_brightness=1 as a kernel option, or by adding a file in
4642 /etc/modprobe.d/ to tell modprobe to add the invert_brightness=1
4643 option when it load the i915 kernel module. On Debian and Ubuntu, it
4644 can be done by running these commands as root:&lt;/p&gt;
4645
4646 &lt;pre&gt;
4647 echo options i915 invert_brightness=1 | tee /etc/modprobe.d/i915.conf
4648 update-initramfs -u -k all
4649 &lt;/pre&gt;
4650
4651 &lt;p&gt;Since March 2012 there is
4652 &lt;a href=&quot;http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=4dca20efb1a9c2efefc28ad2867e5d6c3f5e1955&quot;&gt;a
4653 mechanism in the Linux kernel&lt;/a&gt; to tell the i915 driver which
4654 hardware have this problem, and get the driver to invert the
4655 brightness setting automatically. To use it, one need to add a row in
4656 &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
4657 intel_quirks array&lt;/a&gt; in the driver source
4658 &lt;tt&gt;drivers/gpu/drm/i915/intel_display.c&lt;/tt&gt; (look for &quot;&lt;tt&gt;static
4659 struct intel_quirk intel_quirks&lt;/tt&gt;&quot;), specifying the PCI device
4660 number (vendor number 8086 is assumed) and subdevice vendor and device
4661 number.&lt;/p&gt;
4662
4663 &lt;p&gt;My Packard Bell EasyNote LV got this output from &lt;tt&gt;lspci
4664 -vvnn&lt;/tt&gt; for the video card in question:&lt;/p&gt;
4665
4666 &lt;p&gt;&lt;pre&gt;
4667 00:02.0 VGA compatible controller [0300]: Intel Corporation \
4668 3rd Gen Core processor Graphics Controller [8086:0156] \
4669 (rev 09) (prog-if 00 [VGA controller])
4670 Subsystem: Acer Incorporated [ALI] Device [1025:0688]
4671 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- \
4672 ParErr- Stepping- SE RR- FastB2B- DisINTx+
4673 Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast &gt;TAbort- \
4674 &lt;TAbort- &lt;MAbort-&gt;SERR- &lt;PERR- INTx-
4675 Latency: 0
4676 Interrupt: pin A routed to IRQ 42
4677 Region 0: Memory at c2000000 (64-bit, non-prefetchable) [size=4M]
4678 Region 2: Memory at b0000000 (64-bit, prefetchable) [size=256M]
4679 Region 4: I/O ports at 4000 [size=64]
4680 Expansion ROM at &lt;unassigned&gt; [disabled]
4681 Capabilities: &lt;access denied&gt;
4682 Kernel driver in use: i915
4683 &lt;/pre&gt;&lt;/p&gt;
4684
4685 &lt;p&gt;The resulting intel_quirks entry would then look like this:&lt;/p&gt;
4686
4687 &lt;p&gt;&lt;pre&gt;
4688 struct intel_quirk intel_quirks[] = {
4689 ...
4690 /* Packard Bell EasyNote LV11HC needs invert brightness quirk */
4691 { 0x0156, 0x1025, 0x0688, quirk_invert_brightness },
4692 ...
4693 }
4694 &lt;/pre&gt;&lt;/p&gt;
4695
4696 &lt;p&gt;According to the kernel module instructions (as seen using
4697 &lt;tt&gt;modinfo i915&lt;/tt&gt;), information about hardware needing the
4698 invert_brightness flag should be sent to the
4699 &lt;a href=&quot;http://lists.freedesktop.org/mailman/listinfo/dri-devel&quot;&gt;dri-devel
4700 (at) lists.freedesktop.org&lt;/a&gt; mailing list to reach the kernel
4701 developers. But my email about the laptop sent 2013-06-03 have not
4702 yet shown up in
4703 &lt;a href=&quot;http://lists.freedesktop.org/archives/dri-devel/2013-June/thread.html&quot;&gt;the
4704 web archive for the mailing list&lt;/a&gt;, so I suspect they do not accept
4705 emails from non-subscribers. Because of this, I sent my patch also to
4706 the Debian bug tracking system instead as
4707 &lt;a href=&quot;http://bugs.debian.org/710938&quot;&gt;BTS report #710938&lt;/a&gt;, to make
4708 sure the patch is not lost.&lt;/p&gt;
4709
4710 &lt;p&gt;Unfortunately, it is not enough to fix the kernel to get Laptops
4711 with this problem working properly with Linux. If you use Gnome, your
4712 worries should be over at this point. But if you use KDE, there is
4713 something in KDE ignoring the invert_brightness setting and turning on
4714 the screen during login. I&#39;ve reported it to Debian as
4715 &lt;a href=&quot;http://bugs.debian.org/711237&quot;&gt;BTS report #711237&lt;/a&gt;, and
4716 have no idea yet how to figure out exactly what subsystem is doing
4717 this. Perhaps you can help? Perhaps you know what the Gnome
4718 developers did to handle this, and this can give a clue to the KDE
4719 developers? Or you know where in KDE the screen brightness is changed
4720 during login? If so, please update the BTS report (or get in touch if
4721 you do not know how to update BTS).&lt;/p&gt;
4722
4723 &lt;p&gt;Update 2013-07-19: The correct fix for this machine seem to be
4724 acpi_backlight=vendor, to disable ACPI backlight support completely,
4725 as the ACPI information on the machine is trash and it is better to
4726 leave it to the intel video driver to control the screen
4727 backlight.&lt;/p&gt;
4728 </description>
4729 </item>
4730
4731 <item>
4732 <title>Third alpha release of Debian Edu / Skolelinux based on Debian Wheezy</title>
4733 <link>http://people.skolelinux.org/pere/blog/Third_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</link>
4734 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Third_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</guid>
4735 <pubDate>Mon, 10 Jun 2013 22:50:00 +0200</pubDate>
4736 <description>&lt;p&gt;The third wheezy based alpha release of Debian Edu was wrapped up
4737 today. This is the release announcement:&lt;/p&gt;
4738
4739 &lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.0.0 alpha2 released
4740 2013-06-10&lt;/strong&gt;&lt;/p&gt;
4741
4742 &lt;p&gt;This is the release notes for for Debian Edu / Skolelinux 7.0.0 edu
4743 alpha2, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
4744
4745 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
4746
4747 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
4748 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
4749 out-of-the box environment of a completely configured school
4750 network. Immediately after installation a school server running all
4751 services needed for a school network is set up just waiting for users
4752 and machines being added via GOsa², a comfortable Web-UI. A netbooting
4753 environment is prepared using PXE, so after initial installation of
4754 the main server from CD, DVD or USB stick all other machines can be
4755 installed via the network. The provided school server provides LDAP
4756 database and Kerberos authentication service, centralized home
4757 directories, DHCP server, web proxy and many other services. The
4758 desktop contains
4759 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;more
4760 than 60 educational software packages&lt;/a&gt; and more are available from
4761 the Debian archive, and schools can choose between KDE, Gnome, LXDE
4762 and Xfce desktop environment.&lt;/p&gt;
4763
4764 &lt;p&gt;This is the third test release based on Debian Wheezy. Basically
4765 this is an updated and slightly improved version compared to the
4766 Squeeze release.&lt;/p&gt;
4767
4768 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
4769
4770 &lt;ul&gt;
4771
4772 &lt;li&gt;Iceweasel was updated from 10 to 17. (DSA 2699-1)
4773 &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).
4774 &lt;li&gt;Switched xrdp on thin client servers to use tightvncserver instead of xvnc4.
4775 &lt;li&gt;Now install software oscilloscope xoscope by default.
4776 &lt;li&gt;Now install music tools gtick, lingot and pianobooster by default.
4777
4778 &lt;/ul&gt;
4779
4780 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
4781
4782 &lt;ul&gt;
4783
4784 &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.
4785 &lt;li&gt;Updated translation of the installation.
4786 &lt;li&gt;New Romanian translation.
4787 &lt;li&gt;Fix security problem causing root and first user password to no longer show up in /var/cache/debconf/templates.dat.
4788 &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).
4789 &lt;li&gt;Made roaming workstation setup more robust in non-Debian Edu environments.
4790 &lt;li&gt;New script debian-edu-bless to transform a Debian installation to a Debian Edu profile.
4791 &lt;li&gt;Adjust Iceweasel setup to improve performance when $HOME is on NFS.
4792 &lt;li&gt;More testsuite tests.
4793 &lt;li&gt;Make automatic proxy configuration more robust.
4794 &lt;li&gt;Adjust GOsa² GUI configuration.
4795
4796 &lt;li&gt;Update thin client and diskless workstation setup to work with
4797 LTSP in Wheezy.&lt;/li&gt;
4798
4799 &lt;li&gt;Diskless workstations now run out of the box -- no need to set
4800 them up with GOsa².&lt;/li&gt;
4801
4802 &lt;li&gt;Update IMAP server setup. &lt;/li&gt;
4803
4804 &lt;li&gt;Fix login into Skolelinux Backup Tool (Closed in
4805 slbackup-php/0.4.4-1: #700257: slbackup-php: Fails to submit correctly
4806 entered password). &lt;/li&gt;
4807
4808 &lt;/ul&gt;
4809
4810 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
4811
4812 &lt;ul&gt;
4813
4814 &lt;li&gt;DVD binary and source images are not yet ready.&lt;/li&gt;
4815
4816 &lt;li&gt;No mass import of user account data in GOsa (ldif or csv)
4817 available yet (Open in gosa/2.7.4-4: #698840: gosa-plugin-ldapmanager:
4818 missing import feature).&lt;/li&gt;
4819
4820 &lt;li&gt;Missing artwork for the KDE desktop (and probably a few others). &lt;/li&gt;
4821
4822 &lt;li&gt;KDE Debian submenu lacks icons (Closed: #502192: menu-xdg: invents
4823 own icon names instead of using existing). This will remain
4824 unfixed.&lt;/li&gt;
4825
4826 &lt;/ul&gt;
4827
4828 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
4829
4830 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
4831
4832 &lt;ul&gt;
4833
4834 &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;
4835
4836 &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;
4837
4838 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.0+edu0~a2-CD.iso .&lt;/li&gt;
4839
4840 &lt;/ul&gt;
4841
4842 &lt;p&gt;The MD5SUM of this image is: 27bbcace407743382f3c42c08dbe8178
4843 &lt;br&gt;The SHA1SUM of this image is: e35f7d7908566cd3075375b3721fa10ee420d419&lt;/p&gt;
4844
4845 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
4846
4847 &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;
4848 </description>
4849 </item>
4850
4851 <item>
4852 <title>Is there a PHP expert in the building? Debian Edu need help!</title>
4853 <link>http://people.skolelinux.org/pere/blog/Is_there_a_PHP_expert_in_the_building___Debian_Edu_need_help_.html</link>
4854 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Is_there_a_PHP_expert_in_the_building___Debian_Edu_need_help_.html</guid>
4855 <pubDate>Wed, 5 Jun 2013 17:50:00 +0200</pubDate>
4856 <description>&lt;p&gt;Here is a call for help from the Debian Edu / Skolelinux project.
4857 We have two problems blocking the release of the Wheezy version we
4858 hope to get released soon. The two problems require some with PHP
4859 skills, and we seem to lack anyone with both time and PHP skills in
4860 the project:
4861
4862 &lt;ol&gt;
4863
4864 &lt;li&gt;It is impossible to log into the slbackup web interface
4865 (slbackup-php) using the root user and password. This is
4866 &lt;a href=&quot;http://bugs.debian.org/700257&quot;&gt;BTS report #700257&lt;/a&gt;.
4867 This used to work, but stopped working some time since Squeeze.
4868 Perhaps some obsolete PHP feature was used?&lt;/li&gt;
4869
4870 &lt;li&gt;It is not possible to &quot;mass import&quot; user lists in Gosa, neither
4871 using ldif nor using CSV files. The feature was disabled after a
4872 major rewrite of Gosa, and need to be ported to the new system.
4873 This is &lt;a href=&quot;http://bugs.debian.org/698840&quot;&gt;BTS report
4874 #698840&lt;/a&gt;.&lt;/li&gt;
4875
4876 &lt;/ol&gt;
4877
4878 &lt;p&gt;If you can help us, please join us on IRC
4879 (&lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;#debian-edu on
4880 irc.debian.org&lt;/a&gt;) and provide patches via the BTS.&lt;/p&gt;
4881 </description>
4882 </item>
4883
4884 <item>
4885 <title>Debian Edu interview: Cédric Boutillier</title>
4886 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__C_dric_Boutillier.html</link>
4887 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__C_dric_Boutillier.html</guid>
4888 <pubDate>Tue, 4 Jun 2013 10:30:00 +0200</pubDate>
4889 <description>&lt;p&gt;It has been a while since my last English
4890 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
4891 interview last November. But the developers and translators are still
4892 pulling along to get the Wheezy based release out the door, and this
4893 time I managed to get an interview from one of the French translators
4894 in the project, Cédric Boutillier.&lt;/p&gt;
4895
4896 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
4897
4898 &lt;p&gt;I am 34 year old. I live near Paris, France. I am an assistant
4899 professor in probability theory. I spend my daytime teaching
4900 mathematics at the university and doing fundamental research in
4901 probability in connexion with combinatorics and statistical physics.&lt;/p&gt;
4902
4903 &lt;p&gt;I have been involved in the Debian project for a couple of years
4904 and became Debian Developer a few months ago. I am working on Ruby
4905 packaging, publicity and translation.&lt;/p&gt;
4906
4907 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
4908 project?&lt;/strong&gt;&lt;/p&gt;
4909
4910 &lt;p&gt;I came to the Debian Edu project after a call for translation of
4911 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Manuals&quot;&gt;the
4912 Debian Edu manual&lt;/a&gt; for the release of Debian Edu Squeeze. Since
4913 then, I have been working on updating the French translation of the
4914 manual.
4915
4916 &lt;p&gt;I had the opportunity to make an installation of Debian Edu in a
4917 virtual machine when I was preparing localised version of some screen
4918 shots for the manual. I was amazed to see it worked out of the box and
4919 how comprehensive the list of software installed by default was.&lt;/p&gt;
4920
4921 &lt;p&gt;What amazed me was the complete network infrastructure directly
4922 ready to use, which can and the nice administration interface provided
4923 by &lt;a href=&quot;https://oss.gonicus.de/labs/gosa/&quot;&gt;GOsa²&lt;/a&gt;. What pleased
4924 me also was the fact that among the software installed by default,
4925 there were many &quot;traditional&quot; educative software to learn languages,
4926 to count, to program... but also software to develop creativity and
4927 artistic skills with music (&lt;a href=&quot;http://ardour.org/&quot;&gt;Ardour&lt;/a&gt;,
4928 &lt;a href=&quot;http://audacity.sourceforge.net/&quot;&gt;Audacity&lt;/a&gt;) and
4929 movies/animation (I was especially thinking of
4930 &lt;a href=&quot;http://linuxstopmotion.sourceforge.net/&quot;&gt;Stopmotion&lt;/a&gt;).&lt;/p&gt;
4931
4932 &lt;p&gt;I am following the development of Debian Edu and am hanging out on
4933 &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;#debian-edu&lt;/a&gt;.
4934 Unfortunately, I don&#39;t much time to get more involved in this
4935 beautiful project.&lt;/p&gt;
4936
4937 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
4938 Edu?&lt;/strong&gt;&lt;/p&gt;
4939
4940 &lt;p&gt;For me, the main advantages of Skolelinux/Debian Edu are its
4941 community of experts and its precise documentation, as well as the
4942 fact that it provides a solution ready to use.&lt;/p&gt;
4943
4944 &lt;p&gt;I would add also the fact that it is based on the rock solid Debian
4945 distribution, which ensures stability and provides a huge collection
4946 of educational free software.&lt;/p&gt;
4947
4948 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
4949 Edu?&lt;/strong&gt;&lt;/p&gt;
4950
4951 &lt;p&gt;Maybe the lack of manpower to do lobbying on the
4952 project. Sometimes, people who need to take decisions concerning IT do
4953 not have all the elements to evaluate properly free software
4954 solutions. The fact that support by a company may be difficult to find
4955 is probably a problem if the school does not have IT personnel.&lt;/p&gt;
4956
4957 &lt;p&gt;One can find support from a company by looking at
4958 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Help/ProfessionalHelp&quot;&gt;the
4959 wiki dokumentation&lt;/a&gt;, where some countries already have a number of
4960 companies providing support for Debian Edu, like Germany or
4961 Norway. This list is easy to find readily from the manual. However,
4962 for other countries, like France, the list is empty. I guess that
4963 consultants proposing support for Debian would be able to provide some
4964 support for Debian Edu as well.&lt;/p&gt;
4965
4966 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
4967
4968 &lt;p&gt;I am using the KDE Plasma Desktop. But the pieces of software I use
4969 most runs in a terminal: Mutt and OfflineIMAP for emails, latex for
4970 scientific documents, mpd for music. VIM is my editor of choice. I am
4971 also using the mathematical software
4972 &lt;a href=&quot;http://www.scilab.org/en/scilab/about‎&quot;&gt;Scilab&lt;/a&gt; and
4973 &lt;a href=&quot;http://www.sagemath.org/index.html‎&quot;&gt;Sage&lt;/a&gt; (built from
4974 source as not completely packaged for Debian, yet).
4975
4976 &lt;p&gt;&lt;strong&gt;Do you have any suggestions for teachers interested in
4977 using the free software in Debian to teach mathematics and
4978 statistics?&lt;/strong&gt;&lt;/p&gt;
4979
4980 &lt;p&gt;I do not have any &quot;nice&quot; recommendations for statistics. At our
4981 university, we use both &lt;a href=&quot;http://www.r-project.org/‎&quot;&gt;R&lt;/a&gt; and
4982 Scilab to teach statistics and probabilistic simulations. For
4983 geometry, there are nice programs:&lt;/p&gt;
4984
4985 &lt;ul&gt;
4986
4987 &lt;li&gt;&lt;a href=&quot;http://www.drgeo.eu/&quot;&gt;drgeo&lt;/a&gt; and
4988 &lt;a href=&quot;http://edu.kde.org/applications/all/kig‎&quot;&gt;kig&lt;/a&gt; to do
4989 constructions in planar geometry
4990
4991 &lt;li&gt;&lt;a href=&quot;http://www.geom.uiuc.edu/software/download/kali.html&quot;&gt;kali&lt;/a&gt;
4992 to discover symmetry groups (the so-called wallpapers and frieze
4993 groups), although the interface looks a bit old.&lt;/li&gt;
4994
4995 &lt;/ul&gt;
4996
4997 &lt;p&gt;I like also
4998 &lt;a href=&quot;http://edu.kde.org/applications/all/cantor&quot;&gt;cantor&lt;/a&gt;, which
4999 provides a uniform interface to SciLab, Sage,
5000 &lt;a href=&quot;http://directory.fsf.org/wiki/Octave‎&quot;&gt;Octave&lt;/a&gt;, etc...&lt;/p&gt;
5001
5002 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
5003 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
5004
5005 &lt;p&gt;My suggestions would be to&lt;/p&gt;
5006
5007 &lt;ul&gt;
5008
5009 &lt;li&gt;advertise the reduction of costs when free software is used.&lt;/li&gt;
5010
5011 &lt;li&gt;communicate about the quality of free software projects, using
5012 well known examples like Firefox, ThunderBird and
5013 OpenOffice.org/LibreOffice.&lt;/li&gt;
5014
5015 &lt;li&gt;advertise the living and strong community around the project.&lt;/li&gt;
5016
5017 &lt;li&gt;show that it is not more difficult to use than any other
5018 system.&lt;/li&gt;
5019
5020 &lt;/ul&gt;
5021 </description>
5022 </item>
5023
5024 <item>
5025 <title>Educational applications included in Debian Edu / Skolelinux (the screenshot collection :-)</title>
5026 <link>http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html</link>
5027 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html</guid>
5028 <pubDate>Sat, 1 Jun 2013 23:50:00 +0200</pubDate>
5029 <description>&lt;p&gt;Included in &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
5030 Skolelinux&lt;/a&gt;, there are quite a lot of educational software.
5031 Created to help teachers teach, and pupils learn. We have tried to
5032 tag them all using debtags use::learning and role::program, and using
5033 the debtags I was happy to be able to create a collage of the
5034 educational software packages installed by default, sorted by the
5035 debtag field. Here it is. Click on a image to learn more about the
5036 program.&lt;/p&gt;
5037
5038 &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;
5039
5040 &lt;p&gt;&lt;strong&gt;field::arts&lt;/strong&gt;&lt;/p&gt;
5041 &lt;p&gt;
5042 &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;
5043 &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;
5044 &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;
5045 &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;
5046 &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;
5047 &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;
5048 &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;
5049 &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;
5050 &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;
5051 &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;
5052 &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;
5053 &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;
5054 &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;
5055 &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;
5056 &lt;/p&gt;
5057
5058 &lt;p&gt;&lt;strong&gt;field::astronomy&lt;/strong&gt;&lt;/p&gt;
5059 &lt;p&gt;
5060 &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;
5061 &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;
5062 &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;
5063 &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;
5064 &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;
5065 &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;
5066 &lt;/p&gt;
5067
5068 &lt;p&gt;&lt;strong&gt;field::biology:structural&lt;/strong&gt;&lt;/p&gt;
5069 &lt;p&gt;
5070 &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;
5071 &lt;/p&gt;
5072
5073 &lt;p&gt;&lt;strong&gt;field::chemistry&lt;/strong&gt;&lt;/p&gt;
5074 &lt;p&gt;
5075 &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;
5076 &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;
5077 &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;
5078 &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;
5079 &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;
5080 &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;
5081 &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;
5082 &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;
5083 &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;
5084 &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;
5085 &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;
5086 &lt;/p&gt;
5087
5088 &lt;p&gt;&lt;strong&gt;field::electronics&lt;/strong&gt;&lt;/p&gt;
5089 &lt;p&gt;
5090 &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;
5091 &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;
5092 &lt;/p&gt;
5093
5094 &lt;p&gt;&lt;strong&gt;field::geography&lt;/strong&gt;&lt;/p&gt;
5095 &lt;p&gt;
5096 &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;
5097 &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;
5098 &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;
5099 &lt;/p&gt;
5100
5101 &lt;p&gt;&lt;strong&gt;field::linguistics&lt;/strong&gt;&lt;/p&gt;
5102 &lt;p&gt;
5103 &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;
5104 &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;
5105 &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;
5106 &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;
5107 &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;
5108 &lt;/p&gt;
5109
5110 &lt;p&gt;&lt;strong&gt;field::mathematics&lt;/strong&gt;&lt;/p&gt;
5111 &lt;p&gt;
5112 &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;
5113 &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;
5114 &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;
5115 &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;
5116 &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;
5117 &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;
5118 &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;
5119 &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;
5120 &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;
5121 &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;
5122 &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;
5123 &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;
5124 &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;
5125 &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;
5126 &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;
5127 &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;
5128 &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;
5129 &lt;/p&gt;
5130
5131 &lt;p&gt;&lt;strong&gt;field::physics&lt;/strong&gt;&lt;/p&gt;
5132 &lt;p&gt;
5133 &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;
5134 &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;
5135 &lt;/p&gt;
5136
5137 &lt;p&gt;&lt;strong&gt;field::TODO&lt;/strong&gt;&lt;/p&gt;
5138 &lt;p&gt;
5139 &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;
5140 &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;
5141 &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;
5142 &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;
5143 &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;
5144 &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;
5145 &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;
5146 &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;
5147 &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;
5148 &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;
5149 &lt;/p&gt;
5150
5151 &lt;p&gt;In total, 61 applications. 3 of them lacked screen shots on
5152 &lt;a href=&quot;http://screenshot.debian.net&quot;&gt;screenshot.debian.net&lt;/a&gt;. If
5153 you know of some packages we should install by default, please let us
5154 know on &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;IRC, #debian-edu
5155 on irc.debian.org&lt;/a&gt;, or our
5156 &lt;a href=&quot;http://lists.debian.org/debian-edu/&quot;&gt;mailing list
5157 debian-edu@&lt;/a&gt;.&lt;/p&gt;
5158 </description>
5159 </item>
5160
5161 <item>
5162 <title>How to install Linux on a Packard Bell Easynote LV preinstalled with Windows 8</title>
5163 <link>http://people.skolelinux.org/pere/blog/How_to_install_Linux_on_a_Packard_Bell_Easynote_LV_preinstalled_with_Windows_8.html</link>
5164 <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>
5165 <pubDate>Mon, 27 May 2013 15:20:00 +0200</pubDate>
5166 <description>&lt;p&gt;Two days ago, I asked
5167 &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
5168 I could install Linux on a Packard Bell EasyNote LV computer
5169 preinstalled with Windows 8&lt;/a&gt;. I found a solution, but am horrified
5170 with the obstacles put in the way of Linux users on a laptop with UEFI
5171 and Windows 8.&lt;/p&gt;
5172
5173 &lt;p&gt;I never found out if the cause of my problems were the use of UEFI
5174 secure booting or fast boot. I suspect fast boot was the problem,
5175 causing the firmware to boot directly from HD without considering any
5176 key presses and alternative devices, but do not know UEFI settings
5177 enough to tell.&lt;/p&gt;
5178
5179 &lt;p&gt;There is no way to install Linux on the machine in question without
5180 opening the box and disconnecting the hard drive! This is as far as I
5181 can tell, the only way to get access to the firmware setup menu
5182 without accepting the Windows 8 license agreement. I am told (and
5183 found description on how to) that it is possible to configure the
5184 firmware setup once booted into Windows 8. But as I believe the terms
5185 of that agreement are completely unacceptable, accepting the license
5186 was never an alternative. I do not enter agreements I do not intend
5187 to follow.&lt;/p&gt;
5188
5189 &lt;p&gt;I feared I had to return the laptops and ask for a refund, and
5190 waste many hours on this, but luckily there was a way to get it to
5191 work. But I would not recommend it to anyone planning to run Linux on
5192 it, and I have become sceptical to Windows 8 certified laptops. Is
5193 this the way Linux will be forced out of the market place, by making
5194 it close to impossible for &quot;normal&quot; users to install Linux without
5195 accepting the Microsoft Windows license terms? Or at least not
5196 without risking to loose the warranty?&lt;/p&gt;
5197
5198 &lt;p&gt;I&#39;ve updated the
5199 &lt;a href=&quot;http://www.linlap.com/packard_bell_easynote_lv&quot;&gt;Linux Laptop
5200 wiki page for Packard Bell EasyNote LV&lt;/a&gt;, to ensure the next person
5201 do not have to struggle as much as I did to get Linux into the
5202 machine.&lt;/p&gt;
5203
5204 &lt;p&gt;Thanks to Bob Rosbag, Florian Weimer, Philipp Kern, Ben Hutching,
5205 Michael Tokarev and others for feedback and ideas.&lt;/p&gt;
5206 </description>
5207 </item>
5208
5209 <item>
5210 <title>How can I install Linux on a Packard Bell Easynote LV preinstalled with Windows 8?</title>
5211 <link>http://people.skolelinux.org/pere/blog/How_can_I_install_Linux_on_a_Packard_Bell_Easynote_LV_preinstalled_with_Windows_8_.html</link>
5212 <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>
5213 <pubDate>Sat, 25 May 2013 18:20:00 +0200</pubDate>
5214 <description>&lt;p&gt;I&#39;ve run into quite a problem the last few days. I bought three
5215 new laptops for my parents and a few others. I bought Packard Bell
5216 Easynote LV to run Kubuntu on and use as their home computer. But I
5217 am completely unable to figure out how to install Linux on it. The
5218 computer is preinstalled with Windows 8, and I suspect it uses UEFI
5219 instead of a BIOS to boot.&lt;/p&gt;
5220
5221 &lt;p&gt;The problem is that I am unable to get it to PXE boot, and unable
5222 to get it to boot the Linux installer from my USB stick. I have yet
5223 to try the DVD install, and still hope it will work. when I turn on
5224 the computer, there is no information on what buttons to press to get
5225 the normal boot menu. I expect to get some boot menu to select PXE or
5226 USB stick booting. When booting, it first ask for the language to
5227 use, then for some regional settings, and finally if I will accept the
5228 Windows 8 terms of use. As these terms are completely unacceptable to
5229 me, I have no other choice but to turn off the computer and try again
5230 to get it to boot the Linux installer.&lt;/p&gt;
5231
5232 &lt;p&gt;I have gathered my findings so far on a Linlap page about the
5233 &lt;a href=&quot;http://www.linlap.com/packard_bell_easynote_lv&quot;&gt;Packard Bell
5234 EasyNote LV&lt;/a&gt; model. If you have any idea how to get Linux
5235 installed on this machine, please get in touch or update that wiki
5236 page. If I can&#39;t find a way to install Linux, I will have to return
5237 the laptop to the seller and find another machine for my parents.&lt;/p&gt;
5238
5239 &lt;p&gt;I wonder, is this the way Linux will be forced out of the market
5240 using UEFI and &quot;secure boot&quot; by making it impossible to install Linux
5241 on new Laptops?&lt;/p&gt;
5242 </description>
5243 </item>
5244
5245 <item>
5246 <title>How to transform a Debian based system to a Debian Edu installation</title>
5247 <link>http://people.skolelinux.org/pere/blog/How_to_transform_a_Debian_based_system_to_a_Debian_Edu_installation.html</link>
5248 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_transform_a_Debian_based_system_to_a_Debian_Edu_installation.html</guid>
5249 <pubDate>Fri, 17 May 2013 11:50:00 +0200</pubDate>
5250 <description>&lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; is
5251 an operating system based on Debian intended for use in schools. It
5252 contain a turn-key solution for the computer network provided to
5253 pupils in the primary schools. It provide both the central server,
5254 network boot servers and desktop environments with heaps of
5255 educational software. The project was founded almost 12 years ago,
5256 2001-07-02. If you want to support the project, which is in need for
5257 cash to fund developer gatherings and other project related activity,
5258 &lt;a href=&quot;http://www.linuxiskolen.no/slxdebianlabs/donations.html&quot;&gt;please
5259 donate some money&lt;/a&gt;.
5260
5261 &lt;p&gt;A topic that come up again and again on the Debian Edu mailing
5262 lists and elsewhere, is the question on how to transform a Debian or
5263 Ubuntu installation into a Debian Edu installation. It isn&#39;t very
5264 hard, and last week I wrote a script to replicate the steps done by
5265 the Debian Edu installer.&lt;/p&gt;
5266
5267 &lt;p&gt;The script,
5268 &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;
5269 in the debian-edu-config package, will go through these six steps and
5270 transform an existing Debian Wheezy or Ubuntu (untested) installation
5271 into a Debian Edu Workstation:&lt;/p&gt;
5272
5273 &lt;ol&gt;
5274
5275 &lt;li&gt;Add skolelinux related APT sources.&lt;/li&gt;
5276 &lt;li&gt;Create /etc/debian-edu/config with the wanted configuration.&lt;/li&gt;
5277 &lt;li&gt;Install debian-edu-install to load preseeding values and pull in
5278 our configuration.&lt;/li&gt;
5279 &lt;li&gt;Preseed debconf database with profile setup in
5280 /etc/debian-edu/config, and run tasksel to install packages
5281 according to the profile specified in the config above,
5282 overriding some of the Debian automation machinery.&lt;/li&gt;
5283 &lt;li&gt;Run debian-edu-cfengine-D installation to configure everything
5284 that could not be done using preseeding.&lt;/li&gt;
5285 &lt;li&gt;Ask for a reboot to enable all the configuration changes.&lt;/li&gt;
5286
5287 &lt;/ol&gt;
5288
5289 &lt;p&gt;There are some steps in the Debian Edu installation that can not be
5290 replicated like this. Disk partitioning and LVM setup, for example.
5291 So this script just assume there is enough disk space to install all
5292 the needed packages.&lt;/p&gt;
5293
5294 &lt;p&gt;The script was created to help a Debian Edu student working on
5295 setting up &lt;a href=&quot;http://www.raspberrypi.org&quot;&gt;Raspberry Pi&lt;/a&gt; as a
5296 Debian Edu client, and using it he can take the existing
5297 &lt;a href=&quot;http://www.raspbian.org/FrontPage‎&quot;&gt;Raspbian&lt;/a&gt; installation and
5298 transform it into a fully functioning Debian Edu Workstation (or
5299 Roaming Workstation, or whatever :).&lt;/p&gt;
5300
5301 &lt;p&gt;The default setting in the script is to create a KDE Workstation.
5302 If a LXDE based Roaming workstation is wanted instead, modify the
5303 PROFILE and DESKTOP values at the top to look like this instead:&lt;/p&gt;
5304
5305 &lt;p&gt;&lt;pre&gt;
5306 PROFILE=&quot;Roaming-Workstation&quot;
5307 DESKTOP=&quot;lxde&quot;
5308 &lt;/pre&gt;&lt;/p&gt;
5309
5310 &lt;p&gt;The script could even become useful to set up Debian Edu servers in
5311 the cloud, by starting with a virtual Debian installation at some
5312 virtual hosting service and setting up all the services on first
5313 boot.&lt;/p&gt;
5314 </description>
5315 </item>
5316
5317 <item>
5318 <title>Second alpha release of Debian Edu / Skolelinux based on Debian Wheezy</title>
5319 <link>http://people.skolelinux.org/pere/blog/Second_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</link>
5320 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Second_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</guid>
5321 <pubDate>Tue, 14 May 2013 23:30:00 +0200</pubDate>
5322 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux
5323 project&lt;/a&gt; is making great progress and made its second Wheezy based
5324 release today. This is the release announcement:&lt;/p&gt;
5325
5326 &lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.0.0 alpha1 released
5327 2013-05-14&lt;/strong&gt;&lt;/p&gt;
5328
5329 &lt;p&gt;This is the release notes for for Debian Edu / Skolelinux 7.0.0 edu
5330 alpha1, based on &lt;a href=&quot;http://www.debian.org&quot;&gt;Debian&lt;/a&gt; with
5331 codename &quot;Wheezy&quot;.&lt;/p&gt;
5332
5333 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
5334
5335 &lt;p&gt;Debian Edu, also known as Skolelinux, is a Linux distribution based
5336 on Debian providing an out-of-the box environment of a completely
5337 configured school network. Immediatly after installation a school
5338 server running all services needed for a school network is set up just
5339 waiting for users and machines being added via GOsa², a comfortable
5340 Web-UI. A netbooting environment is prepared using PXE, so after
5341 initial installation of the main server from CD, DVD or USB stick all
5342 other machines can be installed via the network.&lt;/p&gt;
5343
5344 &lt;p&gt;This is the first test release based on Wheezy (which currently is
5345 not released yet). Basically this is an updated and slightly improved
5346 version compared to the Squeeze release.&lt;/p&gt;
5347
5348 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
5349 &lt;ul&gt;
5350 &lt;li&gt;Install freemind (0.9.0) by default, and stop installing vym by
5351 default.&lt;/li&gt;
5352 &lt;li&gt;Install chromium (26.0.1410.43) by default.&lt;/li&gt;
5353 &lt;li&gt;Install goplay (0.5-1.1) to make golearn available by default.&lt;/li&gt;
5354 &lt;li&gt;Updated support for Japanese input methods, now based on
5355 ibus-anthy.&lt;/li&gt;
5356 &lt;/ul&gt;
5357
5358 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
5359 &lt;ul&gt;
5360
5361 &lt;li&gt;Switched default file system from ext3 to ext4 for speed and
5362 reliability improvements.&lt;/li&gt;
5363 &lt;li&gt;Got rid of unwanted winbind daemon and PAM setup activated because
5364 of &lt;a href=&quot;http://bugs.debian.org/706434&quot;&gt;706434&lt;/a&gt;.&lt;/li&gt;
5365 &lt;li&gt;Extended and improved the testsuite tests to detect more possible
5366 problems.&lt;/li&gt;
5367 &lt;li&gt;Corrected proxy handling to not set http_proxy to a bogus
5368 direct:// URL.&lt;/li&gt;
5369 &lt;li&gt;Corrected proxy setup for diskless workstations.&lt;/li&gt;
5370 &lt;li&gt;Corrected PXE setup to use our updated udebs during installation.&lt;/li&gt;
5371 &lt;li&gt;Made installation handling of low entropy level more robust.&lt;/li&gt;
5372 &lt;li&gt;Create larger partitions for Roaming workstations and Thin client
5373 servers, to make room for all the software installed.&lt;/li&gt;
5374 &lt;li&gt;Fix bug in Roaming workstation PAM setup, making it impossible to
5375 log in (&lt;a href=&quot;http://bugs.debian.org/706753&quot;&gt;706753&lt;/a&gt;).&lt;/li&gt;
5376 &lt;/ul&gt;
5377
5378 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
5379 &lt;ul&gt;
5380
5381 &lt;li&gt;IP resolution for the local hostname give useless IPv6 address
5382 (&lt;a href=&quot;http://bugs.debian.org/705900&quot;&gt;705900&lt;/a&gt;). Only install
5383 libnss-myhostname on roaming workstations until it is fixed.&lt;/li&gt;
5384 &lt;li&gt;DVD images are not yet ready.&lt;/li&gt;
5385 &lt;li&gt;No mass import of user account data in GOsa (ldif or csv)
5386 available yet (&lt;a href=&quot;http://bugs.debian.org/698840&quot;&gt;698840&lt;/a&gt;).&lt;/li&gt;
5387 &lt;li&gt;Missing artwork for the KDE desktop (and probably a few others).&lt;/li&gt;
5388 &lt;li&gt;KDE Debian submenu lacks icons.&lt;/li&gt;
5389 &lt;li&gt;LXDE menu lacks entry for changing GOsa password
5390 (website). Installing gosa-desktop will be an option.&lt;/li&gt;
5391 &lt;li&gt;Backup configuration via web interface is impossible due to
5392 password submission problem
5393 (&lt;a href=&quot;http://bugs.debian.org/700257&quot;&gt;700257&lt;/a&gt;).&lt;/li&gt;
5394
5395 &lt;/ul&gt;
5396
5397 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
5398
5399 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
5400 &lt;ul&gt;
5401
5402 &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;
5403 &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;
5404 &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;
5405
5406 &lt;/ul&gt;
5407
5408 &lt;p&gt;The MD5SUM of this image is: 685ed76c1aa8e44b12d3fde21faf450b&lt;/p&gt;
5409
5410 &lt;p&gt;The SHA1SUM of this image is: 6c874de157024da13e115bab29c068080a11ec4c&lt;/p&gt;
5411
5412 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
5413
5414 &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;
5415 </description>
5416 </item>
5417
5418 <item>
5419 <title>Debian, the Linux distribution of choice for LEGO designers?</title>
5420 <link>http://people.skolelinux.org/pere/blog/Debian__the_Linux_distribution_of_choice_for_LEGO_designers_.html</link>
5421 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian__the_Linux_distribution_of_choice_for_LEGO_designers_.html</guid>
5422 <pubDate>Sat, 11 May 2013 20:30:00 +0200</pubDate>
5423 <description>&lt;P&gt;In January,
5424 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/New_IRC_channel_for_LEGO_designers_using_Debian.html&quot;&gt;I
5425 announced a&lt;/a&gt; new &lt;a href=&quot;irc://irc.debian.org/%23debian-lego&quot;&gt;IRC
5426 channel #debian-lego&lt;/a&gt;, for those of us in the Debian and Linux
5427 community interested in &lt;a href=&quot;http://www.lego.com/&quot;&gt;LEGO&lt;/a&gt;, the
5428 marvellous construction system from Denmark. We also created
5429 &lt;a href=&quot;http://wiki.debian.org/LegoDesigners&quot;&gt;a wiki page&lt;/a&gt; to have
5430 a place to take notes and write down our plans and hopes. And several
5431 people showed up to help. I was very happy to see the effect of my
5432 call. Since the small start, we have a debtags tag
5433 &lt;a href=&quot;http://debtags.debian.net/search/bytag?wl=hardware::hobby:lego&quot;&gt;hardware::hobby:lego&lt;/a&gt;
5434 tag for LEGO related packages, and now count 10 packages related to
5435 LEGO and &lt;a href=&quot;http://mindstorms.lego.com/&quot;&gt;Mindstorms&lt;/a&gt;:&lt;/p&gt;
5436
5437 &lt;p&gt;&lt;table&gt;
5438 &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;
5439 &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;
5440 &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;
5441 &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;
5442 &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;
5443 &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;
5444 &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;
5445 &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;
5446 &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;
5447 &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;
5448 &lt;/table&gt;&lt;/p&gt;
5449
5450 &lt;p&gt;Some of these are available in Wheezy, and all but one are
5451 currently available in Jessie/testing. leocad is so far only
5452 available in experimental.&lt;/p&gt;
5453
5454 &lt;p&gt;If you care about LEGO in Debian, please join us on IRC and help
5455 adding the rest of the great free software tools available on Linux
5456 for LEGO designers.&lt;/p&gt;
5457 </description>
5458 </item>
5459
5460 <item>
5461 <title>Debian Wheezy is out - and Debian Edu / Skolelinux should soon follow! #newinwheezy</title>
5462 <link>http://people.skolelinux.org/pere/blog/Debian_Wheezy_is_out___and_Debian_Edu___Skolelinux_should_soon_follow___newinwheezy.html</link>
5463 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Wheezy_is_out___and_Debian_Edu___Skolelinux_should_soon_follow___newinwheezy.html</guid>
5464 <pubDate>Sun, 5 May 2013 07:40:00 +0200</pubDate>
5465 <description>&lt;p&gt;When I woke up this morning, I was very happy to see that the
5466 &lt;a href=&quot;http://www.debian.org/News/2013/20130504&quot;&gt;release announcement
5467 for Debian Wheezy&lt;/a&gt; was waiting in my mail box. This is a great
5468 Debian release, and I expect to move my machines at home over to it fairly
5469 soon.&lt;/p&gt;
5470
5471 &lt;p&gt;The new debian release contain heaps of new stuff, and one program
5472 in particular make me very happy to see included. The
5473 &lt;a href=&quot;http://scratch.mit.edu/&quot;&gt;Scratch&lt;/a&gt; program, made famous by
5474 the &lt;a href=&quot;http://www.code.org/&quot;&gt;Teach kids code&lt;/a&gt; movement, is
5475 included for the first time. Alongside similar programs like
5476 &lt;a href=&quot;http://edu.kde.org/kturtle/&quot;&gt;kturtle&lt;/a&gt; and
5477 &lt;a href=&quot;http://wiki.sugarlabs.org/go/Activities/Turtle_Art&quot;&gt;turtleart&lt;/a&gt;,
5478 it allow for visual programming where syntax errors can not happen,
5479 and a friendly programming environment for learning to control the
5480 computer. Scratch will also be included in the next release of Debian
5481 Edu.&lt;/a&gt;
5482
5483 &lt;p&gt;And now that Wheezy is wrapped up, we can wrap up the next Debian
5484 Edu/Skolelinux release too. The
5485 &lt;a href=&quot;http://lists.debian.org/debian-edu/2013/04/msg00132.html&quot;&gt;first
5486 alpha release&lt;/a&gt; went out last week, and the next should soon
5487 follow.&lt;p&gt;
5488 </description>
5489 </item>
5490
5491 <item>
5492 <title>First alpha release of Debian Edu / Skolelinux based on Debian Wheezy</title>
5493 <link>http://people.skolelinux.org/pere/blog/First_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</link>
5494 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</guid>
5495 <pubDate>Fri, 26 Apr 2013 08:30:00 +0200</pubDate>
5496 <description>&lt;p&gt;The Debian Edu / Skolelinux project is still going strong and made
5497 its first Wheezy based release today. This is the release
5498 announcement:&lt;/p&gt;
5499
5500 &lt;p&gt;&lt;strong&gt;New features for Debian Edu ~7.0.0 alpha0 released
5501 2013-04-26&lt;/strong&gt;&lt;/p&gt;
5502
5503 &lt;p&gt;This is the release notes for for Debian Edu / Skolelinux ~7.0.0
5504 edu alpha0, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
5505
5506 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
5507
5508 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
5509 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
5510 out-of-the box environment of a completely configured school
5511 network. Immediatly after installation a school server running all
5512 services needed for a school network is set up just waiting for users
5513 and machines being added via GOsa², a comfortable Web-UI. A netbooting
5514 environment is prepared using PXE, so after initial installation of
5515 the main server from CD, DVD or USB stick all other machines can be
5516 installed via the network.&lt;/p&gt;
5517
5518 &lt;p&gt;This is the first test release based on Wheezy (which currently is
5519 not released yet). Basically this is an updated and slightly improved
5520 version compared to the Squeeze release.&lt;/p&gt;
5521
5522 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
5523
5524 &lt;ul&gt;
5525 &lt;li&gt;Everything which is new in Debian Wheezy, eg:
5526 &lt;ul&gt;
5527 &lt;li&gt;Linux kernel 3.2.x&lt;/li&gt;
5528 &lt;li&gt;Desktop environments KDE &quot;Plasma&quot; 4.8.4, GNOME 3.4, and LXDE 4
5529 (KDE is installed by default; to choose GNOME or LXDE: see
5530 manual.)&lt;/li&gt;
5531 &lt;li&gt;Web browser Iceweasel 10 ESR&lt;/li&gt;
5532 &lt;li&gt;LibreOffice 3.5.4&lt;/li&gt;
5533 &lt;li&gt;LTSP 5.4.2&lt;/li&gt;
5534 &lt;li&gt;GOsa 2.7.4&lt;/li&gt;
5535 &lt;li&gt;CUPS print system 1.5.3&lt;/li&gt;
5536 &lt;li&gt;Educational toolbox GCompris 12.01&lt;/li&gt;
5537 &lt;li&gt;Music creator Rosegarden 12.04&lt;/li&gt;
5538 &lt;li&gt;Image editor Gimp 2.8.2&lt;/li&gt;
5539 &lt;li&gt;Virtual universe Celestia 1.6.1&lt;/li&gt;
5540 &lt;li&gt;Virtual stargazer Stellarium 0.11.3&lt;/li&gt;
5541 &lt;li&gt;Scratch visual programming environment 1.4.0.6&lt;/li&gt;
5542 &lt;li&gt;New version of debian-installer from Debian Wheezy, see
5543 &lt;a href=&quot;http://www.debian.org/releases/wheezy/installmanual&quot;&gt;installation
5544 manual&lt;/a&gt; for more details.&lt;/li&gt;
5545 &lt;li&gt;Debian Wheezy includes about 37000 packages available for
5546 installation.&lt;/li&gt;
5547 &lt;li&gt;More information about Debian Wheezy 7.0 is provided in the
5548 &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;
5549 &lt;/ul&gt;&lt;/li&gt;
5550 &lt;/ul&gt;
5551
5552 &lt;p&gt;&lt;strong&gt;Documentation&lt;/strong&gt;&lt;/p&gt;
5553 &lt;ul&gt;
5554 &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
5555 German, French, Italian and Danish. Partly translated versions exist
5556 for Norwegian Bokmal and Spanish.&lt;/li&gt;
5557 &lt;/ul&gt;
5558
5559 &lt;p&gt;&lt;Strong&gt;LDAP related changes&lt;/strong&gt;&lt;/p&gt;
5560 &lt;ul&gt;
5561 &lt;li&gt;Slight changes to some objects and acls to have more types to
5562 choose from when adding systems in GOsa. Now systems can be of type
5563 server, workstation, printer, terminal or netdevice.&lt;/li&gt;
5564 &lt;/ul&gt;
5565
5566 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
5567 &lt;ul&gt;
5568 &lt;li&gt;LTSP clients start as diskless workstation / thin client can be
5569 configured via command line argument -- or individually adding an
5570 entry in lts.conf or LDAP.&lt;li&gt;
5571 &lt;li&gt;GOsa gui: Now some options that seemed to be available, but are non
5572 functional, are greyed out (or are not clickable). Some tabs are
5573 completely hidden to the end user, others even to the GOsa admin.&lt;/li&gt;
5574 &lt;/ul&gt;
5575
5576 &lt;p&gt;&lt;strong&gt;Regressions&lt;/strong&gt;&lt;/p&gt;
5577 &lt;ul&gt;
5578 &lt;li&gt;No mass import of user account data in GOsa (ldif or csv) available
5579 yet.&lt;/li&gt;
5580 &lt;/ul&gt;
5581
5582 &lt;p&gt;&lt;strong&gt;No updated artwork&lt;/strong&gt;&lt;/p&gt;
5583
5584 &lt;ul&gt;
5585 &lt;li&gt;Updated artwork which is visible during installation, in the login
5586 screen and as desktop wallpaper is still missing or the same as we
5587 had for our Squeeze based release.&lt;/li&gt;
5588 &lt;/ul&gt;
5589
5590 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
5591
5592 To download the multiarch netinstall CD release you can use
5593 &lt;ul&gt;
5594 &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;
5595 &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;
5596 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/&lt;/li&gt;
5597 &lt;/ul&gt;
5598
5599 &lt;p&gt;The MD5SUM of this image is: c5e773ddafdaa4f48c409c682f598b6c&lt;/p&gt;
5600
5601 &lt;p&gt;The SHA1SUM of this image is: 25934fabb9b7d20235499a0a51f08ce6c54215f2&lt;/p&gt;
5602
5603 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
5604
5605 &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;
5606 </description>
5607 </item>
5608
5609 <item>
5610 <title>First Debian Edu / Skolelinux developer gathering in 2013 take place in Trondheim</title>
5611 <link>http://people.skolelinux.org/pere/blog/First_Debian_Edu___Skolelinux_developer_gathering_in_2013_take_place_in_Trondheim.html</link>
5612 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_Debian_Edu___Skolelinux_developer_gathering_in_2013_take_place_in_Trondheim.html</guid>
5613 <pubDate>Tue, 16 Apr 2013 15:00:00 +0200</pubDate>
5614 <description>&lt;p&gt;This years first &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux /
5615 Debian Edu&lt;/a&gt; developer gathering take place the coming weekend in Trondheim.
5616 Details about the gathering can be found
5617 &lt;a href=&quot;http://www.friprogramvareiskolen.no/Gathering/2013-04-19-21-Trondheim&quot;&gt;on
5618 the FRiSK wiki&lt;/a&gt;. The dates are 19-21th of April 2013, and online
5619 participation for those unable to make it in person is very welcome,
5620 and I plan to participate online myself as I could not leave Oslo this
5621 weekend.&lt;/p&gt;
5622
5623 &lt;p&gt;The focus of the gathering is to work on the web pages and project
5624 infrastructure, and to continue the work on the Wheezy based Debian
5625 Edu release.&lt;/p&gt;
5626
5627 &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;
5628 </description>
5629 </item>
5630
5631 <item>
5632 <title>Isenkram 0.2 finally in the Debian archive</title>
5633 <link>http://people.skolelinux.org/pere/blog/Isenkram_0_2_finally_in_the_Debian_archive.html</link>
5634 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Isenkram_0_2_finally_in_the_Debian_archive.html</guid>
5635 <pubDate>Wed, 3 Apr 2013 23:40:00 +0200</pubDate>
5636 <description>&lt;p&gt;Today the &lt;a href=&quot;http://packages.qa.debian.org/isenkram&quot;&gt;Isenkram
5637 package&lt;/a&gt; finally made it into the archive, after lingering in NEW
5638 for many months. I uploaded it to the Debian experimental suite
5639 2013-01-27, and today it was accepted into the archive.&lt;/p&gt;
5640
5641 &lt;p&gt;Isenkram is a system for suggesting to users what packages to
5642 install to work with a pluggable hardware device. The suggestion pop
5643 up when the device is plugged in. For example if a Lego Mindstorm NXT
5644 is inserted, it will suggest to install the program needed to program
5645 the NXT controller. Give it a go, and report bugs and suggestions to
5646 BTS. :)&lt;/p&gt;
5647 </description>
5648 </item>
5649
5650 <item>
5651 <title>Change the font, save the world (and save some money in the process)</title>
5652 <link>http://people.skolelinux.org/pere/blog/Change_the_font__save_the_world__and_save_some_money_in_the_process_.html</link>
5653 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Change_the_font__save_the_world__and_save_some_money_in_the_process_.html</guid>
5654 <pubDate>Tue, 26 Mar 2013 15:10:00 +0100</pubDate>
5655 <description>&lt;p&gt;Would you like to help the environment and save money at the same
5656 time, without much sacrifice? A small step could be to change the
5657 font you use when printing.&lt;/p&gt;
5658
5659 &lt;p&gt;Three years ago,
5660 &lt;a href=&quot;http://arstechnica.com/business/2010/04/last-year-printer-comparison-website/&quot;&gt;Ars
5661 Technica&lt;/a&gt; reported how the University of Wisconsin-Green Bay
5662 changed their default front from
5663 &lt;a href=&quot;http://en.wikipedia.org/wiki/Arial&quot;&gt;Arial&lt;/a&gt; to
5664 &lt;a href=&quot;http://en.wikipedia.org/wiki/Century_Gothic&quot;&gt;Century
5665 Gothic&lt;/a&gt; to save money. The Century Gothic font uses 30% less toner
5666 than Arial to print the same text. In other word, you could cut your
5667 toner costs by 30% (or actually, increase your toner supply life time
5668 by more than 30%), by simply changing the default font used in your
5669 prints.&lt;/p&gt;
5670
5671 &lt;p&gt;But it is not quite obvious how much one will save by switching.
5672 The University of Wisconsin-Green Bay said it used $100,000 per year
5673 on ink and toner cartridges, according to
5674 &lt;a href=&quot;http://www.twincities.com/ci_14833097&quot;&gt;a report from
5675 TwinCities.com&lt;/a&gt;, and expected to save between $5,000 and $10,000
5676 per year by asking staff and students to use a different font. Not
5677 all PDFs and documents are created internally, and those from external
5678 sources will most likely still use a different font. Also, the
5679 Century Gothic font is slightly wider than Arial, and thus might use
5680 more sheets of paper to print the same text, so the total saving
5681 depend on the documents printed.&lt;/p&gt;
5682
5683 &lt;p&gt;But it is definitely something to consider, if you want to reduce
5684 the amount of trash, decrease the amount of toner used in the world,
5685 and save some money in the process.&lt;/p&gt;
5686
5687 &lt;p&gt;Update 2013-04-10: If you want to know how much ink/toner could be
5688 saved when switching between fonts, Inkfarm got a
5689 &lt;a href=&quot;http://www.inkfarm.com/What-the-Font&quot;&gt;service to calculate the
5690 difference between font pairs&lt;/a&gt;. They also
5691 &lt;a href=&quot;http://www.inkfarm.com/Recommended-Ink-Saving-Fonts---&quot;&gt;recommend
5692 which fonts to use&lt;/a&gt; to save ink. Check it out. :) While updating
5693 this blog post, I also came across a blog post from InkCloners,
5694 &lt;a href=&quot;http://inkcloners.com/blog/ink-cartridges/change-fonts-to-save-ink-costs/&quot;&gt;listing
5695 the fonts they recommend&lt;/a&gt;, with Centory Gothic at the top.&lt;/p&gt;
5696 </description>
5697 </item>
5698
5699 <item>
5700 <title>Typesetting a short story using docbook for PDF, HTML and EPUB</title>
5701 <link>http://people.skolelinux.org/pere/blog/Typesetting_a_short_story_using_docbook_for_PDF__HTML_and_EPUB.html</link>
5702 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Typesetting_a_short_story_using_docbook_for_PDF__HTML_and_EPUB.html</guid>
5703 <pubDate>Sun, 24 Mar 2013 17:30:00 +0100</pubDate>
5704 <description>&lt;p&gt;A few days ago, during a discussion in
5705 &lt;a href=&quot;http://www.efn.no/&quot;&gt;EFN&lt;/a&gt; about interesting books to read
5706 about copyright and the data retention directive, a suggestion to read
5707 the 1968 short story Kodémus by
5708 &lt;a href=&quot;http://web2.gyldendal.no/toraage/&quot;&gt;Tore Åge Bringsværd&lt;/a&gt;
5709 came up. The text was only available in old paper books, and thus not
5710 easily available for current and future generations. Some of the
5711 people participating in the discussion contacted the author, and
5712 reported back 2013-03-19 that the author was OK with releasing the
5713 short story using a &lt;a href=&quot;http://www.creativecommons.org/&quot;&gt;Creative
5714 Commons&lt;/a&gt; license. The text was quickly scanned and OCR-ed, and we
5715 were ready to start on the editing and typesetting.&lt;/p&gt;
5716
5717 &lt;p&gt;As I already had some experience formatting text in my project to
5718 provide a Norwegian version of the Free Culture book by Lawrence
5719 Lessig, I chipped in and set up a
5720 &lt;a href=&quot;http://www.docbook.org/&quot;&gt;DocBook&lt;/a&gt; processing framework to
5721 generate PDF, HTML and EPUB version of the short story. The tools to
5722 transform DocBook to different formats are already in my Linux
5723 distribution of choice, &lt;a href=&quot;http://www.debian.org/&quot;&gt;Debian&lt;/a&gt;, so
5724 all I had to do was to use the
5725 &lt;a href=&quot;http://dblatex.sourceforge.net/&quot;&gt;dblatex&lt;/a&gt;,
5726 &lt;a href=&quot;http://docbook.sourceforge.net/release/xsl/current/epub/README&quot;&gt;dbtoepub&lt;/a&gt;
5727 and &lt;a href=&quot;https://fedorahosted.org/xmlto/&quot;&gt;xmlto&lt;/a&gt; tools to do the
5728 conversion. After a few days, we decided to replace dblatex with
5729 xsltproc/fop (aka
5730 &lt;a href=&quot;http://wiki.docbook.org/DocBookXslStylesheets&quot;&gt;docbook-xsl&lt;/a&gt;),
5731 to get the copyright information to show up in the PDF and to get a
5732 nicer &amp;lt;variablelist&amp;gt; typesetting, but that is just a minor
5733 technical detail.&lt;/p&gt;
5734
5735 &lt;p&gt;There were a few challenges, of course. We want to typeset the
5736 short story to look like the original, and that require fairly good
5737 control over the layout. The original short story have three
5738 parts/scenes separated by a single horizontally centred star (*), and
5739 the paragraphs do not contain only flowing text, but dialogs and text
5740 that started on a new line in the middle of the paragraph.&lt;/p&gt;
5741
5742 &lt;p&gt;I initially solved the first challenge by using a paragraph with a
5743 single star in it, ie &amp;lt;para&amp;gt;*&amp;lt;/para&amp;gt;, but it made sure a
5744 placeholder indicated where the scene shifted. This did not look too
5745 good without the centring. The next approach was to create a new
5746 preprocessor directive &amp;lt;?newscene?&amp;gt;, mapping to &quot;&amp;lt;hr/&amp;gt;&quot;
5747 for HTML and &quot;&amp;lt;fo:block text-align=&quot;center&quot;&amp;gt;&amp;lt;fo:leader
5748 leader-pattern=&quot;rule&quot; rule-thickness=&quot;0.5pt&quot;/&amp;gt;&amp;lt;/fo:block&amp;gt;&quot;
5749 for FO/PDF output (did not try to implement this in dblatex, as we had
5750 switched at this time). The HTML XSL file looked like this:&lt;/p&gt;
5751
5752 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
5753 &amp;lt;?xml version=&#39;1.0&#39;?&amp;gt;
5754 &amp;lt;xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&#39;1.0&#39;&amp;gt;
5755 &amp;lt;xsl:template match=&quot;processing-instruction(&#39;newscene&#39;)&quot;&amp;gt;
5756 &amp;lt;hr/&amp;gt;
5757 &amp;lt;/xsl:template&amp;gt;
5758 &amp;lt;/xsl:stylesheet&amp;gt;
5759 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
5760
5761 &lt;p&gt;And the FO/PDF XSL file looked like this:&lt;/p&gt;
5762
5763 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
5764 &amp;lt;?xml version=&#39;1.0&#39;?&amp;gt;
5765 &amp;lt;xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&#39;1.0&#39;&amp;gt;
5766 &amp;lt;xsl:template match=&quot;processing-instruction(&#39;newscene&#39;)&quot;&amp;gt;
5767 &amp;lt;fo:block text-align=&quot;center&quot;&amp;gt;
5768 &amp;lt;fo:leader leader-pattern=&quot;rule&quot; rule-thickness=&quot;0.5pt&quot;/&amp;gt;
5769 &amp;lt;/fo:block&amp;gt;
5770 &amp;lt;/xsl:template&amp;gt;
5771 &amp;lt;/xsl:stylesheet&amp;gt;
5772 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
5773
5774 &lt;p&gt;Finally, I came across the &amp;lt;bridgehead&amp;gt; tag, which seem to be
5775 a good fit for the task at hand, and I replaced &amp;lt;?newscene?&amp;gt;
5776 with &amp;lt;bridgehead&amp;gt;*&amp;lt;/bridgehead&amp;gt;. It isn&#39;t centred, but we
5777 can fix it with some XSL rule if the current visual layout isn&#39;t
5778 enough.&lt;/p&gt;
5779
5780 &lt;p&gt;I did not find a good DocBook compliant way to solve the
5781 linebreak/paragraph challenge, so I ended up creating a new processor
5782 directive &amp;lt;?linebreak?&amp;gt;, mapping to &amp;lt;br/&amp;gt; in HTML, and
5783 &amp;lt;fo:block/&amp;gt; in FO/PDF. I suspect there are better ways to do
5784 this, and welcome ideas and patches on github. The HTML XSL file now
5785 look like this:&lt;/p&gt;
5786
5787 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
5788 &amp;lt;?xml version=&#39;1.0&#39;?&amp;gt;
5789 &amp;lt;xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&#39;1.0&#39;&amp;gt;
5790 &amp;lt;xsl:template match=&quot;processing-instruction(&#39;linebreak)&quot;&amp;gt;
5791 &amp;lt;br/&amp;gt;
5792 &amp;lt;/xsl:template&amp;gt;
5793 &amp;lt;/xsl:stylesheet&amp;gt;
5794 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
5795
5796 &lt;p&gt;And the FO/PDF XSL file looked like this:&lt;/p&gt;
5797
5798 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
5799 &amp;lt;?xml version=&#39;1.0&#39;?&amp;gt;
5800 &amp;lt;xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&#39;1.0&#39;
5801 xmlns:fo=&quot;http://www.w3.org/1999/XSL/Format&quot;&amp;gt;
5802 &amp;lt;xsl:template match=&quot;processing-instruction(&#39;linebreak)&quot;&amp;gt;
5803 &amp;lt;fo:block/&amp;gt;
5804 &amp;lt;/xsl:template&amp;gt;
5805 &amp;lt;/xsl:stylesheet&amp;gt;
5806 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
5807
5808 &lt;p&gt;One unsolved challenge is our wish to expose different ISBN numbers
5809 per publication format, while keeping all of them in some conditional
5810 structure in the DocBook source. No idea how to do this, so we ended
5811 up listing all the ISBN numbers next to their format in the colophon
5812 page.&lt;/p&gt;
5813
5814 &lt;p&gt;If you want to check out the finished result, check out the
5815 &lt;a href=&quot;https://github.com/sickel/kodemus&quot;&gt;source repository at
5816 github&lt;/a&gt;
5817 (&lt;a href=&quot;https://github.com/EFN/kodemus&quot;&gt;future/new/official
5818 repository&lt;/a&gt;). We expect it to be ready and announced in a few
5819 days.&lt;/p&gt;
5820 </description>
5821 </item>
5822
5823 <item>
5824 <title>Skolelinux 6 got a video review from Pcwizz</title>
5825 <link>http://people.skolelinux.org/pere/blog/Skolelinux_6_got_a_video_review_from_Pcwizz.html</link>
5826 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_6_got_a_video_review_from_Pcwizz.html</guid>
5827 <pubDate>Sun, 17 Mar 2013 10:30:00 +0100</pubDate>
5828 <description>&lt;p&gt;Via
5829 &lt;a href=&quot;https://twitter.com/pcwizz/status/313044373262716930&quot;&gt;twitter&lt;/a&gt;
5830 I just discovered that &lt;a href=&quot;http://pcwizz.net/&quot;&gt;Pcwizz&lt;/a&gt; have
5831 done a &lt;a href=&quot;http://www.youtube.com/watch?v=wPzTZ61Pcuc&quot;&gt;video
5832 review&lt;/a&gt; on Youtube of &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux
5833 / Debian Edu&lt;/a&gt; version 6. He installed the standalone profile and
5834 the video show a walk-through of of the menu content, demonstration of
5835 a few programs and his view of our distribution.&lt;/p&gt;
5836
5837 &lt;p&gt;There is also some really nice quotes (transcribed by me, might
5838 have heard wrong). While looking thought the Graphics menu:&lt;/p&gt;
5839
5840 &lt;blockquote&gt;
5841 &quot;Basically everything you ever need in a school environment.&quot;
5842 &lt;/blockquote&gt;
5843
5844 &lt;p&gt;And as a general evaluation of the entire distribution:&lt;/p&gt;
5845
5846 &lt;blockquote&gt;
5847 &quot;So, yeah, a bit bloated. It kept all the Debian stuff in there, just
5848 to keep it nice and GNU. So, I do not want to go on about it, but
5849 lets give it 7 out of 10. I am not going to use it. That is because
5850 I am not deploying a school network. There may be some mythical
5851 feature to help you deploy Skolelinux on a school network.&quot;
5852 &lt;/blockquote&gt;
5853
5854 &lt;p&gt;To bad he did not test the server profile, and discovered the PXE
5855 installation option. It make it possible to install only the main
5856 server from CD, and the rest of the machines via the net, and might be
5857 considered the mythical feature he talk about. :)&lt;/p&gt;
5858
5859 &lt;p&gt;While looking through the menus, there is also this funny comment
5860 about the part of the K menu generated from the Debian menu subsystem:
5861
5862 &lt;blockquote&gt;
5863 &quot;[The K menu] have a special Debian section for software that no-one
5864 is going to look at, because it contain lots of junky stuff that you
5865 actually don&#39;t need in the education distribution, but have just been
5866 included because it isn&#39;t stripped out for some reason.&quot;
5867 &lt;/blockquote&gt;
5868
5869 &lt;p&gt;I guess it is yet another argument for merging the Debian menu and
5870 Gnome/KDE desktop menu entries into
5871 &lt;a href=&quot;http://wiki.debian.org/Proposals/DebianMenuUsingDesktopEntries&quot;&gt;one
5872 consistent menu system&lt;/a&gt; instead of two incomplete and partly
5873 inconsistent menu systems.&lt;/p&gt;
5874
5875 &lt;p&gt;The entire video is available below for those accepting iframe
5876 embedding:&lt;/p&gt;
5877
5878 &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;
5879 </description>
5880 </item>
5881
5882 <item>
5883 <title>First Skolelinux / Debian Edu Squeeze update released</title>
5884 <link>http://people.skolelinux.org/pere/blog/First_Skolelinux___Debian_Edu_Squeeze_update_released.html</link>
5885 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_Skolelinux___Debian_Edu_Squeeze_update_released.html</guid>
5886 <pubDate>Fri, 8 Mar 2013 09:30:00 +0100</pubDate>
5887 <description>&lt;p&gt;Last Sunday, 2013-03-03,, Holger Levsen announced the first update
5888 of &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux / Debian Edu&lt;/a&gt;
5889 based on Debian Squeeze. This is the first update since
5890 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/03/msg00001.html&quot;&gt;the
5891 initial release 2012-03-11&lt;/a&gt;. This is the
5892 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2013/03/msg00000.html&quot;&gt;release
5893 announcement email from Holger&lt;/a&gt;:&lt;/p&gt;
5894
5895 &lt;blockquote&gt;&lt;p&gt;Hi,&lt;/p&gt;
5896
5897 &lt;p&gt;it&#39;s my pleasure to announce the immediate availability of Debian
5898 Edu 6.0.7+r1 (&quot;Debian Edu Squeeze&quot;).&lt;/p&gt;
5899
5900 &lt;p&gt;Debian Edu 6.0.7+r1 is an incremental update to Debian Edu
5901 6.0.4+r0, containing all the changes between Debian 6.0.4 and 6.0.7 as
5902 well Debian Edu specific bugfixes and enhancements. See below (in this
5903 mail) for the full list of (edu) changes. Please see
5904 &lt;a href=&quot;http://www.debian.org/News/2012/20120311&quot;&gt;http://www.debian.org/News/2012/20120311&lt;/a&gt;
5905 for more information on &quot;Debian Edu Squeeze&quot;.&lt;/p&gt;
5906
5907 &lt;p&gt;Images are available for download at
5908 &lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/&lt;/a&gt;&lt;/p&gt;
5909
5910 &lt;p&gt;md5sums:
5911 &lt;br&gt;1fe79eb4f0f9ae1c58fc318e26cc1e2e debian-edu-6.0.7+r1-CD.iso
5912 &lt;br&gt;a6ddd924a8bd9a1b5ca122e8fe1c34ec debian-edu-6.0.7+r1-DVD.iso
5913 &lt;br&gt;ac6c72cd7925ccec51bfbf58e2a7c69c debian-edu-6.0.7+r1-source-DVD.iso&lt;/p&gt;
5914
5915 &lt;p&gt;sha1sums:
5916 &lt;br&gt;a4b58233b672a99c7df8dc24fb6de3327654a5c3 debian-edu-6.0.7+r1-CD.iso
5917 &lt;br&gt;9b524915e0ff2aa793f13d93123e5bd2bab2dbaa debian-edu-6.0.7+r1-DVD.iso
5918 &lt;br&gt;43997614893fc5e9e59ad6ce066b05d07fd836fa debian-edu-6.0.7+r1-source-DVD.iso&lt;/p&gt;
5919
5920 &lt;p&gt;These images are suitable for amd64+i386.&lt;/p&gt;
5921
5922 &lt;p&gt;Changes for Debian Edu 6.0.7+r1 Codename &quot;Squeeze&quot;, released
5923 2013-03-03:&lt;/p&gt;
5924
5925 &lt;ul&gt;
5926 &lt;li&gt;sitesummary was updated from 0.1.3 to 0.1.8
5927 &lt;ul&gt;
5928 &lt;li&gt;Make Nagios configuration more robust and efficient&lt;/li&gt;
5929 &lt;li&gt;Comply with 3.X kernel&lt;/li&gt;
5930 &lt;/ul&gt;&lt;/li&gt;
5931 &lt;li&gt;debian-edu-doc from 1.4~20120310~6.0.4+r0 to 1.4~20130228~6.0.7+r1
5932 &lt;ul&gt;
5933 &lt;li&gt;Minor updates from the wiki&lt;/li&gt;
5934 &lt;li&gt;Danish translation now complete&lt;/li&gt;
5935 &lt;/ul&gt;&lt;/li&gt;
5936 &lt;li&gt;debian-edu-config from 1.453 to 1.455
5937 &lt;ul&gt;
5938 &lt;li&gt;Fix /etc/hosts for LTSP diskless workstations. Closes: #699880&lt;/li&gt;
5939 &lt;li&gt;Make ltsp_local_mount script work for multiple devices.&lt;/li&gt;
5940 &lt;li&gt;Correct Kerberos user policy: don&#39;t expire password after 2 days.
5941 Closes: #664596&lt;/li&gt;
5942 &lt;li&gt;Handle &#39;#&#39; characters in the root or first users password.
5943 Closes: #664976&lt;/li&gt;
5944 &lt;li&gt;Fixes for gosa-sync:
5945 &lt;ul&gt;
5946 &lt;li&gt;Don&#39;t fail if password contains &quot;&lt;/li&gt;
5947 &lt;li&gt;Don&#39;t disclose new password string in syslog&lt;/li&gt;
5948 &lt;/ul&gt;&lt;/li&gt;
5949 &lt;li&gt;Fixes for gosa-create:
5950 &lt;ul&gt;
5951 &lt;li&gt;Invalidate libnss cache before applying changes&lt;/li&gt;
5952 &lt;li&gt;Multiple failures during mass user import into GOsa²&lt;/li&gt;
5953 &lt;li&gt;gosa-netgroups plugin: don&#39;t erase entries of attribute type
5954 &quot;memberNisNetgroup&quot;. Closes: #687256&lt;/li&gt;
5955 &lt;li&gt;First user now uses the same Kerberos policy as all other users&lt;/li&gt;
5956 &lt;/ul&gt;&lt;/li&gt;
5957 &lt;li&gt;Add Danish web page&lt;/li&gt;
5958 &lt;/ul&gt;
5959 &lt;li&gt;debian-edu-install from 1.528 to 1.530
5960 &lt;ul&gt;
5961 &lt;li&gt;Improve preseeding support and documentation&lt;/li&gt;
5962 &lt;/ul&gt;&lt;/li&gt;
5963 &lt;/ul&gt;
5964
5965 &lt;p&gt;End-user documentation in English is available at
5966 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze/&quot;&gt;http://wiki.debian.org/DebianEdu/Documentation/Squeeze/&lt;/a&gt;
5967 - translations to French, Italian, Danish and German are available in
5968 the debian-edu-doc package. (Other languages could use your help!)&lt;/p&gt;
5969
5970 &lt;p&gt;If you want to contribute to Debian Edu, please join our
5971 mailinglist
5972 &lt;a href=&quot;http://lists.debian.org/debian-edu/&quot;&gt;debian-edu@lists.debian.org&lt;/a&gt;!
5973 &lt;/p&gt;&lt;/blockquote&gt;
5974
5975 &lt;p&gt;I am very happy to see the fruits of a year of hard work. :)&lt;/p&gt;
5976 </description>
5977 </item>
5978
5979 <item>
5980 <title>Frikanalen - Complete TV station organised using the web</title>
5981 <link>http://people.skolelinux.org/pere/blog/Frikanalen___Complete_TV_station_organised_using_the_web.html</link>
5982 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Frikanalen___Complete_TV_station_organised_using_the_web.html</guid>
5983 <pubDate>Sun, 3 Mar 2013 07:15:00 +0100</pubDate>
5984 <description>&lt;p&gt;Do you want to set up your own TV station, schedule videos and
5985 broadcast them on the air? Using free software? With video on demand
5986 support using
5987 &lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;free and
5988 open standards&lt;/a&gt;? Included a web based video stream as well? And
5989 administrate it all in your web browser from anywhere in the world? A
5990 few years now the Norwegian public access TV-channel
5991 &lt;a href=&quot;http://www.frikanalen.no/&quot;&gt;Frikanalen&lt;/a&gt; have been building a
5992 system to do just this. The source code for the solution is licensed
5993 using the GNU LGPL, and
5994 &lt;a href=&quot;http://github.com/Frikanalen&quot;&gt;available from github&lt;/a&gt;.&lt;/p&gt;
5995
5996 &lt;p&gt;The idea is simple. You upload a video file over the web, and
5997 attach meta information to the file. You select a time slot in the
5998 program schedule, and when the time come it is played on the air and
5999 in the web stream. It is also made available in a video on demand
6000 solution for anyone to see it also outside its scheduled time. All
6001 you need to run a TV station - using your web browser.&lt;/p&gt;
6002
6003 &lt;p&gt;There are several parts to this web based solution. I&#39;ll mention
6004 the three most important ones. The first part is the database of
6005 videos and the schedule. This is written in Django and include a REST
6006 API. The current database is SQLite, but the plan is to migrate it to
6007 PostgreSQL. At the moment this system can be tested on
6008 &lt;a href=&quot;http://beta.frikanalen.tv/&quot;&gt;beta.frikanalen.tv&lt;/a&gt;. The
6009 second part is the video playout, taking the schedule information from
6010 the database and providing a video stream to broadcast. This is done
6011 using &lt;a href=&quot;http://www.casparcg.com/&quot;&gt;CasparCG from SVT&lt;/a&gt; and
6012 &lt;a href=&quot;http://www.mltframework.org/&quot;&gt;Media Lovin&#39; Toolkit&lt;/a&gt;. Video
6013 signal distribution is handled using
6014 &lt;a href=&quot;http://www.ob-encoder.com/&quot;&gt;Open Broadcast Encoder&lt;/a&gt;. The
6015 third part is the converter, handling the transformation of uploaded
6016 video files to a format useful for broadcasting, streaming and video
6017 on demand. It is still very much work in progress, so it is not yet
6018 decided what it will end up using. Note that the source of the latter
6019 two parts are not yet pushed to github. The lead author want to clean
6020 them up a bit more first.&lt;/p&gt;
6021
6022 &lt;p&gt;The development is coordinated on the
6023 &lt;a href=&quot;irc://irc.freenode.net/%23frikanalen&quot;&gt;#frikanalen IRC
6024 channel&lt;/a&gt; (irc.freenode.net), and discussed on
6025 &lt;a href=&quot;http://lists.nuug.no/mailman/listinfo/frikanalen&quot;&gt;the
6026 frikanalen mailing list&lt;/a&gt;. The lead developer is Benjamin Bruheim
6027 (phed on IRC). Anyone is welcome to participate in the
6028 development.&lt;/p&gt;
6029 </description>
6030 </item>
6031
6032 <item>
6033 <title>Dr. Richard Stallman, founder of Free Software Foundation, give a talk in Oslo March 1st 2013</title>
6034 <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>
6035 <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>
6036 <pubDate>Wed, 27 Feb 2013 20:20:00 +0100</pubDate>
6037 <description>&lt;p&gt;Dr. &lt;a href=&quot;http://www.stallman.org/&quot;&gt;Richard Stallman&lt;/a&gt;,
6038 founder of &lt;a href=&quot;http://www.fsf.org/&quot;&gt;Free Software Foundation&lt;/a&gt;,
6039 is giving &lt;a href=&quot;http://www.nuug.no/aktiviteter/20130301-rms/&quot;&gt;a
6040 talk in Oslo March 1st 2013 17:00 to 19:00&lt;/a&gt;. The event is public
6041 and organised by &lt;a href=&quot;&quot;&gt;Norwegian Unix Users Group (NUUG)&lt;/a&gt;
6042 (where I am the chair of the board) and
6043 &lt;a href=&quot;http://www.friprog.no/&quot;&gt;The Norwegian Open Source Competence
6044 Center&lt;/a&gt;. The title of the talk is «The Free Software Movement and
6045 GNU», with this description:
6046
6047 &lt;p&gt;&lt;blockquote&gt;
6048 The Free Software Movement campaigns for computer users&#39; freedom to
6049 cooperate and control their own computing. The Free Software Movement
6050 developed the GNU operating system, typically used together with the
6051 kernel Linux, specifically to make these freedoms possible.
6052 &lt;/blockquote&gt;&lt;/p&gt;
6053
6054 &lt;p&gt;The meeting is open for everyone. Due to space limitations, the
6055 doors opens for NUUG members at 16:15, and everyone else at 16:45. I
6056 am really curious how many will show up. See
6057 &lt;a href=&quot;http://www.nuug.no/aktiviteter/20130301-rms/&quot;&gt;the event
6058 page&lt;/a&gt; for the location details.&lt;/p&gt;
6059 </description>
6060 </item>
6061
6062 <item>
6063 <title>Frikart - Free Garmin maps for European countries based on OpenStreetmap</title>
6064 <link>http://people.skolelinux.org/pere/blog/Frikart___Free_Garmin_maps_for_European_countries_based_on_OpenStreetmap.html</link>
6065 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Frikart___Free_Garmin_maps_for_European_countries_based_on_OpenStreetmap.html</guid>
6066 <pubDate>Fri, 15 Feb 2013 09:30:00 +0100</pubDate>
6067 <description>&lt;p&gt;If you, like me, want an updated a map for your Garmin GPS, there is
6068 now a great source of free maps available from
6069 &lt;a href=&quot;http://www.frikart.no/garmin/index.html&quot;&gt;Frikart&lt;/a&gt;. To
6070 download a map, just click on the country you are interested in, and
6071 download the map type you want. There are 8 different maps available,
6072 using different colours and data selection. Pick one of Roadmap, Topo
6073 Summer, Topo Winter, Roadmap II, Topo Summer II, Topo Winter II,
6074 &quot;Trails - overlay map&quot; and &quot;Cross country - overlay map&quot; (see the web
6075 page for descriptions).&lt;/p&gt;
6076
6077 &lt;p&gt;The maps are updated weekly, so if you find something wrong in the
6078 map you can just edit the
6079 &lt;a href=&quot;http://www.openstreetmap.org/&quot;&gt;OpenStreetmap&lt;/a&gt; map source
6080 (anyone can contribute) and fetch a fixed map a week later. :)&lt;/p&gt;
6081 </description>
6082 </item>
6083
6084 <item>
6085 <title>&quot;Electronic&quot; paper invoices - using vCard in a QR code</title>
6086 <link>http://people.skolelinux.org/pere/blog/_Electronic__paper_invoices___using_vCard_in_a_QR_code.html</link>
6087 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/_Electronic__paper_invoices___using_vCard_in_a_QR_code.html</guid>
6088 <pubDate>Tue, 12 Feb 2013 10:30:00 +0100</pubDate>
6089 <description>&lt;p&gt;Here in Norway, electronic invoices are spreading, and the
6090 &lt;a href=&quot;http://www.anskaffelser.no/e-handel/faktura&quot;&gt;solution promoted
6091 by the Norwegian government&lt;/a&gt; require that invoices are sent through
6092 one of the approved facilitators, and it is not possible to send
6093 electronic invoices without an agreement with one of these
6094 facilitators. This seem like a needless limitation to be able to
6095 transfer invoice information between buyers and sellers. My preferred
6096 solution would be to just transfer the invoice information directly
6097 between seller and buyer, for example using SMTP, or some HTTP based
6098 protocol like REST or SOAP. But this might also be overkill, as the
6099 &quot;electronic&quot; information can be transferred using paper invoices too,
6100 using a simple bar code. My bar code encoding of choice would be QR
6101 codes, as this encoding can be read by any smart phone out there. The
6102 content of the code could be anything, but I would go with
6103 &lt;a href=&quot;http://en.wikipedia.org/wiki/VCard&quot;&gt;the vCard format&lt;/a&gt;, as
6104 it too is supported by a lot of computer equipment these days.&lt;/p&gt;
6105
6106 &lt;p&gt;The vCard format support extentions, and the invoice specific
6107 information can be included using such extentions. For example an
6108 invoice from SLX Debian Labs (picked because we
6109 &lt;a href=&quot;http://www.linuxiskolen.no/slxdebianlabs/donations.html&quot;&gt;ask
6110 for donations to the Debian Edu project&lt;/a&gt; and thus have bank account
6111 information publicly available) for NOK 1000.00 could have these extra
6112 fields:&lt;/p&gt;
6113
6114 &lt;p&gt;&lt;pre&gt;
6115 X-INVOICE-NUMBER:1
6116 X-INVOICE-AMOUNT:NOK1000.00
6117 X-INVOICE-KID:123412341234
6118 X-INVOICE-MSG:Donation to Debian Edu
6119 X-BANK-ACCOUNT-NUMBER:16040884339
6120 X-BANK-IBAN-NUMBER:NO8516040884339
6121 X-BANK-SWIFT-NUMBER:DNBANOKKXXX
6122 &lt;/pre&gt;&lt;/p&gt;
6123
6124 &lt;p&gt;The X-BANK-ACCOUNT-NUMBER field was proposed in a stackoverflow
6125 answer regarding
6126 &lt;a href=&quot;http://stackoverflow.com/questions/10045664/storing-bank-account-in-vcard-file&quot;&gt;how
6127 to put bank account information into a vCard&lt;/a&gt;. For payments in
6128 Norway, either X-INVOICE-KID (payment ID) or X-INVOICE-MSG could be
6129 used to pass on information to the seller when paying the invoice.&lt;/p&gt;
6130
6131 &lt;p&gt;The complete vCard could look like this:&lt;/p&gt;
6132
6133 &lt;p&gt;&lt;pre&gt;
6134 BEGIN:VCARD
6135 VERSION:2.1
6136 ORG:SLX Debian Labs Foundation
6137 ADR;WORK:;;Gunnar Schjelderups vei 29D;OSLO;;0485;Norway
6138 URL;WORK:http://www.linuxiskolen.no/slxdebianlabs/
6139 EMAIL;PREF;INTERNET:sdl-styret@rt.nuug.no
6140 REV:20130212T095000Z
6141 X-INVOICE-NUMBER:1
6142 X-INVOICE-AMOUNT:NOK1000.00
6143 X-INVOICE-MSG:Donation to Debian Edu
6144 X-BANK-ACCOUNT-NUMBER:16040884339
6145 X-BANK-IBAN-NUMBER:NO8516040884339
6146 X-BANK-SWIFT-NUMBER:DNBANOKKXXX
6147 END:VCARD
6148 &lt;/pre&gt;&lt;/p&gt;
6149
6150 &lt;p&gt;The resulting QR code created using
6151 &lt;a href=&quot;http://fukuchi.org/works/qrencode/&quot;&gt;qrencode&lt;/a&gt; would look
6152 like this, and should be readable (and thus checkable) by any smart
6153 phone, or for example the &lt;a href=&quot;http://zbar.sourceforge.net/&quot;&gt;zbar
6154 bar code reader&lt;/a&gt; and feed right into the approval and accounting
6155 system.&lt;/p&gt;
6156
6157 &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;
6158
6159 &lt;p&gt;The extension fields will most likely not show up in any normal
6160 vCard reader, so those parts would have to go directly into a system
6161 handling invoices. I am a bit unsure how vCards without name parts
6162 are handled, but a simple test indicate that this work just fine.&lt;/p&gt;
6163
6164 &lt;p&gt;&lt;strong&gt;Update 2013-02-12 11:30&lt;/strong&gt;: Added KID to the proposal
6165 based on feedback from Sturle Sunde.&lt;/p&gt;
6166 </description>
6167 </item>
6168
6169 <item>
6170 <title>Sleep until morning - home automation for the kids</title>
6171 <link>http://people.skolelinux.org/pere/blog/Sleep_until_morning___home_automation_for_the_kids.html</link>
6172 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Sleep_until_morning___home_automation_for_the_kids.html</guid>
6173 <pubDate>Sun, 10 Feb 2013 12:50:00 +0100</pubDate>
6174 <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;
6175
6176 &lt;p&gt;With kids in the house, one challenge is getting them to sleep
6177 during the night and wake up when it is morning. I mean, when I
6178 believe it is morning, and not two hours earlier. In our household we
6179 have decided that 07:00 is the turning point, but getting the kids to
6180 sleep until 07:00 is a small challenge every day. They have adapted
6181 quite well, and rarely wake up at 05:00 any more, but some times wake
6182 up at times like 05:50, 06:15, 06:30 or 06:45, and it is hard to put
6183 the awake one to bed again without disturbing and waking the rest.
6184 And I understand perfectly well that they fail to sleep until 07:00
6185 some times, as there is no way for them to know if it is before or
6186 after the magic moment without coming and asking us parents.&lt;/p&gt;
6187
6188 &lt;p&gt;But yesterday I came up with a method to solve this problem. It
6189 involve home automation. A few years ago I bought a
6190 &lt;a href=&quot;http://www.telldus.se/products/tellstick&quot;&gt;Tellstick&lt;/a&gt; and RF
6191 switches at the local &lt;a href=&quot;http://www.clasohlson.com/&quot;&gt;Clas
6192 Ohlson&lt;/a&gt; shop, allowing me to control lights and other electrical
6193 gadgets using my Linux server. When I moved from the old flat to a
6194 small house, I put away all this equipment as most of the lighting in
6195 the house was not using wall sockets and thus not easy to connect to
6196 the gadgets I had. But recently I bought a
6197 &lt;a href=&quot;http://www.telldus.se/products/tellstick_net&quot;&gt;Tellstick
6198 Net&lt;/a&gt; to be able to read sensor input as well as control power
6199 sockets. I want to control ovens in the basement to avoid the pipes
6200 to freeze, and monitor the humidity to detect flooding. The default
6201 setup for Tellstick Net is to be controlled by the vendor web service,
6202 which to me is a security problem, but it is also possible to build
6203 ones own
6204 &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
6205 with local access&lt;/A&gt; instead of being controlled by a Swedish
6206 company, thanks to the release of the GPL licensed firmware source
6207 code. I plan to get that running before I let it control anything
6208 important. But while working on this, one idea to make it easier for
6209 the kids came to me yesterday. We can set up a night light controlled
6210 by the computer, and turn it automatically on at 07:00. The kids can
6211 then check the light in the morning to know if they are supposed to
6212 get up or not. They joined me in setting everything up, and I
6213 repeated the concept several times before bed times to make sure they
6214 remembered to check the light before getting up in the morning.&lt;/p&gt;
6215
6216 &lt;p&gt;We tested it this morning, and all the kids stayed in bed until
6217 after 07:00, and every one of them commented on the fact that the
6218 &quot;morning light&quot; was turned on and signalled that the morning had
6219 arrived. So this look like a success, and I am excited to see how
6220 this develops the next few days. :) I really hope this can allow us
6221 all to sleep a bit longer in the morning.&lt;/p&gt;
6222
6223 &lt;p&gt;A nice advantage of this setup is that we can remote control when
6224 to tell the kids to get up. We do not have to wait until 07:00, and
6225 can also delay it if we want to.&lt;/p&gt;
6226 </description>
6227 </item>
6228
6229 <item>
6230 <title>Bitcoin GUI now available from Debian/unstable (and Ubuntu/raring)</title>
6231 <link>http://people.skolelinux.org/pere/blog/Bitcoin_GUI_now_available_from_Debian_unstable__and_Ubuntu_raring_.html</link>
6232 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Bitcoin_GUI_now_available_from_Debian_unstable__and_Ubuntu_raring_.html</guid>
6233 <pubDate>Sat, 2 Feb 2013 09:00:00 +0100</pubDate>
6234 <description>&lt;p&gt;My
6235 &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
6236 bitcoin related blog post&lt;/a&gt; mentioned that the new
6237 &lt;a href=&quot;http://packages.qa.debian.org/bitcoin&quot;&gt;bitcoin package&lt;/a&gt; for
6238 Debian was waiting in NEW. It was accepted by the Debian ftp-masters
6239 2013-01-19, and have been available in unstable since then. It was
6240 automatically copied to Ubuntu, and is available in their Raring
6241 version too.&lt;/p&gt;
6242
6243 &lt;p&gt;But there is a strange problem with the build that block this new
6244 version from being available on the i386 and kfreebsd-i386
6245 architectures. For some strange reason, the autobuilders in Debian
6246 for these architectures fail to run the test suite on these
6247 architectures (&lt;a href=&quot;http://bugs.debian.org/672524&quot;&gt;BTS #672524&lt;/a&gt;).
6248 We are so far unable to reproduce it when building it manually, and
6249 no-one have been able to propose a fix. If you got an idea what is
6250 failing, please let us know via the BTS.&lt;/p&gt;
6251
6252 &lt;p&gt;One feature that is annoying me with of the bitcoin client, because
6253 I often run low on disk space, is the fact that the client will exit
6254 if it run short on space (&lt;a href=&quot;http://bugs.debian.org/696715&quot;&gt;BTS
6255 #696715&lt;/a&gt;). So make sure you have enough disk space when you run
6256 it. :)&lt;/p&gt;
6257
6258 &lt;p&gt;As usual, if you use bitcoin and want to show your support of my
6259 activities, please send Bitcoin donations to my address
6260 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&amp;label=PetterReinholdtsenBlog&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
6261 </description>
6262 </item>
6263
6264 <item>
6265 <title>Welcome to the world, Isenkram!</title>
6266 <link>http://people.skolelinux.org/pere/blog/Welcome_to_the_world__Isenkram_.html</link>
6267 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Welcome_to_the_world__Isenkram_.html</guid>
6268 <pubDate>Tue, 22 Jan 2013 22:00:00 +0100</pubDate>
6269 <description>&lt;p&gt;Yesterday, I
6270 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/First_prototype_ready_making_hardware_easier_to_use_in_Debian.html&quot;&gt;asked
6271 for testers&lt;/a&gt; for my prototype for making Debian better at handling
6272 pluggable hardware devices, which I
6273 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Lets_make_hardware_dongles_easier_to_use_in_Debian.html&quot;&gt;set
6274 out to create&lt;/a&gt; earlier this month. Several valuable testers showed
6275 up, and caused me to really want to to open up the development to more
6276 people. But before I did this, I want to come up with a sensible name
6277 for this project. Today I finally decided on a new name, and I have
6278 renamed the project from hw-support-handler to this new name. In the
6279 process, I moved the source to git and made it available as a
6280 &lt;a href=&quot;http://anonscm.debian.org/gitweb/?p=collab-maint/isenkram.git&quot;&gt;collab-maint&lt;/a&gt;
6281 repository in Debian. The new name? It is &lt;strong&gt;Isenkram&lt;/strong&gt;.
6282 To fetch and build the latest version of the source, use&lt;/p&gt;
6283
6284 &lt;pre&gt;
6285 git clone http://anonscm.debian.org/git/collab-maint/isenkram.git
6286 cd isenkram &amp;&amp; git-buildpackage -us -uc
6287 &lt;/pre&gt;
6288
6289 &lt;p&gt;I have not yet adjusted all files to use the new name yet. If you
6290 want to hack on the source or improve the package, please go ahead.
6291 But please talk to me first on IRC or via email before you do major
6292 changes, to make sure we do not step on each others toes. :)&lt;/p&gt;
6293
6294 &lt;p&gt;If you wonder what &#39;isenkram&#39; is, it is a Norwegian word for iron
6295 stuff, typically meaning tools, nails, screws, etc. Typical hardware
6296 stuff, in other words. I&#39;ve been told it is the Norwegian variant of
6297 the German word eisenkram, for those that are familiar with that
6298 word.&lt;/p&gt;
6299
6300 &lt;p&gt;&lt;strong&gt;Update 2013-01-26&lt;/strong&gt;: Added -us -us to build
6301 instructions, to avoid confusing people with an error from the signing
6302 process.&lt;/p&gt;
6303
6304 &lt;p&gt;&lt;strong&gt;Update 2013-01-27&lt;/strong&gt;: Switch to HTTP URL for the git
6305 clone argument to avoid the need for authentication.&lt;/p&gt;
6306 </description>
6307 </item>
6308
6309 <item>
6310 <title>First prototype ready making hardware easier to use in Debian</title>
6311 <link>http://people.skolelinux.org/pere/blog/First_prototype_ready_making_hardware_easier_to_use_in_Debian.html</link>
6312 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_prototype_ready_making_hardware_easier_to_use_in_Debian.html</guid>
6313 <pubDate>Mon, 21 Jan 2013 12:00:00 +0100</pubDate>
6314 <description>&lt;p&gt;Early this month I set out to try to
6315 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Lets_make_hardware_dongles_easier_to_use_in_Debian.html&quot;&gt;improve
6316 the Debian support for pluggable hardware devices&lt;/a&gt;. Now my
6317 prototype is working, and it is ready for a larger audience. To test
6318 it, fetch the
6319 &lt;a href=&quot;http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/&quot;&gt;source
6320 from the Debian Edu subversion repository&lt;/a&gt;, build and install the
6321 package. You might have to log out and in again activate the
6322 autostart script.&lt;/p&gt;
6323
6324 &lt;p&gt;The design is simple:&lt;/p&gt;
6325
6326 &lt;ul&gt;
6327
6328 &lt;li&gt;Add desktop entry in /usr/share/autostart/ causing a program
6329 hw-support-handlerd to start when the user log in.&lt;/li&gt;
6330
6331 &lt;li&gt;This program listen for kernel events about new hardware (directly
6332 from the kernel like udev does), not using HAL dbus events as I
6333 initially did.&lt;/li&gt;
6334
6335 &lt;li&gt;When new hardware is inserted, look up the hardware modalias in
6336 the APT database, a database
6337 &lt;a href=&quot;http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/modaliases?view=markup&quot;&gt;available
6338 via HTTP&lt;/a&gt; and a database available as part of the package.&lt;/li&gt;
6339
6340 &lt;li&gt;If a package is mapped to the hardware in question, the package
6341 isn&#39;t installed yet and this is the first time the hardware was
6342 plugged in, show a desktop notification suggesting to install the
6343 package or packages.&lt;/li&gt;
6344
6345 &lt;li&gt;If the user click on the &#39;install package now&#39; button, ask
6346 aptdaemon via the PackageKit API to install the requrired package.&lt;/li&gt;
6347
6348 &lt;li&gt;aptdaemon ask for root password or sudo password, and install the
6349 package while showing progress information in a window.&lt;/li&gt;
6350
6351 &lt;/ul&gt;
6352
6353 &lt;p&gt;I still need to come up with a better name for the system. Here
6354 are some screen shots showing the prototype in action. First the
6355 notification, then the password request, and finally the request to
6356 approve all the dependencies. Sorry for the Norwegian Bokmål GUI.&lt;/p&gt;
6357
6358 &lt;p&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2013-01-21-hw-support-1-notification.png&quot;&gt;
6359 &lt;br&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2013-01-21-hw-support-2-password.png&quot;&gt;
6360 &lt;br&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2013-01-21-hw-support-3-dependencies.png&quot;&gt;
6361 &lt;br&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2013-01-21-hw-support-4-installing.png&quot;&gt;
6362 &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;
6363
6364 &lt;p&gt;The prototype still need to be improved with longer timeouts, but
6365 is already useful. The database of hardware to package mappings also
6366 need more work. It is currently compatible with the Ubuntu way of
6367 storing such information in the package control file, but could be
6368 changed to use other formats instead or in addition to the current
6369 method. I&#39;ve dropped the use of discover for this mapping, as the
6370 modalias approach is more flexible and easier to use on Linux as long
6371 as the Linux kernel expose its modalias strings directly.&lt;/p&gt;
6372
6373 &lt;p&gt;&lt;strong&gt;Update 2013-01-21 16:50&lt;/strong&gt;: Due to popular demand,
6374 here is the command required to check out and build the source: Use
6375 &#39;&lt;tt&gt;svn checkout
6376 svn://svn.debian.org/debian-edu/trunk/src/hw-support-handler/; cd
6377 hw-support-handler; debuild&lt;/tt&gt;&#39;. If you lack debuild, install the
6378 devscripts package.&lt;/p&gt;
6379
6380 &lt;p&gt;&lt;strong&gt;Update 2013-01-23 12:00&lt;/strong&gt;: The project is now
6381 renamed to Isenkram and the source moved from the Debian Edu
6382 subversion repository to a Debian collab-maint git repository. See
6383 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Welcome_to_the_world__Isenkram_.html&quot;&gt;build
6384 instructions&lt;/a&gt; for details.&lt;/p&gt;
6385 </description>
6386 </item>
6387
6388 <item>
6389 <title>Thank you Thinkpad X41, for your long and trustworthy service</title>
6390 <link>http://people.skolelinux.org/pere/blog/Thank_you_Thinkpad_X41__for_your_long_and_trustworthy_service.html</link>
6391 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Thank_you_Thinkpad_X41__for_your_long_and_trustworthy_service.html</guid>
6392 <pubDate>Sat, 19 Jan 2013 09:20:00 +0100</pubDate>
6393 <description>&lt;p&gt;This Christmas my trusty old laptop died. It died quietly and
6394 suddenly in bed. With a quiet whimper, it went completely quiet and
6395 black. The power button was no longer able to turn it on. It was a
6396 IBM Thinkpad X41, and the best laptop I ever had. Better than both
6397 Thinkpads X30, X31, X40, X60, X61 and X61S. Far better than the
6398 Compaq I had before that. Now I need to find a replacement. To keep
6399 going during Christmas, I moved the one year old SSD disk to my old
6400 X40 where it fitted (only one I had left that could use it), but it is
6401 not a durable solution.
6402
6403 &lt;p&gt;My laptop needs are fairly modest. This is my wishlist from when I
6404 got a new one more than 10 years ago. It still holds true.:)&lt;/p&gt;
6405
6406 &lt;ul&gt;
6407
6408 &lt;li&gt;Lightweight (around 1 kg) and small volume (preferably smaller
6409 than A4).&lt;/li&gt;
6410 &lt;li&gt;Robust, it will be in my backpack every day.&lt;/li&gt;
6411 &lt;li&gt;Three button mouse and a mouse pin instead of touch pad.&lt;/li&gt;
6412 &lt;li&gt;Long battery life time. Preferable a week.&lt;/li&gt;
6413 &lt;li&gt;Internal WIFI network card.&lt;/li&gt;
6414 &lt;li&gt;Internal Twisted Pair network card.&lt;/li&gt;
6415 &lt;li&gt;Some USB slots (2-3 is plenty)&lt;/li&gt;
6416 &lt;li&gt;Good keyboard - similar to the Thinkpad.&lt;/li&gt;
6417 &lt;li&gt;Video resolution at least 1024x768, with size around 12&quot; (A4 paper
6418 size).&lt;/li&gt;
6419 &lt;li&gt;Hardware supported by Debian Stable, ie the default kernel and
6420 X.org packages.&lt;/li&gt;
6421 &lt;li&gt;Quiet, preferably fan free (or at least not using the fan most of
6422 the time).
6423
6424 &lt;/ul&gt;
6425
6426 &lt;p&gt;You will notice that there are no RAM and CPU requirements in the
6427 list. The reason is simply that the specifications on laptops the
6428 last 10-15 years have been sufficient for my needs, and I have to look
6429 at other features to choose my laptop. But are there still made as
6430 robust laptops as my X41? The Thinkpad X60/X61 proved to be less
6431 robust, and Thinkpads seem to be heading in the wrong direction since
6432 Lenovo took over. But I&#39;ve been told that X220 and X1 Carbon might
6433 still be useful.&lt;/p&gt;
6434
6435 &lt;p&gt;Perhaps I should rethink my needs, and look for a pad with an
6436 external keyboard? I&#39;ll have to check the
6437 &lt;a href=&quot;http://www.linux-laptop.net/&quot;&gt;Linux Laptops site&lt;/a&gt; for
6438 well-supported laptops, or perhaps just buy one preinstalled from one
6439 of the vendors listed on the &lt;a href=&quot;http://linuxpreloaded.com/&quot;&gt;Linux
6440 Pre-loaded site&lt;/a&gt;.&lt;/p&gt;
6441 </description>
6442 </item>
6443
6444 <item>
6445 <title>How to find a browser plugin supporting a given MIME type</title>
6446 <link>http://people.skolelinux.org/pere/blog/How_to_find_a_browser_plugin_supporting_a_given_MIME_type.html</link>
6447 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_find_a_browser_plugin_supporting_a_given_MIME_type.html</guid>
6448 <pubDate>Fri, 18 Jan 2013 10:40:00 +0100</pubDate>
6449 <description>&lt;p&gt;Some times I try to figure out which Iceweasel browser plugin to
6450 install to get support for a given MIME type. Thanks to
6451 &lt;a href=&quot;https://wiki.ubuntu.com/MozillaTeam/Plugins&quot;&gt;specifications
6452 done by Ubuntu&lt;/a&gt; and Mozilla, it is possible to do this in Debian.
6453 Unfortunately, not very many packages provide the needed meta
6454 information, Anyway, here is a small script to look up all browser
6455 plugin packages announcing ther MIME support using this specification:&lt;/p&gt;
6456
6457 &lt;pre&gt;
6458 #!/usr/bin/python
6459 import sys
6460 import apt
6461 def pkgs_handling_mimetype(mimetype):
6462 cache = apt.Cache()
6463 cache.open(None)
6464 thepkgs = []
6465 for pkg in cache:
6466 version = pkg.candidate
6467 if version is None:
6468 version = pkg.installed
6469 if version is None:
6470 continue
6471 record = version.record
6472 if not record.has_key(&#39;Npp-MimeType&#39;):
6473 continue
6474 mime_types = record[&#39;Npp-MimeType&#39;].split(&#39;,&#39;)
6475 for t in mime_types:
6476 t = t.rstrip().strip()
6477 if t == mimetype:
6478 thepkgs.append(pkg.name)
6479 return thepkgs
6480 mimetype = &quot;audio/ogg&quot;
6481 if 1 &lt; len(sys.argv):
6482 mimetype = sys.argv[1]
6483 print &quot;Browser plugin packages supporting %s:&quot; % mimetype
6484 for pkg in pkgs_handling_mimetype(mimetype):
6485 print &quot; %s&quot; %pkg
6486 &lt;/pre&gt;
6487
6488 &lt;p&gt;It can be used like this to look up a given MIME type:&lt;/p&gt;
6489
6490 &lt;pre&gt;
6491 % ./apt-find-browserplug-for-mimetype
6492 Browser plugin packages supporting audio/ogg:
6493 gecko-mediaplayer
6494 % ./apt-find-browserplug-for-mimetype application/x-shockwave-flash
6495 Browser plugin packages supporting application/x-shockwave-flash:
6496 browser-plugin-gnash
6497 %
6498 &lt;/pre&gt;
6499
6500 &lt;p&gt;In Ubuntu this mechanism is combined with support in the browser
6501 itself to query for plugins and propose to install the needed
6502 packages. It would be great if Debian supported such feature too. Is
6503 anyone working on adding it?&lt;/p&gt;
6504
6505 &lt;p&gt;&lt;strong&gt;Update 2013-01-18 14:20&lt;/strong&gt;: The Debian BTS
6506 request for icweasel support for this feature is
6507 &lt;a href=&quot;http://bugs.debian.org/484010&quot;&gt;#484010&lt;/a&gt; from 2008 (and
6508 &lt;a href=&quot;http://bugs.debian.org/698426&quot;&gt;#698426&lt;/a&gt; from today). Lack
6509 of manpower and wish for a different design is the reason thus feature
6510 is not yet in iceweasel from Debian.&lt;/p&gt;
6511 </description>
6512 </item>
6513
6514 <item>
6515 <title>What is the most supported MIME type in Debian?</title>
6516 <link>http://people.skolelinux.org/pere/blog/What_is_the_most_supported_MIME_type_in_Debian_.html</link>
6517 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/What_is_the_most_supported_MIME_type_in_Debian_.html</guid>
6518 <pubDate>Wed, 16 Jan 2013 10:10:00 +0100</pubDate>
6519 <description>&lt;p&gt;The &lt;a href=&quot;http://wiki.debian.org/AppStreamDebianProposal&quot;&gt;DEP-11
6520 proposal to add AppStream information to the Debian archive&lt;/a&gt;, is a
6521 proposal to make it possible for a Desktop application to propose to
6522 the user some package to install to gain support for a given MIME
6523 type, font, library etc. that is currently missing. With such
6524 mechanism in place, it would be possible for the desktop to
6525 automatically propose and install leocad if some LDraw file is
6526 downloaded by the browser.&lt;/p&gt;
6527
6528 &lt;p&gt;To get some idea about the current content of the archive, I decided
6529 to write a simple program to extract all .desktop files from the
6530 Debian archive and look up the claimed MIME support there. The result
6531 can be found on the
6532 &lt;a href=&quot;http://ftp.skolelinux.org/pub/AppStreamTest&quot;&gt;Skolelinux FTP
6533 site&lt;/a&gt;. Using the collected information, it become possible to
6534 answer the question in the title. Here are the 20 most supported MIME
6535 types in Debian stable (Squeeze), testing (Wheezy) and unstable (Sid).
6536 The complete list is available from the link above.&lt;/p&gt;
6537
6538 &lt;p&gt;&lt;strong&gt;Debian Stable:&lt;/strong&gt;&lt;/p&gt;
6539
6540 &lt;pre&gt;
6541 count MIME type
6542 ----- -----------------------
6543 32 text/plain
6544 30 audio/mpeg
6545 29 image/png
6546 28 image/jpeg
6547 27 application/ogg
6548 26 audio/x-mp3
6549 25 image/tiff
6550 25 image/gif
6551 22 image/bmp
6552 22 audio/x-wav
6553 20 audio/x-flac
6554 19 audio/x-mpegurl
6555 18 video/x-ms-asf
6556 18 audio/x-musepack
6557 18 audio/x-mpeg
6558 18 application/x-ogg
6559 17 video/mpeg
6560 17 audio/x-scpls
6561 17 audio/ogg
6562 16 video/x-ms-wmv
6563 &lt;/pre&gt;
6564
6565 &lt;p&gt;&lt;strong&gt;Debian Testing:&lt;/strong&gt;&lt;/p&gt;
6566
6567 &lt;pre&gt;
6568 count MIME type
6569 ----- -----------------------
6570 33 text/plain
6571 32 image/png
6572 32 image/jpeg
6573 29 audio/mpeg
6574 27 image/gif
6575 26 image/tiff
6576 26 application/ogg
6577 25 audio/x-mp3
6578 22 image/bmp
6579 21 audio/x-wav
6580 19 audio/x-mpegurl
6581 19 audio/x-mpeg
6582 18 video/mpeg
6583 18 audio/x-scpls
6584 18 audio/x-flac
6585 18 application/x-ogg
6586 17 video/x-ms-asf
6587 17 text/html
6588 17 audio/x-musepack
6589 16 image/x-xbitmap
6590 &lt;/pre&gt;
6591
6592 &lt;p&gt;&lt;strong&gt;Debian Unstable:&lt;/strong&gt;&lt;/p&gt;
6593
6594 &lt;pre&gt;
6595 count MIME type
6596 ----- -----------------------
6597 31 text/plain
6598 31 image/png
6599 31 image/jpeg
6600 29 audio/mpeg
6601 28 application/ogg
6602 27 image/gif
6603 26 image/tiff
6604 26 audio/x-mp3
6605 23 audio/x-wav
6606 22 image/bmp
6607 21 audio/x-flac
6608 20 audio/x-mpegurl
6609 19 audio/x-mpeg
6610 18 video/x-ms-asf
6611 18 video/mpeg
6612 18 audio/x-scpls
6613 18 application/x-ogg
6614 17 audio/x-musepack
6615 16 video/x-ms-wmv
6616 16 video/x-msvideo
6617 &lt;/pre&gt;
6618
6619 &lt;p&gt;I am told that PackageKit can provide an API to access the kind of
6620 information mentioned in DEP-11. I have not yet had time to look at
6621 it, but hope the PackageKit people in Debian are on top of these
6622 issues.&lt;/p&gt;
6623
6624 &lt;p&gt;&lt;strong&gt;Update 2013-01-16 13:35&lt;/strong&gt;: Updated numbers after
6625 discovering a typo in my script.&lt;/p&gt;
6626 </description>
6627 </item>
6628
6629 <item>
6630 <title>Using modalias info to find packages handling my hardware</title>
6631 <link>http://people.skolelinux.org/pere/blog/Using_modalias_info_to_find_packages_handling_my_hardware.html</link>
6632 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Using_modalias_info_to_find_packages_handling_my_hardware.html</guid>
6633 <pubDate>Tue, 15 Jan 2013 08:00:00 +0100</pubDate>
6634 <description>&lt;p&gt;Yesterday, I wrote about the
6635 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Modalias_strings___a_practical_way_to_map__stuff__to_hardware.html&quot;&gt;modalias
6636 values provided by the Linux kernel&lt;/a&gt; following my hope for
6637 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Lets_make_hardware_dongles_easier_to_use_in_Debian.html&quot;&gt;better
6638 dongle support in Debian&lt;/a&gt;. Using this knowledge, I have tested how
6639 modalias values attached to package names can be used to map packages
6640 to hardware. This allow the system to look up and suggest relevant
6641 packages when I plug in some new hardware into my machine, and replace
6642 discover and discover-data as the database used to map hardware to
6643 packages.&lt;/p&gt;
6644
6645 &lt;p&gt;I create a modaliases file with entries like the following,
6646 containing package name, kernel module name (if relevant, otherwise
6647 the package name) and globs matching the relevant hardware
6648 modalias.&lt;/p&gt;
6649
6650 &lt;p&gt;&lt;blockquote&gt;
6651 Package: package-name
6652 &lt;br&gt;Modaliases: module(modaliasglob, modaliasglob, modaliasglob)&lt;/p&gt;
6653 &lt;/blockquote&gt;&lt;/p&gt;
6654
6655 &lt;p&gt;It is fairly trivial to write code to find the relevant packages
6656 for a given modalias value using this file.&lt;/p&gt;
6657
6658 &lt;p&gt;An entry like this would suggest the video and picture application
6659 cheese for many USB web cameras (interface bus class 0E01):&lt;/p&gt;
6660
6661 &lt;p&gt;&lt;blockquote&gt;
6662 Package: cheese
6663 &lt;br&gt;Modaliases: cheese(usb:v*p*d*dc*dsc*dp*ic0Eisc01ip*)&lt;/p&gt;
6664 &lt;/blockquote&gt;&lt;/p&gt;
6665
6666 &lt;p&gt;An entry like this would suggest the pcmciautils package when a
6667 CardBus bridge (bus class 0607) PCI device is present:&lt;/p&gt;
6668
6669 &lt;p&gt;&lt;blockquote&gt;
6670 Package: pcmciautils
6671 &lt;br&gt;Modaliases: pcmciautils(pci:v*d*sv*sd*bc06sc07i*)
6672 &lt;/blockquote&gt;&lt;/p&gt;
6673
6674 &lt;p&gt;An entry like this would suggest the package colorhug-client when
6675 plugging in a ColorHug with USB IDs 04D8:F8DA:&lt;/p&gt;
6676
6677 &lt;p&gt;&lt;blockquote&gt;
6678 Package: colorhug-client
6679 &lt;br&gt;Modaliases: colorhug-client(usb:v04D8pF8DAd*)&lt;/p&gt;
6680 &lt;/blockquote&gt;&lt;/p&gt;
6681
6682 &lt;p&gt;I believe the format is compatible with the format of the Packages
6683 file in the Debian archive. Ubuntu already uses their Packages file
6684 to store their mappings from packages to hardware.&lt;/p&gt;
6685
6686 &lt;p&gt;By adding a XB-Modaliases: header in debian/control, any .deb can
6687 announce the hardware it support in a way my prototype understand.
6688 This allow those publishing packages in an APT source outside the
6689 Debian archive as well as those backporting packages to make sure the
6690 hardware mapping are included in the package meta information. I&#39;ve
6691 tested such header in the pymissile package, and its modalias mapping
6692 is working as it should with my prototype. It even made it to Ubuntu
6693 Raring.&lt;/p&gt;
6694
6695 &lt;p&gt;To test if it was possible to look up supported hardware using only
6696 the shell tools available in the Debian installer, I wrote a shell
6697 implementation of the lookup code. The idea is to create files for
6698 each modalias and let the shell do the matching. Please check out and
6699 try the
6700 &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;
6701 shell script. It run without any extra dependencies and fetch the
6702 hardware mappings from the Debian archive and the subversion
6703 repository where I currently work on my prototype.&lt;/p&gt;
6704
6705 &lt;p&gt;When I use it on a machine with a yubikey inserted, it suggest to
6706 install yubikey-personalization:&lt;/p&gt;
6707
6708 &lt;p&gt;&lt;blockquote&gt;
6709 % ./hw-support-lookup
6710 &lt;br&gt;yubikey-personalization
6711 &lt;br&gt;%
6712 &lt;/blockquote&gt;&lt;/p&gt;
6713
6714 &lt;p&gt;When I run it on my Thinkpad X40 with a PCMCIA/CardBus slot, it
6715 propose to install the pcmciautils package:&lt;/p&gt;
6716
6717 &lt;p&gt;&lt;blockquote&gt;
6718 % ./hw-support-lookup
6719 &lt;br&gt;pcmciautils
6720 &lt;br&gt;%
6721 &lt;/blockquote&gt;&lt;/p&gt;
6722
6723 &lt;p&gt;If you know of any hardware-package mapping that should be added to
6724 &lt;a href=&quot;http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/modaliases?view=co&quot;&gt;my
6725 database&lt;/a&gt;, please tell me about it.&lt;/p&gt;
6726
6727 &lt;p&gt;It could be possible to generate several of the mappings between
6728 packages and hardware. One source would be to look at packages with
6729 kernel modules, ie packages with *.ko files in /lib/modules/, and
6730 extract their modalias information. Another would be to look at
6731 packages with udev rules, ie packages with files in
6732 /lib/udev/rules.d/, and extract their vendor/model information to
6733 generate a modalias matching rule. I have not tested any of these to
6734 see if it work.&lt;/p&gt;
6735
6736 &lt;p&gt;If you want to help implementing a system to let us propose what
6737 packages to install when new hardware is plugged into a Debian
6738 machine, please send me an email or talk to me on
6739 &lt;a href=&quot;irc://irc.debian.org/%23debian-devel&quot;&gt;#debian-devel&lt;/a&gt;.&lt;/p&gt;
6740 </description>
6741 </item>
6742
6743 <item>
6744 <title>Modalias strings - a practical way to map &quot;stuff&quot; to hardware</title>
6745 <link>http://people.skolelinux.org/pere/blog/Modalias_strings___a_practical_way_to_map__stuff__to_hardware.html</link>
6746 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Modalias_strings___a_practical_way_to_map__stuff__to_hardware.html</guid>
6747 <pubDate>Mon, 14 Jan 2013 11:20:00 +0100</pubDate>
6748 <description>&lt;p&gt;While looking into how to look up Debian packages based on hardware
6749 information, to find the packages that support a given piece of
6750 hardware, I refreshed my memory regarding modalias values, and decided
6751 to document the details. Here are my findings so far, also available
6752 in
6753 &lt;a href=&quot;http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/&quot;&gt;the
6754 Debian Edu subversion repository&lt;/a&gt;:
6755
6756 &lt;p&gt;&lt;strong&gt;Modalias decoded&lt;/strong&gt;&lt;/p&gt;
6757
6758 &lt;p&gt;This document try to explain what the different types of modalias
6759 values stands for. It is in part based on information from
6760 &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;,
6761 &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;,
6762 &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
6763 &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;.
6764
6765 &lt;p&gt;The modalias entries for a given Linux machine can be found using
6766 this shell script:&lt;/p&gt;
6767
6768 &lt;pre&gt;
6769 find /sys -name modalias -print0 | xargs -0 cat | sort -u
6770 &lt;/pre&gt;
6771
6772 &lt;p&gt;The supported modalias globs for a given kernel module can be found
6773 using modinfo:&lt;/p&gt;
6774
6775 &lt;pre&gt;
6776 % /sbin/modinfo psmouse | grep alias:
6777 alias: serio:ty05pr*id*ex*
6778 alias: serio:ty01pr*id*ex*
6779 %
6780 &lt;/pre&gt;
6781
6782 &lt;p&gt;&lt;strong&gt;PCI subtype&lt;/strong&gt;&lt;/p&gt;
6783
6784 &lt;p&gt;A typical PCI entry can look like this. This is an Intel Host
6785 Bridge memory controller:&lt;/p&gt;
6786
6787 &lt;p&gt;&lt;blockquote&gt;
6788 pci:v00008086d00002770sv00001028sd000001ADbc06sc00i00
6789 &lt;/blockquote&gt;&lt;/p&gt;
6790
6791 &lt;p&gt;This represent these values:&lt;/p&gt;
6792
6793 &lt;pre&gt;
6794 v 00008086 (vendor)
6795 d 00002770 (device)
6796 sv 00001028 (subvendor)
6797 sd 000001AD (subdevice)
6798 bc 06 (bus class)
6799 sc 00 (bus subclass)
6800 i 00 (interface)
6801 &lt;/pre&gt;
6802
6803 &lt;p&gt;The vendor/device values are the same values outputted from &#39;lspci
6804 -n&#39; as 8086:2770. The bus class/subclass is also shown by lspci as
6805 0600. The 0600 class is a host bridge. Other useful bus values are
6806 0300 (VGA compatible card) and 0200 (Ethernet controller).&lt;/p&gt;
6807
6808 &lt;p&gt;Not sure how to figure out the interface value, nor what it
6809 means.&lt;/p&gt;
6810
6811 &lt;p&gt;&lt;strong&gt;USB subtype&lt;/strong&gt;&lt;/p&gt;
6812
6813 &lt;p&gt;Some typical USB entries can look like this. This is an internal
6814 USB hub in a laptop:&lt;/p&gt;
6815
6816 &lt;p&gt;&lt;blockquote&gt;
6817 usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00
6818 &lt;/blockquote&gt;&lt;/p&gt;
6819
6820 &lt;p&gt;Here is the values included in this alias:&lt;/p&gt;
6821
6822 &lt;pre&gt;
6823 v 1D6B (device vendor)
6824 p 0001 (device product)
6825 d 0206 (bcddevice)
6826 dc 09 (device class)
6827 dsc 00 (device subclass)
6828 dp 00 (device protocol)
6829 ic 09 (interface class)
6830 isc 00 (interface subclass)
6831 ip 00 (interface protocol)
6832 &lt;/pre&gt;
6833
6834 &lt;p&gt;The 0900 device class/subclass means hub. Some times the relevant
6835 class is in the interface class section. For a simple USB web camera,
6836 these alias entries show up:&lt;/p&gt;
6837
6838 &lt;p&gt;&lt;blockquote&gt;
6839 usb:v0AC8p3420d5000dcEFdsc02dp01ic01isc01ip00
6840 &lt;br&gt;usb:v0AC8p3420d5000dcEFdsc02dp01ic01isc02ip00
6841 &lt;br&gt;usb:v0AC8p3420d5000dcEFdsc02dp01ic0Eisc01ip00
6842 &lt;br&gt;usb:v0AC8p3420d5000dcEFdsc02dp01ic0Eisc02ip00
6843 &lt;/blockquote&gt;&lt;/p&gt;
6844
6845 &lt;p&gt;Interface class 0E01 is video control, 0E02 is video streaming (aka
6846 camera), 0101 is audio control device and 0102 is audio streaming (aka
6847 microphone). Thus this is a camera with microphone included.&lt;/p&gt;
6848
6849 &lt;p&gt;&lt;strong&gt;ACPI subtype&lt;/strong&gt;&lt;/p&gt;
6850
6851 &lt;p&gt;The ACPI type is used for several non-PCI/USB stuff. This is an IR
6852 receiver in a Thinkpad X40:&lt;/p&gt;
6853
6854 &lt;p&gt;&lt;blockquote&gt;
6855 acpi:IBM0071:PNP0511:
6856 &lt;/blockquote&gt;&lt;/p&gt;
6857
6858 &lt;p&gt;The values between the colons are IDs.&lt;/p&gt;
6859
6860 &lt;p&gt;&lt;strong&gt;DMI subtype&lt;/strong&gt;&lt;/p&gt;
6861
6862 &lt;p&gt;The DMI table contain lots of information about the computer case
6863 and model. This is an entry for a IBM Thinkpad X40, fetched from
6864 /sys/devices/virtual/dmi/id/modalias:&lt;/p&gt;
6865
6866 &lt;p&gt;&lt;blockquote&gt;
6867 dmi:bvnIBM:bvr1UETB6WW(1.66):bd06/15/2005:svnIBM:pn2371H4G:pvrThinkPadX40:rvnIBM:rn2371H4G:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
6868 &lt;/blockquote&gt;&lt;/p&gt;
6869
6870 &lt;p&gt;The values present are&lt;/p&gt;
6871
6872 &lt;pre&gt;
6873 bvn IBM (BIOS vendor)
6874 bvr 1UETB6WW(1.66) (BIOS version)
6875 bd 06/15/2005 (BIOS date)
6876 svn IBM (system vendor)
6877 pn 2371H4G (product name)
6878 pvr ThinkPadX40 (product version)
6879 rvn IBM (board vendor)
6880 rn 2371H4G (board name)
6881 rvr NotAvailable (board version)
6882 cvn IBM (chassis vendor)
6883 ct 10 (chassis type)
6884 cvr NotAvailable (chassis version)
6885 &lt;/pre&gt;
6886
6887 &lt;p&gt;The chassis type 10 is Notebook. Other interesting values can be
6888 found in the dmidecode source:&lt;/p&gt;
6889
6890 &lt;pre&gt;
6891 3 Desktop
6892 4 Low Profile Desktop
6893 5 Pizza Box
6894 6 Mini Tower
6895 7 Tower
6896 8 Portable
6897 9 Laptop
6898 10 Notebook
6899 11 Hand Held
6900 12 Docking Station
6901 13 All In One
6902 14 Sub Notebook
6903 15 Space-saving
6904 16 Lunch Box
6905 17 Main Server Chassis
6906 18 Expansion Chassis
6907 19 Sub Chassis
6908 20 Bus Expansion Chassis
6909 21 Peripheral Chassis
6910 22 RAID Chassis
6911 23 Rack Mount Chassis
6912 24 Sealed-case PC
6913 25 Multi-system
6914 26 CompactPCI
6915 27 AdvancedTCA
6916 28 Blade
6917 29 Blade Enclosing
6918 &lt;/pre&gt;
6919
6920 &lt;p&gt;The chassis type values are not always accurately set in the DMI
6921 table. For example my home server is a tower, but the DMI modalias
6922 claim it is a desktop.&lt;/p&gt;
6923
6924 &lt;p&gt;&lt;strong&gt;SerIO subtype&lt;/strong&gt;&lt;/p&gt;
6925
6926 &lt;p&gt;This type is used for PS/2 mouse plugs. One example is from my
6927 test machine:&lt;/p&gt;
6928
6929 &lt;p&gt;&lt;blockquote&gt;
6930 serio:ty01pr00id00ex00
6931 &lt;/blockquote&gt;&lt;/p&gt;
6932
6933 &lt;p&gt;The values present are&lt;/p&gt;
6934
6935 &lt;pre&gt;
6936 ty 01 (type)
6937 pr 00 (prototype)
6938 id 00 (id)
6939 ex 00 (extra)
6940 &lt;/pre&gt;
6941
6942 &lt;p&gt;This type is supported by the psmouse driver. I am not sure what
6943 the valid values are.&lt;/p&gt;
6944
6945 &lt;p&gt;&lt;strong&gt;Other subtypes&lt;/strong&gt;&lt;/p&gt;
6946
6947 &lt;p&gt;There are heaps of other modalias subtypes according to
6948 file2alias.c. There is the rest of the list from that source: amba,
6949 ap, bcma, ccw, css, eisa, hid, i2c, ieee1394, input, ipack, isapnp,
6950 mdio, of, parisc, pcmcia, platform, scsi, sdio, spi, ssb, vio, virtio,
6951 vmbus, x86cpu and zorro. I did not spend time documenting all of
6952 these, as they do not seem relevant for my intended use with mapping
6953 hardware to packages when new stuff is inserted during run time.&lt;/p&gt;
6954
6955 &lt;p&gt;&lt;strong&gt;Looking up kernel modules using modalias values&lt;/strong&gt;&lt;/p&gt;
6956
6957 &lt;p&gt;To check which kernel modules provide support for a given modalias,
6958 one can use the following shell script:&lt;/p&gt;
6959
6960 &lt;pre&gt;
6961 for id in $(find /sys -name modalias -print0 | xargs -0 cat | sort -u); do \
6962 echo &quot;$id&quot; ; \
6963 /sbin/modprobe --show-depends &quot;$id&quot;|sed &#39;s/^/ /&#39; ; \
6964 done
6965 &lt;/pre&gt;
6966
6967 &lt;p&gt;The output can look like this (only the first few entries as the
6968 list is very long on my test machine):&lt;/p&gt;
6969
6970 &lt;pre&gt;
6971 acpi:ACPI0003:
6972 insmod /lib/modules/2.6.32-5-686/kernel/drivers/acpi/ac.ko
6973 acpi:device:
6974 FATAL: Module acpi:device: not found.
6975 acpi:IBM0068:
6976 insmod /lib/modules/2.6.32-5-686/kernel/drivers/char/nvram.ko
6977 insmod /lib/modules/2.6.32-5-686/kernel/drivers/leds/led-class.ko
6978 insmod /lib/modules/2.6.32-5-686/kernel/net/rfkill/rfkill.ko
6979 insmod /lib/modules/2.6.32-5-686/kernel/drivers/platform/x86/thinkpad_acpi.ko
6980 acpi:IBM0071:PNP0511:
6981 insmod /lib/modules/2.6.32-5-686/kernel/lib/crc-ccitt.ko
6982 insmod /lib/modules/2.6.32-5-686/kernel/net/irda/irda.ko
6983 insmod /lib/modules/2.6.32-5-686/kernel/drivers/net/irda/nsc-ircc.ko
6984 [...]
6985 &lt;/pre&gt;
6986
6987 &lt;p&gt;If you want to help implementing a system to let us propose what
6988 packages to install when new hardware is plugged into a Debian
6989 machine, please send me an email or talk to me on
6990 &lt;a href=&quot;irc://irc.debian.org/%23debian-devel&quot;&gt;#debian-devel&lt;/a&gt;.&lt;/p&gt;
6991
6992 &lt;p&gt;&lt;strong&gt;Update 2013-01-15:&lt;/strong&gt; Rewrite &quot;cat $(find ...)&quot; to
6993 &quot;find ... -print0 | xargs -0 cat&quot; to make sure it handle directories
6994 in /sys/ with space in them.&lt;/p&gt;
6995 </description>
6996 </item>
6997
6998 <item>
6999 <title>Moved the pymissile Debian packaging to collab-maint</title>
7000 <link>http://people.skolelinux.org/pere/blog/Moved_the_pymissile_Debian_packaging_to_collab_maint.html</link>
7001 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Moved_the_pymissile_Debian_packaging_to_collab_maint.html</guid>
7002 <pubDate>Thu, 10 Jan 2013 20:40:00 +0100</pubDate>
7003 <description>&lt;p&gt;As part of my investigation on how to improve the support in Debian
7004 for hardware dongles, I dug up my old Mark and Spencer USB Rocket
7005 Launcher and updated the Debian package
7006 &lt;a href=&quot;http://packages.qa.debian.org/pymissile&quot;&gt;pymissile&lt;/a&gt; to make
7007 sure udev will fix the device permissions when it is plugged in. I
7008 also added a &quot;Modaliases&quot; header to test it in the Debian archive and
7009 hopefully make the package be proposed by jockey in Ubuntu when a user
7010 plug in his rocket launcher. In the process I moved the source to a
7011 git repository under collab-maint, to make it easier for any DD to
7012 contribute. &lt;a href=&quot;http://code.google.com/p/pymissile/&quot;&gt;Upstream&lt;/a&gt;
7013 is not very active, but the software still work for me even after five
7014 years of relative silence. The new git repository is not listed in
7015 the uploaded package yet, because I want to test the other changes a
7016 bit more before I upload the new version. If you want to check out
7017 the new version with a .desktop file included, visit the
7018 &lt;a href=&quot;http://anonscm.debian.org/gitweb/?p=collab-maint/pymissile.git&quot;&gt;gitweb
7019 view&lt;/a&gt; or use &quot;&lt;tt&gt;git clone
7020 git://anonscm.debian.org/collab-maint/pymissile.git&lt;/tt&gt;&quot;.&lt;/p&gt;
7021 </description>
7022 </item>
7023
7024 <item>
7025 <title>Lets make hardware dongles easier to use in Debian</title>
7026 <link>http://people.skolelinux.org/pere/blog/Lets_make_hardware_dongles_easier_to_use_in_Debian.html</link>
7027 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lets_make_hardware_dongles_easier_to_use_in_Debian.html</guid>
7028 <pubDate>Wed, 9 Jan 2013 15:40:00 +0100</pubDate>
7029 <description>&lt;p&gt;One thing that annoys me with Debian and Linux distributions in
7030 general, is that there is a great package management system with the
7031 ability to automatically install software packages by downloading them
7032 from the distribution mirrors, but no way to get it to automatically
7033 install the packages I need to use the hardware I plug into my
7034 machine. Even if the package to use it is easily available from the
7035 Linux distribution. When I plug in a LEGO Mindstorms NXT, it could
7036 suggest to automatically install the python-nxt, nbc and t2n packages
7037 I need to talk to it. When I plug in a Yubikey, it could propose the
7038 yubikey-personalization package. The information required to do this
7039 is available, but no-one have pulled all the pieces together.&lt;/p&gt;
7040
7041 &lt;p&gt;Some years ago, I proposed to
7042 &lt;a href=&quot;http://lists.debian.org/debian-devel/2010/05/msg01206.html&quot;&gt;use
7043 the discover subsystem to implement this&lt;/a&gt;. The idea is fairly
7044 simple:
7045
7046 &lt;ul&gt;
7047
7048 &lt;li&gt;Add a desktop entry in /usr/share/autostart/ pointing to a program
7049 starting when a user log in.&lt;/li&gt;
7050
7051 &lt;li&gt;Set this program up to listen for kernel events emitted when new
7052 hardware is inserted into the computer.&lt;/li&gt;
7053
7054 &lt;li&gt;When new hardware is inserted, look up the hardware ID in a
7055 database mapping to packages, and take note of any non-installed
7056 packages.&lt;/li&gt;
7057
7058 &lt;li&gt;Show a message to the user proposing to install the discovered
7059 package, and make it easy to install it.&lt;/li&gt;
7060
7061 &lt;/ul&gt;
7062
7063 &lt;p&gt;I am not sure what the best way to implement this is, but my
7064 initial idea was to use dbus events to discover new hardware, the
7065 discover database to find packages and
7066 &lt;a href=&quot;http://www.packagekit.org/&quot;&gt;PackageKit&lt;/a&gt; to install
7067 packages.&lt;/p&gt;
7068
7069 &lt;p&gt;Yesterday, I found time to try to implement this idea, and the
7070 draft package is now checked into
7071 &lt;a href=&quot;http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/&quot;&gt;the
7072 Debian Edu subversion repository&lt;/a&gt;. In the process, I updated the
7073 &lt;a href=&quot;http://packages.qa.debian.org/d/discover-data.html&quot;&gt;discover-data&lt;/a&gt;
7074 package to map the USB ids of LEGO Mindstorms and Yubikey devices to
7075 the relevant packages in Debian, and uploaded a new version
7076 2.2013.01.09 to unstable. I also discovered that the current
7077 &lt;a href=&quot;http://packages.qa.debian.org/d/discover.html&quot;&gt;discover&lt;/a&gt;
7078 package in Debian no longer discovered any USB devices, because
7079 /proc/bus/usb/devices is no longer present. I ported it to use
7080 libusb as a fall back option to get it working. The fixed package
7081 version 2.1.2-6 is now in experimental (didn&#39;t upload it to unstable
7082 because of the freeze).&lt;/p&gt;
7083
7084 &lt;p&gt;With this prototype in place, I can insert my Yubikey, and get this
7085 desktop notification to show up (only once, the first time it is
7086 inserted):&lt;/p&gt;
7087
7088 &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;
7089
7090 &lt;p&gt;For this prototype to be really useful, some way to automatically
7091 install the proposed packages by pressing the &quot;Please install
7092 program(s)&quot; button should to be implemented.&lt;/p&gt;
7093
7094 &lt;p&gt;If this idea seem useful to you, and you want to help make it
7095 happen, please help me update the discover-data database with mappings
7096 from hardware to Debian packages. Check if &#39;discover-pkginstall -l&#39;
7097 list the package you would like to have installed when a given
7098 hardware device is inserted into your computer, and report bugs using
7099 reportbug if it isn&#39;t. Or, if you know of a better way to provide
7100 such mapping, please let me know.&lt;/p&gt;
7101
7102 &lt;p&gt;This prototype need more work, and there are several questions that
7103 should be considered before it is ready for production use. Is dbus
7104 the correct way to detect new hardware? At the moment I look for HAL
7105 dbus events on the system bus, because that is the events I could see
7106 on my Debian Squeeze KDE desktop. Are there better events to use?
7107 How should the user be notified? Is the desktop notification
7108 mechanism the best option, or should the background daemon raise a
7109 popup instead? How should packages be installed? When should they
7110 not be installed?&lt;/p&gt;
7111
7112 &lt;p&gt;If you want to help getting such feature implemented in Debian,
7113 please send me an email. :)&lt;/p&gt;
7114 </description>
7115 </item>
7116
7117 <item>
7118 <title>New IRC channel for LEGO designers using Debian</title>
7119 <link>http://people.skolelinux.org/pere/blog/New_IRC_channel_for_LEGO_designers_using_Debian.html</link>
7120 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/New_IRC_channel_for_LEGO_designers_using_Debian.html</guid>
7121 <pubDate>Wed, 2 Jan 2013 15:40:00 +0100</pubDate>
7122 <description>&lt;p&gt;During Christmas, I have worked a bit on the Debian support for
7123 &lt;a href=&quot;http://mindstorms.lego.com/en-us/Default.aspx&quot;&gt;LEGO Mindstorm
7124 NXT&lt;/a&gt;. My son and I have played a bit with my NXT set, and I
7125 discovered I had to build all the tools myself because none were
7126 already in Debian Squeeze. If Debian support for LEGO is something
7127 you care about, please join me on the IRC channel
7128 &lt;a href=&quot;irc://irc.debian.org/%23debian-lego&quot;&gt;#debian-lego&lt;/a&gt; (server
7129 irc.debian.org). There is a lot that could be done to improve the
7130 Debian support for LEGO designers. For example both CAD software
7131 and Mindstorm compilers are missing. :)&lt;/p&gt;
7132
7133 &lt;p&gt;Update 2012-01-03: A
7134 &lt;a href=&quot;http://wiki.debian.org/LegoDesigners&quot;&gt;project page&lt;/a&gt;
7135 including links to Lego related packages is now available.&lt;/p&gt;
7136 </description>
7137 </item>
7138
7139 <item>
7140 <title>A Christmas present for Skolelinux / Debian Edu</title>
7141 <link>http://people.skolelinux.org/pere/blog/A_Christmas_present_for_Skolelinux___Debian_Edu.html</link>
7142 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_Christmas_present_for_Skolelinux___Debian_Edu.html</guid>
7143 <pubDate>Fri, 28 Dec 2012 09:20:00 +0100</pubDate>
7144 <description>&lt;p&gt;I was happy to discover a few days ago that the
7145 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux / Debian Edu&lt;/a&gt;
7146 project also this year received a Christmas present from Another
7147 Agency in Trondheim. NOK 1000,- showed up on our donation account
7148 December 24th. I want to express our thanks for this very welcome
7149 present. As the Debian Edu / Skolelinux project is very short on
7150 funding these days, and thus lack the money to do regular developer
7151 gatherings, this donation was most welcome. One developer gathering
7152 cost around NOK 15&amp;nbsp;000,-, so we need quite a lot more to keep the
7153 development pace we want. Thus, I hope their example this year is
7154 followed by many others. :)&lt;/p&gt;
7155
7156 &lt;p&gt;The public list of donors can be found on
7157 &lt;a href=&quot;http://www.linuxiskolen.no/slxdebianlabs/donations.html&quot;&gt;the
7158 donation page&lt;/a&gt; for the project, which also contain instructions if
7159 you want to donate to the project.&lt;/p&gt;
7160 </description>
7161 </item>
7162
7163 <item>
7164 <title>How to backport bitcoin-qt version 0.7.2-2 to Debian Squeeze</title>
7165 <link>http://people.skolelinux.org/pere/blog/How_to_backport_bitcoin_qt_version_0_7_2_2_to_Debian_Squeeze.html</link>
7166 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_backport_bitcoin_qt_version_0_7_2_2_to_Debian_Squeeze.html</guid>
7167 <pubDate>Tue, 25 Dec 2012 20:50:00 +0100</pubDate>
7168 <description>&lt;p&gt;Let me start by wishing you all marry Christmas and a happy new
7169 year! I hope next year will prove to be a good year.&lt;/p&gt;
7170
7171 &lt;p&gt;&lt;a href=&quot;http://www.bitcoin.org/&quot;&gt;Bitcoin&lt;/a&gt;, the digital
7172 decentralised &quot;currency&quot; that allow people to transfer bitcoins
7173 between each other with minimal overhead, is a very interesting
7174 experiment. And as I wrote a few days ago, the bitcoin situation in
7175 &lt;a href=&quot;http://www.debian.org/&quot;&gt;Debian&lt;/a&gt; is about to improve a bit.
7176 The &lt;a href=&quot;http://packages.qa.debian.org/bitcoin&quot;&gt;new debian source
7177 package&lt;/a&gt; (version 0.7.2-2) was uploaded yesterday, and is waiting
7178 in &lt;a href=&quot;http://ftp-master.debian.org/new.html&quot;&gt;the NEW queue&lt;/A&gt;
7179 for one of the ftpmasters to approve the new bitcoin-qt package
7180 name.&lt;/p&gt;
7181
7182 &lt;p&gt;And thanks to the great work of Jonas and the rest of the bitcoin
7183 team in Debian, you can easily test the package in Debian Squeeze
7184 using the following steps to get a set of working packages:&lt;/p&gt;
7185
7186 &lt;blockquote&gt;&lt;pre&gt;
7187 git clone git://git.debian.org/git/collab-maint/bitcoin
7188 cd bitcoin
7189 DEB_MAINTAINER_MODE=1 DEB_BUILD_OPTIONS=noupnp fakeroot debian/rules clean
7190 DEB_BUILD_OPTIONS=noupnp git-buildpackage --git-ignore-new
7191 &lt;/pre&gt;&lt;/blockquote&gt;
7192
7193 &lt;p&gt;You might have to install some build dependencies as well. The
7194 list of commands should give you two packages, bitcoind and
7195 bitcoin-qt, ready for use in a Squeeze environment. Note that the
7196 client will download the complete set of bitcoin &quot;blocks&quot;, which need
7197 around 5.6 GiB of data on my machine at the moment. Make sure your
7198 ~/.bitcoin/ directory have lots of spare room if you want to download
7199 all the blocks. The client will warn if the disk is getting full, so
7200 there is not really a problem if you got too little room, but you will
7201 not be able to get all the features out of the client.&lt;/p&gt;
7202
7203 &lt;p&gt;As usual, if you use bitcoin and want to show your support of my
7204 activities, please send Bitcoin donations to my address
7205 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&amp;label=PetterReinholdtsenBlog&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
7206 </description>
7207 </item>
7208
7209 <item>
7210 <title>A word on bitcoin support in Debian</title>
7211 <link>http://people.skolelinux.org/pere/blog/A_word_on_bitcoin_support_in_Debian.html</link>
7212 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_word_on_bitcoin_support_in_Debian.html</guid>
7213 <pubDate>Fri, 21 Dec 2012 23:59:00 +0100</pubDate>
7214 <description>&lt;p&gt;It has been a while since I wrote about
7215 &lt;a href=&quot;http://www.bitcoin.org/&quot;&gt;bitcoin&lt;/a&gt;, the decentralised
7216 peer-to-peer based crypto-currency, and the reason is simply that I
7217 have been busy elsewhere. But two days ago, I started looking at the
7218 state of &lt;a href=&quot;http://packages.qa.debian.org/bitcoin&quot;&gt;bitcoin in
7219 Debian&lt;/a&gt; again to try to recover my old bitcoin wallet. The package
7220 is now maintained by a
7221 &lt;a href=&quot;https://alioth.debian.org/projects/pkg-bitcoin/&quot;&gt;team of
7222 people&lt;/a&gt;, and the grunt work had already been done by this team. We
7223 owe a huge thank you to all these team members. :)
7224 But I was sad to discover that the bitcoin client is missing in
7225 Wheezy. It is only available in Sid (and an outdated client from
7226 backports). The client had several RC bugs registered in BTS blocking
7227 it from entering testing. To try to help the team and improve the
7228 situation, I spent some time providing patches and triaging the bug
7229 reports. I also had a look at the bitcoin package available from Matt
7230 Corallo in a
7231 &lt;a href=&quot;https://launchpad.net/~bitcoin/+archive/bitcoin&quot;&gt;PPA for
7232 Ubuntu&lt;/a&gt;, and moved the useful pieces from that version into the
7233 Debian package.&lt;/p&gt;
7234
7235 &lt;p&gt;After checking with the main package maintainer Jonas Smedegaard on
7236 IRC, I pushed several patches into the collab-maint git repository to
7237 improve the package. It now contains fixes for the RC issues (not from
7238 me, but fixed by Scott Howard), build rules for a Qt GUI client
7239 package, konqueror support for the bitcoin: URI and bash completion
7240 setup. As I work on Debian Squeeze, I also created
7241 &lt;a href=&quot;http://lists.alioth.debian.org/pipermail/pkg-bitcoin-devel/Week-of-Mon-20121217/000041.html&quot;&gt;a
7242 patch to backport&lt;/a&gt; the latest version. Jonas is going to look at
7243 it and try to integrate it into the git repository before uploading a
7244 new version to unstable.
7245
7246 &lt;p&gt;I would very much like bitcoin to succeed, to get rid of the
7247 centralized control currently exercised in the monetary system. I
7248 find it completely unacceptable that the USA government is collecting
7249 transaction data for almost all international money transfers (most are done in USD and transaction logs shipped to the spooks), and
7250 that the major credit card companies can block legal money
7251 transactions to Wikileaks. But for bitcoin to succeed, more people
7252 need to use bitcoins, and more people need to accept bitcoins when
7253 they sell products and services. Improving the bitcoin support in
7254 Debian is a small step in the right direction, but not enough.
7255 Unfortunately the user experience when browsing the web and wanting to
7256 pay with bitcoin is still not very good. The bitcoin: URI is a step
7257 in the right direction, but need to work in most or every browser in
7258 use. Also the bitcoin-qt client is too heavy to fire up to do a
7259 quick transaction. I believe there are other clients available, but
7260 have not tested them.&lt;/p&gt;
7261
7262 &lt;p&gt;My
7263 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Now_accepting_bitcoins___anonymous_and_distributed_p2p_crypto_money.html&quot;&gt;experiment
7264 with bitcoins&lt;/a&gt; showed that at least some of my readers use bitcoin.
7265 I received 20.15 BTC so far on the address I provided in my blog two
7266 years ago, as can be
7267 &lt;a href=&quot;http://blockexplorer.com/address/15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&quot;&gt;seen
7268 on the blockexplorer service&lt;/a&gt;. Thank you everyone for your
7269 donation. The blockexplorer service demonstrates quite well that
7270 bitcoin is not quite anonymous and untracked. :) I wonder if the
7271 number of users have gone up since then. If you use bitcoin and want
7272 to show your support of my activity, please send Bitcoin donations to
7273 the same address as last time,
7274 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&amp;label=PetterReinholdtsenBlog&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
7275 </description>
7276 </item>
7277
7278 <item>
7279 <title>Ledger - double-entry accounting using text based storage format</title>
7280 <link>http://people.skolelinux.org/pere/blog/Ledger___double_entry_accounting_using_text_based_storage_format.html</link>
7281 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Ledger___double_entry_accounting_using_text_based_storage_format.html</guid>
7282 <pubDate>Tue, 18 Dec 2012 23:30:00 +0100</pubDate>
7283 <description>&lt;p&gt;A few days ago I came across
7284 &lt;a href=&quot;http://joeyh.name/blog/entry/hledger/&quot;&gt;a blog post from Joey
7285 Hess&lt;/a&gt; describing &lt;a href=&quot;http://ledger-cli.org/&quot;&gt;ledger&lt;/a&gt; and
7286 hledger, a text based system for double-entry accounting. I found it
7287 interesting, as I am involved with several organizations where
7288 accounting is an issue, and I have not really become too friendly with
7289 the different web based systems we use. I find it hard to find what I
7290 look for in the menus and even harder try to get sensible data out of
7291 the systems. Ledger seem different. The accounting data is kept in
7292 text files that can be stored in a version control system, and there
7293
7294 are at least &lt;a href=&quot;https://github.com/ledger/ledger/wiki/Ports&quot;&gt;five
7295 different implementations&lt;/a&gt; able to read the format. An example
7296 entry look like this, and is simple enough that it will be trivial to
7297 generate entries based on CVS files fetched from the bank:&lt;/p&gt;
7298
7299 &lt;blockquote&gt;&lt;pre&gt;
7300 2004-05-27 Book Store
7301 Expenses:Books $20.00
7302 Liabilities:Visa
7303 &lt;/pre&gt;&lt;/blockquote&gt;
7304
7305 &lt;p&gt;The concept seemed interesting enough for me to check it out and
7306 look for others using it. I found blog posts from
7307 &lt;a href=&quot;http://blog.spang.cc/posts/hledger_rocks_my_world/&quot;&gt;Christine
7308 Spang&lt;/a&gt;,
7309 &lt;a href=&quot;http://bugsplat.info/2010-05-23-keeping-finances-with-ledger.html&quot;&gt;Pete
7310 Keen&lt;/a&gt;,
7311 &lt;a href=&quot;http://blog.andrewcantino.com/blog/2010/11/06/command-line-accounting-with-ledger-and-reckon/&quot;&gt;Andrew
7312 Cantino&lt;/a&gt; and
7313 &lt;a href=&quot;http://blog.iphoting.com/blog/2012/11/29/command-line-double-entry-accounting/&quot;&gt;Ronald
7314 Ip&lt;/a&gt; describing how they use it, as well as a post from
7315 &lt;a href=&quot;https://groups.google.com/forum/?fromgroups=#!topic/ledger-cli/r0oWjwbQ9Bo&quot;&gt;Bradley
7316 M. Kuhn&lt;/a&gt; at the Software Freedom Conservancy. All seemed like good
7317 recommendations fitting my need.&lt;/p&gt;
7318
7319 &lt;p&gt;The &lt;a href=&quot;http://packages.qa.debian.org/l/ledger.html&quot;&gt;ledger&lt;/a&gt;
7320 package is available in Debian Squeeze, while the
7321 &lt;a href=&quot;http://packages.qa.debian.org/h/haskell-hledger.html&quot;&gt;hledger&lt;/a&gt;
7322 package only is available in Debian Sid. As I use Squeeze, ledger
7323 seemed the best choice to get started.&lt;/p&gt;
7324
7325 &lt;p&gt;To get some real data to test on, I wrote a
7326 &lt;a href=&quot;http://www.nuug.no/tools/lodo2ledger&quot;&gt;web scraper&lt;/a&gt; for
7327 &lt;a href=&quot;http://www.lodo.no/&quot;&gt;LODO&lt;/a&gt;, the accounting system used by
7328 the &lt;a href=&quot;http://www.nuug.no/&quot;&gt;NUUG&lt;/a&gt; association, and started to
7329 play with the data set. I&#39;m not really deeply into accounting, but I
7330 am able to get a simple balance and accounting status for example
7331 using the &quot;&lt;tt&gt;ledger balance&lt;/tt&gt;&quot; command. But I will have to
7332 gather more experience before I know if the ledger way is a good fit
7333 for the organisations I am involved in.&lt;/p&gt;
7334 </description>
7335 </item>
7336
7337 <item>
7338 <title>Scripting the Cerebrum/bofhd user administration system using XML-RPC</title>
7339 <link>http://people.skolelinux.org/pere/blog/Scripting_the_Cerebrum_bofhd_user_administration_system_using_XML_RPC.html</link>
7340 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Scripting_the_Cerebrum_bofhd_user_administration_system_using_XML_RPC.html</guid>
7341 <pubDate>Thu, 6 Dec 2012 10:30:00 +0100</pubDate>
7342 <description>&lt;p&gt;Where I work at the &lt;a href=&quot;http://www.uio.no/&quot;&gt;University of
7343 Oslo&lt;/a&gt;, we use the
7344 &lt;a href=&quot;http://sourceforge.net/projects/cerebrum/&quot;&gt;Cerebrum user
7345 administration system&lt;/a&gt; to maintain users, groups, DNS, DHCP, etc.
7346 I&#39;ve known since the system was written that the server is providing
7347 an &lt;a href=&quot;http://en.wikipedia.org/wiki/XML-RPC&quot;&gt;XML-RPC&lt;/a&gt; API, but
7348 I have never spent time to try to figure out how to use it, as we
7349 always use the bofh command line client at work. Until today. I want
7350 to script the updating of DNS and DHCP to make it easier to set up
7351 virtual machines. Here are a few notes on how to use it with
7352 Python.&lt;/p&gt;
7353
7354 &lt;p&gt;I started by looking at the source of the Java
7355 &lt;a href=&quot;http://cerebrum.svn.sourceforge.net/viewvc/cerebrum/trunk/cerebrum/clients/jbofh/&quot;&gt;bofh
7356 client&lt;/a&gt;, to figure out how it connected to the API server. I also
7357 googled for python examples on how to use XML-RPC, and found
7358 &lt;a href=&quot;http://tldp.org/HOWTO/XML-RPC-HOWTO/xmlrpc-howto-python.html&quot;&gt;a
7359 simple example in&lt;/a&gt; the XML-RPC howto.&lt;/p&gt;
7360
7361 &lt;p&gt;This simple example code show how to connect, get the list of
7362 commands (as a JSON dump), and how to get the information about the
7363 user currently logged in:&lt;/p&gt;
7364
7365 &lt;blockquote&gt;&lt;pre&gt;
7366 #!/usr/bin/env python
7367 import getpass
7368 import xmlrpclib
7369 server_url = &#39;https://cerebrum-uio.uio.no:8000&#39;;
7370 username = getpass.getuser()
7371 password = getpass.getpass()
7372 server = xmlrpclib.Server(server_url);
7373 #print server.get_commands(sessionid)
7374 sessionid = server.login(username, password)
7375 print server.run_command(sessionid, &quot;user_info&quot;, username)
7376 result = server.logout(sessionid)
7377 print result
7378 &lt;/pre&gt;&lt;/blockquote&gt;
7379
7380 &lt;p&gt;Armed with this knowledge I can now move forward and script the DNS
7381 and DHCP updates I wanted to do.&lt;/p&gt;
7382 </description>
7383 </item>
7384
7385 <item>
7386 <title>Why isn&#39;t the value of copyright taxed?</title>
7387 <link>http://people.skolelinux.org/pere/blog/Why_isn_t_the_value_of_copyright_taxed_.html</link>
7388 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Why_isn_t_the_value_of_copyright_taxed_.html</guid>
7389 <pubDate>Sat, 17 Nov 2012 11:30:00 +0100</pubDate>
7390 <description>&lt;p&gt;While working on a
7391 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;Norwegian
7392 translation of the Free Culture by Lawrence Lessig&lt;/a&gt; (76% done),
7393 which cover the problems with todays copyright law and how it stifles
7394 creativity, one idea occurred to me. The idea is to get the tax
7395 office to help make more works enter the public domain and also help
7396 make it easier to clear rights for using copyrighted works.&lt;/p&gt;
7397
7398 &lt;p&gt;I mentioned this idea briefly during Yesterdays
7399 &lt;a href=&quot;http://www.farmann.no/2012/11/14/john-perry-barlow-in-oslo-friday-nov-16
7400 -15-30-19-00/&quot;&gt;presentation
7401 by John Perry Barlow&lt;/a&gt;, and concluded that it was best to put it
7402 in writing for a wider audience. The idea is not really based on the
7403 argument that copyrighted works are &quot;intellectual property&quot;, as the
7404 core requirement is that copyrighted work have value for the copyright
7405 holder and the tax office like to collect their share from any value
7406 controlled by the citizens in a country. I&#39;m sharing the idea here to
7407 let others consider it and perhaps shoot it down with a fresh set of
7408 arguments.&lt;/p&gt;
7409
7410 &lt;p&gt;Most valuables are taxed by the government. At least here in
7411 Norway, the amount of money you have, the value of our land property,
7412 the value of your house, the value of your car, the value of our
7413 stocks and other valuables are all added together. If the tax value
7414 of these values exceed your debt, you have to pay the tax office some
7415 taxes for these values. And copyrighted work have value. It have
7416 value for the rights holder, who can earn money selling access to the
7417 work. But it is not included in the tax calculations? Why not?&lt;/p&gt;
7418
7419 &lt;p&gt;If the government want to tax copyrighted works, it would want to
7420 maintain a database of all the copyrighted works and who are the
7421 rights holders for a given works, to be able to associate the works
7422 value to the right citizen or company for tax purposes. If such
7423 database exist, it will become a lot easier to find out who to talk to
7424 for clearing permissions to use a copyrighted work, which is a very
7425 hard operation with todays copyright law. To ensure that copyright
7426 holders keep the database up-to-date, it would have to become a
7427 requirement to be able to collect money for granting access to
7428 copyrighted works that the work is listed in the database with the
7429 correct right holder.&lt;/p&gt;
7430
7431 &lt;p&gt;If copyright causes copyright holders to have to pay more taxes,
7432 they will have a small incentive to &quot;disown&quot; their copyright, and let
7433 the work enter the public domain. For works with several right holders
7434 one of the right holders could state (and get it registered in the
7435 database) that she do not need to be consulted when clearing rights to
7436 use the work in question and thus will not get any income from that
7437 work. Stating this would have to be impossible to revert and stop the
7438 tax office from adding the value of that work to the given citizens
7439 tax calculation. I assume the copyright law would stay the same,
7440 allowing creators to pick a license of their choosing, and also
7441 allowing them to put their work directly in the public domain. The
7442 existence of such database will make it even easier to clear rights,
7443 and if the right holders listed in the database is taxed, this system
7444 would increase the amount of works that enter the public domain.&lt;/p&gt;
7445
7446 &lt;p&gt;The effect would be that the tax office help to make it easier to
7447 get rights to use the works that have not yet entered the public
7448 domain and help to get more work into the public domain and .&lt;/p&gt;
7449
7450 &lt;p&gt;Why have such taxing not happened yet? I am sure the tax office
7451 would like to tax copyrighted work values if they could.&lt;/p&gt;
7452 </description>
7453 </item>
7454
7455 <item>
7456 <title>Debian Edu interview: Angela Fuß</title>
7457 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Angela_Fu_.html</link>
7458 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Angela_Fu_.html</guid>
7459 <pubDate>Wed, 14 Nov 2012 21:30:00 +0100</pubDate>
7460 <description>&lt;p&gt;Here is another interview with one of the people in the &lt;a
7461 href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
7462 community. I am running short on people willing to be interviewed, so
7463 if you know about someone I should interview, Please send me an email.
7464 After asking for many months, I finally managed to lure another one of
7465 the people behind the German
7466 &quot;&lt;a href=&quot;http://wiki.it-zukunft-schule.de/&quot;&gt;IT-Zukunft Schule&lt;/a&gt;&quot;
7467 project out from maternity leave to conduct an interview. Give a warm
7468 welcome to Angela Fuß. :)&lt;/p&gt;
7469
7470 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
7471
7472 &lt;p&gt;I am a 39-year-old woman living in the very north of Germany near
7473 Denmark. I live in a patchwork family with &quot;my man&quot; Mike Gabriel, my
7474 two daughters, Mikes daughter and Mikes and my rather newborn son.
7475
7476 &lt;p&gt;At the moment - because of our little baby - I am spending most of
7477 the day by being a caring and organising mom for all the kids.
7478 Besides that I am really involved into and occupied with several inner
7479 growth processes: New born souls always bring the whole familiar
7480 system into movement and that needs time and focus ;-). We are also
7481 in the middle of buying a house and moving to it.&lt;/p&gt;
7482
7483 &lt;p&gt;In 2013 I will work again in my job in a German foundation for
7484 nature conservation. I am doing public relation work there. Besides
7485 that - and that is the connection to Skolelinux / Debian Edu - I am
7486 working in our own school project &quot;IT-Zukunft Schule&quot; in North
7487 Germany. I am responsible for the quality assurance, the customer
7488 relationship management and the communication processes in the
7489 project.&lt;/p&gt;
7490
7491 &lt;p&gt;Since 2001 I constantly have been training myself in communication
7492 and leadership. Besides that I am a forester, a landscaping gardener
7493 and a yoga teacher.&lt;/p&gt;
7494
7495 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
7496 project?&lt;/strong&gt;&lt;/p&gt;
7497
7498 &lt;p&gt;I fell in love with Mike ;-).&lt;/p&gt;
7499
7500 &lt;p&gt;Very soon after getting to know him I was completely enrolled into
7501 Free Software. At this time Mike did IT-services for one newly
7502 founded school in Kiel. Other schools in Kiel needed concepts for
7503 their IT environment. Often when Mike came home from working at the
7504 newly founded school I found myself listening to his complaints about
7505 several points where the communication with the schools head or the
7506 teachers did not work. So we were clear that he would not work for
7507 one more school if we did not set up a structure for communication
7508 between him, the schools head, the teachers, the students and the
7509 parents.&lt;/p&gt;
7510
7511 &lt;p&gt;Together with our friend and hardware supplier Andreas Buchholz we
7512 started to get an overview of free software solutions suitable for
7513 schools. One day before Christmas 2010 Mike and I had a date with Kurt
7514 Gramlich in Gütersloh. As Kurt and I are really interested in building
7515 networks of people and in being in communication we dived into
7516 Skolelinux and brought it to the first grammar schools in Northern
7517 Germany.&lt;/p&gt;
7518
7519 &lt;p&gt;For information about our school project you can read
7520 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Mike_Gabriel.html&quot;&gt;the
7521 interview with Mike Gabriel&lt;/a&gt;.&lt;/p&gt;
7522
7523 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
7524 Edu?&lt;/strong&gt;&lt;/p&gt;
7525
7526 &lt;p&gt;First I have to say: I cannot answer this question technically. My
7527 answer comes rather from a social point of view.&lt;/p&gt;
7528
7529 &lt;p&gt;The biggest advantage of Skolelinux / Debian Edu I see is the large
7530 and strong international community of Debian Developers in the
7531 background which is very alive and connected over mailinglists, blogs
7532 and meetings. My constant feeling for the Debian Community is: If
7533 something does not work they will somehow fix it. All is well
7534 ;-). This is of course a user experience. What I also get as a big
7535 advantage of Skolelinux / Debian Edu is that everybody who uses it and
7536 works with it can also contribute to it - that includes students,
7537 teachers, parents...&lt;/p&gt;
7538
7539 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
7540 Edu?&lt;/strong&gt;&lt;/p&gt;
7541
7542 &lt;p&gt;I will answer this question relating to the internal structure of
7543 Skolelinux / Debian Edu.&lt;/p&gt;
7544
7545 &lt;p&gt;What I see as a major disadvantage is that there is a gap between
7546 the group of developers for Debian Edu and the people who make the
7547 marketing, that means the people that bring Skolelinux to the
7548 schools. There is a lack of communication between these two groups and
7549 I think that does not really work for Skolelinux / Debian Edu.&lt;/p&gt;
7550
7551 &lt;p&gt;Further I appreciate that Skolelinux / Debian Edu is known as a
7552 do-ocracy. Nevertheless I keep asking myself if at some points a
7553 democracy or some kind of hierarchical project structure would be good
7554 and helpful. I am also missing some kind of contact between the
7555 Skolelinux / Debian Edu communities in Europe or on an international
7556 level. I think it would be good if there was more sharing between the
7557 different countries using Skolelinux / Debian Edu.&lt;/p&gt;
7558
7559 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
7560
7561 &lt;p&gt;On my laptop I am still using an Ubuntu 10.04 with a Gnome Desktop
7562 on. As applications I use Openoffice.org, Gedit, Firefox, Pidgin,
7563 LaTeX and GnuCash. For mails I am using Horde. And I am really fond of
7564 my N900 running with Maemo.&lt;/p&gt;
7565
7566 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
7567 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
7568
7569 &lt;p&gt;I am really convinced that in our school project &quot;IT-Zukunft
7570 Schule&quot; we have developed (and keep developing) a great way to get
7571 schools to use Free Software. We have written a detailed concept for
7572 that so I cannot explain the whole thing here. But in a nutshell the
7573 strategy has three crucial pillars:&lt;/p&gt;
7574
7575 &lt;ul&gt;
7576
7577 &lt;li&gt;We really take time to get what sort of stories, questions and
7578 concerns the schools head and the teachers have about using different
7579 kinds of IT and we take time to enrol them into Free Software.&lt;/li&gt;
7580
7581 &lt;li&gt;Our solution for schools is never just technical. In the centre
7582 are always the people who are going to use the software. From the very
7583 beginning of the planning for a school, we tell the schools head that
7584 they are paying us not only for a technical solution for their school,
7585 they also pay us for leading all the communication processes
7586 needed. If they do not want that, we are not working with them because
7587 we cannot give a guarantee for the quality of our work then.&lt;/li&gt;
7588
7589 &lt;li&gt;Another focus lies in the training of teachers and students in
7590 co-administrating the IT-System at their school. They start getting in
7591 contact with the Skolelinux / Debian Edu community and they get the
7592 offer to become more and more independent from us.&lt;/li&gt;
7593
7594 &lt;/ul&gt;
7595 </description>
7596 </item>
7597
7598 <item>
7599 <title>The European Central Bank (ECB) take a look at bitcoin</title>
7600 <link>http://people.skolelinux.org/pere/blog/The_European_Central_Bank__ECB__take_a_look_at_bitcoin.html</link>
7601 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_European_Central_Bank__ECB__take_a_look_at_bitcoin.html</guid>
7602 <pubDate>Sun, 4 Nov 2012 08:30:00 +0100</pubDate>
7603 <description>&lt;p&gt;Slashdot just ran a story about the European Central Bank (ECB)
7604 &lt;a href=&quot;http://www.ecb.europa.eu/pub/pdf/other/virtualcurrencyschemes201210en.pdf&quot;&gt;releasing
7605 a report (PDF)&lt;/a&gt; about virtual currencies and
7606 &lt;a href=&quot;http://www.bitcoin.org/&quot;&gt;bitcoin&lt;/a&gt;. It is interesting to
7607 see how a member of the bitcoin community
7608 &lt;a href=&quot;http://blog.bitinstant.com/blog/2012/10/30/the-ecb-report-on-bitcoin-and-virtual-currencies.html&quot;&gt;receive
7609 the report&lt;/a&gt;. As for the future, I suspect the central banks and
7610 the governments will outlaw bitcoin if it gain any popularity, to avoid
7611 competition. My thoughts go to the
7612 &lt;a href=&quot;http://en.wikipedia.org/wiki/Wörgl&quot;&gt;Wörgl experiment&lt;/a&gt; with
7613 negative inflation on cash which was such a success that it was
7614 terminated by the Austrian National Bank in 1933. A successful
7615 alternative would be a threat to the current money system and gain
7616 powerful forces to work against it.&lt;/p&gt;
7617
7618 &lt;p&gt;While checking out the current status of bitcoin, I also discovered
7619 that the community already seem to have
7620 &lt;a href=&quot;http://www.theverge.com/2012/8/27/3271637/bitcoin-savings-trust-pyramid-scheme-shuts-down&quot;&gt;experienced
7621 its first pyramid game / Ponzi scheme&lt;/a&gt;. Not very surprising, given
7622 how members of &quot;small&quot; communities tend to trust each other. I guess
7623 enterprising crocks will try again and again, as they do anywhere
7624 wealth is available.&lt;/p&gt;
7625 </description>
7626 </item>
7627
7628 <item>
7629 <title>12 years of outages - summarised by Stuart Kendrick</title>
7630 <link>http://people.skolelinux.org/pere/blog/12_years_of_outages___summarised_by_Stuart_Kendrick.html</link>
7631 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/12_years_of_outages___summarised_by_Stuart_Kendrick.html</guid>
7632 <pubDate>Fri, 26 Oct 2012 14:20:00 +0200</pubDate>
7633 <description>&lt;p&gt;I work at the &lt;a href=&quot;http://www.uio.no/&quot;&gt;University of Oslo&lt;/a&gt;
7634 looking after the computers, mostly on the unix side, but in general
7635 all over the place. I am also a member (and currently leader) of
7636 &lt;a href=&quot;http://www.nuug.no/&quot;&gt;the NUUG association&lt;/a&gt;, which in turn
7637 make me a member of &lt;a href=&quot;http://www.usenix.org/&quot;&gt;USENIX&lt;/a&gt;. NUUG
7638 is an member organisation for us in Norway interested in free
7639 software, open standards and unix like operating systems, and USENIX
7640 is a US based member organisation with similar targets. And thanks to
7641 these memberships, I get all issues of the great USENIX magazine
7642 &lt;a href=&quot;https://www.usenix.org/publications/login&quot;&gt;;login:&lt;/a&gt; in the
7643 mail several times a year. The magazine is great, and I read most of
7644 it every time.&lt;/p&gt;
7645
7646 &lt;p&gt;In the last issue of the USENIX magazine ;login:, there is an
7647 article by &lt;a href=&quot;http://www.skendric.com/&quot;&gt;Stuart Kendrick&lt;/a&gt; from
7648 Fred Hutchinson Cancer Research Center titled
7649 &quot;&lt;a href=&quot;https://www.usenix.org/publications/login/october-2012-volume-37-number-5/what-takes-us-down&quot;&gt;What
7650 Takes Us Down&lt;/a&gt;&quot; (longer version also
7651 &lt;a href=&quot;http://www.skendric.com/problem/incident-analysis/2012-06-30/What-Takes-Us-Down.pdf&quot;&gt;available
7652 from his own site&lt;/a&gt;), where he report what he found when he
7653 processed the outage reports (both planned and unplanned) from the
7654 last twelve years and classified them according to cause, time of day,
7655 etc etc. The article is a good read to get some empirical data on
7656 what kind of problems affect a data centre, but what really inspired
7657 me was the kind of reporting they had put in place since 2000.&lt;p&gt;
7658
7659 &lt;p&gt;The centre set up a mailing list, and started to send fairly
7660 standardised messages to this list when a outage was planned or when
7661 it already occurred, to announce the plan and get feedback on the
7662 assumtions on scope and user impact. Here is the two example from the
7663 article: First the unplanned outage:
7664
7665 &lt;blockquote&gt;&lt;pre&gt;
7666 Subject: Exchange 2003 Cluster Issues
7667 Severity: Critical (Unplanned)
7668 Start: Monday, May 7, 2012, 11:58
7669 End: Monday, May 7, 2012, 12:38
7670 Duration: 40 minutes
7671 Scope: Exchange 2003
7672 Description: The HTTPS service on the Exchange cluster crashed, triggering
7673 a cluster failover.
7674
7675 User Impact: During this period, all Exchange users were unable to
7676 access e-mail. Zimbra users were unaffected.
7677 Technician: [xxx]
7678 &lt;/pre&gt;&lt;/blockquote&gt;
7679
7680 Next the planned outage:
7681
7682 &lt;blockquote&gt;&lt;pre&gt;
7683 Subject: H Building Switch Upgrades
7684 Severity: Major (Planned)
7685 Start: Saturday, June 16, 2012, 06:00
7686 End: Saturday, June 16, 2012, 16:00
7687 Duration: 10 hours
7688 Scope: H2 Transport
7689 Description: Currently, Catalyst 4006s provide 10/100 Ethernet to end-
7690 stations. We will replace these with newer Catalyst
7691 4510s.
7692 User Impact: All users on H2 will be isolated from the network during
7693 this work. Afterward, they will have gigabit
7694 connectivity.
7695 Technician: [xxx]
7696 &lt;/pre&gt;&lt;/blockquote&gt;
7697
7698 &lt;p&gt;He notes in his article that the date formats and other fields have
7699 been a bit too free form to make it easy to automatically process them
7700 into a database for further analysis, and I would have used ISO 8601
7701 dates myself to make it easier to process (in other words I would ask
7702 people to write &#39;2012-06-16 06:00 +0000&#39; instead of the start time
7703 format listed above). There are also other issues with the format
7704 that could be improved, read the article for the details.&lt;/p&gt;
7705
7706 &lt;p&gt;I find the idea of standardising outage messages seem to be such a
7707 good idea that I would like to get it implemented here at the
7708 university too. We do register
7709 &lt;a href=&quot;http://www.uio.no/tjenester/it/aktuelt/planlagte-tjenesteavbrudd/&quot;&gt;planned
7710 changes and outages in a calendar&lt;/a&gt;, and report the to a mailing
7711 list, but we do not do so in a structured format and there is not a
7712 report to the same location for unplanned outages. Perhaps something
7713 for other sites to consider too?&lt;/p&gt;
7714 </description>
7715 </item>
7716
7717 <item>
7718 <title>Amazon steal books from customer and throw out her out without any explanation</title>
7719 <link>http://people.skolelinux.org/pere/blog/Amazon_steal_books_from_customer_and_throw_out_her_out_without_any_explanation.html</link>
7720 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Amazon_steal_books_from_customer_and_throw_out_her_out_without_any_explanation.html</guid>
7721 <pubDate>Mon, 22 Oct 2012 20:30:00 +0200</pubDate>
7722 <description>&lt;p&gt;A blog post from Martin Bekkelund today tell the story of
7723 &lt;a href=&quot;http://www.bekkelund.net/2012/10/22/outlawed-by-amazon-drm/&quot;&gt;how
7724 Amazon erased the books from a customer&#39;s kindle, locked the account
7725 and refuse to tell the customer why&lt;/a&gt;. If a real book store did
7726 this to a customer, it would be called breaking into private property
7727 and theft. The story has spread around the net today. A bit more
7728 background information is available in Norwegian from
7729 &lt;a href=&quot;http://www.digi.no/904658/hun-ble-kastet-ut-av-amazon&quot;&gt;digi.no&lt;/a&gt;.
7730 It is no surprise that digital restriction mechanisms (DRM) are used
7731 this way, as it has been warned about such abuse since DRM was
7732 introduced many years back. And Amazon proved in 2009 that it was
7733 willing to
7734 &lt;a href=&quot;http://boingboing.net/2009/07/20/amazons-orwellian-de.html&quot;&gt;
7735 break into customers equipment and remove the books&lt;/a&gt; people had
7736 bought, when it removed the book 1984 by George Orwell from all the
7737 customers who had bought it. From the official comments, it even
7738 sounded like
7739 &lt;a href=&quot;http://www.nytimes.com/2009/07/18/technology/companies/18amazon.html&quot;&gt;Amazon
7740 would never do that again&lt;/a&gt;. And here we are, three years
7741 later.&lt;/p&gt;
7742
7743 &lt;p&gt;And thought this action is
7744 &lt;a href=&quot;http://www.itavisen.no/904648/forbrukerraadet-helt-haarreisende&quot;&gt;against
7745 Norwegian regulations and law&lt;/a&gt;, it is according to the terms of use
7746 as written by Amazon, and it is hard to hold Amazon accountable to
7747 Norwegian laws. It is just yet another example of unacceptable terms
7748 of use on the web, and how they are used to remove customer
7749 rights.&lt;/p&gt;
7750
7751 &lt;p&gt;Luckily for electronic books, there are alternatives without
7752 unacceptable terms. For example
7753 &lt;a href=&quot;http://www.gutenberg.org/&quot;&gt;Project Gutenberg&lt;/a&gt; (about 40,000
7754 books), &lt;a href=&quot;http://runeberg.org/&quot;&gt;Project Runenberg&lt;/a&gt; (1,652
7755 books) and &lt;a href=&quot;http://www.archive.org/details/texts&quot;&gt;The Internet
7756 Archive&lt;/a&gt; (3,641,797 books) have heaps of books without DRM, which
7757 can read by anyone and shared with anyone.&lt;/p&gt;
7758
7759 &lt;p&gt;Update 2012-10-23: This story broke in the morning on Monday. In
7760 the evening after the story had spread all across the Internet, Amazon
7761 restored the account of the user, as reported by
7762 &lt;a href=&quot;http://www.digi.no/904675/helomvending-fra-amazon&quot;&gt;digi.no&lt;/a&gt;
7763 and &lt;a href=&quot;http://nrk.no/kultur-og-underholdning/1.8368487&quot;&gt;NRK&lt;/a&gt;.
7764 Apparently public pressure work. The story from Martin have seen
7765 several twitter messages per minute the last 24 hours, which is quite
7766 a lot, and is still drawing a lot of attention. But even when the
7767 account is restored, the fundamental problem still exist. I recommend
7768 reading two opinions from
7769 &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
7770 Phipps&lt;/a&gt; and
7771 &lt;a href=&quot;http://blogs.computerworlduk.com/open-enterprise/2012/10/is-amazon-playing-fair/index.htm&quot;&gt;Glen
7772 Moody&lt;/a&gt; if you want to learn more about the fundamentals and more
7773 details about the original story.&lt;/p&gt;
7774 </description>
7775 </item>
7776
7777 <item>
7778 <title>The fight for freedom and privacy</title>
7779 <link>http://people.skolelinux.org/pere/blog/The_fight_for_freedom_and_privacy.html</link>
7780 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_fight_for_freedom_and_privacy.html</guid>
7781 <pubDate>Thu, 18 Oct 2012 10:50:00 +0200</pubDate>
7782 <description>&lt;p&gt;Civil liberties and privacy in the western world are going down the
7783 drain, and it is hard to fight against it. I try to do my best, but
7784 time is limited. I hope you do your best too. A few years ago I came
7785 across a marvellous drawing by
7786 &lt;a href=&quot;http://www.claybennett.com/about.html&quot;&gt;Clay Bennett&lt;/a&gt;
7787 visualising some of what is going on.
7788
7789 &lt;p&gt;&lt;a href=&quot;http://www.claybennett.com/pages/security_fence.html&quot;&gt;
7790 &lt;img src=&quot;http://www.claybennett.com/images/archivetoons/security_fence.jpg&quot;&gt;&lt;/a&gt;&lt;/p&gt;
7791
7792 &lt;blockquote&gt;
7793 «They who can give up essential liberty to obtain a little temporary
7794 safety, deserve neither liberty nor safety.» - Benjamin Franklin
7795 &lt;/blockquote&gt;
7796
7797 &lt;p&gt;Do you feel safe at the airport? I do not. Do you feel safe when
7798 you see a surveillance camera? I do not. Do you feel safe when you
7799 leave electronic traces of your behaviour and opinions? I do not. I
7800 just remember &lt;a href=&quot;http://en.wikipedia.org/wiki/Panopticon&quot;&gt;the
7801 Panopticon&lt;/a&gt;, and can not help to think that we are slowly
7802 transforming our society to a huge Panopticon on our own.&lt;/p&gt;
7803 </description>
7804 </item>
7805
7806 <item>
7807 <title>ColonHelp produser sue WordPress to silence critic</title>
7808 <link>http://people.skolelinux.org/pere/blog/ColonHelp_produser_sue_WordPress_to_silence_critic.html</link>
7809 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/ColonHelp_produser_sue_WordPress_to_silence_critic.html</guid>
7810 <pubDate>Fri, 12 Oct 2012 23:50:00 +0200</pubDate>
7811 <description>&lt;p&gt;Thanks to a blog post by
7812 &lt;a href=&quot;http://ramblingfoo.blogspot.no/2012/10/a-shitstorm-is-comming.html&quot;&gt;Eddy
7813 Petrișor&lt;/a&gt;, I became aware of yet another &quot;alternative medicine&quot;
7814 company using legal intimidation tactics to scare off critics.
7815 According to the originating blog post about the detox &quot;cure&quot;
7816 &lt;a href=&quot;http://insulaindoielii.wordpress.com/2012/10/11/colon-help-sues-wordpress/&quot;&gt;ColonHelp
7817 and its producers Zenyth Pharmaceuticals actions&lt;/a&gt;, the producer
7818 sues Wordpress to get rid of the critical information. To check if
7819 the story was for real, I contacted Automattic, the company behind
7820 wordpress.com, and they reply was &quot;We can confirm that Zenyth is
7821 seeking a court order against WordPress / Automattic. However, we
7822 don&#39;t believe the Terms of Service have been violated in this
7823 matter&quot;.&lt;/p&gt;
7824
7825 &lt;p&gt;The story seem to be simply that a blogger checked the scientific
7826 foundation for a popular health product in Rumania, ColonHelp, and
7827 reported that there was no reason at all to believe it improved the
7828 health of its users. This caused the company behind the product,
7829 Zenyth Pharmaceuticals, to use legal intimidation to try to silence
7830 the critic, instead of presenting its views and scientific foundation
7831 to argue its side.&lt;/p&gt;
7832
7833 &lt;p&gt;This is the usual story, and the Zenyth Pharmaceuticals company
7834 deserve everyone to know how it failed to act properly. Lets hope the
7835 &lt;a href=&quot;http://en.wikipedia.org/wiki/Streisand_effect&quot;&gt;Streisand
7836 effect&lt;/a&gt; can make it rethink its strategy.&lt;/p&gt;
7837
7838 &lt;p&gt;What is the harm, you might think. I suggest you take a look at
7839 &lt;a href=&quot;http://www.whatstheharm.net/detoxification.html&quot;&gt;a list of
7840 victims of detoxification&lt;/a&gt;.&lt;/p&gt;
7841 </description>
7842 </item>
7843
7844 <item>
7845 <title>Why is your local library collecting the &quot;wrong&quot; computer books?</title>
7846 <link>http://people.skolelinux.org/pere/blog/Why_is_your_local_library_collecting_the__wrong__computer_books_.html</link>
7847 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Why_is_your_local_library_collecting_the__wrong__computer_books_.html</guid>
7848 <pubDate>Wed, 3 Oct 2012 10:00:00 +0200</pubDate>
7849 <description>&lt;p&gt;I just read the blog post from Tim Retout
7850 &lt;a href=&quot;http://retout.co.uk/blog/2012/10/02/the-library-challenge&quot;&gt;about
7851 the computer science book collection available in his local
7852 library&lt;/a&gt;, and just wanted to share my comment on his theory about
7853 computer books becoming obsolete so soon. That is part of the reason
7854 why the selection is so sad in almost any local library (it is in mine
7855 too), but I believe the major contributing factor is that the people
7856 buying books to the library have no way to know a good and future
7857 computer classic from trash. And they need to know which one will
7858 become a classic in the future, as they would normally buy one of the
7859 recently published books.&lt;/p&gt;
7860
7861 &lt;p&gt;During my university years, I worked for a while at the university
7862 library, and even there the person in charge of buying computer
7863 related books (and in fact any natural science related book), did not
7864 know enough about computers to make a good educated guess. Once, just
7865 before Christmas, they had some leftover money on the book budget and
7866 I was asked if I could pick out a lot of computer books in the
7867 university book store, for the library to buy for their collection. I
7868 had a great time picking all the books I dreamt of buying and reading,
7869 and the books I knew were classics (like most of the
7870 &lt;a href=&quot;http://en.wikipedia.org/wiki/W._Richard_Stevens&quot;&gt;Stevens
7871 collection&lt;/a&gt;). I picked several of the generic O&#39;Reilly books (ie
7872 documenting protocols, formats and systems, not specific versions of
7873 products) and stayed away from the &#39;teach yourself X in N days&#39; class.
7874 I had a great time, and probably picked out more than a hundred books
7875 for the library that evening.&lt;/p&gt;
7876
7877 &lt;p&gt;The sad fact is that there is no way a overworked librarian is
7878 going to know that for example
7879 &lt;a href=&quot;http://en.wikipedia.org/wiki/The_Practice_of_Programming&quot;&gt;The
7880 Practice of Programming&lt;/a&gt; is a must-have in any computer library,
7881 and they will most of the time end up picking the wrong books to buy.
7882 Perhaps you can help your local library make better choices by giving
7883 the suggestions for books to get? I know they would love to hear from
7884 you, even if their budget might block them from getting your favourite
7885 book right away.&lt;/p&gt;
7886 </description>
7887 </item>
7888
7889 <item>
7890 <title>Seventy percent done with Norwegian docbook version of Free Culture</title>
7891 <link>http://people.skolelinux.org/pere/blog/Seventy_percent_done_with_Norwegian_docbook_version_of_Free_Culture.html</link>
7892 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Seventy_percent_done_with_Norwegian_docbook_version_of_Free_Culture.html</guid>
7893 <pubDate>Sun, 23 Sep 2012 09:30:00 +0200</pubDate>
7894 <description>&lt;p&gt;Since this summer, I have worked in my spare time on a Norwegian &lt;a
7895 href=&quot;http://www.docbook.org/&quot;&gt;docbook&lt;/a&gt; version of the 2004 book &lt;a
7896 href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; by Lawrence Lessig.
7897 The reason is that this book is a great primer on what problems exist
7898 in the current copyright laws, and I want it to be available also for
7899 those that are reluctant do read an English book.
7900
7901 When I started, I
7902 &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
7903 for volunteers&lt;/a&gt; to help me, but too few have volunteered so far,
7904 and progress is a bit slow. Anyway, today I broken the 70 percent
7905 mark for the first rough translation. At the moment, less than 700
7906 strings (paragraphs, index terms, titles) are left to translate. With
7907 my current progress of 10-20 strings per day, it will take a while to
7908 complete the translation. This graph show the updated progress:&lt;/p&gt;
7909
7910 &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;
7911
7912 &lt;p&gt;Progress have slowed down lately due to family and work
7913 commitments. If you want to help, please get in touch, and check out
7914 the project files currently available from
7915 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;.&lt;/p&gt;
7916
7917 &lt;p&gt;If you are curious what the translated book currently look like,
7918 the updated
7919 &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;
7920 and
7921 &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;
7922 are published on github. The HTML version is published as well, but
7923 github hand it out with MIME type text/plain, confusing browsers, so I
7924 saw no point in linking to that version.&lt;/p&gt;
7925 </description>
7926 </item>
7927
7928 <item>
7929 <title>Debian Edu interview: Giorgio Pioda</title>
7930 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Giorgio_Pioda.html</link>
7931 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Giorgio_Pioda.html</guid>
7932 <pubDate>Mon, 17 Sep 2012 14:10:00 +0200</pubDate>
7933 <description>&lt;p&gt;After a long break in my row of interviews with people in the
7934 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
7935 community, I finally found time to wrap up another. This time it is
7936 Giorgio Pioda, which showed up on the mailing list at the start of
7937 this year, asking questions and inspiring us to improve the first time
7938 administrators experience with Skolelinux. :) The interview was
7939 conduced in May, but I only found time to publish it now.&lt;/p&gt;
7940
7941 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
7942
7943 &lt;p&gt;I have a PhD in chemistry but since several years I work as teacher
7944 in secondary (15-18 year old students) and tertiary (a kind of &quot;light&quot;
7945 university) schools. Five years ago I started to manage a Learning
7946 Management Service server and slowly I got more and more involved with
7947 IT. 3 years ago the graduating schools moved completely to Linux and I
7948 got the head of the IT for this. The experience collected in chemistry
7949 labs computers (for example NMR analysis of protein folding) and in
7950 the IT-courses during university where sufficient to start. Self
7951 training is anyway very important&lt;/p&gt;
7952
7953 &lt;p&gt;I live in the Italian speaking part of Switzerland, and the
7954 &lt;a href=&quot;http://www.spse.ch/&quot;&gt;SPSE school&lt;/a&gt; (secondary) is a very
7955 special sport school for young people who try to became sport pro (for
7956 all sports, we have dozens of disciplines represented) and we are
7957 recognised by the Olympic Swiss Organisation.
7958
7959 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
7960 project?&lt;/strong&gt;&lt;/p&gt;
7961
7962 &lt;p&gt;Looking for Linux / Primary Domain Controller (PDC) I found it
7963 already several years ago. But since the system was still not
7964 Kerberized and since our schools relies strongly on laptops I didn&#39;t
7965 use it. I plan to introduce it in the next future, probably for the
7966 next school year, since the squeeze release solved this security
7967 hole.&lt;/p&gt;
7968
7969 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
7970 Edu?&lt;/strong&gt;&lt;/p&gt;
7971
7972 &lt;p&gt;Many. First of all there is a strong and living community that is
7973 very generous for help and hints. Chat help is crucial, together with
7974 the mailing list. Second. With Skolelinux you get an already well
7975 engineered platform and you don&#39;t have to start to build up your PDC
7976 and your clients from GNU/scratch; I&#39;ve already done this once and I
7977 can tell it, it is hard. Third, since Skolelinux is a standard
7978 platform, it is way easier to educate other IT people and even if the
7979 head IT is sick another one could pick up the task without too much
7980 hassle.&lt;/p&gt;
7981
7982 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
7983 Edu?&lt;/strong&gt;&lt;/p&gt;
7984
7985 &lt;p&gt;The only real problem I see is that it is a little too less
7986 flexible at client level. Debian stable is rocky and desirable, but
7987 there are many reasons that force for another choice. For example the
7988 need of new drivers for new PC, or the need for a specific OS for some
7989 devices that have specific software packages for another specific
7990 distribution (I have such a case for whiteboards that have only
7991 Ubuntu packages). Thus, I prepared compatibility packages educlient
7992 and eduroaming, hoping not to use them ;-)&lt;/p&gt;
7993
7994 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
7995
7996 &lt;p&gt;I have a Debian Stable PDC at school (Kerberos, NIS, NFS) with
7997 mixed Debian and Ubuntu clients. If you think that this triad
7998 combination is exotic... well I discovered right yesterday that
7999 &lt;a href=&quot;http://moo.nac.uci.edu/~hjm/Perceus-Report.html&quot;&gt;Perceus&lt;/a&gt;
8000 has the same...&lt;/p&gt;
8001
8002 &lt;p&gt;For myself I run Debian wheezy/sid, but this combination is good
8003 only I you have enough competence to fix stuff for yourself, if
8004 something breaks. Daily I use texmacs, gnumeric, a little bit of R
8005 statistics, kmplot, and less frequently OpenOffice.org.&lt;/p&gt;
8006
8007 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
8008 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
8009
8010 &lt;P&gt;I think that the only real argument that school managers &quot;hear&quot; is
8011 cost reduction. They don&#39;t give too much weight on quality, stability,
8012 just because they are normally not open to change.&lt;/p&gt;
8013
8014 &lt;p&gt;Students adapts very quickly to GNU/Linux (and for them being able
8015 to switch between different OS is a plus value); teachers and managers
8016 don&#39;t.&lt;/p&gt;
8017
8018 &lt;p&gt;We decided to move to Linux because students at our school have own
8019 laptop and we have the responsibility to keep the laptop ready to use;
8020 we were really unsatisfied with Microsoft since every Monday we had 20
8021 machine to fix for viral infections... With Linux this has been
8022 reduced to zero, since people installs almost only from official
8023 repositories. I think that our special needs brought us to Linux.
8024 Those who don&#39;t have such needs will hardly move to Linux.&lt;/p&gt;
8025 </description>
8026 </item>
8027
8028 <item>
8029 <title>IETF activity to standardise video codec</title>
8030 <link>http://people.skolelinux.org/pere/blog/IETF_activity_to_standardise_video_codec.html</link>
8031 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/IETF_activity_to_standardise_video_codec.html</guid>
8032 <pubDate>Sat, 15 Sep 2012 20:00:00 +0200</pubDate>
8033 <description>&lt;p&gt;After the
8034 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/IETF_standardize_its_first_multimedia_codec__Opus.html&quot;&gt;Opus
8035 codec made&lt;/a&gt; it into &lt;a href=&quot;http://www.ietf.org/&quot;&gt;IETF&lt;/a&gt; as
8036 &lt;a href=&quot;http://tools.ietf.org/html/rfc6716&quot;&gt;RFC 6716&lt;/a&gt;, I had a look
8037 to see if there is any activity in IETF to standardise a video codec
8038 too, and I was happy to discover that there is some activity in this
8039 area. A non-&quot;working group&quot; mailing list
8040 &lt;a href=&quot;https://www.ietf.org/mailman/listinfo/video-codec&quot;&gt;video-codec&lt;/a&gt;
8041 was
8042 &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
8043 formal working group should be formed.&lt;/p&gt;
8044
8045 &lt;p&gt;I look forward to see how this plays out. There is already
8046 &lt;a href=&quot;http://www.ietf.org/mail-archive/web/video-codec/current/msg00003.html&quot;&gt;an
8047 email from someone&lt;/a&gt; in the MPEG group at ISO asking people to
8048 participate in the ISO group. Given how ISO failed with OOXML and given
8049 that it so far (as far as I can remember) only have produced
8050 multimedia formats requiring royalty payments, I suspect
8051 joining the ISO group would be a complete waste of time, but I am not
8052 involved in any codec work and my opinion will not matter much.&lt;/p&gt;
8053
8054 &lt;p&gt;If one of my readers is involved with codec work, I hope she will
8055 join this work to standardise a royalty free video codec within
8056 IETF.&lt;/p&gt;
8057 </description>
8058 </item>
8059
8060 <item>
8061 <title>IETF standardize its first multimedia codec: Opus</title>
8062 <link>http://people.skolelinux.org/pere/blog/IETF_standardize_its_first_multimedia_codec__Opus.html</link>
8063 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/IETF_standardize_its_first_multimedia_codec__Opus.html</guid>
8064 <pubDate>Wed, 12 Sep 2012 13:50:00 +0200</pubDate>
8065 <description>&lt;p&gt;Yesterday, &lt;a href=&quot;http://www.ietf.org/&quot;&gt;IETF&lt;/a&gt; announced the
8066 publication of of
8067 &lt;a href=&quot;http://tools.ietf.org/html/rfc6716&quot;&gt;RFC 6716, the Definition
8068 of the Opus Audio Codec&lt;/a&gt;, a low latency, variable bandwidth, codec
8069 intended for both VoIP, film and music. This is the first time, as
8070 far as I know, that IETF have standardized a multimedia codec. In
8071 &lt;a href=&quot;http://tools.ietf.org/html/rfc3533&quot;&gt;RFC 3533&lt;/a&gt;, IETF
8072 standardized the OGG container format, and it has proven to be a great
8073 royalty free container for audio, video and movies. I hope IETF will
8074 continue to standardize more royalty free codeces, after ISO and MPEG
8075 have proven incapable of securing everyone equal rights to publish
8076 multimedia content on the Internet.&lt;/p&gt;
8077
8078 &lt;p&gt;IETF require two interoperating independent implementations to
8079 ratify a standard, and have so far ensured to only standardize royalty
8080 free specifications. Both are key factors to allow everyone (rich and
8081 poor), to compete on equal terms on the Internet.&lt;/p&gt;
8082
8083 &lt;p&gt;Visit the &lt;a href=&quot;http://opus-codec.org/&quot;&gt;Opus project page&lt;/a&gt; if
8084 you want to learn more about the solution.&lt;/p&gt;
8085 </description>
8086 </item>
8087
8088 <item>
8089 <title>Git repository for song book for Computer Scientists</title>
8090 <link>http://people.skolelinux.org/pere/blog/Git_repository_for_song_book_for_Computer_Scientists.html</link>
8091 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Git_repository_for_song_book_for_Computer_Scientists.html</guid>
8092 <pubDate>Fri, 7 Sep 2012 13:50:00 +0200</pubDate>
8093 <description>&lt;p&gt;As I
8094 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Song_book_for_Computer_Scientists.html&quot;&gt;mentioned
8095 this summer&lt;/a&gt;, I have created a Computer Science song book a few
8096 years ago, and today I finally found time to create a public
8097 &lt;a href=&quot;https://gitorious.org/pere-cs-songbook/pere-cs-songbook&quot;&gt;Gitorious
8098 repository for the project&lt;/a&gt;.&lt;/p&gt;
8099
8100 &lt;p&gt;If you want to help out, please clone the source and submit patches
8101 to the HTML version. To generate the PDF and PostScript version,
8102 please use prince XML, or let me know about a useful free software
8103 processor capable of creating a good looking PDF from the HTML.&lt;/p&gt;
8104
8105 &lt;p&gt;Want to sing? You can still find the song book in HTML, PDF and
8106 PostScript formats at
8107 &lt;a href=&quot;http://www.hungry.com/~pere/cs-songbook/&quot;&gt;Petter&#39;s Computer
8108 Science Songbook&lt;/a&gt;.&lt;/p&gt;
8109 </description>
8110 </item>
8111
8112 <item>
8113 <title>Free software forced Microsoft to open Office (and don&#39;t forget Officeshots)</title>
8114 <link>http://people.skolelinux.org/pere/blog/Free_software_forced_Microsoft_to_open_Office__and_don_t_forget_Officeshots_.html</link>
8115 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_software_forced_Microsoft_to_open_Office__and_don_t_forget_Officeshots_.html</guid>
8116 <pubDate>Thu, 23 Aug 2012 14:20:00 +0200</pubDate>
8117 <description>&lt;p&gt;I came across a great comment from Simon Phipps today, about how
8118 &lt;a href=&quot;http://www.infoworld.com/d/open-source-software/how-microsoft-was-forced-open-office-200233&quot;&gt;Microsoft
8119 have been forced to open Office&lt;/a&gt;, and it made me remember and
8120 revisit the great site
8121 &lt;a href=&quot;http://www.officeshots.org/&quot;&gt;officeshots&lt;/a&gt; which allow you
8122 to check out how different programs present the ODF file format. I
8123 recommend both to those of my readers interested in ODF. :)&lt;/p&gt;
8124 </description>
8125 </item>
8126
8127 <item>
8128 <title>Half way there with translated docbook version of Free Culture</title>
8129 <link>http://people.skolelinux.org/pere/blog/Half_way_there_with_translated_docbook_version_of_Free_Culture.html</link>
8130 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Half_way_there_with_translated_docbook_version_of_Free_Culture.html</guid>
8131 <pubDate>Fri, 17 Aug 2012 21:50:00 +0200</pubDate>
8132 <description>&lt;p&gt;In my spare time, I currently work on a Norwegian
8133 &lt;a href=&quot;http://www.docbook.org/&quot;&gt;docbook&lt;/a&gt; version of the 2004 book
8134 &lt;a href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; by Lawrence Lessig,
8135 to get a Norwegian text explaining the problems with the copyright law
8136 I can give to my parents and others that are reluctant to read an
8137 English book. It is a marvellous set of examples on how the ever
8138 expanding copyright regulations hurt culture and society. When the
8139 translation is done, I hope to find funding to print and ship a copy
8140 to all the members of the Norwegian parliament, before they sit down
8141 to debate the latest revisions to the Norwegian copyright law. This
8142 summer I
8143 &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
8144 for volunteers&lt;/a&gt; to help me, and I have been able to secure the
8145 valuable contribution from at least one other Norwegian.&lt;/p&gt;
8146
8147 &lt;p&gt;Two days ago, we finally broke the 50% mark. Then more than 50% of
8148 the number of strings to translate (normally paragraphs, but also
8149 titles and index entries are also counted). All parts from the
8150 beginning up to and including chapter four is translated. So is
8151 chapters six, seven and the conclusion. I created a graph to show the
8152 progress:&lt;/p&gt;
8153
8154 &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;
8155
8156 &lt;p&gt;The number of strings to translate increase as I insert the index
8157 entries into the docbook. They were missing with the docbook version
8158 I initially started with. There are still quite a few index entries
8159 missing, but everyone starting with A, B, O, Z and Y are done. I
8160 currently focus on completing the index entries, to get a complete
8161 english version of the docbook source.&lt;/p&gt;
8162
8163 &lt;p&gt;There is still need for translators and people with docbook
8164 knowledge, to be able to get a good looking book (I still struggle
8165 with dblatex, xmlto and docbook-xsl) as well as to do the draft
8166 translation and proof reading. And I would like the figures to be
8167 redrawn as SVGs to make it easy to translate them. Any SVG master
8168 around? I am sure there are some legal terms that are unfamiliar to
8169 me. If you want to help, please get in touch, and check out the
8170 project files currently available from &lt;a
8171 href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;.&lt;/p&gt;
8172
8173 &lt;p&gt;If you are curious what the translated book currently look like,
8174 the updated
8175 &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;
8176 and
8177 &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;
8178 are published on github. The HTML version is published as well, but
8179 github hand it out with MIME type text/plain, confusing browsers, so I
8180 saw no point in linking to that version.&lt;/p&gt;
8181 </description>
8182 </item>
8183
8184 <item>
8185 <title>Notes on language codes for Norwegian docbook processing...</title>
8186 <link>http://people.skolelinux.org/pere/blog/Notes_on_language_codes_for_Norwegian_docbook_processing___.html</link>
8187 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Notes_on_language_codes_for_Norwegian_docbook_processing___.html</guid>
8188 <pubDate>Fri, 10 Aug 2012 21:00:00 +0200</pubDate>
8189 <description>&lt;p&gt;In &lt;a href=&quot;http://www.docbook.org/&quot;&gt;docbook&lt;/a&gt; one can specify
8190 the language used at the top, and the processing pipeline will use
8191 this information to pick the correct translations for &#39;chapter&#39;, &#39;see
8192 also&#39;, &#39;index&#39; etc. And for most languages used with docbook, I guess
8193 this work just fine. For example a German user can start the document
8194 with &amp;lt;book lang=&quot;de&quot;&amp;gt;, and the document will show up with the
8195 correct content with any of the docbook processors. This is not the
8196 case for the language
8197 &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
8198 am working with at the moment&lt;/a&gt;, Norwegian Bokmål.&lt;/p&gt;
8199
8200 &lt;p&gt;For a while, I was confused about which language code to use,
8201 because I was unable to find any language code that would work across
8202 all tools. I am currently testing dblatex, xmlto, docbook-xsl, and
8203 dbtoepub, and they do not handle Norwegian Bokmål the same way. Some
8204 of them do not handle it at all.&lt;/p&gt;
8205
8206 &lt;p&gt;A bit of background information is probably needed to understand
8207 this mess. Norwegian is not one, but two written variants. The
8208 variants are Norwegian Nynorsk and Norwegian Bokmål. There are three
8209 two letter language codes associated with these languages, Norwegian
8210 is &#39;no&#39;, Norwegian Nynorsk is &#39;nn&#39; and Norwegian Bokmål is &#39;nb&#39;.
8211 Historically the &#39;no&#39; language code was used for Norwegian Bokmål, but
8212 many years ago this was found to be å bad idea, and the recommendation
8213 is to use the most specific language code instead, to avoid confusion.
8214 In the transition period it is a good idea to make sure &#39;no&#39; was an
8215 alias for &#39;nb&#39;.&lt;/p&gt;
8216
8217 &lt;p&gt;Back to docbook processing tools in Debian. The dblatex tool only
8218 understand &#39;nn&#39;. There are translations for &#39;no&#39;, but not &#39;nb&#39; (BTS
8219 &lt;a href=&quot;http://bugs.debian.org/684391&quot;&gt;#684391&lt;/a&gt;), but due to a bug
8220 (BTS &lt;a href=&quot;http://bugs.debian.org/682936&quot;&gt;#682936&lt;/a&gt;) the &#39;no&#39;
8221 language code is not recognised. The docbook-xsl tool chain only
8222 recognise &#39;nn&#39; and &#39;nb&#39;, but not &#39;no&#39;. The xmlto tool only recognise
8223 &#39;nn&#39; and &#39;nb&#39;, but not &#39;no&#39;. The end result that there is no language
8224 code I can use to get the docbook file working with all of these tools
8225 at the same time. :(&lt;/p&gt;
8226
8227 &lt;p&gt;The correct solution is to use &amp;lt;book lang=&quot;nb&quot;&amp;gt;, but it will
8228 take time before that will work with all the free software docbook
8229 processors. :(&lt;/p&gt;
8230
8231 &lt;p&gt;Oh, the joy of well integrated tools. :/&lt;/p&gt;
8232 </description>
8233 </item>
8234
8235 <item>
8236 <title>Best way to create a docbook book?</title>
8237 <link>http://people.skolelinux.org/pere/blog/Best_way_to_create_a_docbook_book_.html</link>
8238 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Best_way_to_create_a_docbook_book_.html</guid>
8239 <pubDate>Tue, 31 Jul 2012 22:00:00 +0200</pubDate>
8240 <description>&lt;p&gt;I tried to send this text to the
8241 &lt;a href=&quot;https://lists.oasis-open.org/archives/docbook-apps/&quot;&gt;docbook-apps
8242 mailing list at lists.oasis-open.org&lt;/a&gt;, but it only accept messages
8243 from subscribers and rejected my post, and I completely lack the
8244 bandwidth required to subscribe to another mailing list, so instead I
8245 try to post my message here and hope my blog readers can help me
8246 out.&lt;/p&gt;
8247
8248 &lt;p&gt;I am quite new to docbook processing, and am climbing a steep
8249 learning curve at the moment.&lt;/p&gt;
8250
8251 &lt;p&gt;To give you some background, I am working on a Norwegian
8252 translation of the book Free Culture by Lawrence Lessig, and I use
8253 docbook to handle the process. The files to build the book are
8254 available from
8255 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;.
8256 The book got around 400 pages with parts, images, footnotes, tables,
8257 index entries etc, which has proven to be a challenge for the free
8258 software docbook processors. My build platform is Debian GNU/Linux
8259 Squeeze.&lt;/p&gt;
8260
8261 &lt;p&gt;I want to build PDF, EPUB and HTML version of the book, and have
8262 tried different tool chains to do the conversion from docbook to these
8263 formats. I am currently focusing on the PDF version, and have a few
8264 problems.&lt;/p&gt;
8265
8266 &lt;ul&gt;
8267
8268 &lt;li&gt;Using dblatex, the &amp;lt;part&amp;gt; handling is not the way I want to,
8269 as &amp;lt;/part&amp;gt; do not really end the &amp;lt;part&amp;gt;. (See
8270 &lt;a href=&quot;http://bugs.debian.org/683166&quot;&gt;BTS report #683166&lt;/a&gt;), the
8271 xetex backend (needed to process UTF-8) give incorrect hyphens in
8272 index references spanning several pages (See
8273 &lt;a href=&quot;http://bugs.debian.org/682901&quot;&gt;BTS report #682901&lt;/a&gt;), and
8274 I am unable to get the norwegian template texts (See
8275 &lt;a href=&quot;http://bugs.debian.org/682936&quot;&gt;BTS report #682936&lt;/a&gt;).&lt;/li&gt;
8276
8277 &lt;li&gt;Using straight xmlto fail with some latex error (See
8278 &lt;a href=&quot;http://bugs.debian.org/683163&quot;&gt;BTS report
8279 #683163&lt;/a&gt;).&lt;/li&gt;
8280
8281 &lt;li&gt;Using xmlto with the fop backend fail to handle images (do not
8282 show up in the PDF), fail to handle a long footnote (overlap
8283 footnote and text body, see
8284 &lt;a href=&quot;http://bugs.debian.org/683197&quot;&gt;BTS report #683197&lt;/a&gt;), and
8285 fail to create a correct index (some lack page ref, and the page
8286 refs listed are not right).&lt;/li&gt;
8287
8288 &lt;li&gt;Using xmlto with the dblatex backend behave like dblatex.&lt;/li&gt;
8289
8290 &lt;li&gt;Using docbook-xls with xsltproc + fop have the same footnote and
8291 index problems the xmlto + fop processing.&lt;/li&gt;
8292
8293 &lt;/ul&gt;
8294
8295 &lt;p&gt;So I wonder, what would be the best way to create the PDF version
8296 of this book? Are some of the bugs found above solved in new or
8297 experimental versions of some docbook tool chain?&lt;/p&gt;
8298
8299 &lt;p&gt;What about HTML and EPUB versions?&lt;/p&gt;
8300 </description>
8301 </item>
8302
8303 <item>
8304 <title>Free Culture in Norwegian - 5 chapters done, 74 percent left to do</title>
8305 <link>http://people.skolelinux.org/pere/blog/Free_Culture_in_Norwegian___5_chapters_done__74_percent_left_to_do.html</link>
8306 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_Culture_in_Norwegian___5_chapters_done__74_percent_left_to_do.html</guid>
8307 <pubDate>Sat, 21 Jul 2012 20:00:00 +0200</pubDate>
8308 <description>&lt;p&gt;I reported earlier that I am working on
8309 &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
8310 norwegian version&lt;/a&gt; of the book
8311 &lt;a href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; by Lawrence Lessig.
8312 Progress is good, and yesterday I got a major contribution from Anders
8313 Hagen Jarmund completing chapter six. The source files as well as a
8314 PDF and EPUB version of this book are available from
8315 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;.&lt;/p&gt;
8316
8317 &lt;p&gt;I am happy to report that the draft for the first two chapters
8318 (preface, introduction) is complete, and three other chapters are also
8319 completely translated. This completes 26 percent of the number of
8320 strings (equivalent to paragraphs) in the book, and there is thus 74
8321 percent left to translate. A graph of the progress is present at the
8322 bottom of the github project page. There is still room for more
8323 contributors. Get in touch or send github pull requests with fixes if
8324 you got time and are willing to help make this book make it to
8325 print. :)&lt;/p&gt;
8326
8327 &lt;p&gt;The book translation framework could also be a good basis for other
8328 translations, if you want the book to be available in your
8329 language.&lt;/p&gt;
8330 </description>
8331 </item>
8332
8333 <item>
8334 <title>Call for help from docbook expert to tag Free Culture by Lawrence Lessig</title>
8335 <link>http://people.skolelinux.org/pere/blog/Call_for_help_from_docbook_expert_to_tag_Free_Culture_by_Lawrence_Lessig.html</link>
8336 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Call_for_help_from_docbook_expert_to_tag_Free_Culture_by_Lawrence_Lessig.html</guid>
8337 <pubDate>Mon, 16 Jul 2012 22:50:00 +0200</pubDate>
8338 <description>&lt;p&gt;I am currently working on a
8339 &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
8340 to translate&lt;/a&gt; the book
8341 &lt;a href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; by Lawrence Lessig
8342 to Norwegian. And the source we base our translation on is the
8343 &lt;a href=&quot;http://en.wikipedia.org/wiki/DocBook&quot;&gt;docbook&lt;/a&gt; version, to
8344 allow us to use po4a and .po files to handle the translation, and for
8345 this to work well the docbook source document need to be properly
8346 tagged. The source files of this project is available from
8347 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;.&lt;/p&gt;
8348
8349 &lt;p&gt;The problem is that the docbook source have flaws, and we have
8350 no-one involved in the project that is a docbook expert. Is there a
8351 docbook expert somewhere that is interested in helping us create a
8352 well tagged docbook version of the book, and adjust our build process
8353 for the PDF, EPUB and HTML version of the book? This will provide a
8354 well tagged English version (our source document), and make it a lot
8355 easier for us to create a good Norwegian version. If you can and want
8356 to help, please get in touch with me or fork the github project and
8357 send pull requests with fixes. :)&lt;/p&gt;
8358 </description>
8359 </item>
8360
8361 <item>
8362 <title>Debian Edu interview: George Bredberg</title>
8363 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__George_Bredberg.html</link>
8364 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__George_Bredberg.html</guid>
8365 <pubDate>Mon, 9 Jul 2012 00:30:00 +0200</pubDate>
8366 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
8367 Skolelinux&lt;/a&gt; project have users all over the globe, but until
8368 recently we have not known about any users in Norway&#39;s neighbour
8369 country Sweden. This changed when George Bredberg showed up in March
8370 this year on the mailing list, asking interesting questions about how
8371 to adjust and scale the just released
8372 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.html&quot;&gt;Debian Edu
8373 Wheezy&lt;/a&gt; setup to his liking. He granted me an interview, and I am
8374 happy to share his answers with you here.&lt;/p&gt;
8375
8376 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
8377
8378 &lt;p&gt;I&#39;m a 44 year old country guy that have been working 12 years at
8379 the same school as 50% IT-manager and 50% Teacher. My educational
8380 background is fil.kand in history and religious beliefs, an exam as a
8381 &quot;folkhighschool&quot; teacher, that is, for teaching grownups. In
8382 Norwegian I believe it&#39;s called &quot;Vuxenupplaring&quot;. I also have a master
8383 in &quot;Technology and social change&quot;. So I&#39;m not really a tech guy, I
8384 just like to study how humans and technology interact and that is my
8385 perspective when working with IT.&lt;/p&gt;
8386
8387 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
8388 project?&lt;/strong&gt;&lt;/p&gt;
8389
8390 I have followed the Skolelinux project for quite some time by
8391 now. Earlier I tested out the K12-LTSP project, which we used for some
8392 time, but I really like the idea of having a distribution aimed to be
8393 a complete solution for schools with necessary tools integrated. When
8394 K12-LTSP abandoned that idea some years ago, I started to look more
8395 seriously into Skolelinux instead.
8396
8397 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
8398 Edu?&lt;/strong&gt;&lt;/p&gt;
8399
8400 The big point of Skolelinux to me is that it is a complete
8401 distribution, ready to install. It has LDAP-support, MS Windows
8402 integration tools and so forth already configured, saving an
8403 administrator a lot of time and headache. We were using another Linux
8404 based thin-client system called Thinlinc, that has served us very
8405 well. But that Skolelinux is based on VNC and LTSP, to me, is better
8406 when it comes to the kind of multimedia used in schools. That is
8407 showing videos from Youtube or educational TV. It is also easier to
8408 mix thin clients with workstations, since the user settings will be the
8409 same. In our VNC-based solution you had to &quot;beat around the bush&quot; by
8410 setting up a second, hidden, home-directory for user settings for the
8411 workstations, because they will be different from the ones used on the
8412 thin clients. Skolelinux support for diskless workstations are very
8413 convenient since a school today often need to use a class room
8414 projector showing videos in full screen. That is easily done with a
8415 small integrated media computer running as a diskless workstation. You
8416 have only two installs to update and configure. One for the thin
8417 clients and one for the workstations. Also saving a lot of time. Our
8418 old system was also based on Redhat and CentOS. They are both very
8419 nice distributions, but they are sometimes painfully slow when it
8420 comes to updating multimedia support and multimedia programs (even
8421 such as Gimp), leaving us with a bit &quot;oldish&quot; applications. Debian is
8422 quicker to update.
8423
8424 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
8425 Edu?&lt;/strong&gt;&lt;/p&gt;
8426
8427 &lt;p&gt;Debian is a bit too quick when it comes to updating. As an example
8428 we use old HP terminals as thinclients, and two times already this
8429 year (2012) the updates you get from the repositories has stopped
8430 sound from working with them. It&#39;s a kernel/ALSA issue. So you have
8431 to be more careful properly testing the updates before you run them in
8432 a production environment. This has never happened with CentOS.&lt;/p&gt;
8433
8434 &lt;p&gt;I also would like to be able to set my own domain-settings at
8435 install time. In Skolelinux they are kind of hard coded into the
8436 distribution, when it comes to LDAP and at least samba integration.
8437 That is more a cosmetic/translation issue, and not a real problem.
8438 Running MS Windows applications within the Skolelinux environment needs
8439 to be better supported. That is, running them seamlessly via RDP, and
8440 support for single-sign on. That will make the transition to free
8441 software easier, because you can keep the applications you really
8442 need. No support will make it impossible if you work in a school where
8443 some applications can&#39;t be open source. As for us we really need to
8444 run Adobe InDesign in our journalist classes. We run a journalist
8445 education, and is one of the very few non university ones that is ok:d
8446 by Svenska journalistförbundet (Swedish journalist association). Our
8447 education gives the pupils the right of membership there, once they
8448 are done. This is important if you want to get a job.&lt;/p&gt;
8449
8450 &lt;p&gt;Adobe InDesign is the program most commonly used in newspapers and
8451 magazines. We used Quark Express before, but they seem to loose there
8452 market to Adobe. The only &quot;equivalent&quot; to InDesign in the opensource
8453 world is Scribus, and its not advanced enough. At least not according
8454 to the teacher. I think it would be possible to use it, because they
8455 are not supposed to learn a program, they are supposed to learn how to
8456 edit and compile a newspaper. But politically at our school we are not
8457 there yet. And Scribus lacks a lot of things you find i InDesign.&lt;/p&gt;
8458
8459 &lt;p&gt;We used even a windows program for sound editing when it comes to
8460 the radio-journalist part. The year to come we are going to try
8461 Audacity. That software has the same kind of limitations compared to
8462 Adobe Audition, but that teacher is a bit more open minded. We have
8463 tried Ardour also, but that instead is more like a music studio
8464 program, not intended for the kind of editing taking place in a radio
8465 studio. Its way to complex and the GUI is to scattered when you only
8466 want to cut, make pass-overs, add extra channels and normalise. Those
8467 things you can do in Audacity, but its not as easy as in Audition. You
8468 have to do more things manually with envelopes, and that is a bit old
8469 fashion and timewasting. Its also harder to cut and move sound from
8470 one channel to another, which is a thing that you do frequently
8471 because you often find yourself needing to rearrange parts of the
8472 sound file.&lt;/p&gt;
8473
8474 &lt;p&gt;So, I am not sure we will succeed in replacing even Audition, but we
8475 will try. The problem is the students have certain expectations when
8476 they start an education towards a profession. So the programs has to
8477 look and feel professional. Good thing with radio, there are many
8478 programs out there, that radio studios use, so its not as standardised
8479 as Newspaper editing. That means, it does not really matter what
8480 program they learn, because once they start working they still have to
8481 learn the program the studio uses, so instead focus has to be to learn
8482 the editing part without to much focus on a specific software.&lt;/p&gt;
8483
8484 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
8485
8486 &lt;p&gt;Myself I&#39;m running Linux Mint, or Ubuntu these days. I use almost
8487 only open source software, and preferably Linux based. When it comes
8488 to most used applications its OpenOffice, and Firefox (of course ;)
8489 )&lt;/p&gt;
8490
8491 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
8492 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
8493
8494 &lt;p&gt;To get schools to use free software there has to be good open
8495 source software that are windows based, to ease the transition. But
8496 it&#39;s also very important that the multimedia support is working
8497 flawlessly. The problems with Youtube, Twitter, Facebook and whatever
8498 will create problems when it comes to both teachers and
8499 students. Economy are also important for schools, so using thin
8500 clients, as long as they have good multimedia support, is a very good
8501 idea. It&#39;s also important that the open source software works even for
8502 the administration. It&#39;s hard to convince the teachers to stick with
8503 open source, if the principal has to run Windows. It also creates a
8504 problem if some classes has to use Windows for there tasks, since that
8505 will create a difference in &quot;status&quot; between classes, so a good
8506 support for running windows applications via the thin client (Linux)
8507 desktop is essential. At least at our school, where we have mixed
8508 level of educations, from high-school to journalist-school.&lt;/p&gt;
8509
8510 &lt;p&gt;Update 2012-07-09 08:30: Paul Wise tipped me on IRC about three
8511 useful sources related to Free Software for radio stations: the LWN
8512 article &lt;a href=&quot;https://lwn.net/Articles/481607/&quot;&gt;Radio station
8513 management with Airtime&lt;/a&gt;,
8514 &lt;a href=&quot;http://www.sourcefabric.org/en/airtime/&quot;&gt;Airtime&lt;/a&gt; which
8515 claim to be a Free open source radio automation software and
8516 &lt;a href=&quot;http://www.rivendellaudio.org/&quot;&gt;Rivendell&lt;/a&gt; which claim to
8517 be complete radio broadcast automation solution. All of them seem
8518 useful to the aspiring radio producer.&lt;/p&gt;
8519 </description>
8520 </item>
8521
8522 <item>
8523 <title>Why do schools waste money on IT?</title>
8524 <link>http://people.skolelinux.org/pere/blog/Why_do_schools_waste_money_on_IT_.html</link>
8525 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Why_do_schools_waste_money_on_IT_.html</guid>
8526 <pubDate>Sun, 8 Jul 2012 09:40:00 +0200</pubDate>
8527 <description>&lt;p&gt;In the Debian Edu / Skolelinux project, we have realised that one
8528 of the major blockers for the project success is the purchasing skills
8529 in schools and municipalities. We provide what the happy users of
8530 Debian Edu / Skolelinux say they need and to a lower cost than the
8531 alternatives, and yet so few schools decide to use our solution. I
8532 was pleased to discover the same observation done by mySociety and Tom
8533 Steinberg in his blog post
8534 &quot;&lt;a href=&quot;http://www.mysociety.org/2012/06/19/can-you-recognize-the-million-pound-chair/&quot;&gt;Can
8535 you recognize the million pound chair?&lt;/a&gt;&quot;. Read it and weep for the
8536 spending of your tax money.&lt;/p&gt;
8537
8538 &lt;p&gt;Of course there are other factors involved as well, like our
8539 projects bad marketing skills and the Linux community fragmentation
8540 causing worry with the people on the outside, so we as a project need
8541 to keep working hard to gain users, but it is a up-hill battle when
8542 public decision makers are unable to understand computer system
8543 purchases.&lt;/p&gt;
8544 </description>
8545 </item>
8546
8547 <item>
8548 <title>Free Timetabling Software - nice free software</title>
8549 <link>http://people.skolelinux.org/pere/blog/Free_Timetabling_Software___nice_free_software.html</link>
8550 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_Timetabling_Software___nice_free_software.html</guid>
8551 <pubDate>Sat, 7 Jul 2012 09:50:00 +0200</pubDate>
8552 <description>&lt;p&gt;Included in &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
8553 Skolelinux&lt;/a&gt; is a large collection of end user and school specific
8554 software. It is one of the packages not installed by default but
8555 provided in the Debian archive for schools to install if they want to,
8556 is a system to automatically plan the school time table using
8557 information about available teachers, classes and rooms, combined with
8558 the list of required courses and how many hours each topic should
8559 receive. The software is
8560
8561 &lt;a href=&quot;http://lalescu.ro/liviu/fet/&quot;&gt;named FET&lt;/a&gt;, and it provide a
8562 graphical user interface to input the required information, save the
8563 result in a fairly simple XML format, and generate time tables for
8564 both teachers and students. It is available both for
8565 &lt;a href=&quot;http://lalescu.ro/liviu/fet/download.html&quot;&gt;Linux, MacOSX and
8566 Windows&lt;/a&gt;.&lt;/p&gt;
8567
8568 &lt;p&gt;This is &lt;a href=&quot;http://lalescu.ro/liviu/fet/features.html&quot;&gt;the
8569 feature list&lt;/a&gt;, liftet from the project web site:&lt;/p&gt;
8570
8571 &lt;p&gt;&lt;ul&gt;
8572
8573 &lt;li&gt;FET is free software, licensed under the GNU GPL v2 or later.
8574 You can freely use, copy, modify and redistribute it &lt;/li&gt;
8575
8576 &lt;li&gt;Localized to en_US (US English, default), ar (Arabic), ca
8577 (Catalan), da (Danish), de (German), el (Greek), es (Spanish), fa
8578 (Persian), fr (French), gl (Galician), he (Hebrew), hu
8579 (Hungarian), id (Indonesian), it (Italian), lt (Lithuanian), mk
8580 (Macedonian), ms (Malay), nl (Dutch), pl (Polish), pt_BR
8581 (Brazilian Portuguese), ro (Romanian), ru (Russian), si (Sinhala),
8582 sk (Slovak), sr (Serbian), tr (Turkish), uk (Ukrainian), uz
8583 (Uzbek) and vi (Vietnamese) (incompletely for some languages)
8584 &lt;/li&gt;
8585
8586 &lt;li&gt;Fully automatic generation algorithm, allowing also
8587 semi-automatic or manual allocation&lt;/li&gt;
8588
8589 &lt;li&gt;Platform independent implementation, allowing running on
8590 GNU/Linux, Windows, Mac and any system that Qt supports &lt;/li&gt;
8591
8592 &lt;li&gt;Flexible modular XML format for the input file, allowing editing
8593 with an XML editor or by hand (besides FET interface)&lt;/li&gt;
8594
8595 &lt;li&gt;Import/export from CSV format&lt;/li&gt;
8596
8597 &lt;li&gt;The resulted timetables are exported into HTML, XML and CSV
8598 formats &lt;/li&gt;
8599
8600 &lt;li&gt;Flexible students structure, organized into sets: years, groups
8601 and subgroups. FET allows overlapping years and groups and
8602 non-overlapping subgroups. You can even define individual students
8603 (as separate sets)&lt;/li&gt;
8604
8605 &lt;li&gt;Each constraint has a weight percentage, from 0.0% to 100.0%
8606 (but some special constraints are allowed to have only 100% weight
8607 percentage)&lt;/li&gt;
8608
8609 &lt;li&gt;Limits for the algorithm (all these limits can be increased on
8610 demand, as a custom version, because this would require a bit more
8611 memory):
8612 &lt;ul&gt;
8613 &lt;li&gt;Maximum total number of hours (periods) per day: 60&lt;/li&gt;
8614 &lt;li&gt;Maximum number of working days per week: 35&lt;/li&gt;
8615 &lt;li&gt;Maximum total number of teachers: 6000&lt;/li&gt;
8616 &lt;li&gt;Maximum total number of sets of students: 30000&lt;/li&gt;
8617 &lt;li&gt;Maximum total number of subjects: 6000&lt;/li&gt;
8618 &lt;li&gt;Virtually unlimited number of activity tags&lt;/li&gt;
8619 &lt;li&gt;Maximum number of activities: 30000&lt;/li&gt;
8620 &lt;li&gt;Maximum number of rooms: 6000&lt;/li&gt;
8621 &lt;li&gt;Maximum number of buildings: 6000&lt;/li&gt;
8622 &lt;li&gt;Possibility of adding multiple teachers and
8623 students sets for each activity. (it is possible
8624 also to have no teachers or no students sets for an
8625 activity)&lt;/li&gt;
8626 &lt;li&gt;Virtually unlimited number of time constraints&lt;/li&gt;
8627 &lt;li&gt;Virtually unlimited number of space constraints&lt;/li&gt;
8628 &lt;/ul&gt;&lt;/li&gt;
8629
8630 &lt;li&gt;A large and flexible palette of time constraints:
8631 &lt;ul&gt;
8632 &lt;li&gt;Break periods&lt;/li&gt;
8633 &lt;li&gt;For teacher(s):
8634 &lt;ul&gt;
8635 &lt;li&gt;Not available periods&lt;/li&gt;
8636 &lt;li&gt;Max/min days per week&lt;/li&gt;
8637 &lt;li&gt;Max gaps per day/week&lt;/li&gt;
8638 &lt;li&gt;Max hours daily/continuously&lt;/li&gt;
8639 &lt;li&gt;Min hours daily&lt;/li&gt;
8640 &lt;li&gt;Max hours daily/continuously with an activity tag&lt;/li&gt;
8641
8642 &lt;li&gt;Respect working in an hourly interval a max number of
8643 days per week&lt;/li&gt;
8644 &lt;/ul&gt;&lt;/li&gt;
8645 &lt;li&gt;For students (sets):
8646 &lt;ul&gt;
8647 &lt;li&gt;Not available periods&lt;/li&gt;
8648 &lt;li&gt;Begins early (specify max allowed beginnings at second hour)&lt;/li&gt;
8649 &lt;li&gt;Max gaps per day/week&lt;/li&gt;
8650 &lt;li&gt;Max hours daily/continuously&lt;/li&gt;
8651 &lt;li&gt;Min hours daily&lt;/li&gt;
8652 &lt;li&gt;Max hours daily/continuously with an activity tag&lt;/li&gt;
8653
8654 &lt;li&gt;Respect working in an hourly interval a max number of
8655 days per week&lt;/li&gt;
8656 &lt;/ul&gt;&lt;/li&gt;
8657 &lt;li&gt;For an activity or a set of activities/subactivities:
8658 &lt;ul&gt;
8659 &lt;li&gt;A single preferred starting time&lt;/li&gt;
8660 &lt;li&gt;A set of preferred starting times&lt;/li&gt;
8661 &lt;li&gt;A set of preferred time slots&lt;/li&gt;
8662 &lt;li&gt;Min/max days between them&lt;/li&gt;
8663 &lt;li&gt;End(s) students day&lt;/li&gt;
8664 &lt;li&gt;Same starting time/day/hour&lt;/li&gt;
8665 &lt;li&gt;Occupy max time slots from selection (a complex and
8666 flexible constraint, useful in many situations)&lt;/li&gt;
8667 &lt;li&gt;Consecutive, ordered, grouped (for 2 or 3 (sub)activities)&lt;/li&gt;
8668 &lt;li&gt;Not overlapping&lt;/li&gt;
8669 &lt;li&gt;Max simultaneous in selected time slots&lt;/li&gt;
8670 &lt;li&gt;Min gaps between a set of (sub)activities&lt;/li&gt;
8671 &lt;/ul&gt;&lt;/li&gt;
8672 &lt;/ul&gt;&lt;/li&gt;
8673
8674 &lt;li&gt;A large and flexible palette of space constraints:
8675 &lt;ul&gt;
8676 &lt;li&gt;Room not available periods&lt;/li&gt;
8677 &lt;li&gt;For teacher(s):
8678 &lt;ul&gt;
8679 &lt;li&gt;Home room(s)&lt;/li&gt;
8680 &lt;li&gt;Max building changes per day/week&lt;/li&gt;
8681 &lt;li&gt;Min gaps between building changes&lt;/li&gt;
8682 &lt;/ul&gt;
8683 &lt;/li&gt;
8684
8685 &lt;li&gt;For students (sets):
8686 &lt;ul&gt;
8687 &lt;li&gt;Home room(s)&lt;/li&gt;
8688 &lt;li&gt;Max building changes per day/week&lt;/li&gt;
8689 &lt;li&gt;Min gaps between building changes&lt;/li&gt;
8690 &lt;/ul&gt;
8691 &lt;/li&gt;
8692 &lt;li&gt;Preferred room(s):
8693 &lt;ul&gt;
8694 &lt;li&gt;For a subject&lt;/li&gt;
8695 &lt;li&gt;For an activity tag&lt;/li&gt;
8696 &lt;li&gt;For a subject and an activity tag&lt;/li&gt;
8697 &lt;li&gt;Individually for a (sub)activity&lt;/li&gt;
8698 &lt;/ul&gt;
8699 &lt;/li&gt;
8700
8701 &lt;li&gt;For a set of activities:
8702 &lt;ul&gt;
8703 &lt;li&gt;Occupy a maximum number of different rooms&lt;/li&gt;
8704 &lt;/ul&gt;
8705 &lt;/li&gt;
8706 &lt;/ul&gt;
8707 &lt;/li&gt;
8708 &lt;/ul&gt;&lt;/p&gt;
8709
8710 &lt;p&gt;I have not used it myself, as I am not involved in time table
8711 planning at a school, but it seem to work fine when I test it. If you
8712 need to set up your schools time table, and is tired of doing it
8713 manually, check it out.
8714
8715 A quick summary on how to use it can be found in
8716 &lt;a href=&quot;http://marvelsoft.co.in/wp/2012/03/generate-timetable-for-state-cbse-icse-igcse-schools-free/&quot;&gt;a
8717 blog post from MarvelSoft&lt;/a&gt;. If you find FET useful, please provide
8718 a recipe for the Debian Edu project in the
8719 &lt;a href=&quot;http://wiki.debian.org/DebianEdu#Howtos&quot;&gt;Debian Edu HowTo
8720 section&lt;/a&gt;.&lt;/p&gt;
8721 </description>
8722 </item>
8723
8724 <item>
8725 <title>Can Zimbra be told to send autoreplies to the From: address?</title>
8726 <link>http://people.skolelinux.org/pere/blog/Can_Zimbra_be_told_to_send_autoreplies_to_the_From__address_.html</link>
8727 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Can_Zimbra_be_told_to_send_autoreplies_to_the_From__address_.html</guid>
8728 <pubDate>Tue, 3 Jul 2012 23:30:00 +0200</pubDate>
8729 <description>&lt;p&gt;In the NUUG &lt;a href=&quot;http://www.fiksgatami.no/&quot;&gt;FiksGataMi&lt;/a&gt;
8730 project (Norwegian version of
8731 &lt;a href=&quot;http://www.fixmystreet.com/&quot;&gt;FixMyStreet&lt;/a&gt; from
8732 &lt;a href=&quot;http://www.mysociety.org/&quot;&gt;mySociety&lt;/a&gt;), we have discovered
8733 a problem with the municipalities using
8734 &lt;a href=&quot;http://www.zimbra.com/&quot;&gt;Zimbra&lt;/a&gt;. When FiksGataMi send a
8735 problem report to the government, the email From: address is set to
8736 the address of the person reporting the problem, while envelope sender
8737 is set to the FiksGataMi contact address. The intention is to make
8738 sure the municipality send any replies to the person reporting the
8739 problem, while any email delivery problems are sent to us in NUUG.
8740 This work well in most cases, but not for Karmøy municipality using
8741 Zimbra. Karmøy is using the vacation message function in Zimbra to
8742 send an automatic reply to report that the message has been received,
8743 and this message is sent to the envelope sender and not the address in
8744 the From: header.&lt;/p&gt;
8745
8746 &lt;p&gt;This causes the automatic message from Karmøy to go to NUUGs
8747 request-tracker instance instead of to the person reporting the
8748 problem. We can not really change the envelope sender address, as
8749 this would make it impossible for us to discover when there are
8750 problems with the MTAs receiving problem reports. We have been in
8751 contact with the people at Karmøy municipality, and they are willing
8752 to adjust Zimbra if something can be changed there to get a better
8753 behaviour.&lt;/p&gt;
8754
8755 &lt;p&gt;The default behaviour of Zimbra is as far as I can tell according
8756 to the specification in RFC 3834, which recommend that vacation
8757 messages are sent to the envelope sender and not to the From: address.
8758 But I wonder if it is possible to adjust or configure Zimbra to behave
8759 differently. Anyone know? Please let us know at
8760 &lt;a href=&quot;http://lists.nuug.no/mailman/listinfo/fiksgatami&quot;&gt;fiksgatami
8761 (at) nuug.no&lt;/a&gt;.&lt;/p&gt;
8762 </description>
8763 </item>
8764
8765 <item>
8766 <title>Debian Edu interview: José Luis Redrejo Rodríguez</title>
8767 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Jos__Luis_Redrejo_Rodr_guez.html</link>
8768 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Jos__Luis_Redrejo_Rodr_guez.html</guid>
8769 <pubDate>Tue, 26 Jun 2012 08:30:00 +0200</pubDate>
8770 <description>&lt;p&gt;I&#39;ve been too busy at home, but finally I found time to wrap up
8771 another interview with the people behind
8772 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;.
8773 This time we get to know José Luis Redrejo Rodríguez, one of our great
8774 helpers from Spain. His effort was the reason we added support for
8775 several desktop types (KDE, Gnome and most recently LXDE) in Debian
8776 Edu, and have all of these available in the recently published
8777 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.html&quot;&gt;Debian Edu
8778 Squeeze&lt;/a&gt; version.&lt;/p&gt;
8779
8780 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
8781
8782 &lt;p&gt;I&#39;m a father, teacher and engineer who is working for the Education
8783 ministry of the Region of Extremadura (Spain) in the implementation of
8784 ICT in schools&lt;/p&gt;
8785
8786 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
8787 project?&lt;/strong&gt;&lt;/p&gt;
8788
8789 &lt;p&gt;At 2006, I verified that both, we in Extremadura and Skolelinux
8790 project, had been working in parallel for some years, doing very
8791 similar things, using very similar tools and with similar targets, so
8792 I decided it was time to join forces as much as possible.&lt;/p&gt;
8793
8794 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
8795 Edu?&lt;/strong&gt;&lt;/p&gt;
8796
8797 &lt;p&gt;A community of highly skilled experts working together, with a
8798 really open schema of collaboration and work. I really love the
8799 concepts of Do-ocracy and Merit-ocracy and the way these concepts are
8800 been used everyday inside Debian Edu.&lt;/p&gt;
8801
8802 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
8803 Edu?&lt;/strong&gt;&lt;/p&gt;
8804
8805 &lt;p&gt;Sometimes the differences in the implementations, laws or
8806 economical and technical resources in the different countries don&#39;t
8807 allow us to agree in the same solution for all of us, and several
8808 approaches are needed, what is a waste of effort. Also, there is a
8809 lack of more man power to be able to follow the fast evolution of the
8810 technologies in school.&lt;/p&gt;
8811
8812 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
8813
8814 &lt;p&gt;Debian, of course, and due to my kind of job I am most of my time
8815 between Iceweasel, &lt;a href=&quot;http://www.geany.org/&quot;&gt;Geany&lt;/a&gt; and
8816 &lt;a href=&quot;http://www.ohloh.net/p/gnome-terminator&quot;&gt;Terminator&lt;/a&gt;.&lt;/p&gt;
8817
8818 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
8819 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
8820
8821 &lt;p&gt;I think there is not a single strategy because there are very
8822 different scenarios: schools with mixed proprietary and free
8823 environments, schools using only workstations, other schools using
8824 laptops, netbooks, tablets, interactive white-boards, etc.&lt;/p&gt;
8825
8826 &lt;p&gt;Also the range of ages of the students is very broad and you can
8827 not use the same solutions for primary schools and secondary or even
8828 universities. So different strategies are needed.&lt;/p&gt;
8829
8830 &lt;p&gt;But, looking at these differences, and looking back to the things
8831 we&#39;ve done and implemented, and the places were we have spent most of
8832 our forces, I think we should focus as much as possible in free
8833 multi-platform environments, using only standards tools, and moving
8834 more and more to Internet or network solutions that could be deployed
8835 using wireless. I think we&#39;ll see more and more personal devices in
8836 the schools, devices the students and teachers will take home with
8837 them, so the solutions must be able to be taken at home and continue
8838 working there.&lt;/p&gt;
8839 </description>
8840 </item>
8841
8842 <item>
8843 <title>Song book for Computer Scientists</title>
8844 <link>http://people.skolelinux.org/pere/blog/Song_book_for_Computer_Scientists.html</link>
8845 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Song_book_for_Computer_Scientists.html</guid>
8846 <pubDate>Sun, 24 Jun 2012 13:30:00 +0200</pubDate>
8847 <description>&lt;p&gt;Many years ago, while studying Computer Science at the
8848 &lt;a href=&quot;http://www.uit.no/&quot;&gt;University of Tromsø&lt;/a&gt;, I started
8849 collecting computer related songs for use at parties. The original
8850 version was written in LaTeX, but a few years ago I got help from
8851 Håkon W. Lie, one of the inventors of W3C CSS, to convert it to HTML
8852 while keeping the ability to create a nice book in PDF format. I have
8853 not had time to maintain the book for a while now, and guess I should
8854 put it up on some public version control repository where others can
8855 help me extend and update the book. If anyone is volunteering to help
8856 me with this, send me an email. Also let me know if there are songs
8857 missing in my book.&lt;/p&gt;
8858
8859 &lt;p&gt;I have not mentioned the book on my blog so far, and it occured to
8860 me today that I really should let all my readers share the joys of
8861 singing out load about programming, computers and computer networks.
8862 Especially now that &lt;a href=&quot;http://debconf12.debconf.org/&quot;&gt;Debconf
8863 12&lt;/a&gt; is about to start (and I am not going). Want to sing? Check
8864 out &lt;a href=&quot;http://www.hungry.com/~pere/cs-songbook/&quot;&gt;Petter&#39;s
8865 Computer Science Songbook&lt;/a&gt;.
8866 </description>
8867 </item>
8868
8869 <item>
8870 <title>Debian Edu - some ideas for the future versions</title>
8871 <link>http://people.skolelinux.org/pere/blog/Debian_Edu___some_ideas_for_the_future_versions.html</link>
8872 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu___some_ideas_for_the_future_versions.html</guid>
8873 <pubDate>Mon, 11 Jun 2012 14:30:00 +0200</pubDate>
8874 <description>&lt;p&gt;During my work on
8875 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.nb.html&quot;&gt;Debian Edu
8876 based on Squeeze&lt;/a&gt;, I came across some issues that should be
8877 addressed in the Wheezy release. I finally found time to wrap up my
8878 notes and provide quick summary of what I found, with a bit
8879 explanation.&lt;/p&gt;
8880
8881 &lt;p&gt;&lt;ul&gt;
8882
8883 &lt;li&gt;We need to rewrite our package installation framework, as tasksel
8884 changed from using tasksel tasks to using meta packages (aka packages
8885 with dependencies like our education-* packages), and our installation
8886 system depend on tasksel tasks in
8887 /usr/share/tasksel/debian-edu-tasks.desc for package
8888 installation.&lt;/li&gt;
8889
8890 &lt;li&gt;Enable Kerberos login for more services. Now with the Kerberos
8891 foundation in place, we should use it to get single sign on with more
8892 services, and avoiding unneeded password / login questions. We should
8893 at least try to enable it for these services:
8894 &lt;ul&gt;
8895
8896 &lt;li&gt;CUPS for admins to add/configure printers and users when using
8897 quotas.&lt;/li&gt;
8898 &lt;li&gt;Nagios for admins checking the system status.&lt;/li&gt;
8899 &lt;li&gt;GOsa for admins updating LDAP and users changing their passwords.&lt;/li&gt;
8900 &lt;li&gt;LDAP for admins updating LDAP.&lt;/li&gt;
8901 &lt;li&gt;Squid for users when exam mode / filtering is active.&lt;/li&gt;
8902 &lt;li&gt;ssh for admins and users to save a password prompt.&lt;/li&gt;
8903
8904 &lt;/ul&gt;&lt;/li&gt;
8905
8906 &lt;li&gt;When we move GOsa to use Kerberos instead of LDAP bind to
8907 authenticate users, we should try to block or at least limit access to
8908 use LDAP bind for authentication, to ensure Kerberos is used when it
8909 is intended, and nothing fall back to using the less safe LDAP bind&lt;/li&gt;
8910
8911 &lt;li&gt;Merge debian-edu-config and debian-edu-install. The split made
8912 sense when d-e-install did a lot more, but these days it is just an
8913 inconvenience when we update the debconf preseeding values.&lt;/li&gt;
8914
8915 &lt;li&gt;Fix partman-auto to allow us to abort the installation before
8916 touching the disk if the disk is too small. This is
8917 &lt;a href=&quot;http://bugs.debian.org/653305&quot;&gt;BTS report #653305&lt;/a&gt; and the
8918 d-i developers are fine with the patch and someone just need to apply
8919 it and upload. After this is done we need to adjust
8920 debian-edu-install to use this new hook.&lt;/li&gt;
8921
8922 &lt;li&gt;Adjust to new LTSP framework (boot time config instead of install
8923 time config). LTSP changed its design, and our hooks to install
8924 packages and update the configuration is most likely not going to work
8925 in Wheezy.
8926
8927 &lt;li&gt;Consider switching to NBD instead of NFS for LTSP root, to allow
8928 the Kernel to cache files in its normal file cache, possibly speeding
8929 up KDE login on slow networks.&lt;/li&gt;
8930
8931 &lt;li&gt;Make it possible to create expired user passwords that need to
8932 change on first login. This is useful when handing out password on
8933 paper, to make sure only the user know the password. This require
8934 fixes to the PAM handling of kdm and gdm.&lt;/li&gt;
8935
8936 &lt;li&gt;Make GUI for adding new machines automatically from sitesummary.
8937 The current command line script is not very friendly to people most
8938 familiar with GUIs. This should probably be integrated into GOsa to
8939 have it available where the admin will be looking for it..&lt;/li&gt;
8940
8941 &lt;li&gt;We should find way for Nagios to check that the DHCP service
8942 actually is working (as in handling out IP addresses). None of the
8943 Nagios checks I have found so far have been working for me.&lt;/li&gt;
8944
8945 &lt;li&gt;We should switch from libpam-nss-ldapd to sssd for all profiles
8946 using LDAP, and not only on for roaming workstations, to have less
8947 packages to configure and consistent setup across all profiles.&lt;/li&gt;
8948
8949 &lt;li&gt;We should configure Kerberos to update LDAP and Samba password
8950 when changing password using the Kerberos protocol. The hook was
8951 requested in &lt;a href=&quot;http://bugs.debian.org/588968&quot;&gt;BTS report
8952 #588968&lt;/a&gt; and is now available in Wheezy. We might need to write a
8953 MIT Kerberos plugin in C to get this.&lt;/li&gt;
8954
8955 &lt;li&gt;We should clean up the set of applications installed by default.
8956 &lt;ul&gt;
8957
8958 &lt;li&gt;reduce the number of chemistry visualisers&lt;/li&gt;
8959 &lt;li&gt;consider dropping xpaint&lt;/li&gt;
8960 &lt;li&gt;and probably more?&lt;/li&gt;
8961 &lt;/ul&gt;&lt;/li&gt;
8962
8963 &lt;li&gt;Some hardware need external firmware to work properly. This is
8964 mostly the case for WiFi network cards, but there are some other
8965 examples too. For popular laptops to work out of the box, such
8966 firmware need to be installed from non-free, and we should provide
8967 some GUI to do this. Ubuntu already have this implemented, and we
8968 could consider using their packages. At the moment we have some
8969 command line script to do this (one for the running system, another
8970 for the LTSP chroot).&lt;/li&gt;
8971
8972
8973 &lt;li&gt;In Squeeze, we provide KDE, Gnome and LXDE as desktop options. We
8974 should extend the list to Xfce and Sugar, and preferably find a way to
8975 install several and allow the admin or the user to select which one to
8976 use.&lt;/li&gt;
8977
8978 &lt;li&gt;The golearn tool from the goplay package make it easy to check out
8979 interesting educational packages. We should work on the package
8980 tagging in Debian to ensure it represent all the useful educational
8981 packages, and extend the tool to allow it to use packagekit to install
8982 new applications with a simple mouse click.&lt;/li&gt;
8983
8984 &lt;li&gt;The Squeeze version got half a exam solution already in place,
8985 with the introduction of iptable based network blocking, but for it to
8986 be a complete exam solution the Squid proxy need to enable
8987 filtering/blocking as well when the exam mode is enabled. We should
8988 implement a way to easily enable this for the schools that want it,
8989 instead of the &quot;it is documented&quot; method of today.&lt;/li&gt;
8990
8991 &lt;li&gt;A feature used in several schools is the ability for a teacher to
8992 &quot;take over&quot; the desktop of individual or all computers in the room.
8993 There are at least three implementations,
8994 &lt;a href=&quot;italc.sourceforge.net/&quot;&gt;italc&lt;/a&gt;,
8995 &lt;a href=&quot;http://www.itais.net/help/en/&quot;&gt;controlaula&lt;/a&gt; og
8996 &lt;a href=&quot;http://www.epoptes.org/&quot;&gt;epoptes&lt;/a&gt; and we should pick one of
8997 them and make it trivial to set it up in a school. The challenges is
8998 how to distribute crypto keys and how to group computers in one room
8999 and how to set up which machine/user can control the machines in a
9000 given room.&lt;/li&gt;
9001
9002 &lt;li&gt;Tablets and surf boards are getting more and more popular, and we
9003 should look into providing a good solution for integrating these into
9004 the Debian Edu network. Not quite sure how. Perhaps we should
9005 provide a installation profile with better touch screen support for
9006 them, or add some sync services to allow them to exchange
9007 configuration and data with the central server. This should be
9008 investigated.&lt;/li&gt;
9009
9010 &lt;/ul&gt;&lt;/p&gt;
9011
9012 &lt;p&gt;I guess we will discover more as we continue to work on the Wheezy
9013 version.&lt;/p&gt;
9014 </description>
9015 </item>
9016
9017 <item>
9018 <title>TV with face recognition, for improved viewer experience</title>
9019 <link>http://people.skolelinux.org/pere/blog/TV_with_face_recognition__for_improved_viewer_experience.html</link>
9020 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/TV_with_face_recognition__for_improved_viewer_experience.html</guid>
9021 <pubDate>Sat, 9 Jun 2012 22:00:00 +0200</pubDate>
9022 <description>&lt;p&gt;Slashdot got a story about Intel planning a
9023 &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
9024 with face recognition&lt;/a&gt; to recognise the viewer, and it occurred to
9025 me that it would be more interesting to turn it around, and do face
9026 recognition on the TV image itself. It could let the viewer know who
9027 is present on the screen, and perhaps look up their credibility,
9028 company affiliation, previous appearances etc for the viewer to better
9029 evaluate what is being said and done. That would be a feature I would
9030 be willing to pay for.&lt;/p&gt;
9031
9032 &lt;p&gt;I would not be willing to pay for a TV that point a camera on my
9033 household, like the big brother feature apparently proposed by Intel.
9034 It is the telescreen idea fetched straight out of the book
9035 &lt;a href=&quot;http://gutenberg.net.au/ebooks01/0100021.txt&quot;&gt;1984 by George
9036 Orwell&lt;/a&gt;.&lt;/p&gt;
9037 </description>
9038 </item>
9039
9040 <item>
9041 <title>Web service to look up HP and Dell computer hardware support status</title>
9042 <link>http://people.skolelinux.org/pere/blog/Web_service_to_look_up_HP_and_Dell_computer_hardware_support_status.html</link>
9043 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Web_service_to_look_up_HP_and_Dell_computer_hardware_support_status.html</guid>
9044 <pubDate>Wed, 6 Jun 2012 23:15:00 +0200</pubDate>
9045 <description>&lt;p&gt;A few days ago
9046 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/SOAP_based_webservice_from_Dell_to_check_server_support_status.html&quot;&gt;I
9047 reported how to get&lt;/a&gt; the support status out of Dell using an
9048 unofficial and undocumented SOAP API, which I since have found out was
9049 &lt;a href=&quot;http://lists.us.dell.com/pipermail/linux-poweredge/2012-February/045959.html&quot;&gt;discovered
9050 by Daniel De Marco in february&lt;/a&gt;. Combined with my web scraping
9051 code for HP, Dell and IBM
9052 &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
9053 2009&lt;/a&gt;, I got inspired and wrote
9054 &lt;a href=&quot;https://views.scraperwiki.com/run/computer-hardware-support-status/&quot;&gt;a
9055 web service&lt;/a&gt; based on Scraperwiki to make it easy to look up the
9056 support status and get a machine readable result back.&lt;/p&gt;
9057
9058 &lt;p&gt;This is what it look like at the moment when asking for the JSON
9059 output:
9060
9061 &lt;blockquote&gt;&lt;pre&gt;
9062 % 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;
9063 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;})
9064 %
9065 &lt;/pre&gt;&lt;/blockquote&gt;
9066
9067 &lt;p&gt;It currently support Dell and HP, and I am hoping for help to add
9068 support for other vendors. The python source is available on
9069 Scraperwiki and I welcome help with adding more features.&lt;/p&gt;
9070 </description>
9071 </item>
9072
9073 <item>
9074 <title>Debian Edu interview: Mike Gabriel</title>
9075 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Mike_Gabriel.html</link>
9076 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Mike_Gabriel.html</guid>
9077 <pubDate>Sat, 2 Jun 2012 15:00:00 +0200</pubDate>
9078 <description>&lt;p&gt;Back in 2010, Mike Gabriel showed up on the
9079 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
9080 mailing list. He quickly proved to be a valuable developer, and
9081 thanks to his tireless effort we now have Kerberos integrated into the
9082 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.html&quot;&gt;Debian Edu
9083 Squeeze&lt;/a&gt; version.&lt;/p&gt;
9084
9085 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
9086
9087 &lt;p&gt;My name is Mike Gabriel, I am 38 years old and live near Kiel,
9088 Schleswig-Holstein, Germany. I live together with a wonderful partner
9089 (Angela Fuß) and two own children and two bonus children (contributed
9090 by Angela).&lt;/p&gt;
9091
9092 &lt;p&gt;During the day I am part-time employed as a system administrator
9093 and part-time working as an IT consultant. The consultancy work
9094 touches free software topics wherever and whenever possible. During
9095 the nights I am a free software developer. In the gaps I also train in
9096 becoming an osteopath.&lt;/p&gt;
9097
9098 &lt;p&gt;Starting in 2010 we (Andreas Buchholz, Angela Fuß, Mike Gabriel)
9099 have set up a free software project in the area of Kiel that aims at
9100 introducing free software into schools. The project&#39;s name is
9101 &quot;IT-Zukunft Schule&quot; (IT future for schools). The project links IT
9102 skills with communication skills.&lt;/p&gt;
9103
9104 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
9105 project?&lt;/strong&gt;&lt;/p&gt;
9106
9107 &lt;p&gt;While preparing our own customised Linux distribution for
9108 &quot;IT-Zukunft Schule&quot; we were repeatedly asked if we really wanted to
9109 reinvent the wheel. What schools really need is already available,
9110 people said. From this impulse we started evaluating other Linux
9111 distributions that target being used for school networks.&lt;/p&gt;
9112
9113 &lt;p&gt;At the end we short-listed two approaches and compared them: a
9114 commercial Linux distribution developed by a company in Bremen,
9115 Germany, and Skolelinux / Debian Edu. Between 12/2010 and 03/2011 we
9116 went to several events and met people being responsible for marketing
9117 and development of either of the distributions. Skolelinux / Debian
9118 Edu was by far much more convincing compared to the other product that
9119 got short-listed beforehand--across the full spectrum. What was most
9120 attractive for me personally: the perspective of collaboration within
9121 the developmental branch of the Debian Edu project itself.&lt;/p&gt;
9122
9123 &lt;p&gt;In parallel with this, we talked to many local and not-so-local
9124 people. People teaching at schools, headmasters, politicians, data
9125 protection experts, other IT professionals.&lt;/p&gt;
9126
9127 &lt;p&gt;We came to two conclusions:&lt;/p&gt;
9128
9129 &lt;p&gt;First, a technical conclusion: What schools need is available in
9130 bits and pieces here and there, and none of the solutions really fit
9131 by 100%. Any school we have seen has a very individual IT setup
9132 whereas most of each school&#39;s requirements could mapped by a standard
9133 IT solution. The requirement to this IT solution is flexibility and
9134 customisability, so that individual adaptations here and there are
9135 possible. In terms of re-distributing and rolling out such a
9136 standardised IT system for schools (a system that is still to some
9137 degree customisable) there is still a lot of work to do here
9138 locally. Debian Edu / Skolelinux has been our choice as the starting
9139 point.&lt;/p&gt;
9140
9141 &lt;p&gt;Second, a holistic conclusion: What schools need does not exist at
9142 all (or we missed it so far). There are several technical solutions
9143 for handling IT at schools that tend to make a good impression. What
9144 has been missing completely here in Germany, though, is the enrolment
9145 of people into using IT and teaching with IT. &quot;IT-Zukunft Schule&quot;
9146 tries to provide an approach for this.&lt;/p&gt;
9147
9148 &lt;p&gt;Only some schools have some sort of a media concept which explains,
9149 defines and gives guidance on how to use IT in class. Most schools in
9150 Northern Germany do not have an IT service provider, the school&#39;s IT
9151 equipment is managed by one or (if the school is lucky) two (admin)
9152 teachers, most of the workload these admin teachers get done in there
9153 spare time.&lt;/p&gt;
9154
9155 &lt;p&gt;We were surprised that only a very few admin teachers were
9156 networked with colleagues from other schools. Basically, every school
9157 here around has its individual approach of providing IT equipment to
9158 teachers and students and the exchange of ideas has been quasi
9159 non-existent until 2010/2011.&lt;/p&gt;
9160
9161 &lt;p&gt;Quite some (non-admin) teachers try to avoid using IT technology in
9162 class as a learning medium completely. Several reasons for this
9163 avoidance do exist.&lt;/p&gt;
9164
9165 &lt;p&gt;We discovered that no-one has ever taken a closer look at this
9166 social part of IT management in schools, so far. On our quest journey
9167 for a technical IT solution for schools, we discussed this issue with
9168 several teachers, headmasters, politicians, other IT professionals and
9169 they all confirmed: a holistic approach of considering IT management
9170 at schools, an approach that includes the people in place, will be new
9171 and probably a gain for all.&lt;/p&gt;
9172
9173 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
9174 Edu?&lt;/strong&gt;&lt;/p&gt;
9175
9176 &lt;p&gt;There is a list of advantages: international context, openness to
9177 any kind of contributions, do-ocracy policy, the closeness to Debian,
9178 the different installation scenarios possible (from stand-alone
9179 workstation to complex multi-server sites), the transparency within
9180 project communication, honest communication within the group of
9181 developers, etc.&lt;/p&gt;
9182
9183 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
9184 Edu?&lt;/strong&gt;&lt;/p&gt;
9185
9186 &lt;p&gt;Every coin has two sides:&lt;/p&gt;
9187
9188 &lt;p&gt;Technically: &lt;a href=&quot;http://bugs.debian.org/311188&quot;&gt;BTS issue
9189 #311188&lt;/a&gt;, tricky upgradability of a Debian Edu main server, network
9190 client installations on top of a plain vanilla Debian installation
9191 should become possible sometime in the near future, one could think
9192 about splitting the very complex package debian-edu-config into
9193 several portions (to make it easier for new developers to
9194 contribute).&lt;/p&gt;
9195
9196 &lt;p&gt;Another issue I see is that we (as Debian Edu developers) should
9197 find out more about the network of people who do the marketing for
9198 Debian Edu / Skolelinux. There is a very active group in Germany
9199 promoting Skolelinux on the bigger Linux Days within Germany. Are
9200 there other groups like that in other countries? How can we bring
9201 these marketing people together (marketing group A with group B and
9202 all of them with the group of Debian Edu developers)? During the last
9203 meeting of the German Skolelinux group, I got the impression of people
9204 there being rather disconnected from the development department of
9205 Debian Edu / Skolelinux.&lt;/p&gt;
9206
9207 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
9208
9209 &lt;p&gt;For my daily business, I do not use commercial software at all.&lt;/p&gt;
9210
9211 &lt;p&gt;For normal stuff I use Iceweasel/Firefox, Libreoffice.org. For
9212 serious text writing I prefer LaTeX. I use gimp, inkscape, scribus for
9213 more artistic tasks. I run virtual machines in KVM and Virtualbox.&lt;/p&gt;
9214
9215 &lt;p&gt;I am one of the upstream developers of X2Go. In 2010 I started the
9216 development of a Python based X2Go Client, called PyHoca-GUI.
9217 PyHoca-GUI has brought forth a Python X2Go Client API that currently
9218 is being integrated in Ubuntu&#39;s software center.&lt;/p&gt;
9219
9220 &lt;p&gt;For communications I have my own Kolab server running using Horde
9221 as web-based groupware client. For IRC I love to use irssi, for Jabber
9222 I have several clients that I use, mostly pidgin, though. I am also
9223 the Debian maintainer of Coccinella, a Jabber-based interactive
9224 whiteboard.&lt;/p&gt;
9225
9226 &lt;p&gt;My favourite terminal emulator is KDE&#39;s Yakuake.&lt;/p&gt;
9227
9228 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
9229 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
9230
9231 &lt;p&gt;Communicate, communicate, communicate. Enrol people, enrol people,
9232 enrol people.&lt;/p&gt;
9233 </description>
9234 </item>
9235
9236 <item>
9237 <title>SOAP based webservice from Dell to check server support status</title>
9238 <link>http://people.skolelinux.org/pere/blog/SOAP_based_webservice_from_Dell_to_check_server_support_status.html</link>
9239 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/SOAP_based_webservice_from_Dell_to_check_server_support_status.html</guid>
9240 <pubDate>Fri, 1 Jun 2012 15:20:00 +0200</pubDate>
9241 <description>&lt;p&gt;A few years ago I wrote
9242 &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
9243 to extract support status&lt;/a&gt; for your Dell and HP servers. Recently
9244 I have learned from colleges here at the
9245 &lt;a href=&quot;http://www.uio.no/&quot;&gt;University of Oslo&lt;/a&gt; that Dell have
9246 made this even easier, by providing a SOAP based web service. Given
9247 the service tag, one can now query the Dell servers and get machine
9248 readable information about the support status. This perl code
9249 demonstrate how to do it:&lt;/p&gt;
9250
9251 &lt;p&gt;&lt;pre&gt;
9252 use strict;
9253 use warnings;
9254 use SOAP::Lite;
9255 use Data::Dumper;
9256 my $GUID = &#39;11111111-1111-1111-1111-111111111111&#39;;
9257 my $App = &#39;test&#39;;
9258 my $servicetag = $ARGV[0] or die &quot;Please supply a servicetag. $!\n&quot;;
9259 my ($deal, $latest, @dates);
9260 my $s = SOAP::Lite
9261 -&gt; uri(&#39;http://support.dell.com/WebServices/&#39;)
9262 -&gt; on_action( sub { join &#39;&#39;, @_ } )
9263 -&gt; proxy(&#39;http://xserv.dell.com/services/assetservice.asmx&#39;)
9264 ;
9265 my $a = $s-&gt;GetAssetInformation(
9266 SOAP::Data-&gt;name(&#39;guid&#39;)-&gt;value($GUID)-&gt;type(&#39;&#39;),
9267 SOAP::Data-&gt;name(&#39;applicationName&#39;)-&gt;value($App)-&gt;type(&#39;&#39;),
9268 SOAP::Data-&gt;name(&#39;serviceTags&#39;)-&gt;value($servicetag)-&gt;type(&#39;&#39;),
9269 );
9270 print Dumper($a -&gt; result) ;
9271 &lt;/pre&gt;&lt;/p&gt;
9272
9273 &lt;p&gt;The output can look like this:&lt;/p&gt;
9274
9275 &lt;p&gt;&lt;pre&gt;
9276 $VAR1 = {
9277 &#39;Asset&#39; =&gt; {
9278 &#39;Entitlements&#39; =&gt; {
9279 &#39;EntitlementData&#39; =&gt; [
9280 {
9281 &#39;EntitlementType&#39; =&gt; &#39;Expired&#39;,
9282 &#39;EndDate&#39; =&gt; &#39;2009-07-29T00:00:00&#39;,
9283 &#39;Provider&#39; =&gt; &#39;&#39;,
9284 &#39;StartDate&#39; =&gt; &#39;2006-07-29T00:00:00&#39;,
9285 &#39;DaysLeft&#39; =&gt; &#39;0&#39;
9286 },
9287 {
9288 &#39;EntitlementType&#39; =&gt; &#39;Expired&#39;,
9289 &#39;EndDate&#39; =&gt; &#39;2009-07-29T00:00:00&#39;,
9290 &#39;Provider&#39; =&gt; &#39;&#39;,
9291 &#39;StartDate&#39; =&gt; &#39;2006-07-29T00:00:00&#39;,
9292 &#39;DaysLeft&#39; =&gt; &#39;0&#39;
9293 },
9294 {
9295 &#39;EntitlementType&#39; =&gt; &#39;Expired&#39;,
9296 &#39;EndDate&#39; =&gt; &#39;2007-07-29T00:00:00&#39;,
9297 &#39;Provider&#39; =&gt; &#39;&#39;,
9298 &#39;StartDate&#39; =&gt; &#39;2006-07-29T00:00:00&#39;,
9299 &#39;DaysLeft&#39; =&gt; &#39;0&#39;
9300 }
9301 ]
9302 },
9303 &#39;AssetHeaderData&#39; =&gt; {
9304 &#39;SystemModel&#39; =&gt; &#39;GX620&#39;,
9305 &#39;ServiceTag&#39; =&gt; &#39;8DSGD2J&#39;,
9306 &#39;SystemShipDate&#39; =&gt; &#39;2006-07-29T19:00:00-05:00&#39;,
9307 &#39;Buid&#39; =&gt; &#39;2323&#39;,
9308 &#39;Region&#39; =&gt; &#39;Europe&#39;,
9309 &#39;SystemID&#39; =&gt; &#39;PLX_GX620&#39;,
9310 &#39;SystemType&#39; =&gt; &#39;OptiPlex&#39;
9311 }
9312 }
9313 };
9314 &lt;/pre&gt;&lt;/p&gt;
9315
9316 &lt;p&gt;I have not been able to find any documentation from Dell about this
9317 service outside the
9318 &lt;a href=&quot;http://xserv.dell.com/services/assetservice.asmx?op=GetAssetInformation&quot;&gt;inline
9319 documentation&lt;/a&gt;, and according to
9320 &lt;a href=&quot;http://iboyd.net/index.php/2012/02/14/updated-dell-warranty-information-script/&quot;&gt;one
9321 comment&lt;/a&gt; it can have stability issues, but it is a lot better than
9322 scraping HTML pages. :)&lt;/p&gt;
9323
9324 &lt;p&gt;Wonder if HP and other server vendors have a similar service. If
9325 you know of one, drop me an email. :)&lt;/p&gt;
9326 </description>
9327 </item>
9328
9329 <item>
9330 <title>First monitor calibration using ColorHug</title>
9331 <link>http://people.skolelinux.org/pere/blog/First_monitor_calibration_using_ColorHug.html</link>
9332 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_monitor_calibration_using_ColorHug.html</guid>
9333 <pubDate>Thu, 31 May 2012 22:10:00 +0200</pubDate>
9334 <description>&lt;p&gt;A few days ago my color calibration gadget
9335 &lt;a href=&quot;http://www.hughski.com/index.html&quot;&gt;ColorHug&lt;/a&gt; arrived in the
9336 mail, and I&#39;ve had a few days to test it. As all my machines are
9337 running Debian Squeeze, where
9338 &lt;a href=&quot;http://packages.qa.debian.org/c/colorhug-client.html&quot;&gt;the
9339 calibration software&lt;/a&gt; is missing (it is present in Wheezy and Sid),
9340 I ran the calibration using the Fedora based live CD. This worked
9341 just fine. So far I have only done the quick calibration. It was
9342 slow enough for me, so I will leave the more extensive calibration for
9343 another day.&lt;/p&gt;
9344
9345 &lt;p&gt;After calibration, I get a
9346 &lt;a href=&quot;http://en.wikipedia.org/wiki/ICC_profile&quot;&gt;ICC color
9347 profile&lt;/a&gt; file that can be passed to programs understanding such
9348 tools. KDE do not seem to understand it out of the box, so I searched
9349 for command line tools to use to load the color profile into X.
9350 xcalib was the first one I found, and it seem to work fine for single
9351 monitor setups. But for my video player, a laptop with a flat screen
9352 attached, it was unable to load the color profile for the correct
9353 monitor. After searching a bit, I
9354 &lt;a href=&quot;http://ubuntuforums.org/showthread.php?t=1347896&quot;&gt;discovered&lt;/a&gt;
9355 that the dispwin tool from the argyll package would do what I wanted,
9356 and a simple&lt;/p&gt;
9357
9358 &lt;p&gt;&lt;pre&gt;
9359 dispwin -d 1 profile.icc
9360 &lt;/pre&gt;&lt;/p&gt;
9361
9362 &lt;p&gt;later I had the color profile loaded for the correct monitor. The
9363 result was a bit more pink than I expected. I guess I picked the
9364 wrong monitor type for the &quot;led&quot; monitor I got, but the result is good
9365 enough for now.&lt;/p&gt;
9366 </description>
9367 </item>
9368
9369 <item>
9370 <title>Debian Edu interview: Ralf Gesellensetter</title>
9371 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Ralf_Gesellensetter.html</link>
9372 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Ralf_Gesellensetter.html</guid>
9373 <pubDate>Sun, 27 May 2012 17:15:00 +0200</pubDate>
9374 <description>&lt;p&gt;In 2003, a German teacher showed up on the
9375 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
9376 mailing list with interesting problems and reports proving he setting
9377 up Linux for a (for us at the time) lot of pupils. His name was Ralf
9378 Gesellensetter, and he has been an important tester and contributor
9379 since then, helping to make sure the
9380 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.html&quot;&gt;Debian Edu
9381 Squeeze&lt;/a&gt; release became as good as it is..&lt;/p&gt;
9382
9383 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
9384
9385 &lt;p&gt;I am a teacher from Germany, and my subjects are Geography,
9386 Mathematics, and Computer Science (&quot;Informatik&quot;). During the past 12
9387 years (since 2000), I have been working for a comprehensive (and soon,
9388 also inclusive) school leading to all kind of general levels, such as
9389 O- or A-level (&quot;Abitur&quot;). For quite as long, I&#39;ve been taking care of
9390 our computer network.&lt;/p&gt;
9391
9392 &lt;p&gt;Now, in my early 40s, I enjoy the privilege of spending a lot of my
9393 spare time together with my wife, our son (3 years) and our daughter
9394 (4 months).&lt;/p&gt;
9395
9396 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
9397 project?&lt;/strong&gt;&lt;/p&gt;
9398
9399 &lt;p&gt;We had tried different Linux based school servers, when members of
9400 my local Linux User Group (LUG OWL) detected Skolelinux. I remember
9401 very well, being part of a party celebrating the Linux New Media Award
9402 (&quot;Best Newcomer Distribution&quot;, also nominated: Ubuntu) that was given
9403 to Skolelinux at Linux World Exposition in Frankfurt, 2005 (IIRC). Few
9404 months later, I had the chance to join a developer meeting in Ulsrud
9405 (Oslo) and to hand out the award to Knut Yrvin and others. For more
9406 than 7 years, Skolelinux is part of our schools infrastructure, namely
9407 our main server (tjener), one LTSP (today without thin clients), and
9408 approximately 50 work stations. Most of these have the option to boot a
9409 locally installed Skolelinux image. As a consequence, I joined quite
9410 a few events dealing with free software or Linux, and met many Debian
9411 (Edu) developers. All of them seemed quite nice and competent to me,
9412 one more reason to stick to Skolelinux.&lt;/p&gt;
9413
9414 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
9415 Edu?&lt;/strong&gt;&lt;/p&gt;
9416
9417 &lt;p&gt;Debian driven, you are given all the advantages of a community
9418 project including well maintained updates. Once, you are familiar with
9419 the network layout, you can easily roll out an entire educational
9420 computer infrastructure, from just one installation media. As only
9421 free software (FOSS) is used, that supports even elderly hardware,
9422 up-sizing your IT equipment is only limited by space (i.e. available
9423 labs). Especially if you run a LTSP thin client server, your
9424 administration costs tend towards zero.&lt;/p&gt;
9425
9426 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
9427 Edu?&lt;/strong&gt;&lt;/p&gt;
9428
9429 &lt;p&gt;While Debian&#39;s stability has loads of advantages for servers, this
9430 might be different in some cases for clients: Schools with unlimited
9431 budget might buy new hardware with components that are not yet
9432 supported by Debian stable, or wish to use more recent versions of
9433 office packages or desktop environments. These schools have the
9434 option to run Debian testing or other distributions - if they have the
9435 capacity to do so. Another issue is that Debian release cycles
9436 include a wide range of changes; therefor a high percentage of human
9437 power seems to be absorbed by just keeping the features of Skolelinux
9438 within the new setting of the version to come. During this process,
9439 the cogs of Debian Edu are getting more and more professional,
9440 i.e. harder to understand for novices.&lt;/p&gt;
9441
9442 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
9443
9444 &lt;p&gt;LibreOffice, Wikipedia, Openstreetmap, Iceweasel (Mozilla Firefox),
9445 KMail, Gimp, Inkscape - and of course the Linux Kernel (not only on
9446 PC, Laptop, Mobile, but also our SAT receiver)&lt;/p&gt;
9447
9448 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
9449 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
9450
9451 &lt;p&gt;&lt;ol&gt;
9452
9453 &lt;li&gt;Support computer science as regular subject in schools to make
9454 people really &quot;own&quot; their hardware, to make them understand the
9455 difference between proprietary software products, and free software
9456 developing.&lt;/li&gt;
9457
9458 &lt;li&gt;Make budget baskets corresponding: In Germany&#39;s public schools
9459 there are more or less fixed budgets for IT equipment (including
9460 licenses), so schools won&#39;t benefit from any savings here. This
9461 privilege is left to private schools which have consequently a large
9462 share among German Skolelinux schools.&lt;/li&gt;
9463
9464 &lt;li&gt;Get free software in the seminars where would-be teachers are
9465 trained. In many cases, teachers&#39; software customs are respected by
9466 decision makers rather than the expertise of any IT experts.&lt;/li&gt;
9467
9468 &lt;li&gt;Don&#39;t limit ourself to free software run natively. Everybody uses
9469 free software or free licenses (for instance Wikipedia), and this
9470 general concept should get expanded to free educational content to be
9471 shared world wide (school books e.g.).&lt;/li&gt;
9472
9473 &lt;li&gt;Make clear where ever you can that the market share of free (libre)
9474 office suites is much above 20 p.c. today, and that you pupils don&#39;t
9475 need to know the &quot;ribbon menu&quot; in order to get employed.&lt;/li&gt;
9476
9477 &lt;li&gt;Talk about the difference between freeware and free software.&lt;/li&gt;
9478
9479 &lt;li&gt;Spread free software, or even collections of portable free apps
9480 for USB pen drives. Endorse students to get a legal copy of
9481 Libreoffice rather than accepting them to use illegal serials. And
9482 keep sending documents in ODF formats.&lt;/li&gt;
9483
9484 &lt;/ol&gt;&lt;/p&gt;
9485 </description>
9486 </item>
9487
9488 <item>
9489 <title>The cost of ODF and OOXML</title>
9490 <link>http://people.skolelinux.org/pere/blog/The_cost_of_ODF_and_OOXML.html</link>
9491 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_cost_of_ODF_and_OOXML.html</guid>
9492 <pubDate>Sat, 26 May 2012 18:00:00 +0200</pubDate>
9493 <description>&lt;p&gt;I just come across a blog post from Glyn Moody reporting the
9494 claimed cost from Microsoft on requiring ODF to be used by the UK
9495 government. I just sent him an email to let him know that his
9496 assumption are most likely wrong. Sharing it here in case some of my
9497 blog readers have seem the same numbers float around in the UK.&lt;/p&gt;
9498
9499 &lt;p&gt;&lt;blockquote&gt; &lt;p&gt;Hi. I just noted your
9500 &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;
9501 comment:&lt;/p&gt;
9502
9503 &lt;p&gt;&lt;blockquote&gt;&quot;They&#39;re all in Danish, not unreasonably, but even
9504 with the help of Google Translate I can&#39;t find any figures about the
9505 savings of &quot;moving to a flexible two standard&quot; as claimed by the
9506 Microsoft email. But I assume it is backed up somewhere, so let&#39;s take
9507 it, and the £500 million figure for the UK, on trust.&quot;
9508 &lt;/blockquote&gt;&lt;/p&gt;
9509
9510 &lt;p&gt;I can tell you that the Danish reports are inflated. I believe it is
9511 the same reports that were used in the Norwegian debate around 2007,
9512 and Gisle Hannemyr (a well known IT commentator in Norway) had a look
9513 at the content. In short, the reason it is claimed that using ODF
9514 will be so costly, is based on the assumption that this mean every
9515 existing document need to be converted from one of the MS Office
9516 formats to ODF, transferred to the receiver, and converted back from
9517 ODF to one of the MS Office formats, and that the conversion will cost
9518 10 minutes of work time for both the sender and the receiver. In
9519 reality the sender would have a tool capable of saving to ODF, and the
9520 receiver would have a tool capable of reading it, and the time spent
9521 would at most be a few seconds for saving and loading, not 20 minutes
9522 of wasted effort.&lt;/p&gt;
9523
9524 &lt;p&gt;Microsoft claimed all these costs were saved by allowing people to
9525 transfer the original files from MS Office instead of spending 10
9526 minutes converting to ODF. :)&lt;/p&gt;
9527
9528 &lt;p&gt;See
9529 &lt;a href=&quot;http://hannemyr.com/no/ms12_vl02.php&quot;&gt;http://hannemyr.com/no/ms12_vl02.php&lt;/a&gt;
9530 and
9531 &lt;a href=&quot;http://hannemyr.com/no/ms12.php&quot;&gt;http://hannemyr.com/no/ms12.php&lt;/a&gt;
9532 for background information. Norwegian only, sorry. :)&lt;/p&gt;
9533 &lt;/blockquote&gt;&lt;/p&gt;
9534 </description>
9535 </item>
9536
9537 <item>
9538 <title>ColorHug - USB and free software based screen color calibration</title>
9539 <link>http://people.skolelinux.org/pere/blog/ColorHug___USB_and_free_software_based_screen_color_calibration.html</link>
9540 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/ColorHug___USB_and_free_software_based_screen_color_calibration.html</guid>
9541 <pubDate>Fri, 18 May 2012 10:00:00 +0200</pubDate>
9542 <description>&lt;p&gt;In january, I
9543 &lt;a href=&quot;http://blog.cihar.com/archives/2012/01/17/colorhug-has-arrived/&quot;&gt;discovered
9544 the ColorHug&lt;/a&gt;, a USB dongle from
9545 &lt;a href=&quot;http://www.hughski.com/index.html&quot;&gt;Hughski&lt;/a&gt; to calibrate
9546 the color on a computer screen. The software required is
9547 &lt;a href=&quot;http://packages.qa.debian.org/c/colorhug-client.html&quot;&gt;included
9548 in Debian&lt;/a&gt;, and I decided back then to preorder from the next
9549 batch. Yesterday I finally heard back from them, and got the
9550 opportunity to order. Today I ordered mine, and eagerly await the
9551 delivery. I hope it arrive next week, as I got a confirmation that it
9552 should go in the mail on monday. :)&lt;/p&gt;
9553
9554 &lt;p&gt;If you want to ensure the colors on the screen match the intended
9555 colors, I suggest you check out this cheap tool with free software
9556 drivers. :)&lt;/p&gt;
9557 </description>
9558 </item>
9559
9560 <item>
9561 <title>Debian Edu interview: Jürgen Leibner</title>
9562 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__J_rgen_Leibner.html</link>
9563 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__J_rgen_Leibner.html</guid>
9564 <pubDate>Sun, 13 May 2012 20:30:00 +0200</pubDate>
9565 <description>&lt;p&gt;It has been a few busy weeks for me, but I am finally back to
9566 publish another interview with the people behind
9567 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;.
9568 This time it is one of our German developers, who have helped out over the
9569 years to make sure both a lot of major but also a lot of the minor
9570 details get right before release.
9571
9572 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
9573
9574 &lt;p&gt;My name is Jürgen Leibner, I&#39;m 49 years old and living in
9575 Bielefeld, a town in northern Germany. I worked nearly 20 years as
9576 certified engineer in the department for plant design and layout of an
9577 international company for machinery and equipment. Since 2011 I&#39;m a
9578 certified technical writer (tekom e.V.) and doing technical
9579 documentations for a steam turbine manufacturer. From April this year
9580 I will manage the department of technical documentation at a
9581 manufacturer of automation and assembly line engineering.&lt;/p&gt;
9582
9583 &lt;p&gt;My first contact with linux was around 1993. Since that time I used
9584 it at work and at home repeatedly but not exclusively as I do now at
9585 home since 2006.&lt;/p&gt;
9586
9587 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
9588 project?&lt;/strong&gt;&lt;/p&gt;
9589
9590 &lt;p&gt;Once a day in the early year of 2001 when I wanted to fetch my
9591 daughter from primary school, there was a teacher sitting in the
9592 middle of 20 old computers trying to boot them and he failed. I helped
9593 him to get them booting. That was seen by the school director and she
9594 asked me if I would like to manage that the school gets all that old
9595 computers in use. I answered: &quot;Yes&quot;.&lt;/p&gt;
9596
9597 &lt;p&gt;Some weeks later every of the 10 classrooms had one computer
9598 running Windows98. I began to collect old computers and equipment as
9599 gifts and installed the first computer room with a peer-to-peer
9600 network. I did my work at school without being payed in my spare time
9601 and with a lot of fun. About one year later the school was connected
9602 to Internet and a local area network was installed in the school
9603 building. That was the time to have a server and I knew it must be a
9604 Linux server to be able to fulfil all the wishes of the teachers and
9605 being able to do this in a transparent and economic way, without extra
9606 costs for things like licence and software. So I searched for a
9607 school server system running under Linux and I found a couple of
9608 people nearby who founded &#39;skolelinux.de&#39;. It was the Skolelinux
9609 prerelease 32 I first tried out for being used at the school. I
9610 managed the IT of that school until the municipal authority took over
9611 the IT management and centralised the services for all schools in
9612 Bielefeld in December of 2006.&lt;/p&gt;
9613
9614 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
9615 Edu?&lt;/strong&gt;&lt;/p&gt;
9616
9617 &lt;p&gt;When I&#39;m looking back to the beginning, there were other advantages
9618 for me as today.&lt;/p&gt;
9619
9620 &lt;p&gt;In the past there were advantages like:&lt;/p&gt;
9621
9622 &lt;p&gt;&lt;ul&gt;
9623
9624 &lt;li&gt;I don&#39;t need to buy it so it generates no costs to the school as
9625 they had little money to spent for computers and software.&lt;/li&gt;
9626
9627 &lt;li&gt;It has a licence which grands all rights to use it without
9628 cost.&lt;/li&gt;
9629
9630 &lt;li&gt;It was more able to fit all requirements of a server system for
9631 schools than a Microsoft server system, even if there are only Windows
9632 clients because of it&#39;s preconfigured overall concept of being a
9633 infrastructure solution and community for schools, not only a
9634 server&lt;/li&gt;
9635
9636 &lt;li&gt;I was able to configure the server to the needs of the
9637 school.&lt;/li&gt;
9638
9639 &lt;/ul&gt;&lt;/p&gt;
9640
9641 &lt;p&gt;Today some of the advantages has been lost, changed or new ones
9642 came up in this way:&lt;/p&gt;
9643
9644 &lt;p&gt;&lt;ul&gt;
9645
9646 &lt;li&gt;Most schools here do have money to buy hardware and software
9647 now.&lt;/li&gt;
9648
9649 &lt;li&gt;They are today mostly managed from central IT departments which
9650 have own concepts which often do not fit to Debian Edu concepts
9651 because they are to close to Microsoft ideology.&lt;/li&gt;
9652
9653 &lt;li&gt;With the Squeeze version of Debian Edu which now uses GOsa² for
9654 management I feel more able to manage the daily tasks than with the
9655 interfaces used in the past.&lt;/li&gt;
9656
9657 &lt;li&gt;It is more modular than in the past and fits even better to the
9658 different needs.&lt;/li&gt;
9659
9660 &lt;li&gt;The documentation is usable and gets better every day.&lt;/li&gt;
9661
9662 &lt;li&gt;More people than ever before are using Debian Edu all over the
9663 world and so the community, which is an very important part I think,
9664 is sharing knowledge and minds.&lt;/li&gt;
9665
9666 &lt;li&gt;Most, maybe all, of the technical requirements for schools are
9667 solved today by Debian Edu. &lt;/li&gt;
9668
9669 &lt;/ul&gt;&lt;/p&gt;
9670
9671 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
9672 Edu?&lt;/strong&gt;&lt;/p&gt;
9673
9674 &lt;p&gt;&lt;ul&gt;
9675
9676 &lt;li&gt;There are too few IT companies able to integrate Debian Edu into
9677 their product portfolio for serving schools with concepts or even
9678 whole municipality areas.&lt;/li&gt;
9679
9680 &lt;li&gt;Debian Edu has beside other free and open software projects not
9681 enough lobbyists which promote free and open software to
9682 politicians.&lt;/li&gt;
9683
9684 &lt;li&gt;Technically there are no disadvantages I&#39;m aware of.&lt;/li&gt;
9685
9686 &lt;/ul&gt;&lt;/p&gt;
9687
9688 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
9689
9690 &lt;p&gt;I use Debian stable on my home server and on my little desktop
9691 computer. On my laptop I use Debian testing/sid. The applications I
9692 use on my laptop and my desktop are Open/Libre-office, Iceweasel,
9693 KMail, DigiKam, Amarok, Dolphin, okular and all the other programs I
9694 need from the KDE environment. On console I use newsbeuter, mutt,
9695 screen, irssi and all the other famous and useful tools.&lt;/p&gt;
9696
9697 &lt;p&gt;My home server provides mail services with exim, dovecot, roundcube
9698 and mutt over ssh on the console, file services with samba, NFS,
9699 rsync, web services with apache, moinmoin-wiki, multimedia services
9700 with gallery2 and mediatomb and database services with MySQL for me
9701 and the whole family. I probably forgot something.&lt;/p&gt;
9702
9703 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
9704 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
9705
9706 &lt;p&gt;I believe, we should provide concepts for IT companies to integrate
9707 Debian Edu into their product portfolio with use cases for different
9708 countries and areas all over the world.&lt;/p&gt;
9709 </description>
9710 </item>
9711
9712 <item>
9713 <title>Cutting it short - and picking the right tool for the job</title>
9714 <link>http://people.skolelinux.org/pere/blog/Cutting_it_short___and_picking_the_right_tool_for_the_job.html</link>
9715 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Cutting_it_short___and_picking_the_right_tool_for_the_job.html</guid>
9716 <pubDate>Mon, 30 Apr 2012 23:30:00 +0200</pubDate>
9717 <description>&lt;p&gt;&lt;!-- IMG_5869.JPG --&gt;
9718 &lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/panasonic-er-1611.jpeg&quot;&gt;&lt;/p&gt;
9719
9720 &lt;p&gt;I normally cut my hair short, and my tool of choice has been a
9721 common hair/beard cutter, bought in a electrical shop here in Norway.
9722 But the last ones have not really been up to the task. My last
9723 cutter, some model from Braun, could only cut a few of my hairs at the
9724 time, and cutting my head took forever. And the one before that did
9725 not work very well either. We have looked for something better for a
9726 while, but it was not until I ended up visiting a hairdresser that we
9727 discovered that there are indeed better tools available. But these
9728 are not marketed and sold to &quot;regular consumers&quot;. The hair saloons
9729 can get them through their suppliers, but their suppliers only sell
9730 companies. The models they sell, are very different from the ones
9731 available from Elkjøp and Lefdal. The main difference is their
9732 efficiency. It would cut my hair in 5 minutes, instead of the 30-40
9733 minutes required by my impotent Braun. The hairdresser I visited had
9734 a Panasonic ER160, which unfortunately is no longer available from the
9735 producer. But I found it had a successor, the Panasonic ER1611.&lt;/p&gt;
9736
9737 &lt;p&gt;The next step was to find somewhere to buy it. This was not
9738 straight forward. The list of suppliers I got from the hairdresser
9739 did not want to sell anything to me. But searching for the model on
9740 the web we found a supplier in Norway willing to sell it to us for
9741 around NOK 4000,-. This was a bit much. We kept searching and
9742 finally found a Danish supplier
9743 &lt;a href=&quot;http://nicehair.dk/panasonic-er-1611-professionel-hartrimmer.html&quot;&gt;selling
9744 it for around NOK 1800,-&lt;/a&gt;. We ordered one, and it arrived a few
9745 days ago.&lt;/p&gt;
9746
9747 &lt;p&gt;The instructions said it had to charge for 8 hours when we started
9748 to use it, so we left it charging over night. Normally it will only
9749 need one hour to charge. The following evening we successfully tested
9750 it, and I can warmly recommend it to anyone looking for a real hair
9751 cutter. The ones we have used until now have been hair cutter
9752 toys.&lt;/p&gt;
9753 </description>
9754 </item>
9755
9756 <item>
9757 <title>HTC One X - Your video? What do you mean?</title>
9758 <link>http://people.skolelinux.org/pere/blog/HTC_One_X___Your_video___What_do_you_mean_.html</link>
9759 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/HTC_One_X___Your_video___What_do_you_mean_.html</guid>
9760 <pubDate>Thu, 26 Apr 2012 13:20:00 +0200</pubDate>
9761 <description>&lt;p&gt;In &lt;a href=&quot;http://www.idg.no/computerworld/article243690.ece&quot;&gt;an
9762 article today&lt;/a&gt; published by Computerworld Norway, the photographer
9763 &lt;a href=&quot;http://www.urke.com/eirik/&quot;&gt;Eirik Helland Urke&lt;/a&gt; reports
9764 that the video editor application included with
9765 &lt;a href=&quot;http://www.htc.com/www/smartphones/htc-one-x/#specs&quot;&gt;HTC One
9766 X&lt;/a&gt; have some quite surprising terms of use. The article is mostly
9767 based on the twitter message from mister Urke, stating:
9768
9769 &lt;p&gt;&lt;blockquote&gt;
9770 &quot;&lt;a href=&quot;http://twitter.com/urke/status/194062269724897280&quot;&gt;Drøy
9771 brukeravtale: HTC kan bruke MINE redigerte videoer kommersielt. Selv
9772 kan jeg KUN bruke dem privat.&lt;/a&gt;&quot;
9773 &lt;/blockquote&gt;&lt;/p&gt;
9774
9775 &lt;p&gt;I quickly translated it to this English message:&lt;/p&gt;
9776
9777 &lt;p&gt;&lt;blockquote&gt;
9778 &quot;Arrogant user agreement: HTC can use MY edited videos
9779 commercially. Although I can ONLY use them privately.&quot;
9780 &lt;/blockquote&gt;&lt;/p&gt;
9781
9782 &lt;p&gt;I&#39;ve been unable to find the text of the license term myself, but
9783 suspect it is a variation of the MPEG-LA terms I
9784 &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
9785 with my Canon IXUS 130&lt;/a&gt;. The HTC One X specification specifies that
9786 the recording format of the phone is .amr for audio and .mp3 for
9787 video. AMR is
9788 &lt;a href=&quot;http://en.wikipedia.org/wiki/Adaptive_Multi-Rate_audio_codec#Licensing_and_patent_issues&quot;&gt;Adaptive
9789 Multi-Rate audio codec&lt;/a&gt; with patents which according to the
9790 Wikipedia article require an license agreement with
9791 &lt;a href=&quot;http://www.voiceage.com/&quot;&gt;VoiceAge&lt;/a&gt;. MP4 is
9792 &lt;a href=&quot;http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC#Patent_licensing&quot;&gt;MPEG4 with
9793 H.264&lt;/a&gt;, which according to Wikipedia require a licence agreement
9794 with &lt;a href=&quot;http://www.mpegla.com/&quot;&gt;MPEG-LA&lt;/a&gt;.&lt;/p&gt;
9795
9796 &lt;p&gt;I know why I prefer
9797 &lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;free and open
9798 standards&lt;/a&gt; also for video.&lt;/p&gt;
9799 </description>
9800 </item>
9801
9802 <item>
9803 <title>RAND terms - non-reasonable and discriminatory</title>
9804 <link>http://people.skolelinux.org/pere/blog/RAND_terms___non_reasonable_and_discriminatory.html</link>
9805 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/RAND_terms___non_reasonable_and_discriminatory.html</guid>
9806 <pubDate>Thu, 19 Apr 2012 22:20:00 +0200</pubDate>
9807 <description>&lt;p&gt;Here in Norway, the
9808 &lt;a href=&quot;http://www.regjeringen.no/nb/dep/fad.html?id=339&quot;&gt; Ministry of
9809 Government Administration, Reform and Church Affairs&lt;/a&gt; is behind
9810 a &lt;a href=&quot;http://standard.difi.no/forvaltningsstandarder&quot;&gt;directory of
9811 standards&lt;/a&gt; that are recommended or mandatory for use by the
9812 government. When the directory was created, the people behind it made
9813 an effort to ensure that everyone would be able to implement the
9814 standards and compete on equal terms to supply software and solutions
9815 to the government. Free software and non-free software could compete
9816 on the same level.&lt;/p&gt;
9817
9818 &lt;p&gt;But recently, some standards with RAND
9819 (&lt;a href=&quot;http://en.wikipedia.org/wiki/Reasonable_and_non-discriminatory_licensing&quot;&gt;Reasonable
9820 And Non-Discriminatory&lt;/a&gt;) terms have made their way into the
9821 directory. And while this might not sound too bad, the fact is that
9822 standard specifications with RAND terms often block free software from
9823 implementing them. The reasonable part of RAND mean that the cost per
9824 user/unit is low,and the non-discriminatory part mean that everyone
9825 willing to pay will get a license. Both sound great in theory. In
9826 practice, to get such license one need to be able to count users, and
9827 be able to pay a small amount of money per unit or user. By
9828 definition, users of free software do not need to register their use.
9829 So counting users or units is not possible for free software projects.
9830 And given that people will use the software without handing any money
9831 to the author, it is not really economically possible for a free
9832 software author to pay a small amount of money to license the rights
9833 to implement a standard when the income available is zero. The result
9834 in these situations is that free software are locked out from
9835 implementing standards with RAND terms.&lt;/p&gt;
9836
9837 &lt;p&gt;Because of this, when I see someone claiming the terms of a
9838 standard is reasonable and non-discriminatory, all I can think of is
9839 how this really is non-reasonable and discriminatory. Because free
9840 software developers are working in a global market, it does not really
9841 help to know that software patents are not supposed to be enforceable
9842 in Norway. The patent regimes in other countries affect us even here.
9843 I really hope the people behind the standard directory will pay more
9844 attention to these issues in the future.&lt;/p&gt;
9845
9846 &lt;p&gt;You can find more on the issues with RAND, FRAND and RAND-Z terms
9847 from Simon Phipps
9848 (&lt;a href=&quot;http://blogs.computerworlduk.com/simon-says/2010/11/rand-not-so-reasonable/&quot;&gt;RAND:
9849 Not So Reasonable?&lt;/a&gt;).&lt;/p&gt;
9850
9851 &lt;p&gt;Update 2012-04-21: Just came across a
9852 &lt;a href=&quot;http://blogs.computerworlduk.com/open-enterprise/2012/04/of-microsoft-netscape-patents-and-open-standards/index.htm&quot;&gt;blog
9853 post from Glyn Moody&lt;/a&gt; over at Computer World UK warning about the
9854 same issue, and urging people to speak out to the UK government. I
9855 can only urge Norwegian users to do the same for
9856 &lt;a href=&quot;http://www.standard.difi.no/hoyring/hoyring-om-nye-anbefalte-it-standarder&quot;&gt;the
9857 hearing taking place at the moment&lt;/a&gt; (respond before 2012-04-27).
9858 It proposes to require video conferencing standards including
9859 specifications with RAND terms.&lt;/p&gt;
9860 </description>
9861 </item>
9862
9863 <item>
9864 <title>Debian Edu interview: Andreas Mundt</title>
9865 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Andreas_Mundt.html</link>
9866 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Andreas_Mundt.html</guid>
9867 <pubDate>Sun, 15 Apr 2012 12:10:00 +0200</pubDate>
9868 <description>&lt;p&gt;Behind &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and
9869 Skolelinux&lt;/a&gt; there are a lot of people doing the hard work of
9870 setting together all the pieces. This time I present to you Andreas
9871 Mundt, who have been part of the technical development team several
9872 years. He was also a key contributor in getting GOsa and Kerberos set
9873 up in the recently released
9874 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze&quot;&gt;Debian
9875 Edu Squeeze&lt;/a&gt; version.&lt;/p&gt;
9876
9877 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
9878
9879 &lt;p&gt;My name is Andreas Mundt, I grew up in south Germany. After
9880 studying Physics I spent several years at university doing research in
9881 Quantum Optics. After that I worked some years in an optics company.
9882 Finally I decided to turn over a new leaf in my life and started
9883 teaching 10 to 19 years old kids at school. I teach math, physics,
9884 information technology and science/technology.&lt;/p&gt;
9885
9886 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
9887 project?&lt;/strong&gt;&lt;/p&gt;
9888
9889 &lt;p&gt;Already before I switched to teaching, I followed the Debian Edu
9890 project because of my interest in education and Debian. Within the
9891 qualification/training period for the teaching, I started
9892 contributing.&lt;/p&gt;
9893
9894 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
9895 Edu?&lt;/strong&gt;&lt;/p&gt;
9896
9897 &lt;p&gt;The advantages of Debian Edu are the well known name, the
9898 out-of-the-box philosophy and of course the great free software of the
9899 Debian Project!&lt;/p&gt;
9900
9901 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
9902 Edu?&lt;/strong&gt;&lt;/p&gt;
9903
9904 &lt;p&gt;As every coin has two sides, the out-of-the-box philosophy has its
9905 downside, too. In my opinion, it is hard to modify and tweak the
9906 setup, if you need or want that. Further more, it is not easily
9907 possible to upgrade the system to a new release. It takes much too
9908 long after a Debian release to prepare the -Edu release, perhaps
9909 because the number of developers working on the core of the code is
9910 rather small and often busy elsewhere.&lt;/p&gt;
9911
9912 &lt;p&gt;The &lt;a href=&quot;http://wiki.debian.org/DebianLAN&quot;&gt;Debian LAN&lt;/a&gt;
9913 project might fill the use case of a more flexible system.&lt;/p&gt;
9914
9915 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
9916
9917 &lt;p&gt;I am only using non-free software if I am forced to and run Debian
9918 on all my machines. For documents I prefer LaTeX and PGF/TikZ, then
9919 mutt and iceweasel for email respectively web browsing. At school I
9920 have Arduino and Fritzing in use for a micro controller project.&lt;/p&gt;
9921
9922 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
9923 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
9924
9925 &lt;p&gt;One of the major problems is the vendor lock-in from top to bottom:
9926 Especially in combination with ignorant government employees and
9927 politicians, this works out great for the &quot;market-leader&quot;. The school
9928 administration here in Baden-Wuerttemberg is occupied by that vendor.
9929 Documents have to be prepared in non-free, proprietary formats. Even
9930 free browsers do not work for the school administration. Publishers
9931 of school books provide software only for proprietary platforms.&lt;/p&gt;
9932
9933 &lt;p&gt;To change this, political work is very important. Parts of the
9934 political spectrum have become aware of the problem in the last years.
9935 However it takes quite some time and courageous politicians to &#39;free&#39;
9936 the system. There is currently some discussion about &quot;Open Data&quot; and
9937 &quot;Free/Open Standards&quot;. I am not sure if all the involved parties have
9938 a clue about the potential of these ideas, and probably only a
9939 fraction takes them seriously. However it might slowly make free
9940 software and the philosophy behind it more known and popular.&lt;/p&gt;
9941 </description>
9942 </item>
9943
9944 <item>
9945 <title>Debian Edu interview: Justin B. Rye</title>
9946 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Justin_B__Rye.html</link>
9947 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Justin_B__Rye.html</guid>
9948 <pubDate>Sun, 8 Apr 2012 10:50:00 +0200</pubDate>
9949 <description>&lt;p&gt;It take all kind of contributions to create a Linux distribution
9950 like &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;,
9951 and this time I lend the ear to Justin B. Rye, who is listed as a big
9952 contributor to the
9953 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze&quot;&gt;Debian
9954 Edu Squeeze release manual&lt;/a&gt;.
9955
9956 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
9957
9958 &lt;p&gt;I&#39;m a 44-year-old linguistics graduate living in Edinburgh who has
9959 occasionally been employed as a sysadmin.&lt;/p&gt;
9960
9961 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
9962 project?&lt;/strong&gt;&lt;/p&gt;
9963
9964 &lt;p&gt;I&#39;m neither a developer nor a Skolelinux/Debian Edu user! The only
9965 reason my name&#39;s in the credits for the documentation is that I hang
9966 around on debian-l10n-english waiting for people to mention things
9967 they&#39;d like a native English speaker to proofread... So I did a sweep
9968 through the wiki for typos and Norglish and inconsistent spellings of
9969 &quot;localisation&quot;.&lt;/p&gt;
9970
9971 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
9972 Edu?&lt;/strong&gt;&lt;/p&gt;
9973
9974 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
9975 Edu?&lt;/strong&gt;&lt;/p&gt;
9976
9977 &lt;p&gt;These questions are too hard for me - I don&#39;t use it! In fact I
9978 had hardly any contact with I.T. until long after I&#39;d got out of the
9979 education system.&lt;/p&gt;
9980
9981 &lt;p&gt;I can tell you the advantages of Debian for me though: it soaks up
9982 as much of my free time as I want and no more, and lets me do
9983 everything I want a computer for without ever forcing me to spend
9984 money on the latest hardware.&lt;/p&gt;
9985
9986 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
9987
9988 &lt;p&gt;I&#39;ve been using Debian since Rex; popularity-contest says the
9989 software that I use most is xinit, xterm, and xulrunner (in other
9990 words, I use a distinctly retro sort of desktop).&lt;/p&gt;
9991
9992 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
9993 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
9994
9995 &lt;p&gt;Well, I don&#39;t know. I suppose I&#39;d be inclined to try reasoning
9996 with the people who make the decisions, but obviously if that worked
9997 you would hardly need a strategy.&lt;/p&gt;
9998 </description>
9999 </item>
10000
10001 <item>
10002 <title>Why the KDE menu is slow when /usr/ is NFS mounted - and a workaround</title>
10003 <link>http://people.skolelinux.org/pere/blog/Why_the_KDE_menu_is_slow_when__usr__is_NFS_mounted___and_a_workaround.html</link>
10004 <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>
10005 <pubDate>Fri, 6 Apr 2012 22:40:00 +0200</pubDate>
10006 <description>&lt;p&gt;Recently I have spent time with
10007 &lt;a href=&quot;http://www.slxdrift.no/&quot;&gt;Skolelinux Drift AS&lt;/a&gt; on speeding
10008 up a &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;
10009 Lenny installation using LTSP diskless workstations, and in the
10010 process I discovered something very surprising. The reason the KDE
10011 menu was responding slow when using it for the first time, was mostly
10012 due to the way KDE find application icons. I discovered that showing
10013 the Multimedia menu would cause more than 20 000 IP packages to be
10014 passed between the LTSP client and the NFS server. Most of these were
10015
10016 NFS LOOKUP calls, resulting in a NFS3ERR_NOENT response. Because the
10017 ping times between the client and the server were in the range 2-20
10018 ms, the menus would be very slow. Looking at the strace of kicker in
10019 Lenny (or plasma-desktop i Squeeze - same problem there), I see that
10020 the source of these NFS calls are access(2) system calls for
10021 non-existing files. KDE can do hundreds of access(2) calls to find
10022 one icon file. In my example, just finding the mplayer icon required
10023 around 230 access(2) calls.&lt;/p&gt;
10024
10025 &lt;p&gt;The KDE code seem to search for icons using a list of icon
10026 directories, and the list of possible directories is large. In
10027 (almost) each directory, it look for files ending in .png, .svgz, .svg
10028 and .xpm. The result is a very slow KDE menu when /usr/ is NFS
10029 mounted. Showing a single sub menu may result in thousands of NFS
10030 requests. I am not the first one to discover this. I found a
10031 &lt;a href=&quot;https://bugs.kde.org/show_bug.cgi?id=211416&quot;&gt;KDE bug report
10032 from 2009&lt;/a&gt; about this problem, and it is still unsolved.&lt;/p&gt;
10033
10034 &lt;p&gt;My solution to speed up the KDE menu was to create a package
10035 kde-icon-cache that upon installation will look at all .desktop files
10036 used to generate the KDE menu, find their icons, search the icon paths
10037 for the file that KDE will end up finding at run time, and copying the
10038 icon file to /var/lib/kde-icon-cache/. Finally, I add symlinks to
10039 these icon files in one of the first directories where KDE will look
10040 for them. This cut down the number of file accesses required to find
10041 one icon from several hundred to less than 5, and make the KDE menu
10042 almost instantaneous. I&#39;m not quite sure where to make the package
10043 publicly available, so for now it is only available on request.&lt;/p&gt;
10044
10045 &lt;p&gt;The bug report mention that this do not only affect the KDE menu
10046 and icon handling, but also the login process. Not quite sure how to
10047 speed up that part without replacing NFS with for example NBD, and
10048 that is not really an option at the moment.&lt;/p&gt;
10049
10050 &lt;p&gt;If you got feedback on this issue, please let us know on debian-edu
10051 (at) lists.debian.org.&lt;/p&gt;
10052 </description>
10053 </item>
10054
10055 <item>
10056 <title>Debian Edu in the Linux Weekly News</title>
10057 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_in_the_Linux_Weekly_News.html</link>
10058 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_in_the_Linux_Weekly_News.html</guid>
10059 <pubDate>Thu, 5 Apr 2012 08:00:00 +0200</pubDate>
10060 <description>&lt;p&gt;About two weeks ago, I was interviewed via email about
10061 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt; by
10062 Bruce Byfield in Linux Weekly News. The result was made public for
10063 non-subscribers today. I am pleased to see liked our Linux solution
10064 for schools. Check out his article
10065 &lt;a href=&quot;https://lwn.net/Articles/488805/&quot;&gt;Debian Edu/Skolelinux: A
10066 distribution for education&lt;/a&gt; if you want to learn more.&lt;/p&gt;
10067 </description>
10068 </item>
10069
10070 <item>
10071 <title>Debian Edu interview: Wolfgang Schweer</title>
10072 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Wolfgang_Schweer.html</link>
10073 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Wolfgang_Schweer.html</guid>
10074 <pubDate>Sun, 1 Apr 2012 23:00:00 +0200</pubDate>
10075 <description>&lt;p&gt;Germany is a core area for the
10076 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
10077 user community, and this time I managed to get hold of Wolfgang
10078 Schweer, a valuable contributor to the project from Germany.
10079
10080 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
10081
10082 &lt;p&gt;I&#39;ve studied Mathematics at the university &#39;Ruhr-Universität&#39; in
10083 Bochum, Germany. Since 1981 I&#39;m working as a teacher at the school
10084 &quot;&lt;a href=&quot;http://www.westfalenkolleg-dortmund.de/&quot;&gt;Westfalen-Kolleg
10085 Dortmund&lt;/a&gt;&quot;, a second chance school. Here, young adults is given
10086 the opportunity to get further education in order to do the school
10087 examination &#39;Abitur&#39;, which will allow to study at a university. This
10088 second chance is of value for those who want a better job perspective
10089 or failed to get a higher school examination being teens.&lt;/p&gt;
10090
10091 &lt;p&gt;Besides teaching I was involved in developing online courses for a
10092 blended learning project called &#39;abitur-online.nrw&#39; and in some other
10093 information technology related projects. For about ten years I&#39;ve been
10094 teacher and coordinator for the &#39;abitur-online&#39; project at my
10095 school. Being now in my early sixties, I&#39;ve decided to leave school at
10096 the end of April this year.&lt;/p&gt;
10097
10098 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
10099 project?&lt;/strong&gt;&lt;/p&gt;
10100
10101 &lt;p&gt;The first information about Skolelinux must have come to my
10102 attention years ago and somehow related to LTSP (Linux Terminal Server
10103 Project). At school, we had set up a network at the beginning of 1997
10104 using Suse Linux on the desktop, replacing a Novell network. Since
10105 2002, we used old machines from the city council of Dortmund as thin
10106 clients (LTSP, later Ubuntu/Lessdisks) cause new hardware was out of
10107 reach. At home I&#39;m using Debian since years and - subscribed to the
10108 Debian news letter - heard from time to time about Skolelinux. About
10109 two years ago I proposed to replace the (somehow undocumented and only
10110 known to me) system at school by a well known Debian based system:
10111 Skolelinux.&lt;/p&gt;
10112
10113 &lt;p&gt;Students and teachers appreciated the new system because of a
10114 better look and feel and an enhanced access to local media on thin
10115 clients. The possibility to alter and/or reset passwords using a GUI
10116 was welcomed, too. Being able to do administrative tasks using a GUI
10117 and to easily set up workstations using PXE was of very high value for
10118 the admin teachers.&lt;/p&gt;
10119
10120 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
10121 Edu?&lt;/strong&gt;&lt;/p&gt;
10122
10123 &lt;p&gt;It&#39;s open source, easy to set up, stable and flexible due to it&#39;s
10124 Debian base. It integrates LTSP out-of-the-box. And it is documented!
10125 So it was a perfect choice.&lt;/p&gt;
10126
10127 &lt;p&gt;Being open source, there are no license problems and so it&#39;s
10128 possible to point teachers and students to programs like
10129 OpenOffice.org, ViewYourMind (mind mapping) and The Gimp. It&#39;s of
10130 high value to be able to adapt parts of the system to special needs of
10131 a school and to choose where to get support for this.&lt;/p&gt;
10132
10133 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
10134 Edu?&lt;/strong&gt;&lt;/p&gt;
10135
10136 &lt;p&gt;Nothing yet.&lt;/p&gt;
10137
10138 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
10139
10140 &lt;p&gt;At home (Debian Sid with Gnome Desktop): Iceweasel, LibreOffice,
10141 Mutt, Gedit, Document Viewer, Midnight Commander, flpsed (PDF
10142 Annotator). At school (Skolelinux Lenny): Iceweasel, Gedit,
10143 LibreOffice.&lt;/p&gt;
10144
10145 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
10146 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
10147
10148 &lt;p&gt;Some time ago I thought it was enough to tell people about it. But
10149 that doesn&#39;t seem to work quite well. Now I concentrate on those more
10150 interested and hope to get multiplicators that way.&lt;/p&gt;
10151 </description>
10152 </item>
10153
10154 <item>
10155 <title>Debian Edu screencast: Checking email with kmail using Kerberos authentication</title>
10156 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_screencast__Checking_email_with_kmail_using_Kerberos_authentication.html</link>
10157 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_screencast__Checking_email_with_kmail_using_Kerberos_authentication.html</guid>
10158 <pubDate>Sun, 25 Mar 2012 10:00:00 +0200</pubDate>
10159 <description>&lt;!-- Video HTML based on http://www.diveintohtml5.net/video.html --&gt;
10160
10161 &lt;p&gt;The same Debian Edu developer that did the last screen cast I
10162 published, Wolfgang Schweer, has created a new screen cast showing how
10163 to set up Kmail in Debian Edu Squeze to authenticate using Kerberos,
10164 allowing users to check their local email account without providing
10165 any password. The video is embedded here in quarter size,
10166 and also available from &lt;a href=&quot;https://vimeo.com/38601767&quot;&gt;vimeo&lt;/a&gt;
10167 and download as a
10168 &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
10169 Theora&lt;/a&gt; file. Check it out below.&lt;/p&gt;
10170
10171 &lt;p&gt;&lt;video id=&quot;kmail-kerberos-movie&quot; width=&quot;256&quot; height=&quot;184&quot; preload controls&gt;
10172 &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;
10173 &lt;p&gt;Download video as
10174 &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;
10175 &lt;/video&gt;&lt;/p&gt;
10176 </description>
10177 </item>
10178
10179 <item>
10180 <title>Debian Edu interview: John Ingleby</title>
10181 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__John_Ingleby.html</link>
10182 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__John_Ingleby.html</guid>
10183 <pubDate>Mon, 19 Mar 2012 21:15:00 +0100</pubDate>
10184 <description>&lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;
10185 users are spread all across the globe. The second inteview after
10186 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/03/msg00001.html&quot;&gt;the
10187 Squeeze release&lt;/a&gt; was publised is with John Ingleby, a teacher and
10188 long time Linux user in United Kingdom.&lt;/p&gt;
10189
10190 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
10191
10192 &lt;p&gt;I teach ICT part time at the Rudolf Steiner School in Kings
10193 Langley, near London, UK. Previously I worked as a technical
10194 author/trainer while my children attended the school, and I also
10195 contributed to the Schoolforge UK community with the aim of
10196 encouraging UK schools to adopt free/open source software. Five or six
10197 years ago we had about 50 schools interested in some way, but we
10198 weren&#39;t able to convert many of them into sustainable
10199 installations.&lt;/p&gt;
10200
10201 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
10202 project?&lt;/strong&gt;&lt;/p&gt;
10203
10204 &lt;p&gt;Skolelinux had two representatives at an early Edubuntu meeting in
10205 London which I attended. However at that time our school network had
10206 just been installed using CentOS, LTSP 4 and GNOME. When LTSP 5 came
10207 along we switched to Edubuntu thin client servers so now we have a
10208 mixed environment which includes Windows PCs and student laptops, as
10209 well as their MacBooks and iPads. However, the proprietary systems
10210 have always been rather problematic, and we never built a GUI for the
10211 LDAP server, so when I discovered Skolelinux is configured for all
10212 these things we decided to try it.&lt;/p&gt;
10213
10214 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
10215 Edu?&lt;/strong&gt;&lt;/p&gt;
10216
10217 &lt;p&gt;By far the biggest advantage is the Debian Edu community. Apart
10218 from that I have always believed in the same &quot;sustainable computing&quot;
10219 goals that Skolelinux is built on: installing Linux on computers which
10220 would otherwise be thrown away, to provide a reliable, secure and
10221 low-cost IT environment for schools. From my own experience I know
10222 that a part-time person can teach and manage a network of about 25
10223 Linux computers, but it would take much more of my time if we had
10224 proprietary software everywhere.&lt;/p&gt;
10225
10226 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
10227 Edu?&lt;/strong&gt;&lt;/p&gt;
10228
10229 &lt;p&gt;As a newcomer I&#39;m just finding out who&#39;s who in the community and
10230 how you&#39;re organised, and what your procedures are for dealing with
10231 various things such as editing manual pages and so-on. The only
10232 English language mailing list seems to be for developers as well as
10233 users, so my inbox needs heavy pruning each day!&lt;/p&gt;
10234
10235 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
10236
10237 &lt;p&gt;Besides the software already mentioned at school we use Samba,
10238 OpenLDAP, CUPS, Nagios and Dansguardian for the network, and on the
10239 desktops we have LibreOffice, Firefox, GIMP and Inkscape. At home I
10240 use Ubuntu and an Android 4 eePad Transformer (but I&#39;m not sure if
10241 that counts...)&lt;/p&gt;
10242
10243 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
10244 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
10245
10246 &lt;p&gt;That&#39;s a tough question! For very many years UK schools installed
10247 and taught only proprietary software, so that at the highest levels
10248 the notion of &quot;computer&quot; means simply &quot;proprietary office
10249 applications&quot;. However, schools today are experiencing budget
10250 constraints, and many are having to think hard about upgrading Windows
10251 XP. At the same time, we have students showing teachers how to use
10252 iPads, MacBooks and Android, so the choice of operating system is no
10253 longer quite so automatic. What is more, our government at last
10254 realised that we need people with programming skills, so they&#39;re
10255 putting coding back in the curriculum! And it&#39;s encouraging that the
10256 first 10,000 Raspberry Pi units sold out in 2 hours.&lt;/p&gt;
10257
10258 &lt;p&gt;I don&#39;t really know what strategy is going to get UK schools to use
10259 free software, but building an active community of Skolelinux/Debian
10260 Edu users in this country has to be part of it.&lt;/p&gt;
10261 </description>
10262 </item>
10263
10264 <item>
10265 <title>Writing and translating documentation in Debian Edu</title>
10266 <link>http://people.skolelinux.org/pere/blog/Writing_and_translating_documentation_in_Debian_Edu.html</link>
10267 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Writing_and_translating_documentation_in_Debian_Edu.html</guid>
10268 <pubDate>Fri, 16 Mar 2012 09:55:00 +0100</pubDate>
10269 <description>&lt;p&gt;Documentation in Debian Edu is provided in several languages, and
10270 it is important to make it both easy to contribute and to keep the
10271 translated versions in sync. To do this we have come up with what we
10272 believe is a very efficient work flow.&lt;/p&gt;
10273
10274 &lt;ol&gt;
10275
10276 &lt;li&gt;The documentation is written in a
10277 &lt;a href=&quot;http://moinmo.in&quot;&gt;moinmoin wiki&lt;/a&gt; (see for example
10278 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze&quot;&gt;the
10279 Squeeze release manual&lt;/a&gt;) with support for exporting the content as
10280 docbook XML.&lt;/li&gt;
10281
10282 &lt;li&gt;This docbook document is given to po4a to extract a gettext style
10283 .pot file with the content, which in turn is used to create .po files
10284 with the translated text.&lt;/li&gt;
10285
10286 &lt;li&gt;The .po files are given to translators, and they can always tell
10287 which part of the original wiki document is new or changed. They can
10288 use their normal translation tools like lokalize or poedit to write
10289 the translation. There is even a system in place to handle translated
10290 images.&lt;/li&gt;
10291
10292 &lt;li&gt;The translated .po files are combined with the original docbook
10293 XML document using po4a to create a translated docbook document.&lt;/li&gt;
10294
10295 &lt;li&gt;The final step is to use all the generated docbook files and
10296 create PDF and HTML version of the original and translated documents.&lt;/li&gt;
10297
10298 &lt;/ol&gt;
10299
10300 &lt;p&gt;This setup work very well, but have a few issues. The biggest
10301 issue is that &lt;a href=&quot;http://moinmo.in/DocBook&quot;&gt;the docbook support
10302 we use in moinmoin&lt;/a&gt; is not actively maintained. The docbook
10303 support is also buggy, and our build system contain workarounds to
10304 make sure the generated docbook is usable despite these bugs.&lt;/p&gt;
10305
10306 &lt;p&gt;If you want to have a look at our setup, it is all there in the
10307 &lt;a href=&quot;http://packages.qa.debian.org/debian-edu-doc&quot;&gt;debian-edu-doc
10308 package&lt;/a&gt;.&lt;/p&gt;
10309 </description>
10310 </item>
10311
10312 <item>
10313 <title>Skolelinux / Debian Edu Squeeze is out!</title>
10314 <link>http://people.skolelinux.org/pere/blog/Skolelinux___Debian_Edu_Squeeze_is_out_.html</link>
10315 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux___Debian_Edu_Squeeze_is_out_.html</guid>
10316 <pubDate>Sun, 11 Mar 2012 23:00:00 +0100</pubDate>
10317 <description>&lt;p&gt;This weekend we finally published the first stable release of
10318 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux / Debian Edu&lt;/a&gt; based
10319 on Debian/Squeeze. The full announcement is
10320 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/03/msg00001.html&quot;&gt;available&lt;/a&gt;
10321 from the project announcement list. Now is a good time to test if it
10322 you have not done so already.&lt;/p&gt;
10323
10324 &lt;p&gt;I plan to present the new version at
10325 &lt;a href=&quot;http://www.nuug.no/aktiviteter/20120313-skolelinux/&quot;&gt;a NUUG
10326 meeting&lt;/a&gt; on tuesday. I look forward to seeing you there if you are
10327 in Oslo, Norway.&lt;/p&gt;
10328 </description>
10329 </item>
10330
10331 <item>
10332 <title>Debian Edu interview: Nigel Barker</title>
10333 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Nigel_Barker.html</link>
10334 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Nigel_Barker.html</guid>
10335 <pubDate>Fri, 9 Mar 2012 11:30:00 +0100</pubDate>
10336 <description>&lt;p&gt;Inspired by &lt;a href=&quot;http://raphaelhertzog.com/tag/interview/&quot;&gt;the
10337 interview series&lt;/a&gt; conducted by Raphael, I started a Norwegian
10338 interview series with people involved in the Debian Edu / Skolelinux
10339 community. This was so popular that I believe it is time to move to a
10340 more international audience.&lt;/p&gt;
10341
10342 &lt;p&gt;While &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and
10343 Skolelinux&lt;/a&gt; originated in France and Norway, and have most users in
10344 Europe, there are users all around the globe. One of those far away
10345 from me is Nigel Barker, a long time Debian Edu system administrator
10346 and contributor. It is thanks to him that Debian Edu is adjusted to
10347 work out of the box in Japan. I got him to answer a few questions,
10348 and am happy to share the response with you. :)
10349
10350
10351 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
10352
10353 &lt;p&gt;My name is Nigel Barker, and I am British. I am married to Yumiko,
10354 and we have three lovely children, aged 15, 14 and 4(!) I am the IT
10355 Coordinator at Hiroshima International School, Japan. I am also a
10356 teacher, and in fact I spend most of my day teaching Mathematics,
10357 Science, IT, and Chemistry. I was originally a Chemistry teacher, but
10358 I have always had an interest in computers. Another teacher teaches
10359 primary school IT, but apart from that I am the only computer person,
10360 so that means I am the network manager, technician and webmaster,
10361 also, and I help people with their computer problems. I teach python
10362 to beginners in an after-school club. I am way too busy, so I really
10363 appreciate the simplicity of Skolelinux.&lt;/p&gt;
10364
10365 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
10366 project?&lt;/strong&gt;&lt;/p&gt;
10367
10368 &lt;p&gt;In around 2004 or 5 I discovered the ltsp project, and set up a
10369 server in the IT lab. I wanted some way to connect it to our central
10370 samba server, which I was also quite poor at configuring. I discovered
10371 Edubuntu when it came out, but it didn&#39;t really improve my setup. I
10372 did various desperate searches for things like &quot;school Linux server&quot;
10373 and ended up in a document called &quot;Drift&quot; something or other. Reading
10374 there it became clear that Skolelinux was going to solve all my
10375 problems in one go. I was very excited, but apprehensive, because my
10376 previous attempts to install Debian had ended in failure (I used
10377 Mandrake for everything - ltsp, samba, apache, mail, ns...). I
10378 downloaded a beta version, had some problems, so subscribed to the
10379 Debian Edu list for help. I have remained subscribed ever since, and
10380 my school has run a Skolelinux network since Sarge.&lt;/p&gt;
10381
10382 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
10383 Edu?&lt;/strong&gt;&lt;/p&gt;
10384
10385 &lt;p&gt;For me the integrated setup. This is not just the server, or the
10386 workstation, or the ltsp. Its all of them, and its all configured
10387 ready to go. I read somewhere in the early documentation that it is
10388 designed to be setup and managed by the Maths or Science teacher, who
10389 doesn&#39;t necessarily know much about computers, in a small Norwegian
10390 school. That describes me perfectly if you replace Norway with
10391 Japan.&lt;/p&gt;
10392
10393 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
10394 Edu?&lt;/strong&gt;&lt;/p&gt;
10395
10396 &lt;p&gt;The desktop is fairly plain. If you compare it with Edubuntu, who
10397 have fun themes for children, or with distributions such as Mint, who
10398 make the desktop beautiful. They create a good impression on people
10399 who don&#39;t need to understand how to use any of it, but who might be
10400 important to the school. School administrators or directors, for
10401 instance, or parents. Even kids. Debian itself usually has ugly
10402 default theme settings. It was my dream a few years back that some
10403 kind of integration would allow Edubuntu to do the desktop stuff and
10404 Debian Edu the servers, but now I realise how impossible that is. A
10405 second disadvantage is that if something goes wrong, or you need to
10406 customise something, then suddenly the level of expertise required
10407 multiplies. For example, backup wasn&#39;t working properly in Lenny. It
10408 took me ages to learn how to set up my own server to do rsync backups.
10409 I am afraid of anything to do with ldap, but perhaps Gosa will
10410 help.&lt;/p&gt;
10411
10412 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
10413
10414 &lt;p&gt;Nowadays I only use Debian on my personal computers. I have one for
10415 studio work (I play guitar and write songs), running AV Linux
10416 (customised Debian) a netbook running Squeeze, and a bigger laptop
10417 still running Skolelinux Lenny workstation. I have a Tjener in my
10418 house, that&#39;s very useful for the family photos and music. At school
10419 the students only use Skolelinux. (Some teachers and the office still
10420 have windows). So that means we only use free software all day every
10421 day. Open office, The GIMP, Firefox/Iceweasel, VLC and Audacity are
10422 installed on every computer in school, irrespective of OS. We also
10423 have Koha on Debian for the library, and Apache, Moodle, b2evolution
10424 and Etomite on Debian for the www. The firewall is Untangle.&lt;/p&gt;
10425
10426 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
10427 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
10428
10429 &lt;p&gt;Current trends are in our favour. Open source is big in industry,
10430 and ordinary people have heard of it. The spread of Android and the
10431 popularity of Apple have helped to weaken the impression that you have
10432 to have Microsoft on everything. People complain to me much less about
10433 file formats and Word than they did 5 years ago. The Edu aspect is
10434 also a selling point. This is all customised for schools. Where is the
10435 Windows-edu, or the Mac-edu? But of course the main attraction is
10436 budget.The trick is to convince people that the quality is not
10437 compromised when you stop paying and use free software instead. That
10438 is one reason why I say the desktop experience is a weakness. People
10439 are not impressed when their USB drive doesn&#39;t work, or their browser
10440 doesn&#39;t play flash, for example.&lt;/p&gt;
10441 </description>
10442 </item>
10443
10444 <item>
10445 <title>Debian Edu screencast: Mass creation of user accounts in Squeeze</title>
10446 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_screencast__Mass_creation_of_user_accounts_in_Squeeze.html</link>
10447 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_screencast__Mass_creation_of_user_accounts_in_Squeeze.html</guid>
10448 <pubDate>Wed, 7 Mar 2012 13:40:00 +0100</pubDate>
10449 <description>&lt;!-- Video HTML based on http://www.diveintohtml5.net/video.html --&gt;
10450
10451 &lt;p&gt;One of the Debian Edu developers, Wolfgang Schweer, just created a
10452 screen cast documenting how to create a lot of new users in LDAP on
10453 Debian Edu Squeeze. The video is embedded here in quarter size, and
10454 also available from &lt;a href=&quot;http://vimeo.com/37675399&quot;&gt;vimeo&lt;/a&gt; and
10455 download as a
10456 &lt;a href=&quot;http://ftp.skolelinux.org/skolelinux/press/screencasts/2012-02-29-debian_edu_mass_create_user_accounts.ogv&quot;&gt;Ogg
10457 Theora&lt;/a&gt; file. Check it out below.&lt;/p&gt;
10458
10459 &lt;p&gt;&lt;video id=&quot;gosa-mass-user-create-movie&quot; width=&quot;256&quot; height=&quot;184&quot; preload controls&gt;
10460 &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;
10461 &lt;p&gt;Download video as
10462 &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;
10463 &lt;/video&gt;&lt;/p&gt;
10464 </description>
10465 </item>
10466
10467 <item>
10468 <title>Third release candidate of Debian Edu / Skolelinux based on Squeeze</title>
10469 <link>http://people.skolelinux.org/pere/blog/Third_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
10470 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Third_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
10471 <pubDate>Sun, 4 Mar 2012 18:20:00 +0100</pubDate>
10472 <description>&lt;p&gt;This weekend we wrapped up and published the third release
10473 candidate for &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
10474 Skolelinux&lt;/a&gt; based on Squeeze. The full announcement is
10475 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/03/msg00000.html&quot;&gt;available&lt;/a&gt;
10476 from the project announcement list. Check it out if you
10477 need a software solution for your school.&lt;/p&gt;
10478 </description>
10479 </item>
10480
10481 <item>
10482 <title>Stopmotion for making stop motion animations on Linux - reloaded</title>
10483 <link>http://people.skolelinux.org/pere/blog/Stopmotion_for_making_stop_motion_animations_on_Linux___reloaded.html</link>
10484 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Stopmotion_for_making_stop_motion_animations_on_Linux___reloaded.html</guid>
10485 <pubDate>Sat, 3 Mar 2012 12:50:00 +0100</pubDate>
10486 <description>&lt;p&gt;Many years ago, the &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux
10487 / Debian Edu project&lt;/a&gt; initiated a student project to create a tool
10488 for making stop motion movies. The proposal came from a teacher
10489 needing such tool on Skolelinux. The project, called &quot;stopmotion&quot;,
10490 was manned by two extraordinary students and won a school award and a
10491 national aware with this great project. The project was initiated and
10492 mentored by Herman Robak, and manned by the students Bjørn Erik Nilsen
10493 and Fredrik Berg Kjølstad. They got in touch with people at Aardman
10494 Animation studio and received feedback on how professionals would like
10495 such stopmotion tool to work, and the end result was and is used by
10496 animators around the globe. But as is usual after studying, both got
10497 jobs and went elsewhere, and did not have time to properly tend to the
10498 project, and it has been lingering for a few years now. Until last
10499 year...&lt;/p&gt;
10500
10501 &lt;p&gt;Last year some of the users got together with Herman, and moved the
10502 project to Sourceforge and in effect restarted the project under a new
10503 name,
10504 &lt;a href=&quot;http://sourceforge.net/projects/linuxstopmotion/&quot;&gt;linuxstopmotion&lt;/a&gt;.
10505 The name change was done to make it possible to find the project using
10506 Internet search engines (try to search for &#39;stopmotion&#39; to see what I
10507 mean). I&#39;ve been following
10508 &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/linuxstopmotion-community&quot;&gt;the
10509 mailing list&lt;/a&gt; and the improvement already in place and planned for
10510 the future is encouraging. If you want to make stop motion movies.
10511 Check it out. :)&lt;/p&gt;
10512 </description>
10513 </item>
10514
10515 <item>
10516 <title>Second release candidate of Debian Edu / Skolelinux based on Squeeze</title>
10517 <link>http://people.skolelinux.org/pere/blog/Second_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
10518 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Second_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
10519 <pubDate>Mon, 27 Feb 2012 14:00:00 +0100</pubDate>
10520 <description>&lt;p&gt;This weekend we wrapped up and published the second release
10521 candidate for &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
10522 Skolelinux&lt;/a&gt; based on Squeeze. The full announcement did for some
10523 reason not make it the project announcement list, but is
10524 &lt;a href=&quot;http://lists.debian.org/debian-devel-announce/2012/02/msg00015.html&quot;&gt;available&lt;/a&gt;
10525 from the Debian development announcement list. Check it out if you
10526 need a software solution for your school.&lt;/p&gt;
10527 </description>
10528 </item>
10529
10530 <item>
10531 <title>First release candidate of Debian Edu / Skolelinux based on Squeeze</title>
10532 <link>http://people.skolelinux.org/pere/blog/First_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
10533 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
10534 <pubDate>Sun, 19 Feb 2012 23:10:00 +0100</pubDate>
10535 <description>&lt;p&gt;One week delayed due to DVD build problems, we managed today to
10536 wrap up and publish the first release candidate for
10537 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; based
10538 on Squeeze. The full announcement is
10539 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/02/msg00001.html&quot;&gt;available&lt;/a&gt;
10540 on the project announcement list. Check it out if you need a software
10541 solution for your school.&lt;/p&gt;
10542 </description>
10543 </item>
10544
10545 <item>
10546 <title>How to figure out which RAID disk to replace when it fail</title>
10547 <link>http://people.skolelinux.org/pere/blog/How_to_figure_out_which_RAID_disk_to_replace_when_it_fail.html</link>
10548 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_figure_out_which_RAID_disk_to_replace_when_it_fail.html</guid>
10549 <pubDate>Tue, 14 Feb 2012 21:25:00 +0100</pubDate>
10550 <description>&lt;p&gt;Once in a while my home server have disk problems. Thanks to Linux
10551 Software RAID, I have not lost data yet (but
10552 &lt;a href=&quot;http://comments.gmane.org/gmane.linux.raid/34532&quot;&gt;I was
10553 close&lt;/a&gt; this summer :). But once a disk is starting to behave
10554 funny, a practical problem present itself. How to get from the Linux
10555 device name (like /dev/sdd) to something that can be used to identify
10556 the disk when the computer is turned off? In my case I have SATA
10557 disks with a unique ID printed on the label. All I need is a way to
10558 figure out how to query the disk to get the ID out.&lt;/p&gt;
10559
10560 &lt;p&gt;After fumbling a bit, I
10561 &lt;a href=&quot;http://www.cyberciti.biz/faq/linux-getting-scsi-ide-harddisk-information/&quot;&gt;found
10562 that hdparm -I&lt;/a&gt; will report the disk serial number, which is
10563 printed on the disk label. The following (almost) one-liner can be
10564 used to look up the ID of all the failed disks:&lt;/p&gt;
10565
10566 &lt;blockquote&gt;&lt;pre&gt;
10567 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);
10568 do
10569 printf &quot;Failed disk $d: &quot;
10570 hdparm -I /dev/$d |grep &#39;Serial Num&#39;
10571 done
10572 &lt;/blockquote&gt;&lt;/pre&gt;
10573
10574 &lt;p&gt;Putting it here to make sure I do not have to search for it the
10575 next time, and in case other find it useful.&lt;/p&gt;
10576
10577 &lt;p&gt;At the moment I have two failing disk. :(&lt;/p&gt;
10578
10579 &lt;blockquote&gt;&lt;pre&gt;
10580 Failed disk sdd1: Serial Number: WD-WCASJ1860823
10581 Failed disk sdd2: Serial Number: WD-WCASJ1860823
10582 Failed disk sde2: Serial Number: WD-WCASJ1840589
10583 &lt;/blockquote&gt;&lt;/pre&gt;
10584
10585 &lt;p&gt;The last time I had failing disks, I added the serial number on
10586 labels I printed and stuck on the short sides of each disk, to be able
10587 to figure out which disk to take out of the box without having to
10588 remove each disk to look at the physical vendor label. The vendor
10589 label is at the top of the disk, which is hidden when the disks are
10590 mounted inside my box.&lt;/p&gt;
10591
10592 &lt;p&gt;I really wish the check_linux_raid Nagios plugin for checking Linux
10593 Software RAID in the
10594 &lt;a href=&quot;http://packages.qa.debian.org/n/nagios-plugins.html&quot;&gt;nagios-plugins-standard&lt;/a&gt;
10595 debian package would look up this value automatically, as it would
10596 make the plugin a lot more useful when my disks fail. At the moment
10597 it only report a failure when there are no more spares left (it really
10598 should warn as soon as a disk is failing), and it do not tell me which
10599 disk(s) is failing when the RAID is running short on disks.&lt;/p&gt;
10600 </description>
10601 </item>
10602
10603 <item>
10604 <title>Automatic proxy configuration with Debian Edu / Skolelinux</title>
10605 <link>http://people.skolelinux.org/pere/blog/Automatic_proxy_configuration_with_Debian_Edu___Skolelinux.html</link>
10606 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatic_proxy_configuration_with_Debian_Edu___Skolelinux.html</guid>
10607 <pubDate>Mon, 13 Feb 2012 23:40:00 +0100</pubDate>
10608 <description>&lt;p&gt;New in the Squeeze version of
10609 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; is the
10610 ability for clients to automatically configure their proxy settings
10611 based on their environment. We want all systems on the client to use
10612 the WPAD based proxy definition fetched from &lt;tt&gt;http://wpad/wpad.dat&lt;/tt&gt;, to
10613 allow sites to control the proxy setting from a central place and make
10614 sure clients do not have hard coded proxy settings. The schools can
10615 change the global proxy setting by editing
10616 &lt;tt&gt;tjener:/etc/debian-edu/www/wpad.dat&lt;/tt&gt; and the change propagate
10617 to all Debian Edu clients in the network.&lt;/p&gt;
10618
10619 &lt;p&gt;The problem is that some systems do not understand the WPAD system.
10620 In other words, how do one get from a WPAD file like this (this is a
10621 simple one, they can run arbitrary code):&lt;/p&gt;
10622
10623 &lt;blockquote&gt;&lt;pre&gt;
10624 function FindProxyForURL(url, host)
10625 {
10626 if (!isResolvable(host) ||
10627 isPlainHostName(host) ||
10628 dnsDomainIs(host, &quot;.intern&quot;))
10629 return &quot;DIRECT&quot;;
10630 else
10631 return &quot;PROXY webcache:3128; DIRECT&quot;;
10632 }
10633 &lt;/pre&gt;&lt;/blockquote&gt;
10634
10635 &lt;p&gt;to a proxy setting in the process environment looking like this:&lt;/p&gt;
10636
10637 &lt;blockquote&gt;&lt;pre&gt;
10638 http_proxy=http://webcache:3128/
10639 ftp_proxy=http://webcache:3128/
10640 &lt;/pre&gt;&lt;/blockquote&gt;
10641
10642 &lt;p&gt;To do this conversion I developed a perl script that will execute
10643 the javascript fragment in the WPAD file and return the proxy that
10644 would be used for
10645 &lt;tt&gt;&lt;a href=&quot;http://www.debian.org/&quot;&gt;http://www.debian.org/&lt;/a&gt;&lt;/tt&gt;,
10646 and insert this extracted proxy URL in &lt;tt&gt;/etc/environment&lt;/tt&gt; and
10647 &lt;tt&gt;/etc/apt/apt.conf&lt;/tt&gt;. The perl script wpad-extract work just
10648 fine in Squeeze, but in Wheezy the library it need to run the
10649 javascript code is &lt;a href=&quot;http://bugs.debian.org/631045&quot;&gt;no longer
10650 able to build&lt;/a&gt; because the C library it depended on is now a C++
10651 library. I hope someone find a solution to that problem before Wheezy
10652 is frozen. An alternative would be for us to rewrite wpad-extract to
10653 use some other javascript library currently working in Wheezy, but no
10654 known alternative is known at the moment.&lt;/p&gt;
10655
10656 &lt;p&gt;This automatic proxy system allow the roaming workstation (aka
10657 laptop) setup in Debian Edu/Squeeze to use the proxy when the laptop
10658 is connected to the backbone network in a Debian Edu setup, and to
10659 automatically use any proxy present and announced using the WPAD
10660 feature when it is connected to other networks. And if no proxy is
10661 announced, direct connections will be used instead.&lt;/p&gt;
10662
10663 &lt;p&gt;Silently using a proxy announced on the network might be a privacy
10664 or security problem. But those controlling DHCP and DNS on a network
10665 could just as easily set up a transparent proxy, and force all HTTP
10666 and FTP connections to use a proxy anyway, so I consider that
10667 distinction to be academic. If you are afraid of using the wrong
10668 proxy, you should avoid connecting to the network in question in the
10669 first place. In Debian Edu, the proxy setup is updated using dhcp and
10670 ifupdown hooks, to make sure the configuration is updated every time
10671 the network setup changes.&lt;/p&gt;
10672
10673 &lt;p&gt;The WPAD system is documented in a
10674 &lt;a href=&quot;http://tools.ietf.org/html/draft-ietf-wrec-wpad-01&quot;&gt;IETF
10675 draft&lt;/a&gt; and a
10676 &lt;a href=&quot;http://en.wikipedia.org/wiki/Web_Proxy_Autodiscovery_Protocol&quot;&gt;Wikipedia
10677 page&lt;/a&gt; for those that want to learn more.&lt;/p&gt;
10678 </description>
10679 </item>
10680
10681 <item>
10682 <title>Saving power with Debian Edu / Skolelinux using shutdown-at-night</title>
10683 <link>http://people.skolelinux.org/pere/blog/Saving_power_with_Debian_Edu___Skolelinux_using_shutdown_at_night.html</link>
10684 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Saving_power_with_Debian_Edu___Skolelinux_using_shutdown_at_night.html</guid>
10685 <pubDate>Sun, 5 Feb 2012 09:45:00 +0100</pubDate>
10686 <description>&lt;p&gt;Since the Lenny version of
10687 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;, a
10688 feature to save power have been included. It is as simple as it is
10689 practical: Shut down unused clients at night, and turn them on again
10690 in the morning. This is done using the
10691 &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;
10692
10693 &lt;p&gt;To enable this feature on a client, the machine need to be added to
10694 the netgroup shutdown-at-night-hosts. For Debian Edu, this is done in
10695 LDAP, and once this is in place, the machine in question will check
10696 every hour from 16:00 until 06:00 to see if the machine is unused, and
10697 shut it down if it is. If the hardware in question is supported by
10698 the
10699 &lt;a href=&quot;http://packages.qa.debian.org/n/nvram-wakeup.html&quot;&gt;nvram-wakeup&lt;/a&gt;
10700 package, the BIOS is told to turn the machine back on around 07:00 +-
10701 10 minutes. If this isn&#39;t working, one can configure wake-on-lan to
10702 try to turn on the client. The wake-on-lan option is only documented
10703 and not enabled by default in Debian Edu.&lt;/p&gt;
10704
10705 &lt;p&gt;It is important to not turn all machines on at once, as this can
10706 blow a fuse if several computers are connected to the same fuse like
10707 the common setup for a classroom. The nvram-wakeup method only work
10708 for machines with a functioning hardware/BIOS clock. I&#39;ve seen old
10709 machines where the BIOS battery were dead and the hardware clock were
10710 starting from 0 (or was it 1990?) every boot. If you have one of
10711 those, you have to turn on the computer manually.&lt;/p&gt;
10712
10713 &lt;p&gt;The shutdown-at-night package is completely self contained, and can
10714 also be used outside the Debian Edu environment. For those without a
10715 central LDAP server with netgroups, one can instead touch the file
10716 &lt;tt&gt;/etc/shutdown-at-night/shutdown-at-night&lt;/tt&gt; to enable it.
10717 Perhaps you too can use it to save some power?&lt;/p&gt;
10718 </description>
10719 </item>
10720
10721 <item>
10722 <title>Third beta version of Debian Edu / Skolelinux based on Squeeze</title>
10723 <link>http://people.skolelinux.org/pere/blog/Third_beta_version_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
10724 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Third_beta_version_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
10725 <pubDate>Sat, 4 Feb 2012 13:25:00 +0100</pubDate>
10726 <description>&lt;p&gt;I am happy to announce that finally we managed today to wrap up and
10727 publish the third beta version of
10728 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; based
10729 on Squeeze. If you want to test a LDAP backed Kerberos server with
10730 out of the box PXE configuration for running diskless machines and
10731 installing new machines, check it out. If you need a software
10732 solution for your school, check it out too. The full announcement is
10733 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/02/msg00000.html&quot;&gt;available&lt;/a&gt;
10734 on the project announcement list.&lt;/p&gt;
10735
10736 &lt;p&gt;I am very happy to report these changes and improvements since
10737 beta2 (there are more, see announcement for full list):&lt;/p&gt;
10738
10739 &lt;ul&gt;
10740
10741 &lt;li&gt;It is now possible to change the pre-configured IP subnet from
10742 10.0.0.0/8 to something else by using the subnet-change tool after
10743 the installation.&lt;/li&gt;
10744
10745 &lt;li&gt;Too full partitions are now automatically extended on the Main
10746 Server, based on the rules specified in /etc/fsautoresizetab.&lt;/li&gt;
10747
10748 &lt;li&gt;The CUPS queues are now automatically flushed every night, and all
10749 disabled queues are restarted every hour. This should cut down on
10750 the amount of manual administration needed for printers.&lt;/li&gt;
10751
10752 &lt;li&gt;The set of initial users have been changed. Now a personal user
10753 for the local system administrator is created during installation
10754 instead of the previously created localadmin and super-admin users,
10755 and this user is granted administrative privileges using group
10756 membership. This reduces the number of passwords one need to keep
10757 up to date on the system.&lt;/li&gt;
10758
10759 &lt;/ul&gt;
10760
10761 &lt;p&gt;The new main server seem to work so well that I am testing it as my
10762 private DNS/LDAP/Kerberos/PXE/LTSP server at home. I will use it look
10763 for issues we could fix to polish Debian Edu even further before the
10764 final Squeeze release is published.&lt;/p&gt;
10765
10766 &lt;p&gt;Next weekend the project organise a
10767 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/01/msg00001.html&quot;&gt;developer
10768 gathering&lt;/a&gt; in Oslo. We will continue the work on the Squeeze
10769 version, and start initial planning for the Wheezy version. Perhaps I
10770 will see you there?&lt;/p&gt;
10771 </description>
10772 </item>
10773
10774 <item>
10775 <title>Handling non-free firmware in Debian Edu/Squeeze</title>
10776 <link>http://people.skolelinux.org/pere/blog/Handling_non_free_firmware_in_Debian_Edu_Squeeze.html</link>
10777 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Handling_non_free_firmware_in_Debian_Edu_Squeeze.html</guid>
10778 <pubDate>Fri, 27 Jan 2012 23:30:00 +0100</pubDate>
10779 <description>&lt;p&gt;With some computer hardware, one need non-free firmware blobs.
10780 This is the sad fact of todays computers. In the next version of
10781 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; based
10782 on Squeeze, we provide several scripts and modifications to make
10783 firmware blobs easier to handle. The common use case I run into is a
10784 laptop with a wireless network card requiring non-free firmware to
10785 work, but there are other use cases as well.&lt;/p&gt;
10786
10787 &lt;p&gt;First and foremost, Debian Edu provide ISO images for DVD and CD
10788 with all firmware packages in the Debian sections main and non-free
10789 included, to ensure debian-installer find and can install all of them
10790 during installation. This take care firmware for network devices used
10791 by the installer when installing from from local media. But for
10792 example multimedia devices are not activated in the installer and are
10793 not taken care of by this.&lt;/p&gt;
10794
10795 &lt;p&gt;For non-network devices, we provide the script
10796 &lt;tt&gt;/usr/share/debian-edu-config/tools/auto-addfirmware&lt;/tt&gt; which
10797 search through the &lt;tt&gt;dmesg&lt;/tt&gt; output for drivers requesting extra
10798 firmware. The firmware file name is looked up in the Contents-ARCH.gz
10799 file available in the package repository, and the packages providing
10800 the requested firmware file(s) is installed. I have proposed to do
10801 something similar in debian-installer (BTS report
10802 &lt;a href=&quot;http://bugs.debian.org/655507&quot;&gt;#655507&lt;/a&gt;), to allow PXE
10803 installs of Debian to handle firmware installation better. Run the
10804 script as root from the command line to fetch and install the needed
10805 firmware packages.&lt;/p&gt;
10806
10807 &lt;p&gt;Debian Edu provide PXE installation of Debian out of the box, and
10808 because some machines need firmware to get their network cards
10809 working, the installation initrd some times need extra firmware
10810 included to be able to install at all. To fill the PXE installation
10811 initrd with extra firmware, the
10812 &lt;tt&gt;/usr/share/debian-edu-config/tools/pxe-addfirmware&lt;/tt&gt; script is
10813 provided. Again, just run it as root on the command line to fill the
10814 PXE initrd with firmware packages.&lt;/p&gt;
10815
10816 &lt;p&gt;Last, some LTSP clients might also need firmware to get their
10817 network cards working. For this,
10818 &lt;tt&gt;/usr/share/debian-edu-config/tools/ltsp-addfirmware&lt;/tt&gt; is
10819 provided to update the LTSP initrd with firmware blobs. It is used
10820 the same way as the other firmware related tools.&lt;/p&gt;
10821
10822 &lt;p&gt;At the moment, we do not run any of these during installation. We
10823 do not know if this is acceptable for the local administrator to use
10824 non-free software, and it is their choice.&lt;/p&gt;
10825
10826 &lt;p&gt;We plan to release beta3 this weekend. You might want to give it a
10827 try.&lt;/p&gt;
10828 </description>
10829 </item>
10830
10831 <item>
10832 <title>Setting up a new school with Debian Edu/Squeeze</title>
10833 <link>http://people.skolelinux.org/pere/blog/Setting_up_a_new_school_with_Debian_Edu_Squeeze.html</link>
10834 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Setting_up_a_new_school_with_Debian_Edu_Squeeze.html</guid>
10835 <pubDate>Wed, 25 Jan 2012 21:00:00 +0100</pubDate>
10836 <description>&lt;p&gt;The next version of &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu
10837 / Skolelinux&lt;/a&gt; will include a new tool
10838 &lt;tt&gt;sitesummary2ldapdhcp&lt;/tt&gt;, which can be used to quickly set up all
10839 the computers in a school without much manual labour. Here is a short
10840 summary on how to use it to set up a new school.&lt;/p&gt;
10841
10842 &lt;p&gt;First, install a combined Main Server and Thin Client Server as the
10843 central server in the network. Next, PXE boot all the client machines
10844 as thin clients and wait 5 minutes after the last client booted to
10845 allow the clients to report their existence to the central server. When
10846 this is done, log on to the central server and run
10847 &lt;tt&gt;sitesummary2ldapdhcp -a&lt;/tt&gt; in the &lt;tt&gt;konsole&lt;/tt&gt; to use the
10848 collected information to generate system objects in LDAP. The output
10849 will look similar to this:&lt;/p&gt;
10850
10851 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
10852 % sitesummary2ldapdhcp -a
10853 info: Updating machine tjener.intern [10.0.2.2] id ether-00:01:02:03:04:05.
10854 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.
10855
10856 Enter password if you want to activate these changes, and ^c to abort.
10857
10858 Connecting to LDAP as cn=admin,ou=ldap-access,dc=skole,dc=skolelinux,dc=no
10859 enter password: *******
10860 %
10861 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
10862
10863 &lt;p&gt;After providing the LDAP administrative password (the same as the
10864 root password set during installation), the LDAP database will be
10865 populated with system objects for each PXE booted machine with
10866 automatically generated names. The final step to set up the school is
10867 then to log into &lt;a href=&quot;https://oss.gonicus.de/labs/gosa/&quot;&gt;GOsa&lt;/a&gt;,
10868 the web based user, group and system administration system to change
10869 system names, add systems to the correct host groups and finally
10870 enable DHCP and DNS for the systems. All clients that should be used
10871 as diskless workstations should be added to the workstation-hosts
10872 group. After this is done, all computers can be booted again via PXE
10873 and get their assigned names and group based configuration
10874 automatically.&lt;/p&gt;
10875
10876 &lt;p&gt;We plan to release beta3 with the updated version of this feature
10877 enabled this weekend. You might want to give it a try.&lt;/p&gt;
10878
10879 &lt;p&gt;Update 2012-01-28: When calling sitesummary2ldapdhcp to add new
10880 hosts, one need to add the option -a. I forgot to mention this in my
10881 original text, and have added it to the text now.&lt;/p&gt;
10882 </description>
10883 </item>
10884
10885 <item>
10886 <title>Changing the default Iceweasel start page in Debian Edu/Squeeze</title>
10887 <link>http://people.skolelinux.org/pere/blog/Changing_the_default_Iceweasel_start_page_in_Debian_Edu_Squeeze.html</link>
10888 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Changing_the_default_Iceweasel_start_page_in_Debian_Edu_Squeeze.html</guid>
10889 <pubDate>Tue, 10 Jan 2012 15:30:00 +0100</pubDate>
10890 <description>&lt;p&gt;In the Squeeze version of
10891 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; soon
10892 to be released, users of the system will get their default browser
10893 start page set from LDAP, allowing the system administrator to point
10894 all users to the school web page by updating one setting in LDAP. In
10895 addition to setting the default start page when a machine boots, users
10896 are shown the same page as a welcome page when they log in for the
10897 first time.&lt;/p&gt;
10898
10899 &lt;p&gt;The LDAP object dc=skole,dc=skolelinux,dc=no have an attribute
10900 labeledURI with &quot;http://www/ LDAP for Debian Edu/Skolelinux&quot; as the
10901 default content. By changing this value to another URL, all users get
10902 to see the page behind this new URL.&lt;/p&gt;
10903
10904 &lt;p&gt;An easy way to update it is by using the ldapvi tool. It can be
10905 called as &quot;&lt;tt&gt;ldapvi -ZD &#39;(cn=admin)&#39;&lt;/tt&gt;&#39; to update LDAP with the
10906 new setting.&lt;/p&gt;
10907
10908 &lt;p&gt;We have written the code to adjust the default start page and show
10909 the welcome page, and I wonder if there is an easier way to do this
10910 from within Iceweasel instead.&lt;/p&gt;
10911 </description>
10912 </item>
10913
10914 <item>
10915 <title>Second beta version of Debian Edu / Skolelinux based on Squeeze</title>
10916 <link>http://people.skolelinux.org/pere/blog/Second_beta_version_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
10917 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Second_beta_version_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
10918 <pubDate>Sat, 7 Jan 2012 22:50:00 +0100</pubDate>
10919 <description>&lt;p&gt;I am happy to announce that today we managed to wrap up and publish
10920 the second beta version of
10921 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;. If
10922 you want to test a LDAP backed Kerberos server with out of the box PXE
10923 configuration for running diskless machines and installing new
10924 machines, check it out. If you need a software solution for your
10925 school, check it out too. The full announcement is
10926 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/01/msg00000.html&quot;&gt;available&lt;/a&gt;
10927 on the project announcement list.&lt;/p&gt;
10928 </description>
10929 </item>
10930
10931 <item>
10932 <title>Fixing an hanging debian installer for Debian Edu</title>
10933 <link>http://people.skolelinux.org/pere/blog/Fixing_an_hanging_debian_installer_for_Debian_Edu.html</link>
10934 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Fixing_an_hanging_debian_installer_for_Debian_Edu.html</guid>
10935 <pubDate>Tue, 3 Jan 2012 11:25:00 +0100</pubDate>
10936 <description>&lt;p&gt;During christmas, I have been working getting the next version of
10937 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; ready
10938 for release. The initial problem I looked at was particularly
10939 interesting.&lt;/p&gt;
10940
10941 &lt;P&gt;The installer would hang at the end when it was doing it
10942 post-installation configuration, and whatevery I did to try to find
10943 the cause and fix it always worked while I tested it, but never when I
10944 integrated it into the installer and ran the installation from
10945 scratch. I would try to restart processes, close file descriptors,
10946 remove or create files, and the installer would always unblock and
10947 wrap up its tasks.&lt;/p&gt;
10948
10949 &lt;p&gt;Eventually the cause was found. The kernel was simply running out
10950 of entropy, causing the Kerberos setup to hang waiting for more.
10951 Pressing keys was adding entropy to the kernel, and thus all my tries
10952 to fix the problem worked not because what I was typing to fix it, but
10953 because I was typing.&lt;/P&gt;
10954
10955 &lt;p&gt;The fix I implemented was to add a background process looking at
10956 the level of entropy in the kernel (by checking
10957 /proc/sys/kernel/random/entropy_avail), and if it was too small, the
10958 installer will flush the kernel file buffers and do &#39;find /&#39; to
10959 generate some disk IO. Disk IO generate entropy in the kernel, and is
10960 one of the few things that can be initated from within the system to
10961 generate entropy.&lt;/p&gt;
10962
10963 &lt;p&gt;The fix is in
10964 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze/Installation&quot;&gt;beta1
10965 of the Debian Edu/Squeeze&lt;/a&gt; version, and we
10966 &lt;a href=&quot;http://wiki.debian.org/DebianEdu&quot;&gt;welcome more testers and
10967 developers&lt;/a&gt;. We plan to release beta2 this weekend.&lt;/p&gt;
10968 </description>
10969 </item>
10970
10971 <item>
10972 <title>Automatically upgrading server firmware on Dell PowerEdge</title>
10973 <link>http://people.skolelinux.org/pere/blog/Automatically_upgrading_server_firmware_on_Dell_PowerEdge.html</link>
10974 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatically_upgrading_server_firmware_on_Dell_PowerEdge.html</guid>
10975 <pubDate>Mon, 21 Nov 2011 12:00:00 +0100</pubDate>
10976 <description>&lt;p&gt;At work we have heaps of servers. I believe the total count is
10977 around 1000 at the moment. To be able to get help from the vendors
10978 when something go wrong, we want to keep the firmware on the servers
10979 up to date. If the firmware isn&#39;t the latest and greatest, the
10980 vendors typically refuse to start debugging any problems until the
10981 firmware is upgraded. So before every reboot, we want to upgrade the
10982 firmware, and we would really like everyone handling servers at the
10983 university to do this themselves when they plan to reboot a machine.
10984 For that to happen we at the unix server admin group need to provide
10985 the tools to do so.&lt;/p&gt;
10986
10987 &lt;p&gt;To make firmware upgrading easier, I am working on a script to
10988 fetch and install the latest firmware for the servers we got. Most of
10989 our hardware are from Dell and HP, so I have focused on these servers
10990 so far. This blog post is about the Dell part.&lt;/P&gt;
10991
10992 &lt;p&gt;On the Dell FTP site I was lucky enough to find
10993 &lt;a href=&quot;ftp://ftp.us.dell.com/catalog/Catalog.xml.gz&quot;&gt;an XML file&lt;/a&gt;
10994 with firmware information for all 11th generation servers, listing
10995 which firmware should be used on a given model and where on the FTP
10996 site I can find it. Using a simple perl XML parser I can then
10997 download the shell scripts Dell provides to do firmware upgrades from
10998 within Linux and reboot when all the firmware is primed and ready to
10999 be activated on the first reboot.&lt;/p&gt;
11000
11001 &lt;p&gt;This is the Dell related fragment of the perl code I am working on.
11002 Are there anyone working on similar tools for firmware upgrading all
11003 servers at a site? Please get in touch and lets share resources.&lt;/p&gt;
11004
11005 &lt;p&gt;&lt;pre&gt;
11006 #!/usr/bin/perl
11007 use strict;
11008 use warnings;
11009 use File::Temp qw(tempdir);
11010 BEGIN {
11011 # Install needed RHEL packages if missing
11012 my %rhelmodules = (
11013 &#39;XML::Simple&#39; =&gt; &#39;perl-XML-Simple&#39;,
11014 );
11015 for my $module (keys %rhelmodules) {
11016 eval &quot;use $module;&quot;;
11017 if ($@) {
11018 my $pkg = $rhelmodules{$module};
11019 system(&quot;yum install -y $pkg&quot;);
11020 eval &quot;use $module;&quot;;
11021 }
11022 }
11023 }
11024 my $errorsto = &#39;pere@hungry.com&#39;;
11025
11026 upgrade_dell();
11027
11028 exit 0;
11029
11030 sub run_firmware_script {
11031 my ($opts, $script) = @_;
11032 unless ($script) {
11033 print STDERR &quot;fail: missing script name\n&quot;;
11034 exit 1
11035 }
11036 print STDERR &quot;Running $script\n\n&quot;;
11037
11038 if (0 == system(&quot;sh $script $opts&quot;)) { # FIXME correct exit code handling
11039 print STDERR &quot;success: firmware script ran succcessfully\n&quot;;
11040 } else {
11041 print STDERR &quot;fail: firmware script returned error\n&quot;;
11042 }
11043 }
11044
11045 sub run_firmware_scripts {
11046 my ($opts, @dirs) = @_;
11047 # Run firmware packages
11048 for my $dir (@dirs) {
11049 print STDERR &quot;info: Running scripts in $dir\n&quot;;
11050 opendir(my $dh, $dir) or die &quot;Unable to open directory $dir: $!&quot;;
11051 while (my $s = readdir $dh) {
11052 next if $s =~ m/^\.\.?/;
11053 run_firmware_script($opts, &quot;$dir/$s&quot;);
11054 }
11055 closedir $dh;
11056 }
11057 }
11058
11059 sub download {
11060 my $url = shift;
11061 print STDERR &quot;info: Downloading $url\n&quot;;
11062 system(&quot;wget --quiet \&quot;$url\&quot;&quot;);
11063 }
11064
11065 sub upgrade_dell {
11066 my @dirs;
11067 my $product = `dmidecode -s system-product-name`;
11068 chomp $product;
11069
11070 if ($product =~ m/PowerEdge/) {
11071
11072 # on RHEL, these pacakges are needed by the firwmare upgrade scripts
11073 system(&#39;yum install -y compat-libstdc++-33.i686 libstdc++.i686 libxml2.i686 procmail&#39;);
11074
11075 my $tmpdir = tempdir(
11076 CLEANUP =&gt; 1
11077 );
11078 chdir($tmpdir);
11079 fetch_dell_fw(&#39;catalog/Catalog.xml.gz&#39;);
11080 system(&#39;gunzip Catalog.xml.gz&#39;);
11081 my @paths = fetch_dell_fw_list(&#39;Catalog.xml&#39;);
11082 # -q is quiet, disabling interactivity and reducing console output
11083 my $fwopts = &quot;-q&quot;;
11084 if (@paths) {
11085 for my $url (@paths) {
11086 fetch_dell_fw($url);
11087 }
11088 run_firmware_scripts($fwopts, $tmpdir);
11089 } else {
11090 print STDERR &quot;error: Unsupported Dell model &#39;$product&#39;.\n&quot;;
11091 print STDERR &quot;error: Please report to $errorsto.\n&quot;;
11092 }
11093 chdir(&#39;/&#39;);
11094 } else {
11095 print STDERR &quot;error: Unsupported Dell model &#39;$product&#39;.\n&quot;;
11096 print STDERR &quot;error: Please report to $errorsto.\n&quot;;
11097 }
11098 }
11099
11100 sub fetch_dell_fw {
11101 my $path = shift;
11102 my $url = &quot;ftp://ftp.us.dell.com/$path&quot;;
11103 download($url);
11104 }
11105
11106 # Using ftp://ftp.us.dell.com/catalog/Catalog.xml.gz, figure out which
11107 # firmware packages to download from Dell. Only work for Linux
11108 # machines and 11th generation Dell servers.
11109 sub fetch_dell_fw_list {
11110 my $filename = shift;
11111
11112 my $product = `dmidecode -s system-product-name`;
11113 chomp $product;
11114 my ($mybrand, $mymodel) = split(/\s+/, $product);
11115
11116 print STDERR &quot;Finding firmware bundles for $mybrand $mymodel\n&quot;;
11117
11118 my $xml = XMLin($filename);
11119 my @paths;
11120 for my $bundle (@{$xml-&gt;{SoftwareBundle}}) {
11121 my $brand = $bundle-&gt;{TargetSystems}-&gt;{Brand}-&gt;{Display}-&gt;{content};
11122 my $model = $bundle-&gt;{TargetSystems}-&gt;{Brand}-&gt;{Model}-&gt;{Display}-&gt;{content};
11123 my $oscode;
11124 if (&quot;ARRAY&quot; eq ref $bundle-&gt;{TargetOSes}-&gt;{OperatingSystem}) {
11125 $oscode = $bundle-&gt;{TargetOSes}-&gt;{OperatingSystem}[0]-&gt;{osCode};
11126 } else {
11127 $oscode = $bundle-&gt;{TargetOSes}-&gt;{OperatingSystem}-&gt;{osCode};
11128 }
11129 if ($mybrand eq $brand &amp;&amp; $mymodel eq $model &amp;&amp; &quot;LIN&quot; eq $oscode)
11130 {
11131 @paths = map { $_-&gt;{path} } @{$bundle-&gt;{Contents}-&gt;{Package}};
11132 }
11133 }
11134 for my $component (@{$xml-&gt;{SoftwareComponent}}) {
11135 my $componenttype = $component-&gt;{ComponentType}-&gt;{value};
11136
11137 # Drop application packages, only firmware and BIOS
11138 next if &#39;APAC&#39; eq $componenttype;
11139
11140 my $cpath = $component-&gt;{path};
11141 for my $path (@paths) {
11142 if ($cpath =~ m%/$path$%) {
11143 push(@paths, $cpath);
11144 }
11145 }
11146 }
11147 return @paths;
11148 }
11149 &lt;/pre&gt;
11150
11151 &lt;p&gt;The code is only tested on RedHat Enterprise Linux, but I suspect
11152 it could work on other platforms with some tweaking. Anyone know a
11153 index like Catalog.xml is available from HP for HP servers? At the
11154 moment I maintain a similar list manually and it is quickly getting
11155 outdated.&lt;/p&gt;
11156 </description>
11157 </item>
11158
11159 <item>
11160 <title>Free e-book kiosk for the public libraries?</title>
11161 <link>http://people.skolelinux.org/pere/blog/Free_e_book_kiosk_for_the_public_libraries_.html</link>
11162 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_e_book_kiosk_for_the_public_libraries_.html</guid>
11163 <pubDate>Fri, 7 Oct 2011 19:20:00 +0200</pubDate>
11164 <description>&lt;p&gt;Here in Norway the public libraries are debating with the
11165 publishing houses how to handle electronic books. Surprisingly, the
11166 libraries seem to be willing to accept digital restriction mechanisms
11167 (DRM) on books and renting e-books with artificial scarcity from the
11168 publishing houses. Time limited renting (2-3 years) is one proposed
11169 model, and only allowing X borrowers for each book is another.
11170 Personally I find it amazing that libraries are even considering such
11171 models.&lt;/p&gt;
11172
11173 &lt;p&gt;Anyway, while reading &lt;a href=&quot;http://boklaben.no/?p=220&quot;&gt;part of
11174 this debate&lt;/a&gt;, it occurred to me that someone should present a more
11175 sensible approach to the libraries, to allow its borrowers to get used
11176 to a better model. The idea is simple:&lt;/p&gt;
11177
11178 &lt;p&gt;Create a computer system for the libraries, either in the form of a
11179 Live DVD or a installable distribution, that provide a simple kiosk
11180 solution to hand out free e-books. As a start, the books distributed
11181 by &lt;a href=&quot;http://www.gutenberg.org/&quot;&gt;Project Gutenberg&lt;/a&gt; (about
11182 36,000 books), &lt;a href=&quot;http://runeberg.org/&quot;&gt;Project Runenberg&lt;/a&gt;
11183 (1149 books) and &lt;a href=&quot;http://www.archive.org/details/texts&quot;&gt;The
11184 Internet Archive&lt;/a&gt; (3,033,748 books) could be included, but any book
11185 where the copyright has expired or with a free licence could be
11186 distributed.&lt;/p&gt;
11187
11188 &lt;p&gt;The computer system would make it easy to:&lt;/p&gt;
11189
11190 &lt;ul&gt;
11191
11192 &lt;li&gt;Copy e-books into a USB stick, reading tablets, cell phones and
11193 other relevant equipment.&lt;/li&gt;
11194
11195 &lt;li&gt;Show the books for reading on the the screen in the library.&lt;/li&gt;
11196
11197 &lt;/ul&gt;
11198
11199 &lt;p&gt;In addition to such kiosk solution, there should probably be a web
11200 site as well to allow people easy access to these books without
11201 visiting the library. The site would be the distribution point for
11202 the kiosk systems, which would connect regularly to fetch any new
11203 books available.&lt;/p&gt;
11204
11205 &lt;p&gt;Are there anyone working on a system like this? I guess it would
11206 fit any library in the world, and not just the Norwegian public
11207 libraries. :)&lt;/p&gt;
11208 </description>
11209 </item>
11210
11211 <item>
11212 <title>Ripping problematic DVDs using dvdbackup and genisoimage</title>
11213 <link>http://people.skolelinux.org/pere/blog/Ripping_problematic_DVDs_using_dvdbackup_and_genisoimage.html</link>
11214 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Ripping_problematic_DVDs_using_dvdbackup_and_genisoimage.html</guid>
11215 <pubDate>Sat, 17 Sep 2011 20:20:00 +0200</pubDate>
11216 <description>&lt;p&gt;For convenience, I want to store copies of all my DVDs on my file
11217 server. It allow me to save shelf space flat while still having my
11218 movie collection easily available. It also make it possible to let
11219 the kids see their favourite DVDs without wearing the physical copies
11220 down. I prefer to store the DVDs as ISOs to keep the DVD menu and
11221 subtitle options intact. It also ensure that the entire film is one
11222 file on the disk. As this is for personal use, the ripping is
11223 perfectly legal here in Norway.&lt;/p&gt;
11224
11225 &lt;p&gt;Normally I rip the DVDs using dd like this:&lt;/p&gt;
11226
11227 &lt;blockquote&gt;&lt;pre&gt;
11228 #!/bin/sh
11229 # apt-get install lsdvd
11230 title=$(lsdvd 2&gt;/dev/null|awk &#39;/Disc Title: / {print $3}&#39;)
11231 dd if=/dev/dvd of=/storage/dvds/$title.iso bs=1M
11232 &lt;/pre&gt;&lt;/blockquote&gt;
11233
11234 &lt;p&gt;But some DVDs give a input/output error when I read it, and I have
11235 been looking for a better alternative. I have no idea why this I/O
11236 error occur, but suspect my DVD drive, the Linux kernel driver or
11237 something fishy with the DVDs in question. Or perhaps all three.&lt;/p&gt;
11238
11239 &lt;p&gt;Anyway, I believe I found a solution today using dvdbackup and
11240 genisoimage. This script gave me a working ISO for a problematic
11241 movie by first extracting the DVD file system and then re-packing it
11242 back as an ISO.
11243
11244 &lt;blockquote&gt;&lt;pre&gt;
11245 #!/bin/sh
11246 # apt-get install lsdvd dvdbackup genisoimage
11247 set -e
11248 tmpdir=/storage/dvds/
11249 title=$(lsdvd 2&gt;/dev/null|awk &#39;/Disc Title: / {print $3}&#39;)
11250 dvdbackup -i /dev/dvd -M -o $tmpdir -n$title
11251 genisoimage -dvd-video -o $tmpdir/$title.iso $tmpdir/$title
11252 rm -rf $tmpdir/$title
11253 &lt;/pre&gt;&lt;/blockquote&gt;
11254
11255 &lt;p&gt;Anyone know of a better way available in Debian/Squeeze?&lt;/p&gt;
11256
11257 &lt;p&gt;Update 2011-09-18: I got a tip from Konstantin Khomoutov about the
11258 readom program from the wodim package. It is specially written to
11259 read optical media, and is called like this: &lt;tt&gt;readom dev=/dev/dvd
11260 f=image.iso&lt;/tt&gt;. It got 6 GB along with the problematic Cars DVD
11261 before it failed, and failed right away with a Timmy Time DVD.&lt;/p&gt;
11262
11263 &lt;p&gt;Next, I got a tip from Bastian Blank about
11264 &lt;a href=&quot;http://bblank.thinkmo.de/blog/new-software-python-dvdvideo&quot;&gt;his
11265 program python-dvdvideo&lt;/a&gt;, which seem to be just what I am looking
11266 for. Tested it with my problematic Timmy Time DVD, and it succeeded
11267 creating a ISO image. The git source built and installed just fine in
11268 Squeeze, so I guess this will be my tool of choice in the future.&lt;/p&gt;
11269 </description>
11270 </item>
11271
11272 <item>
11273 <title>How is booting into runlevel 1 different from single user boots?</title>
11274 <link>http://people.skolelinux.org/pere/blog/How_is_booting_into_runlevel_1_different_from_single_user_boots_.html</link>
11275 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_is_booting_into_runlevel_1_different_from_single_user_boots_.html</guid>
11276 <pubDate>Thu, 4 Aug 2011 12:40:00 +0200</pubDate>
11277 <description>&lt;p&gt;Wouter Verhelst have some
11278 &lt;a href=&quot;http://grep.be/blog/en/retorts/pere_kubuntu_boot&quot;&gt;interesting
11279 comments and opinions&lt;/a&gt; on my blog post on
11280 &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
11281 need to clean up /etc/rcS.d/ in Debian&lt;/a&gt; and my blog post about
11282 &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
11283 default KDE desktop in Debian&lt;/a&gt;. I only have time to address one
11284 small piece of his comment now, and though it best to address the
11285 misunderstanding he bring forward:&lt;/p&gt;
11286
11287 &lt;p&gt;&lt;blockquote&gt;
11288 Currently, a system admin has four options: [...] boot to a
11289 single-user system (by adding &#39;single&#39; to the kernel command line;
11290 this runs rcS and rc1 scripts)
11291 &lt;/blockquote&gt;&lt;/p&gt;
11292
11293 &lt;p&gt;This make me believe Wouter believe booting into single user mode
11294 and booting into runlevel 1 is the same. I am not surprised he
11295 believe this, because it would make sense and is a quite sensible
11296 thing to believe. But because the boot in Debian is slightly broken,
11297 runlevel 1 do not work properly and it isn&#39;t the same as single user
11298 mode. I&#39;ll try to explain what is actually happing, but it is a bit
11299 hard to explain.&lt;/p&gt;
11300
11301 &lt;p&gt;Single user mode is defined like this in /etc/inittab:
11302 &quot;&lt;tt&gt;~~:S:wait:/sbin/sulogin&lt;/tt&gt;&quot;. This means the only thing that is
11303 executed in single user mode is sulogin. Single user mode is a boot
11304 state &quot;between&quot; the runlevels, and when booting into single user mode,
11305 only the scripts in /etc/rcS.d/ are executed before the init process
11306 enters the single user state. When switching to runlevel 1, the state
11307 is in fact not ending in runlevel 1, but it passes through runlevel 1
11308 and end up in the single user mode (see /etc/rc1.d/S03single, which
11309 runs &quot;init -t1 S&quot; to switch to single user mode at the end of runlevel
11310 1. It is confusing that the &#39;S&#39; (single user) init mode is not the
11311 mode enabled by /etc/rcS.d/ (which is more like the initial boot
11312 mode).&lt;/p&gt;
11313
11314 &lt;p&gt;This summary might make it clearer. When booting for the first
11315 time into single user mode, the following commands are executed:
11316 &quot;&lt;tt&gt;/etc/init.d/rc S; /sbin/sulogin&lt;/tt&gt;&quot;. When booting into
11317 runlevel 1, the following commands are executed: &quot;&lt;tt&gt;/etc/init.d/rc
11318 S; /etc/init.d/rc 1; /sbin/sulogin&lt;/tt&gt;&quot;. A problem show up when
11319 trying to continue after visiting single user mode. Not all services
11320 are started again as they should, causing the machine to end up in an
11321 unpredicatble state. This is why Debian admins recommend rebooting
11322 after visiting single user mode.&lt;/p&gt;
11323
11324 &lt;p&gt;A similar problem with runlevel 1 is caused by the amount of
11325 scripts executed from /etc/rcS.d/. When switching from say runlevel 2
11326 to runlevel 1, the services started from /etc/rcS.d/ are not properly
11327 stopped when passing through the scripts in /etc/rc1.d/, and not
11328 started again when switching away from runlevel 1 to the runlevels
11329 2-5. I believe the problem is best fixed by moving all the scripts
11330 out of /etc/rcS.d/ that are not &lt;strong&gt;required&lt;/strong&gt; to get a
11331 functioning single user mode during boot.&lt;/p&gt;
11332
11333 &lt;p&gt;I have spent several years investigating the Debian boot system,
11334 and discovered this problem a few years ago. I suspect it originates
11335 from when sysvinit was introduced into Debian, a long time ago.&lt;/p&gt;
11336 </description>
11337 </item>
11338
11339 <item>
11340 <title>What should start from /etc/rcS.d/ in Debian? - almost nothing</title>
11341 <link>http://people.skolelinux.org/pere/blog/What_should_start_from__etc_rcS_d__in_Debian____almost_nothing.html</link>
11342 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/What_should_start_from__etc_rcS_d__in_Debian____almost_nothing.html</guid>
11343 <pubDate>Sat, 30 Jul 2011 14:00:00 +0200</pubDate>
11344 <description>&lt;p&gt;In the Debian boot system, several packages include scripts that
11345 are started from /etc/rcS.d/. In fact, there is a bite more of them
11346 than make sense, and this causes a few problems. What kind of
11347 problems, you might ask. There are at least two problems. The first
11348 is that it is not possible to recover a machine after switching to
11349 runlevel 1. One need to actually reboot to get the machine back to
11350 the expected state. The other is that single user boot will sometimes
11351 run into problems because some of the subsystems are activated before
11352 the root login is presented, causing problems when trying to recover a
11353 machine from a problem in that subsystem. A minor additional point is
11354 that moving more scripts out of rcS.d/ and into the other rc#.d/
11355 directories will increase the amount of scripts that can run in
11356 parallel during boot, and thus decrease the boot time.&lt;/p&gt;
11357
11358 &lt;p&gt;So, which scripts should start from rcS.d/. In short, only the
11359 scripts that _have_ to execute before the root login prompt is
11360 presented during a single user boot should go there. Everything else
11361 should go into the numeric runlevels. This means things like
11362 lm-sensors, fuse and x11-common should not run from rcS.d, but from
11363 the numeric runlevels. Today in Debian, there are around 115 init.d
11364 scripts that are started from rcS.d/, and most of them should be moved
11365 out. Do your package have one of them? Please help us make single
11366 user and runlevel 1 better by moving it.&lt;/p&gt;
11367
11368 &lt;p&gt;Scripts setting up the screen, keyboard, system partitions
11369 etc. should still be started from rcS.d/, but there is for example no
11370 need to have the network enabled before the single user login prompt
11371 is presented.&lt;/p&gt;
11372
11373 &lt;p&gt;As always, things are not so easy to fix as they sound. To keep
11374 Debian systems working while scripts migrate and during upgrades, the
11375 scripts need to be moved from rcS.d/ to rc2.d/ in reverse dependency
11376 order, ie the scripts that nothing in rcS.d/ depend on can be moved,
11377 and the next ones can only be moved when their dependencies have been
11378 moved first. This migration must be done sequentially while we ensure
11379 that the package system upgrade packages in the right order to keep
11380 the system state correct. This will require some coordination when it
11381 comes to network related packages, but most of the packages with
11382 scripts that should migrate do not have anything in rcS.d/ depending
11383 on them. Some packages have already been updated, like the sudo
11384 package, while others are still left to do. I wish I had time to work
11385 on this myself, but real live constrains make it unlikely that I will
11386 find time to push this forward.&lt;/p&gt;
11387 </description>
11388 </item>
11389
11390 <item>
11391 <title>What is missing in the Debian desktop, or why my parents use Kubuntu</title>
11392 <link>http://people.skolelinux.org/pere/blog/What_is_missing_in_the_Debian_desktop__or_why_my_parents_use_Kubuntu.html</link>
11393 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/What_is_missing_in_the_Debian_desktop__or_why_my_parents_use_Kubuntu.html</guid>
11394 <pubDate>Fri, 29 Jul 2011 08:10:00 +0200</pubDate>
11395 <description>&lt;p&gt;While at Debconf11, I have several times during discussions
11396 mentioned the issues I believe should be improved in Debian for its
11397 desktop to be useful for more people. The use case for this is my
11398 parents, which are currently running Kubuntu which solve the
11399 issues.&lt;/p&gt;
11400
11401 &lt;p&gt;I suspect these four missing features are not very hard to
11402 implement. After all, they are present in Ubuntu, so if we wanted to
11403 do this in Debian we would have a source.&lt;/p&gt;
11404
11405 &lt;ol&gt;
11406
11407 &lt;li&gt;&lt;strong&gt;Simple GUI based upgrade of packages.&lt;/strong&gt; When there
11408 are new packages available for upgrades, a icon in the KDE status bar
11409 indicate this, and clicking on it will activate the simple upgrade
11410 tool to handle it. I have no problem guiding both of my parents
11411 through the process over the phone. If a kernel reboot is required,
11412 this too is indicated by the status bars and the upgrade tool. Last
11413 time I checked, nothing with the same features was working in KDE in
11414 Debian.&lt;/li&gt;
11415
11416 &lt;li&gt;&lt;strong&gt;Simple handling of missing Firefox browser
11417 plugins.&lt;/strong&gt; When the browser encounter a MIME type it do not
11418 currently have a handler for, it will ask the user if the system
11419 should search for a package that would add support for this MIME type,
11420 and if the user say yes, the APT sources will be searched for packages
11421 advertising the MIME type in their control file (visible in the
11422 Packages file in the APT archive). If one or more packages are found,
11423 it is a simple click of the mouse to add support for the missing mime
11424 type. If the package require the user to accept some non-free
11425 license, this is explained to the user. The entire process make it
11426 more clear to the user why something do not work in the browser, and
11427 make the chances higher for the user to blame the web page authors and
11428 not the browser for any missing features.&lt;/li&gt;
11429
11430 &lt;li&gt;&lt;strong&gt;Simple handling of missing multimedia codec/format
11431 handlers.&lt;/strong&gt; When the media players encounter a format or codec
11432 it is not supporting, a dialog pop up asking the user if the system
11433 should search for a package that would add support for it. This
11434 happen with things like MP3, Windows Media or H.264. The selection
11435 and installation procedure is very similar to the Firefox browser
11436 plugin handling. This is as far as I know implemented using a
11437 gstreamer hook. The end result is that the user easily get access to
11438 the codecs that are present from the APT archives available, while
11439 explaining more on why a given format is unsupported by Ubuntu.&lt;/li&gt;
11440
11441 &lt;li&gt;&lt;strong&gt;Better browser handling of some MIME types.&lt;/strong&gt; When
11442 displaying a text/plain file in my Debian browser, it will propose to
11443 start emacs to show it. If I remember correctly, when doing the same
11444 in Kunbutu it show the file as a text file in the browser. At least I
11445 know Opera will show text files within the browser. I much prefer the
11446 latter behaviour.&lt;/li&gt;
11447
11448 &lt;/ol&gt;
11449
11450 &lt;p&gt;There are other nice features as well, like the simplified suite
11451 upgrader, but given that I am the one mostly doing the dist-upgrade,
11452 it do not matter much.&lt;/p&gt;
11453
11454 &lt;p&gt;I really hope we could get these features in place for the next
11455 Debian release. It would require the coordinated effort of several
11456 maintainers, but would make the end user experience a lot better.&lt;/p&gt;
11457 </description>
11458 </item>
11459
11460 <item>
11461 <title>Perl modules used by FixMyStreet which are missing in Debian/Squeeze</title>
11462 <link>http://people.skolelinux.org/pere/blog/Perl_modules_used_by_FixMyStreet_which_are_missing_in_Debian_Squeeze.html</link>
11463 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Perl_modules_used_by_FixMyStreet_which_are_missing_in_Debian_Squeeze.html</guid>
11464 <pubDate>Tue, 26 Jul 2011 12:25:00 +0200</pubDate>
11465 <description>&lt;p&gt;The Norwegian &lt;a href=&quot;http://www.fiksgatami.no/&quot;&gt;FiksGataMi&lt;/A&gt;
11466 site is build on Debian/Squeeze, and this platform was chosen because
11467 I am most familiar with Debian (being a Debian Developer for around 10
11468 years) because it is the latest stable Debian release which should get
11469 security support for a few years.&lt;/p&gt;
11470
11471 &lt;p&gt;The web service is written in Perl, and depend on some perl modules
11472 that are missing in Debian at the moment. It would be great if these
11473 modules were added to the Debian archive, allowing anyone to set up
11474 their own &lt;a href=&quot;http://www.fixmystreet.com&quot;&gt;FixMyStreet&lt;/a&gt; clone
11475 in their own country using only Debian packages. The list of modules
11476 missing in Debian/Squeeze isn&#39;t very long, and I hope the perl group
11477 will find time to package the 12 modules Catalyst::Plugin::SmartURI,
11478 Catalyst::Plugin::Unicode::Encoding, Catalyst::View::TT, Devel::Hide,
11479 Sort::Key, Statistics::Distributions, Template::Plugin::Comma,
11480 Template::Plugin::DateTime::Format, Term::Size::Any, Term::Size::Perl,
11481 URI::SmartURI and Web::Scraper to make the maintenance of FixMyStreet
11482 easier in the future.&lt;/p&gt;
11483
11484 &lt;p&gt;Thanks to the great tools in Debian, getting the missing modules
11485 installed on my server was a simple call to &#39;cpan2deb Module::Name&#39;
11486 and &#39;dpkg -i&#39; to install the resulting package. But this leave me
11487 with the responsibility of tracking security problems, which I really
11488 do not have time for.&lt;/p&gt;
11489 </description>
11490 </item>
11491
11492 <item>
11493 <title>Free Software vs. proprietary softare...</title>
11494 <link>http://people.skolelinux.org/pere/blog/Free_Software_vs__proprietary_softare___.html</link>
11495 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_Software_vs__proprietary_softare___.html</guid>
11496 <pubDate>Mon, 20 Jun 2011 12:50:00 +0200</pubDate>
11497 <description>&lt;p&gt;Reading
11498 &lt;a href=&quot;http://blog.thingiverse.com/2011/06/20/open-source-vs-closed-source-eulas/&quot;&gt;the
11499 thingiverse blog&lt;/a&gt;, I came across two highlights of interesting
11500 parts of the
11501 &lt;a href=&quot;http://wiki.blender.org/index.php/Autodesk_EULA&quot;&gt;Autodesk&lt;/a&gt;
11502 and
11503 &lt;a href=&quot;http://blog.makezine.com/archive/2011/06/things-you-cant-do-with-the-microsoft-kinect-sdk.html&quot;&gt;Microsoft
11504 Kinect&lt;/a&gt; End User License Agreements (EULAs), which illustrates
11505 quite well why I stay away from software with EULAs. Whenever I take
11506 the time to read their content, the terms are simply unacceptable.&lt;/p&gt;
11507 </description>
11508 </item>
11509
11510 <item>
11511 <title>Experimental Open311 API for the mySociety fixmystreet system</title>
11512 <link>http://people.skolelinux.org/pere/blog/Experimental_Open311_API_for_the_mySociety_fixmystreet_system.html</link>
11513 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Experimental_Open311_API_for_the_mySociety_fixmystreet_system.html</guid>
11514 <pubDate>Sat, 30 Apr 2011 17:20:00 +0200</pubDate>
11515 <description>&lt;p&gt;Today, the first draft implementation of an
11516 &lt;a href=&quot;http://www.open311.org/&quot;&gt;Open311 API&lt;/a&gt; for the Norwegian
11517 service &lt;a href=&quot;http://www.fiksgatami.no/&quot;&gt;FiksGataMi&lt;/a&gt; started to
11518 work. It is only available on the developer server for now, and I
11519 have not tested it using any existing Open311 client (I lack the
11520 platforms needed to run the clients I have found so far), but it is
11521 able to query the database and extract a list of open and closed
11522 requests within a given category and reported to a given municipality.
11523 I believe that is a good start to create a useful service for those
11524 that want to do data mining on the requests submitted so far.&lt;/p&gt;
11525
11526 &lt;p&gt;Where is it? Visit
11527 &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;
11528 to have a look. Please send feedback to the
11529 &lt;a href=&quot;http://lists.nuug.no/mailman/listinfo/fiksgatami&quot;&gt;fiksgatami
11530 (at) nuug.no&lt;/a&gt; mailing list.&lt;/p&gt;
11531 </description>
11532 </item>
11533
11534 <item>
11535 <title>Initial notes on adding Open311 server API on FixMyStreet</title>
11536 <link>http://people.skolelinux.org/pere/blog/Initial_notes_on_adding_Open311_server_API_on_FixMyStreet.html</link>
11537 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Initial_notes_on_adding_Open311_server_API_on_FixMyStreet.html</guid>
11538 <pubDate>Fri, 29 Apr 2011 10:00:00 +0200</pubDate>
11539 <description>&lt;p&gt;The last few days I have spent some time trying to add support for
11540 the &lt;a href=&quot;http://www.open311.org/&quot;&gt;Open311 API&lt;/a&gt; in the
11541 &lt;a href=&quot;http://www.fiksgatami.no/&quot;&gt;Norwegian FixMyStreet service&lt;/a&gt;.
11542 Earlier I believed Open311 would be a useful API to use to submit
11543 reports to the municipalities, but when I noticed that the
11544 &lt;a href=&quot;http://fixmystreet.org.nz/&quot;&gt;New Zealand version&lt;/a&gt; of
11545 FixMyStreet had implemented Open311 on the server side, it occurred to
11546 me that this was a nice way to allow the public, press and
11547 municipalities to do data mining directly in the FixMyStreet service.
11548 Thus I went to work implementing the Open311 specification for
11549 FixMyStreet. The implementation is not yet ready, but I am starting
11550 to get a draft limping along. In the process, I have discovered a few
11551 issues with the Open311 specification.&lt;/p&gt;
11552
11553 &lt;p&gt;One obvious missing feature is the lack of natural language
11554 handling in the specification. The specification seem to assume all
11555 reports will be written in English, and do not provide a way for the
11556 receiving end to specify which languages are understood there. To be
11557 able to use the same client and submit to several Open311 receivers,
11558 it would be useful to know which language to use when writing reports.
11559 I believe the specification should be extended to allow the receivers
11560 of problem reports to specify which language they accept, and the
11561 submitter to specify which language the report is written in.
11562 Language of a text can also be automatically guessed using statistical
11563 methods, but for multi-lingual persons like myself, it is useful to
11564 know which language to use when writing a problem report. I suspect
11565 some lang=nb,nn kind of attribute would solve it.&lt;/p&gt;
11566
11567 &lt;p&gt;A key part of the Open311 API is the list of services provided,
11568 which is similar to the categories used by FixMyStreet. One issue I
11569 run into is the need to specify both name and unique identifier for
11570 each category. The specification do not state that the identifier
11571 should be numeric, but all example implementations have used numbers
11572 here. In FixMyStreet, there is no number associated with each
11573 category. As the specification do not forbid it, I will use the name
11574 as the unique identifier for now and see how open311 clients handle
11575 it.&lt;/p&gt;
11576
11577 &lt;p&gt;The report format in open311 and the report format in FixMyStreet
11578 differ in a key part. FixMyStreet have a title and a description,
11579 while Open311 only have a description and lack the title. I&#39;m not
11580 quite sure how to best handle this yet. When asking for a FixMyStreet
11581 report in Open311 format, I just merge title an description into the
11582 open311 description, but this is not going to work if the open311 API
11583 should be used for submitting new reports to FixMyStreet.&lt;/p&gt;
11584
11585 &lt;p&gt;The search feature in Open311 is missing a way to ask for problems
11586 near a geographic location. I believe this is important if one is to
11587 use Open311 as the query language for mobile units. The specification
11588 should be extended to handle this, probably using some new lat=, lon=
11589 and range= options.&lt;/p&gt;
11590
11591 &lt;p&gt;The final challenge I see is that the FixMyStreet code handle
11592 several administrations in one interface, while the Open311 API seem
11593 to assume only one administration. For FixMyStreet, this mean a
11594 report can be sent to several administrations, and the categories
11595 available depend on the location of the problem. Not quite sure how
11596 to best handle this. I&#39;ve noticed
11597 &lt;a href=&quot;http://seeclickfix.com/open311/&quot;&gt;SeeClickFix&lt;/a&gt; added
11598 latitude and longitude options to the services request, but it do not
11599 solve the problem of what to return when no location is specified.
11600 Will have to investigate this a bit more.&lt;/p&gt;
11601
11602 &lt;p&gt;My distaste for web forums have kept me from bringing these issues
11603 up with the open311 developer group. I really wish they had a email
11604 list available via &lt;a href=&quot;http://www.gmane.org/&quot;&gt;Gmane&lt;/a&gt; to use for
11605 discussions instead of only
11606 &lt;a href=&quot;http://lists.open311.org/groups/discuss&quot;&gt;a forum&lt;a/&gt;. Oh,
11607 well. That will probably resolve itself, one way or another. I&#39;ve
11608 also tried visiting the IRC channel #open311 on FreeNode, but no-one
11609 seem to reply to my questions there. This make me wonder if I just
11610 fail to understand how the open311 community work. It sure do not
11611 work like the free software project communities I am used to.&lt;/p&gt;
11612 </description>
11613 </item>
11614
11615 <item>
11616 <title>Gnash enteres Google Summer of Code 2011</title>
11617 <link>http://people.skolelinux.org/pere/blog/Gnash_enteres_Google_Summer_of_Code_2011.html</link>
11618 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Gnash_enteres_Google_Summer_of_Code_2011.html</guid>
11619 <pubDate>Wed, 6 Apr 2011 09:00:00 +0200</pubDate>
11620 <description>&lt;p&gt;&lt;a href=&quot;http://www.getgnash.org/&quot;&gt;The Gnash project&lt;/a&gt; is still
11621 the most promising solution for a Free Software Flash implementation.
11622 A few days ago the project
11623 &lt;a href=&quot;http://lists.gnu.org/archive/html/gnash-dev/2011-04/msg00011.html&quot;&gt;announced&lt;/a&gt;
11624 that it will participate in Google Summer of Code. I hope many
11625 students apply, and that some of them succeed in getting AVM2 support
11626 into Gnash.&lt;/p&gt;
11627 </description>
11628 </item>
11629
11630 <item>
11631 <title>A Norwegian FixMyStreet have kept me busy the last few weeks</title>
11632 <link>http://people.skolelinux.org/pere/blog/A_Norwegian_FixMyStreet_have_kept_me_busy_the_last_few_weeks.html</link>
11633 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_Norwegian_FixMyStreet_have_kept_me_busy_the_last_few_weeks.html</guid>
11634 <pubDate>Sun, 3 Apr 2011 22:50:00 +0200</pubDate>
11635 <description>&lt;p&gt;Here is a small update for my English readers. Most of my blog
11636 posts have been in Norwegian the last few weeks, so here is a short
11637 update in English.&lt;/p&gt;
11638
11639 &lt;p&gt;The kids still keep me too busy to get much free software work
11640 done, but I did manage to organise a project to get a Norwegian port
11641 of the British service
11642 &lt;a href=&quot;http://www.fixmystreet.com/&quot;&gt;FixMyStreet&lt;/a&gt; up and running,
11643 and it has been running for a month now. The entire project has been
11644 organised by me and two others. Around Christmas we gathered sponsors
11645 to fund the development work. In January I drafted a contract with
11646 &lt;a href=&quot;http://www.mysociety.org/&quot;&gt;mySociety&lt;/a&gt; on what to develop,
11647 and in February the development took place. Most of it involved
11648 converting the source to use GPS coordinates instead of British
11649 easting/northing, and the resulting code should be a lot easier to get
11650 running in any country by now. The Norwegian
11651 &lt;a href=&quot;http://www.fiksgatami.no/&quot;&gt;FiksGataMi&lt;/a&gt; is using
11652 &lt;a href=&quot;http://www.openstreetmap.org/&quot;&gt;OpenStreetmap&lt;/a&gt; as the map
11653 source and the source for administrative borders in Norway, and
11654 support for this had to be added/fixed.&lt;/p&gt;
11655
11656 &lt;p&gt;The Norwegian version went live March 3th, and we spent the weekend
11657 polishing the system before we announced it March 7th. The system is
11658 running on a KVM instance of Debian/Squeeze, and has seen almost 3000
11659 problem reports in a few weeks. Soon we hope to announce the Android
11660 and iPhone versions making it even easier to report problems with the
11661 public infrastructure.&lt;/p&gt;
11662
11663 &lt;p&gt;Perhaps something to consider for those of you in countries without
11664 such service?&lt;/p&gt;
11665 </description>
11666 </item>
11667
11668 <item>
11669 <title>Using NVD and CPE to track CVEs in locally maintained software</title>
11670 <link>http://people.skolelinux.org/pere/blog/Using_NVD_and_CPE_to_track_CVEs_in_locally_maintained_software.html</link>
11671 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Using_NVD_and_CPE_to_track_CVEs_in_locally_maintained_software.html</guid>
11672 <pubDate>Fri, 28 Jan 2011 15:40:00 +0100</pubDate>
11673 <description>&lt;p&gt;The last few days I have looked at ways to track open security
11674 issues here at my work with the University of Oslo. My idea is that
11675 it should be possible to use the information about security issues
11676 available on the Internet, and check our locally
11677 maintained/distributed software against this information. It should
11678 allow us to verify that no known security issues are forgotten. The
11679 CVE database listing vulnerabilities seem like a great central point,
11680 and by using the package lists from Debian mapped to CVEs provided by
11681 the testing security team, I believed it should be possible to figure
11682 out which security holes were present in our free software
11683 collection.&lt;/p&gt;
11684
11685 &lt;p&gt;After reading up on the topic, it became obvious that the first
11686 building block is to be able to name software packages in a unique and
11687 consistent way across data sources. I considered several ways to do
11688 this, for example coming up with my own naming scheme like using URLs
11689 to project home pages or URLs to the Freshmeat entries, or using some
11690 existing naming scheme. And it seem like I am not the first one to
11691 come across this problem, as MITRE already proposed and implemented a
11692 solution. Enter the &lt;a href=&quot;http://cpe.mitre.org/index.html&quot;&gt;Common
11693 Platform Enumeration&lt;/a&gt; dictionary, a vocabulary for referring to
11694 software, hardware and other platform components. The CPE ids are
11695 mapped to CVEs in the &lt;a href=&quot;http://web.nvd.nist.gov/&quot;&gt;National
11696 Vulnerability Database&lt;/a&gt;, allowing me to look up know security
11697 issues for any CPE name. With this in place, all I need to do is to
11698 locate the CPE id for the software packages we use at the university.
11699 This is fairly trivial (I google for &#39;cve cpe $package&#39; and check the
11700 NVD entry if a CVE for the package exist).&lt;/p&gt;
11701
11702 &lt;p&gt;To give you an example. The GNU gzip source package have the CPE
11703 name cpe:/a:gnu:gzip. If the old version 1.3.3 was the package to
11704 check out, one could look up
11705 &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
11706 in NVD&lt;/a&gt; and get a list of 6 security holes with public CVE entries.
11707 The most recent one is
11708 &lt;a href=&quot;http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0001&quot;&gt;CVE-2010-0001&lt;/a&gt;,
11709 and at the bottom of the NVD page for this vulnerability the complete
11710 list of affected versions is provided.&lt;/p&gt;
11711
11712 &lt;p&gt;The NVD database of CVEs is also available as a XML dump, allowing
11713 for offline processing of issues. Using this dump, I&#39;ve written a
11714 small script taking a list of CPEs as input and list all CVEs
11715 affecting the packages represented by these CPEs. One give it CPEs
11716 with version numbers as specified above and get a list of open
11717 security issues out.&lt;/p&gt;
11718
11719 &lt;p&gt;Of course for this approach to be useful, the quality of the NVD
11720 information need to be high. For that to happen, I believe as many as
11721 possible need to use and contribute to the NVD database. I notice
11722 RHEL is providing
11723 &lt;a href=&quot;https://www.redhat.com/security/data/metrics/rhsamapcpe.txt&quot;&gt;a
11724 map from CVE to CPE&lt;/a&gt;, indicating that they are using the CPE
11725 information. I&#39;m not aware of Debian and Ubuntu doing the same.&lt;/p&gt;
11726
11727 &lt;p&gt;To get an idea about the quality for free software, I spent some
11728 time making it possible to compare the CVE database from Debian with
11729 the CVE database in NVD. The result look fairly good, but there are
11730 some inconsistencies in NVD (same software package having several
11731 CPEs), and some inaccuracies (NVD not mentioning buggy packages that
11732 Debian believe are affected by a CVE). Hope to find time to improve
11733 the quality of NVD, but that require being able to get in touch with
11734 someone maintaining it. So far my three emails with questions and
11735 corrections have not seen any reply, but I hope contact can be
11736 established soon.&lt;/p&gt;
11737
11738 &lt;p&gt;An interesting application for CPEs is cross platform package
11739 mapping. It would be useful to know which packages in for example
11740 RHEL, OpenSuSe and Mandriva are missing from Debian and Ubuntu, and
11741 this would be trivial if all linux distributions provided CPE entries
11742 for their packages.&lt;/p&gt;
11743 </description>
11744 </item>
11745
11746 <item>
11747 <title>Which module is loaded for a given PCI and USB device?</title>
11748 <link>http://people.skolelinux.org/pere/blog/Which_module_is_loaded_for_a_given_PCI_and_USB_device_.html</link>
11749 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Which_module_is_loaded_for_a_given_PCI_and_USB_device_.html</guid>
11750 <pubDate>Sun, 23 Jan 2011 00:20:00 +0100</pubDate>
11751 <description>&lt;p&gt;In the
11752 &lt;a href=&quot;http://packages.qa.debian.org/discover-data&quot;&gt;discover-data&lt;/a&gt;
11753 package in Debian, there is a script to report useful information
11754 about the running hardware for use when people report missing
11755 information. One part of this script that I find very useful when
11756 debugging hardware problems, is the part mapping loaded kernel module
11757 to the PCI device it claims. It allow me to quickly see if the kernel
11758 module I expect is driving the hardware I am struggling with. To see
11759 the output, make sure discover-data is installed and run
11760 &lt;tt&gt;/usr/share/bug/discover-data 3&gt;&amp;1&lt;/tt&gt;. The relevant output on
11761 one of my machines like this:&lt;/p&gt;
11762
11763 &lt;pre&gt;
11764 loaded modules:
11765 10de:03eb i2c_nforce2
11766 10de:03f1 ohci_hcd
11767 10de:03f2 ehci_hcd
11768 10de:03f0 snd_hda_intel
11769 10de:03ec pata_amd
11770 10de:03f6 sata_nv
11771 1022:1103 k8temp
11772 109e:036e bttv
11773 109e:0878 snd_bt87x
11774 11ab:4364 sky2
11775 &lt;/pre&gt;
11776
11777 &lt;p&gt;The code in question look like this, slightly modified for
11778 readability and to drop the output to file descriptor 3:&lt;/p&gt;
11779
11780 &lt;pre&gt;
11781 if [ -d /sys/bus/pci/devices/ ] ; then
11782 echo loaded pci modules:
11783 (
11784 cd /sys/bus/pci/devices/
11785 for address in * ; do
11786 if [ -d &quot;$address/driver/module&quot; ] ; then
11787 module=`cd $address/driver/module ; pwd -P | xargs basename`
11788 if grep -q &quot;^$module &quot; /proc/modules ; then
11789 address=$(echo $address |sed s/0000://)
11790 id=`lspci -n -s $address | tail -n 1 | awk &#39;{print $3}&#39;`
11791 echo &quot;$id $module&quot;
11792 fi
11793 fi
11794 done
11795 )
11796 echo
11797 fi
11798 &lt;/pre&gt;
11799
11800 &lt;p&gt;Similar code could be used to extract USB device module
11801 mappings:&lt;/p&gt;
11802
11803 &lt;pre&gt;
11804 if [ -d /sys/bus/usb/devices/ ] ; then
11805 echo loaded usb modules:
11806 (
11807 cd /sys/bus/usb/devices/
11808 for address in * ; do
11809 if [ -d &quot;$address/driver/module&quot; ] ; then
11810 module=`cd $address/driver/module ; pwd -P | xargs basename`
11811 if grep -q &quot;^$module &quot; /proc/modules ; then
11812 address=$(echo $address |sed s/0000://)
11813 id=$(lsusb -s $address | tail -n 1 | awk &#39;{print $6}&#39;)
11814 if [ &quot;$id&quot; ] ; then
11815 echo &quot;$id $module&quot;
11816 fi
11817 fi
11818 fi
11819 done
11820 )
11821 echo
11822 fi
11823 &lt;/pre&gt;
11824
11825 &lt;p&gt;This might perhaps be something to include in other tools as
11826 well.&lt;/p&gt;
11827 </description>
11828 </item>
11829
11830 <item>
11831 <title>The video format most supported in web browsers?</title>
11832 <link>http://people.skolelinux.org/pere/blog/The_video_format_most_supported_in_web_browsers_.html</link>
11833 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_video_format_most_supported_in_web_browsers_.html</guid>
11834 <pubDate>Sun, 16 Jan 2011 00:20:00 +0100</pubDate>
11835 <description>&lt;p&gt;The video format struggle on the web continues, and the three
11836 contenders seem to be Ogg Theora, H.264 and WebM. Most video sites
11837 seem to use H.264, while others use Ogg Theora. Interestingly enough,
11838 the comments I see give me the feeling that a lot of people believe
11839 H.264 is the most supported video format in browsers, but according to
11840 the Wikipedia article on
11841 &lt;a href=&quot;http://en.wikipedia.org/wiki/HTML5_video&quot;&gt;HTML5 video&lt;/a&gt;,
11842 this is not true. Check out the nice table of supprted formats in
11843 different browsers there. The format supported by most browsers is
11844 Ogg Theora, supported by released versions of Mozilla Firefox, Google
11845 Chrome, Chromium, Opera, Konqueror, Epiphany, Origyn Web Browser and
11846 BOLT browser, while not supported by Internet Explorer nor Safari.
11847 The runner up is WebM supported by released versions of Google Chrome
11848 Chromium Opera and Origyn Web Browser, and test versions of Mozilla
11849 Firefox. H.264 is supported by released versions of Safari, Origyn
11850 Web Browser and BOLT browser, and the test version of Internet
11851 Explorer. Those wanting Ogg Theora support in Internet Explorer and
11852 Safari can install plugins to get it.&lt;/p&gt;
11853
11854 &lt;p&gt;To me, the simple conclusion from this is that to reach most users
11855 without any extra software installed, one uses Ogg Theora with the
11856 HTML5 video tag. Of course to reach all those without a browser
11857 handling HTML5, one need fallback mechanisms. In
11858 &lt;a href=&quot;http://www.nuug.no/&quot;&gt;NUUG&lt;/a&gt;, we provide first fallback to a
11859 plugin capable of playing MPEG1 video, and those without such support
11860 we have a second fallback to the Cortado java applet playing Ogg
11861 Theora. This seem to work quite well, as can be seen in an &lt;a
11862 href=&quot;http://www.nuug.no/aktiviteter/20110111-semantic-web/&quot;&gt;example
11863 from last week&lt;/a&gt;.&lt;/p&gt;
11864
11865 &lt;p&gt;The reason Ogg Theora is the most supported format, and H.264 is
11866 the least supported is simple. Implementing and using H.264
11867 require royalty payment to MPEG-LA, and the terms of use from MPEG-LA
11868 are incompatible with free software licensing. If you believed H.264
11869 was without royalties and license terms, check out
11870 &quot;&lt;a href=&quot;http://webmink.com/essays/h-264/&quot;&gt;H.264 – Not The Kind Of
11871 Free That Matters&lt;/a&gt;&quot; by Simon Phipps.&lt;/p&gt;
11872
11873 &lt;p&gt;A incomplete list of sites providing video in Ogg Theora is
11874 available from
11875 &lt;a href=&quot;http://wiki.xiph.org/index.php/List_of_Theora_videos&quot;&gt;the
11876 Xiph.org wiki&lt;/a&gt;, if you want to have a look. I&#39;m not aware of a
11877 similar list for WebM nor H.264.&lt;/p&gt;
11878
11879 &lt;p&gt;Update 2011-01-16 09:40: A question from Tollef on IRC made me
11880 realise that I failed to make it clear enough this text is about the
11881 &amp;lt;video&amp;gt; tag support in browsers and not the video support
11882 provided by external plugins like the Flash plugins.&lt;/p&gt;
11883 </description>
11884 </item>
11885
11886 <item>
11887 <title>Chrome plan to drop H.264 support for HTML5 &amp;lt;video&amp;gt;</title>
11888 <link>http://people.skolelinux.org/pere/blog/Chrome_plan_to_drop_H_264_support_for_HTML5__lt_video_gt_.html</link>
11889 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Chrome_plan_to_drop_H_264_support_for_HTML5__lt_video_gt_.html</guid>
11890 <pubDate>Wed, 12 Jan 2011 22:10:00 +0100</pubDate>
11891 <description>&lt;p&gt;Today I discovered
11892 &lt;a href=&quot;http://www.digi.no/860070/google-dropper-h264-stotten-i-chrome&quot;&gt;via
11893 digi.no&lt;/a&gt; that the Chrome developers, in a surprising announcement,
11894 &lt;a href=&quot;http://blog.chromium.org/2011/01/html-video-codec-support-in-chrome.html&quot;&gt;yesterday
11895 announced&lt;/a&gt; plans to drop H.264 support for HTML5 &amp;lt;video&amp;gt; in
11896 the browser. The argument used is that H.264 is not a &quot;completely
11897 open&quot; codec technology. If you believe H.264 was free for everyone
11898 to use, I recommend having a look at the essay
11899 &quot;&lt;a href=&quot;http://webmink.com/essays/h-264/&quot;&gt;H.264 – Not The Kind Of
11900 Free That Matters&lt;/a&gt;&quot;. It is not free of cost for creators of video
11901 tools, nor those of us that want to publish on the Internet, and the
11902 terms provided by MPEG-LA excludes free software projects from
11903 licensing the patents needed for H.264. Some background information
11904 on the Google announcement is available from
11905 &lt;a href=&quot;http://www.osnews.com/story/24243/Google_To_Drop_H264_Support_from_Chrome&quot;&gt;OSnews&lt;/a&gt;.
11906 A good read. :)&lt;/p&gt;
11907
11908 &lt;p&gt;Personally, I believe it is great that Google is taking a stand to
11909 promote equal terms for everyone when it comes to video publishing on
11910 the Internet. This can only be done by publishing using free and open
11911 standards, which is only possible if the web browsers provide support
11912 for these free and open standards. At the moment there seem to be two
11913 camps in the web browser world when it come to video support. Some
11914 browsers support H.264, and others support
11915 &lt;a href=&quot;http://www.theora.org/&quot;&gt;Ogg Theora&lt;/a&gt; and
11916 &lt;a href=&quot;http://www.webmproject.org/&quot;&gt;WebM&lt;/a&gt;
11917 (&lt;a href=&quot;http://www.diracvideo.org/&quot;&gt;Dirac&lt;/a&gt; is not really an option
11918 yet), forcing those of us that want to publish video on the Internet
11919 and which can not accept the terms of use presented by MPEG-LA for
11920 H.264 to not reach all potential viewers.
11921 Wikipedia keep &lt;a href=&quot;http://en.wikipedia.org/wiki/HTML5_video&quot;&gt;an
11922 updated summary&lt;/a&gt; of the current browser support.&lt;/p&gt;
11923
11924 &lt;p&gt;Not surprising, several people would prefer Google to keep
11925 promoting H.264, and John Gruber
11926 &lt;a href=&quot;http://daringfireball.net/2011/01/simple_questions&quot;&gt;presents
11927 the mind set&lt;/a&gt; of these people quite well. His rhetorical questions
11928 provoked a reply from Thom Holwerda with another set of questions
11929 &lt;a href=&quot;http://www.osnews.com/story/24245/10_Questions_for_John_Gruber_Regarding_H_264_WebM&quot;&gt;presenting
11930 the issues with H.264&lt;/a&gt;. Both are worth a read.&lt;/p&gt;
11931
11932 &lt;p&gt;Some argue that if Google is dropping H.264 because it isn&#39;t free,
11933 they should also drop support for the Adobe Flash plugin. This
11934 argument was covered by Simon Phipps in
11935 &lt;a href=&quot;http://blogs.computerworlduk.com/simon-says/2011/01/google-and-h264---far-from-hypocritical/index.htm&quot;&gt;todays
11936 blog post&lt;/a&gt;, which I find to put the issue in context. To me it
11937 make perfect sense to drop native H.264 support for HTML5 in the
11938 browser while still allowing plugins.&lt;/p&gt;
11939
11940 &lt;p&gt;I suspect the reason this announcement make so many people protest,
11941 is that all the users and promoters of H.264 suddenly get an uneasy
11942 feeling that they might be backing the wrong horse. A lot of TV
11943 broadcasters have been moving to H.264 the last few years, and a lot
11944 of money has been invested in hardware based on the belief that they
11945 could use the same video format for both broadcasting and web
11946 publishing. Suddenly this belief is shaken.&lt;/p&gt;
11947
11948 &lt;p&gt;An interesting question is why Google is doing this. While the
11949 presented argument might be true enough, I believe Google would only
11950 present the argument if the change make sense from a business
11951 perspective. One reason might be that they are currently negotiating
11952 with MPEG-LA over royalties or usage terms, and giving MPEG-LA the
11953 feeling that dropping H.264 completely from Chroome, Youtube and
11954 Google Video would improve the negotiation position of Google.
11955 Another reason might be that Google want to save money by not having
11956 to pay the video tax to MPEG-LA at all, and thus want to move to a
11957 video format not requiring royalties at all. A third reason might be
11958 that the Chrome development team simply want to avoid the
11959 Chrome/Chromium split to get more help with the development of Chrome.
11960 I guess time will tell.&lt;/p&gt;
11961
11962 &lt;p&gt;Update 2011-01-15: The Google Chrome team provided
11963 &lt;a href=&quot;http://blog.chromium.org/2011/01/more-about-chrome-html-video-codec.html&quot;&gt;more
11964 background and information on the move&lt;/a&gt; it a blog post yesterday.&lt;/p&gt;
11965 </description>
11966 </item>
11967
11968 <item>
11969 <title>What standards are Free and Open as defined by Digistan?</title>
11970 <link>http://people.skolelinux.org/pere/blog/What_standards_are_Free_and_Open_as_defined_by_Digistan_.html</link>
11971 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/What_standards_are_Free_and_Open_as_defined_by_Digistan_.html</guid>
11972 <pubDate>Thu, 30 Dec 2010 23:15:00 +0100</pubDate>
11973 <description>&lt;p&gt;After trying to
11974 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Is_Ogg_Theora_a_free_and_open_standard_.html&quot;&gt;compare
11975 Ogg Theora&lt;/a&gt; to
11976 &lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;the Digistan
11977 definition&lt;/a&gt; of a free and open standard, I concluded that this need
11978 to be done for more standards and started on a framework for doing
11979 this. As a start, I want to get the status for all the standards in
11980 the Norwegian reference directory, which include UTF-8, HTML, PDF, ODF,
11981 JPEG, PNG, SVG and others. But to be able to complete this in a
11982 reasonable time frame, I will need help.&lt;/p&gt;
11983
11984 &lt;p&gt;If you want to help out with this work, please visit
11985 &lt;a href=&quot;http://wiki.nuug.no/grupper/standard/digistan-analyse&quot;&gt;the
11986 wiki pages I have set up for this&lt;/a&gt;, and let me know that you want
11987 to help out. The IRC channel #nuug on irc.freenode.net is a good
11988 place to coordinate this for now, as it is the IRC channel for the
11989 NUUG association where I have created the framework (I am the leader
11990 of the Norwegian Unix User Group).&lt;/p&gt;
11991
11992 &lt;p&gt;The framework is still forming, and a lot is left to do. Do not be
11993 scared by the sketchy form of the current pages. :)&lt;/p&gt;
11994 </description>
11995 </item>
11996
11997 <item>
11998 <title>The many definitions of a open standard</title>
11999 <link>http://people.skolelinux.org/pere/blog/The_many_definitions_of_a_open_standard.html</link>
12000 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_many_definitions_of_a_open_standard.html</guid>
12001 <pubDate>Mon, 27 Dec 2010 14:45:00 +0100</pubDate>
12002 <description>&lt;p&gt;One of the reasons I like the Digistan definition of
12003 &quot;&lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;Free and
12004 Open Standard&lt;/a&gt;&quot; is that this is a new term, and thus the meaning of
12005 the term has been decided by Digistan. The term &quot;Open Standard&quot; has
12006 become so misunderstood that it is no longer very useful when talking
12007 about standards. One end up discussing which definition is the best
12008 one and with such frame the only one gaining are the proponents of
12009 de-facto standards and proprietary solutions.&lt;/p&gt;
12010
12011 &lt;p&gt;But to give us an idea about the diversity of definitions of open
12012 standards, here are a few that I know about. This list is not
12013 complete, but can be a starting point for those that want to do a
12014 complete survey. More definitions are available on the
12015 &lt;a href=&quot;http://en.wikipedia.org/wiki/Open_standard&quot;&gt;wikipedia
12016 page&lt;/a&gt;.&lt;/p&gt;
12017
12018 &lt;p&gt;First off is my favourite, the definition from the European
12019 Interoperability Framework version 1.0. Really sad to notice that BSA
12020 and others has succeeded in getting it removed from version 2.0 of the
12021 framework by stacking the committee drafting the new version with
12022 their own people. Anyway, the definition is still available and it
12023 include the key properties needed to make sure everyone can use a
12024 specification on equal terms.&lt;/p&gt;
12025
12026 &lt;blockquote&gt;
12027
12028 &lt;p&gt;The following are the minimal characteristics that a specification
12029 and its attendant documents must have in order to be considered an
12030 open standard:&lt;/p&gt;
12031
12032 &lt;ul&gt;
12033
12034 &lt;li&gt;The standard is adopted and will be maintained by a not-for-profit
12035 organisation, and its ongoing development occurs on the basis of an
12036 open decision-making procedure available to all interested parties
12037 (consensus or majority decision etc.).&lt;/li&gt;
12038
12039 &lt;li&gt;The standard has been published and the standard specification
12040 document is available either freely or at a nominal charge. It must be
12041 permissible to all to copy, distribute and use it for no fee or at a
12042 nominal fee.&lt;/li&gt;
12043
12044 &lt;li&gt;The intellectual property - i.e. patents possibly present - of
12045 (parts of) the standard is made irrevocably available on a royalty-
12046 free basis.&lt;/li&gt;
12047
12048 &lt;li&gt;There are no constraints on the re-use of the standard.&lt;/li&gt;
12049
12050 &lt;/ul&gt;
12051 &lt;/blockquote&gt;
12052
12053 &lt;p&gt;Another one originates from my friends over at
12054 &lt;a href=&quot;http://www.dkuug.dk/&quot;&gt;DKUUG&lt;/a&gt;, who coined and gathered
12055 support for &lt;a href=&quot;http://www.aaben-standard.dk/&quot;&gt;this
12056 definition&lt;/a&gt; in 2004. It even made it into the Danish parlament as
12057 &lt;a href=&quot;http://www.ft.dk/dokumenter/tingdok.aspx?/samling/20051/beslutningsforslag/B103/som_fremsat.htm&quot;&gt;their
12058 definition of a open standard&lt;/a&gt;. Another from a different part of
12059 the Danish government is available from the wikipedia page.&lt;/p&gt;
12060
12061 &lt;blockquote&gt;
12062
12063 &lt;p&gt;En åben standard opfylder følgende krav:&lt;/p&gt;
12064
12065 &lt;ol&gt;
12066
12067 &lt;li&gt;Veldokumenteret med den fuldstændige specifikation offentligt
12068 tilgængelig.&lt;/li&gt;
12069
12070 &lt;li&gt;Frit implementerbar uden økonomiske, politiske eller juridiske
12071 begrænsninger på implementation og anvendelse.&lt;/li&gt;
12072
12073 &lt;li&gt;Standardiseret og vedligeholdt i et åbent forum (en såkaldt
12074 &quot;standardiseringsorganisation&quot;) via en åben proces.&lt;/li&gt;
12075
12076 &lt;/ol&gt;
12077
12078 &lt;/blockquote&gt;
12079
12080 &lt;p&gt;Then there is &lt;a href=&quot;http://www.fsfe.org/projects/os/def.html&quot;&gt;the
12081 definition&lt;/a&gt; from Free Software Foundation Europe.&lt;/p&gt;
12082
12083 &lt;blockquote&gt;
12084
12085 &lt;p&gt;An Open Standard refers to a format or protocol that is&lt;/p&gt;
12086
12087 &lt;ol&gt;
12088
12089 &lt;li&gt;subject to full public assessment and use without constraints in a
12090 manner equally available to all parties;&lt;/li&gt;
12091
12092 &lt;li&gt;without any components or extensions that have dependencies on
12093 formats or protocols that do not meet the definition of an Open
12094 Standard themselves;&lt;/li&gt;
12095
12096 &lt;li&gt;free from legal or technical clauses that limit its utilisation by
12097 any party or in any business model;&lt;/li&gt;
12098
12099 &lt;li&gt;managed and further developed independently of any single vendor
12100 in a process open to the equal participation of competitors and third
12101 parties;&lt;/li&gt;
12102
12103 &lt;li&gt;available in multiple complete implementations by competing
12104 vendors, or as a complete implementation equally available to all
12105 parties.&lt;/li&gt;
12106
12107 &lt;/ol&gt;
12108
12109 &lt;/blockquote&gt;
12110
12111 &lt;p&gt;A long time ago, SUN Microsystems, now bought by Oracle, created
12112 its
12113 &lt;a href=&quot;http://blogs.sun.com/dennisding/resource/Open%20Standard%20Definition.pdf&quot;&gt;Open
12114 Standards Checklist&lt;/a&gt; with a fairly detailed description.&lt;/p&gt;
12115
12116 &lt;blockquote&gt;
12117 &lt;p&gt;Creation and Management of an Open Standard
12118
12119 &lt;ul&gt;
12120
12121 &lt;li&gt;Its development and management process must be collaborative and
12122 democratic:
12123
12124 &lt;ul&gt;
12125
12126 &lt;li&gt;Participation must be accessible to all those who wish to
12127 participate and can meet fair and reasonable criteria
12128 imposed by the organization under which it is developed
12129 and managed.&lt;/li&gt;
12130
12131 &lt;li&gt;The processes must be documented and, through a known
12132 method, can be changed through input from all
12133 participants.&lt;/li&gt;
12134
12135 &lt;li&gt;The process must be based on formal and binding commitments for
12136 the disclosure and licensing of intellectual property rights.&lt;/li&gt;
12137
12138 &lt;li&gt;Development and management should strive for consensus,
12139 and an appeals process must be clearly outlined.&lt;/li&gt;
12140
12141 &lt;li&gt;The standard specification must be open to extensive
12142 public review at least once in its life-cycle, with
12143 comments duly discussed and acted upon, if required.&lt;/li&gt;
12144
12145 &lt;/ul&gt;
12146
12147 &lt;/li&gt;
12148
12149 &lt;/ul&gt;
12150
12151 &lt;p&gt;Use and Licensing of an Open Standard&lt;/p&gt;
12152 &lt;ul&gt;
12153
12154 &lt;li&gt;The standard must describe an interface, not an implementation,
12155 and the industry must be capable of creating multiple, competing
12156 implementations to the interface described in the standard without
12157 undue or restrictive constraints. Interfaces include APIs,
12158 protocols, schemas, data formats and their encoding.&lt;/li&gt;
12159
12160 &lt;li&gt; The standard must not contain any proprietary &quot;hooks&quot; that create
12161 a technical or economic barriers&lt;/li&gt;
12162
12163 &lt;li&gt;Faithful implementations of the standard must
12164 interoperate. Interoperability means the ability of a computer
12165 program to communicate and exchange information with other computer
12166 programs and mutually to use the information which has been
12167 exchanged. This includes the ability to use, convert, or exchange
12168 file formats, protocols, schemas, interface information or
12169 conventions, so as to permit the computer program to work with other
12170 computer programs and users in all the ways in which they are
12171 intended to function.&lt;/li&gt;
12172
12173 &lt;li&gt;It must be permissible for anyone to copy, distribute and read the
12174 standard for a nominal fee, or even no fee. If there is a fee, it
12175 must be low enough to not preclude widespread use.&lt;/li&gt;
12176
12177 &lt;li&gt;It must be possible for anyone to obtain free (no royalties or
12178 fees; also known as &quot;royalty free&quot;), worldwide, non-exclusive and
12179 perpetual licenses to all essential patent claims to make, use and
12180 sell products based on the standard. The only exceptions are
12181 terminations per the reciprocity and defensive suspension terms
12182 outlined below. Essential patent claims include pending, unpublished
12183 patents, published patents, and patent applications. The license is
12184 only for the exact scope of the standard in question.
12185
12186 &lt;ul&gt;
12187
12188 &lt;li&gt; May be conditioned only on reciprocal licenses to any of
12189 licensees&#39; patent claims essential to practice that standard
12190 (also known as a reciprocity clause)&lt;/li&gt;
12191
12192 &lt;li&gt; May be terminated as to any licensee who sues the licensor
12193 or any other licensee for infringement of patent claims
12194 essential to practice that standard (also known as a
12195 &quot;defensive suspension&quot; clause)&lt;/li&gt;
12196
12197 &lt;li&gt; The same licensing terms are available to every potential
12198 licensor&lt;/li&gt;
12199
12200 &lt;/ul&gt;
12201 &lt;/li&gt;
12202
12203 &lt;li&gt;The licensing terms of an open standards must not preclude
12204 implementations of that standard under open source licensing terms
12205 or restricted licensing terms&lt;/li&gt;
12206
12207 &lt;/ul&gt;
12208
12209 &lt;/blockquote&gt;
12210
12211 &lt;p&gt;It is said that one of the nice things about standards is that
12212 there are so many of them. As you can see, the same holds true for
12213 open standard definitions. Most of the definitions have a lot in
12214 common, and it is not really controversial what properties a open
12215 standard should have, but the diversity of definitions have made it
12216 possible for those that want to avoid a level marked field and real
12217 competition to downplay the significance of open standards. I hope we
12218 can turn this tide by focusing on the advantages of Free and Open
12219 Standards.&lt;/p&gt;
12220 </description>
12221 </item>
12222
12223 <item>
12224 <title>Is Ogg Theora a free and open standard?</title>
12225 <link>http://people.skolelinux.org/pere/blog/Is_Ogg_Theora_a_free_and_open_standard_.html</link>
12226 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Is_Ogg_Theora_a_free_and_open_standard_.html</guid>
12227 <pubDate>Sat, 25 Dec 2010 20:25:00 +0100</pubDate>
12228 <description>&lt;p&gt;&lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;The
12229 Digistan definition&lt;/a&gt; of a free and open standard reads like this:&lt;/p&gt;
12230
12231 &lt;blockquote&gt;
12232
12233 &lt;p&gt;The Digital Standards Organization defines free and open standard
12234 as follows:&lt;/p&gt;
12235
12236 &lt;ol&gt;
12237
12238 &lt;li&gt;A free and open standard is immune to vendor capture at all stages
12239 in its life-cycle. Immunity from vendor capture makes it possible to
12240 freely use, improve upon, trust, and extend a standard over time.&lt;/li&gt;
12241
12242 &lt;li&gt;The standard is adopted and will be maintained by a not-for-profit
12243 organisation, and its ongoing development occurs on the basis of an
12244 open decision-making procedure available to all interested
12245 parties.&lt;/li&gt;
12246
12247 &lt;li&gt;The standard has been published and the standard specification
12248 document is available freely. It must be permissible to all to copy,
12249 distribute, and use it freely.&lt;/li&gt;
12250
12251 &lt;li&gt;The patents possibly present on (parts of) the standard are made
12252 irrevocably available on a royalty-free basis.&lt;/li&gt;
12253
12254 &lt;li&gt;There are no constraints on the re-use of the standard.&lt;/li&gt;
12255
12256 &lt;/ol&gt;
12257
12258 &lt;p&gt;The economic outcome of a free and open standard, which can be
12259 measured, is that it enables perfect competition between suppliers of
12260 products based on the standard.&lt;/p&gt;
12261 &lt;/blockquote&gt;
12262
12263 &lt;p&gt;For a while now I have tried to figure out of Ogg Theora is a free
12264 and open standard according to this definition. Here is a short
12265 writeup of what I have been able to gather so far. I brought up the
12266 topic on the Xiph advocacy mailing list
12267 &lt;a href=&quot;http://lists.xiph.org/pipermail/advocacy/2009-July/001632.html&quot;&gt;in
12268 July 2009&lt;/a&gt;, for those that want to see some background information.
12269 According to Ivo Emanuel Gonçalves and Monty Montgomery on that list
12270 the Ogg Theora specification fulfils the Digistan definition.&lt;/p&gt;
12271
12272 &lt;p&gt;&lt;strong&gt;Free from vendor capture?&lt;/strong&gt;&lt;/p&gt;
12273
12274 &lt;p&gt;As far as I can see, there is no single vendor that can control the
12275 Ogg Theora specification. It can be argued that the
12276 &lt;a href=&quot;http://www.xiph.org/&quot;&gt;Xiph foundation&lt;/A&gt; is such vendor, but
12277 given that it is a non-profit foundation with the expressed goal
12278 making free and open protocols and standards available, it is not
12279 obvious that this is a real risk. One issue with the Xiph
12280 foundation is that its inner working (as in board member list, or who
12281 control the foundation) are not easily available on the web. I&#39;ve
12282 been unable to find out who is in the foundation board, and have not
12283 seen any accounting information documenting how money is handled nor
12284 where is is spent in the foundation. It is thus not obvious for an
12285 external observer who control The Xiph foundation, and for all I know
12286 it is possible for a single vendor to take control over the
12287 specification. But it seem unlikely.&lt;/p&gt;
12288
12289 &lt;p&gt;&lt;strong&gt;Maintained by open not-for-profit organisation?&lt;/strong&gt;&lt;/p&gt;
12290
12291 &lt;p&gt;Assuming that the Xiph foundation is the organisation its web pages
12292 claim it to be, this point is fulfilled. If Xiph foundation is
12293 controlled by a single vendor, it isn&#39;t, but I have not found any
12294 documentation indicating this.&lt;/p&gt;
12295
12296 &lt;p&gt;According to
12297 &lt;a href=&quot;http://media.hiof.no/diverse/fad/rapport_4.pdf&quot;&gt;a report&lt;/a&gt;
12298 prepared by Audun Vaaler og Børre Ludvigsen for the Norwegian
12299 government, the Xiph foundation is a non-commercial organisation and
12300 the development process is open, transparent and non-Discrimatory.
12301 Until proven otherwise, I believe it make most sense to believe the
12302 report is correct.&lt;/p&gt;
12303
12304 &lt;p&gt;&lt;strong&gt;Specification freely available?&lt;/strong&gt;&lt;/p&gt;
12305
12306 &lt;p&gt;The specification for the &lt;a href=&quot;http://www.xiph.org/ogg/doc/&quot;&gt;Ogg
12307 container format&lt;/a&gt; and both the
12308 &lt;a href=&quot;http://www.xiph.org/vorbis/doc/&quot;&gt;Vorbis&lt;/a&gt; and
12309 &lt;a href=&quot;http://theora.org/doc/&quot;&gt;Theora&lt;/a&gt; codeces are available on
12310 the web. This are the terms in the Vorbis and Theora specification:
12311
12312 &lt;blockquote&gt;
12313
12314 Anyone may freely use and distribute the Ogg and [Vorbis/Theora]
12315 specifications, whether in private, public, or corporate
12316 capacity. However, the Xiph.Org Foundation and the Ogg project reserve
12317 the right to set the Ogg [Vorbis/Theora] specification and certify
12318 specification compliance.
12319
12320 &lt;/blockquote&gt;
12321
12322 &lt;p&gt;The Ogg container format is specified in IETF
12323 &lt;a href=&quot;http://www.xiph.org/ogg/doc/rfc3533.txt&quot;&gt;RFC 3533&lt;/a&gt;, and
12324 this is the term:&lt;p&gt;
12325
12326 &lt;blockquote&gt;
12327
12328 &lt;p&gt;This document and translations of it may be copied and furnished to
12329 others, and derivative works that comment on or otherwise explain it
12330 or assist in its implementation may be prepared, copied, published and
12331 distributed, in whole or in part, without restriction of any kind,
12332 provided that the above copyright notice and this paragraph are
12333 included on all such copies and derivative works. However, this
12334 document itself may not be modified in any way, such as by removing
12335 the copyright notice or references to the Internet Society or other
12336 Internet organizations, except as needed for the purpose of developing
12337 Internet standards in which case the procedures for copyrights defined
12338 in the Internet Standards process must be followed, or as required to
12339 translate it into languages other than English.&lt;/p&gt;
12340
12341 &lt;p&gt;The limited permissions granted above are perpetual and will not be
12342 revoked by the Internet Society or its successors or assigns.&lt;/p&gt;
12343 &lt;/blockquote&gt;
12344
12345 &lt;p&gt;All these terms seem to allow unlimited distribution and use, an
12346 this term seem to be fulfilled. There might be a problem with the
12347 missing permission to distribute modified versions of the text, and
12348 thus reuse it in other specifications. Not quite sure if that is a
12349 requirement for the Digistan definition.&lt;/p&gt;
12350
12351 &lt;p&gt;&lt;strong&gt;Royalty-free?&lt;/strong&gt;&lt;/p&gt;
12352
12353 &lt;p&gt;There are no known patent claims requiring royalties for the Ogg
12354 Theora format.
12355 &lt;a href=&quot;http://www.streamingmedia.com/Articles/ReadArticle.aspx?ArticleID=65782&quot;&gt;MPEG-LA&lt;/a&gt;
12356 and
12357 &lt;a href=&quot;http://yro.slashdot.org/story/10/04/30/237238/Steve-Jobs-Hints-At-Theora-Lawsuit&quot;&gt;Steve
12358 Jobs&lt;/a&gt; in Apple claim to know about some patent claims (submarine
12359 patents) against the Theora format, but no-one else seem to believe
12360 them. Both Opera Software and the Mozilla Foundation have looked into
12361 this and decided to implement Ogg Theora support in their browsers
12362 without paying any royalties. For now the claims from MPEG-LA and
12363 Steve Jobs seem more like FUD to scare people to use the H.264 codec
12364 than any real problem with Ogg Theora.&lt;/p&gt;
12365
12366 &lt;p&gt;&lt;strong&gt;No constraints on re-use?&lt;/strong&gt;&lt;/p&gt;
12367
12368 &lt;p&gt;I am not aware of any constraints on re-use.&lt;/p&gt;
12369
12370 &lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;/p&gt;
12371
12372 &lt;p&gt;3 of 5 requirements seem obviously fulfilled, and the remaining 2
12373 depend on the governing structure of the Xiph foundation. Given the
12374 background report used by the Norwegian government, I believe it is
12375 safe to assume the last two requirements are fulfilled too, but it
12376 would be nice if the Xiph foundation web site made it easier to verify
12377 this.&lt;/p&gt;
12378
12379 &lt;p&gt;It would be nice to see other analysis of other specifications to
12380 see if they are free and open standards.&lt;/p&gt;
12381 </description>
12382 </item>
12383
12384 <item>
12385 <title>The reply from Edgar Villanueva to Microsoft in Peru</title>
12386 <link>http://people.skolelinux.org/pere/blog/The_reply_from_Edgar_Villanueva_to_Microsoft_in_Peru.html</link>
12387 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_reply_from_Edgar_Villanueva_to_Microsoft_in_Peru.html</guid>
12388 <pubDate>Sat, 25 Dec 2010 10:50:00 +0100</pubDate>
12389 <description>&lt;p&gt;A few days ago
12390 &lt;a href=&quot;http://www.idg.no/computerworld/article189879.ece&quot;&gt;an
12391 article&lt;/a&gt; in the Norwegian Computerworld magazine about how version
12392 2.0 of
12393 &lt;a href=&quot;http://en.wikipedia.org/wiki/European_Interoperability_Framework&quot;&gt;European
12394 Interoperability Framework&lt;/a&gt; has been successfully lobbied by the
12395 proprietary software industry to remove the focus on free software.
12396 Nothing very surprising there, given
12397 &lt;a href=&quot;http://news.slashdot.org/story/10/03/29/2115235/Open-Source-Open-Standards-Under-Attack-In-Europe&quot;&gt;earlier
12398 reports&lt;/a&gt; on how Microsoft and others have stacked the committees in
12399 this work. But I find this very sad. The definition of
12400 &lt;a href=&quot;http://www.nuug.no/dokumenter/standard-presse-def-200506.txt&quot;&gt;an
12401 open standard from version 1&lt;/a&gt; was very good, and something I
12402 believe should be used also in the future, alongside
12403 &lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;the
12404 definition from Digistan&lt;/A&gt;. Version 2 have removed the open
12405 standard definition from its content.&lt;/p&gt;
12406
12407 &lt;p&gt;Anyway, the news reminded me of the great reply sent by Dr. Edgar
12408 Villanueva, congressman in Peru at the time, to Microsoft as a reply
12409 to Microsofts attack on his proposal regarding the use of free software
12410 in the public sector in Peru. As the text was not available from a
12411 few of the URLs where it used to be available, I copy it here from
12412 &lt;a href=&quot;http://gnuwin.epfl.ch/articles/en/reponseperou/villanueva_to_ms.html&quot;&gt;my
12413 source&lt;/a&gt; to ensure it is available also in the future. Some
12414 background information about that story is available in
12415 &lt;a href=&quot;http://www.linuxjournal.com/article/6099&quot;&gt;an article&lt;/a&gt; from
12416 Linux Journal in 2002.&lt;/p&gt;
12417
12418 &lt;blockquote&gt;
12419 &lt;p&gt;Lima, 8th of April, 2002&lt;br&gt;
12420 To: Señor JUAN ALBERTO GONZÁLEZ&lt;br&gt;
12421 General Manager of Microsoft Perú&lt;/p&gt;
12422
12423 &lt;p&gt;Dear Sir:&lt;/p&gt;
12424
12425 &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;
12426
12427 &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;
12428
12429 &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;
12430
12431 &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;
12432
12433 &lt;p&gt;
12434 &lt;ul&gt;
12435 &lt;li&gt;Free access to public information by the citizen. &lt;/li&gt;
12436 &lt;li&gt;Permanence of public data. &lt;/li&gt;
12437 &lt;li&gt;Security of the State and citizens.&lt;/li&gt;
12438 &lt;/ul&gt;
12439 &lt;/p&gt;
12440
12441 &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;
12442
12443 &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;
12444
12445 &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;
12446
12447 &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;
12448
12449 &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;
12450
12451
12452 &lt;p&gt;From reading the Bill it will be clear that once passed:&lt;br&gt;
12453 &lt;li&gt;the law does not forbid the production of proprietary software&lt;/li&gt;
12454 &lt;li&gt;the law does not forbid the sale of proprietary software&lt;/li&gt;
12455 &lt;li&gt;the law does not specify which concrete software to use&lt;/li&gt;
12456 &lt;li&gt;the law does not dictate the supplier from whom software will be bought&lt;/li&gt;
12457 &lt;li&gt;the law does not limit the terms under which a software product can be licensed.&lt;/li&gt;
12458
12459 &lt;/p&gt;
12460
12461 &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;
12462
12463 &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;
12464
12465 &lt;p&gt;As for the observations you have made, we will now go on to analyze them in detail:&lt;/p&gt;
12466
12467 &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;
12468
12469 &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;
12470
12471 &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;
12472
12473 &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;
12474
12475 &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;
12476
12477 &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;
12478
12479 &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;
12480
12481 &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;
12482
12483 &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;
12484
12485 &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;
12486
12487 &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;
12488
12489 &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;
12490
12491 &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;
12492
12493 &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;
12494
12495 &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;
12496
12497 &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;
12498
12499 &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;
12500
12501 &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;
12502
12503 &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;
12504
12505 &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;
12506
12507 &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;
12508
12509 &lt;p&gt;On security:&lt;/p&gt;
12510
12511 &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;
12512
12513 &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;
12514
12515 &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;
12516
12517 &lt;p&gt;In respect of the guarantee:&lt;/p&gt;
12518
12519 &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;
12520
12521 &lt;p&gt;On Intellectual Property:&lt;/p&gt;
12522
12523 &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;
12524
12525 &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;
12526
12527 &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;
12528
12529 &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;
12530
12531 &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;
12532
12533 &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;
12534
12535 &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;
12536
12537 &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;
12538
12539 &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;
12540
12541 &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;
12542
12543 &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;
12544
12545 &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;
12546
12547 &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;
12548
12549 &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;
12550
12551 &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;
12552
12553 &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;
12554
12555 &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;
12556
12557 &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;
12558
12559 &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;
12560
12561 &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;
12562
12563 &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;
12564
12565 &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;
12566
12567 &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;
12568
12569 &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;
12570
12571 &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;
12572
12573 &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;
12574
12575 &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;
12576
12577 &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;
12578
12579 &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;
12580
12581 &lt;p&gt;Cordially,&lt;br&gt;
12582 DR. EDGAR DAVID VILLANUEVA NUÑEZ&lt;br&gt;
12583 Congressman of the Republic of Perú.&lt;/p&gt;
12584 &lt;/blockquote&gt;
12585 </description>
12586 </item>
12587
12588 <item>
12589 <title>Officeshots still going strong</title>
12590 <link>http://people.skolelinux.org/pere/blog/Officeshots_still_going_strong.html</link>
12591 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Officeshots_still_going_strong.html</guid>
12592 <pubDate>Sat, 25 Dec 2010 09:40:00 +0100</pubDate>
12593 <description>&lt;p&gt;Half a year ago I
12594 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Officeshots_taking_shape.html&quot;&gt;wrote
12595 a bit&lt;/a&gt; about &lt;a href=&quot;http://www.officeshots.org/&quot;&gt;OfficeShots&lt;/a&gt;,
12596 a web service to allow anyone to test how ODF documents are handled by
12597 the different programs reading and writing the ODF format.&lt;/p&gt;
12598
12599 &lt;p&gt;I just had a look at the service, and it seem to be going strong.
12600 Very interesting to see the results reported in the gallery, how
12601 different Office implementations handle different ODF features. Sad
12602 to see that KOffice was not doing it very well, and happy to see that
12603 LibreOffice has been tested already (but sadly not listed as a option
12604 for OfficeShots users yet). I am glad to see that the ODF community
12605 got such a great test tool available.&lt;/p&gt;
12606 </description>
12607 </item>
12608
12609 <item>
12610 <title>How to test if a laptop is working with Linux</title>
12611 <link>http://people.skolelinux.org/pere/blog/How_to_test_if_a_laptop_is_working_with_Linux.html</link>
12612 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_test_if_a_laptop_is_working_with_Linux.html</guid>
12613 <pubDate>Wed, 22 Dec 2010 14:55:00 +0100</pubDate>
12614 <description>&lt;p&gt;The last few days I have spent at work here at the &lt;a
12615 href=&quot;http://www.uio.no/&quot;&gt;University of Oslo&lt;/a&gt; testing if the new
12616 batch of computers will work with Linux. Every year for the last few
12617 years the university have organised shared bid of a few thousand
12618 computers, and this year HP won the bid. Two different desktops and
12619 five different laptops are on the list this year. We in the UNIX
12620 group want to know which one of these computers work well with RHEL
12621 and Ubuntu, the two Linux distributions we currently handle at the
12622 university.&lt;/p&gt;
12623
12624 &lt;p&gt;My test method is simple, and I share it here to get feedback and
12625 perhaps inspire others to test hardware as well. To test, I PXE
12626 install the OS version of choice, and log in as my normal user and run
12627 a few applications and plug in selected pieces of hardware. When
12628 something fail, I make a note about this in the test matrix and move
12629 on. If I have some spare time I try to report the bug to the OS
12630 vendor, but as I only have the machines for a short time, I rarely
12631 have the time to do this for all the problems I find.&lt;/p&gt;
12632
12633 &lt;p&gt;Anyway, to get to the point of this post. Here is the simple tests
12634 I perform on a new model.&lt;/p&gt;
12635
12636 &lt;ul&gt;
12637
12638 &lt;li&gt;Is PXE installation working? I&#39;m testing with RHEL6, Ubuntu Lucid
12639 and Ubuntu Maverik at the moment. If I feel like it, I also test with
12640 RHEL5 and Debian Edu/Squeeze.&lt;/li&gt;
12641
12642 &lt;li&gt;Is X.org working? If the graphical login screen show up after
12643 installation, X.org is working.&lt;/li&gt;
12644
12645 &lt;li&gt;Is hardware accelerated OpenGL working? Running glxgears (in
12646 package mesa-utils on Ubuntu) and writing down the frames per second
12647 reported by the program.&lt;/li&gt;
12648
12649 &lt;li&gt;Is sound working? With Gnome and KDE, a sound is played when
12650 logging in, and if I can hear this the test is successful. If there
12651 are several audio exits on the machine, I try them all and check if
12652 the Gnome/KDE audio mixer can control where to send the sound. I
12653 normally test this by playing
12654 &lt;a href=&quot;http://www.nuug.no/aktiviteter/20101012-chef/ &quot;&gt;a HTML5
12655 video&lt;/a&gt; in Firefox/Iceweasel.&lt;/li&gt;
12656
12657 &lt;li&gt;Is the USB subsystem working? I test this by plugging in a USB
12658 memory stick and see if Gnome/KDE notices this.&lt;/li&gt;
12659
12660 &lt;li&gt;Is the CD/DVD player working? I test this by inserting any CD/DVD
12661 I have lying around, and see if Gnome/KDE notices this.&lt;/li&gt;
12662
12663 &lt;li&gt;Is any built in camera working? Test using cheese, and see if a
12664 picture from the v4l device show up.&lt;/li&gt;
12665
12666 &lt;li&gt;Is bluetooth working? Use the Gnome/KDE browsing tool to see if
12667 any bluetooth devices are discovered. In my office, I normally see a
12668 few.&lt;/li&gt;
12669
12670 &lt;li&gt;For laptops, is the SD or Compaq Flash reader working. I have
12671 memory modules lying around, and stick them in and see if Gnome/KDE
12672 notice this.&lt;/li&gt;
12673
12674 &lt;li&gt;For laptops, is suspend/hibernate working? I&#39;m testing if the
12675 special button work, and if the laptop continue to work after
12676 resume.&lt;/li&gt;
12677
12678 &lt;li&gt;For laptops, is the extra buttons working, like audio level,
12679 adjusting background light, switching on/off external video output,
12680 switching on/off wifi, bluetooth, etc? The set of buttons differ from
12681 laptop to laptop, so I just write down which are working and which are
12682 not.&lt;/li&gt;
12683
12684 &lt;li&gt;Some laptops have smart card readers, finger print readers,
12685 acceleration sensors etc. I rarely test these, as I do not know how
12686 to quickly test if they are working or not, so I only document their
12687 existence.&lt;/li&gt;
12688
12689 &lt;/ul&gt;
12690
12691 &lt;p&gt;By now I suspect you are really curious what the test results are
12692 for the HP machines I am testing. I&#39;m not done yet, so I will report
12693 the test results later. For now I can report that HP 8100 Elite work
12694 fine, and hibernation fail with HP EliteBook 8440p on Ubuntu Lucid,
12695 and audio fail on RHEL6. Ubuntu Maverik worked with 8440p. As you
12696 can see, I have most machines left to test. One interesting
12697 observation is that Ubuntu Lucid has almost twice the frame rate than
12698 RHEL6 with glxgears. No idea why.&lt;/p&gt;
12699 </description>
12700 </item>
12701
12702 <item>
12703 <title>Some thoughts on BitCoins</title>
12704 <link>http://people.skolelinux.org/pere/blog/Some_thoughts_on_BitCoins.html</link>
12705 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Some_thoughts_on_BitCoins.html</guid>
12706 <pubDate>Sat, 11 Dec 2010 15:10:00 +0100</pubDate>
12707 <description>&lt;p&gt;As I continue to explore
12708 &lt;a href=&quot;http://www.bitcoin.org/&quot;&gt;BitCoin&lt;/a&gt;, I&#39;ve starting to wonder
12709 what properties the system have, and how it will be affected by laws
12710 and regulations here in Norway. Here are some random notes.&lt;/p&gt;
12711
12712 &lt;p&gt;One interesting thing to note is that since the transactions are
12713 verified using a peer to peer network, all details about a transaction
12714 is known to everyone. This means that if a BitCoin address has been
12715 published like I did with mine in my initial post about BitCoin, it is
12716 possible for everyone to see how many BitCoins have been transfered to
12717 that address. There is even a web service to look at the details for
12718 all transactions. There I can see that my address
12719 &lt;a href=&quot;http://blockexplorer.com/address/15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;
12720 have received 16.06 Bitcoin, the
12721 &lt;a href=&quot;http://blockexplorer.com/address/1LfdGnGuWkpSJgbQySxxCWhv8MHqvwst3&quot;&gt;1LfdGnGuWkpSJgbQySxxCWhv8MHqvwst3&lt;/a&gt;
12722 address of Simon Phipps have received 181.97 BitCoin and the address
12723 &lt;a href=&quot;http://blockexplorer.com/address/1MCwBbhNGp5hRm5rC1Aims2YFRe2SXPYKt&quot;&gt;1MCwBbhNGp5hRm5rC1Aims2YFRe2SXPYKt&lt;/A&gt;
12724 of EFF have received 2447.38 BitCoins so far. Thank you to each and
12725 every one of you that donated bitcoins to support my activity. The
12726 fact that anyone can see how much money was transfered to a given
12727 address make it more obvious why the BitCoin community recommend to
12728 generate and hand out a new address for each transaction. I&#39;m told
12729 there is no way to track which addresses belong to a given person or
12730 organisation without the person or organisation revealing it
12731 themselves, as Simon, EFF and I have done.&lt;/p&gt;
12732
12733 &lt;p&gt;In Norway, and in most other countries, there are laws and
12734 regulations limiting how much money one can transfer across the border
12735 without declaring it. There are money laundering, tax and accounting
12736 laws and regulations I would expect to apply to the use of BitCoin.
12737 If the Skolelinux foundation
12738 (&lt;a href=&quot;http://linuxiskolen.no/slxdebianlabs/donations.html&quot;&gt;SLX
12739 Debian Labs&lt;/a&gt;) were to accept donations in BitCoin in addition to
12740 normal bank transfers like EFF is doing, how should this be accounted?
12741 Given that it is impossible to know if money can cross the border or
12742 not, should everything or nothing be declared? What exchange rate
12743 should be used when calculating taxes? Would receivers have to pay
12744 income tax if the foundation were to pay Skolelinux contributors in
12745 BitCoin? I have no idea, but it would be interesting to know.&lt;/p&gt;
12746
12747 &lt;p&gt;For a currency to be useful and successful, it must be trusted and
12748 accepted by a lot of users. It must be possible to get easy access to
12749 the currency (as a wage or using currency exchanges), and it must be
12750 easy to spend it. At the moment BitCoin seem fairly easy to get
12751 access to, but there are very few places to spend it. I am not really
12752 a regular user of any of the vendor types currently accepting BitCoin,
12753 so I wonder when my kind of shop would start accepting BitCoins. I
12754 would like to buy electronics, travels and subway tickets, not herbs
12755 and books. :) The currency is young, and this will improve over time
12756 if it become popular, but I suspect regular banks will start to lobby
12757 to get BitCoin declared illegal if it become popular. I&#39;m sure they
12758 will claim it is helping fund terrorism and money laundering (which
12759 probably would be true, as is any currency in existence), but I
12760 believe the problems should be solved elsewhere and not by blaming
12761 currencies.&lt;/p&gt;
12762
12763 &lt;p&gt;The process of creating new BitCoins is called mining, and it is
12764 CPU intensive process that depend on a bit of luck as well (as one is
12765 competing against all the other miners currently spending CPU cycles
12766 to see which one get the next lump of cash). The &quot;winner&quot; get 50
12767 BitCoin when this happen. Yesterday I came across the obvious way to
12768 join forces to increase ones changes of getting at least some coins,
12769 by coordinating the work on mining BitCoins across several machines
12770 and people, and sharing the result if one is lucky and get the 50
12771 BitCoins. Check out
12772 &lt;a href=&quot;http://www.bluishcoder.co.nz/bitcoin-pool/&quot;&gt;BitCoin Pool&lt;/a&gt;
12773 if this sounds interesting. I have not had time to try to set up a
12774 machine to participate there yet, but have seen that running on ones
12775 own for a few days have not yield any BitCoins througth mining
12776 yet.&lt;/p&gt;
12777
12778 &lt;p&gt;Update 2010-12-15: Found an &lt;a
12779 href=&quot;http://inertia.posterous.com/reply-to-the-underground-economist-why-bitcoi&quot;&gt;interesting
12780 criticism&lt;/a&gt; of bitcoin. Not quite sure how valid it is, but thought
12781 it was interesting to read. The arguments presented seem to be
12782 equally valid for gold, which was used as a currency for many years.&lt;/p&gt;
12783 </description>
12784 </item>
12785
12786 <item>
12787 <title>Now accepting bitcoins - anonymous and distributed p2p crypto-money</title>
12788 <link>http://people.skolelinux.org/pere/blog/Now_accepting_bitcoins___anonymous_and_distributed_p2p_crypto_money.html</link>
12789 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Now_accepting_bitcoins___anonymous_and_distributed_p2p_crypto_money.html</guid>
12790 <pubDate>Fri, 10 Dec 2010 08:20:00 +0100</pubDate>
12791 <description>&lt;p&gt;With this weeks lawless
12792 &lt;a href=&quot;http://www.salon.com/news/opinion/glenn_greenwald/2010/12/06/wikileaks/index.html&quot;&gt;governmental
12793 attacks&lt;/a&gt; on Wikileak and
12794 &lt;a href=&quot;http://www.salon.com/technology/dan_gillmor/2010/12/06/war_on_speech&quot;&gt;free
12795 speech&lt;/a&gt;, it has become obvious that PayPal, visa and mastercard can
12796 not be trusted to handle money transactions.
12797 A blog post from
12798 &lt;a href=&quot;http://webmink.com/2010/12/06/now-accepting-bitcoin/&quot;&gt;Simon
12799 Phipps on bitcoin&lt;/a&gt; reminded me about a project that a friend of
12800 mine mentioned earlier. I decided to follow Simon&#39;s example, and get
12801 involved with &lt;a href=&quot;http://www.bitcoin.org/&quot;&gt;BitCoin&lt;/a&gt;. I got
12802 some help from my friend to get it all running, and he even handed me
12803 some bitcoins to get started. I even donated a few bitcoins to Simon
12804 for helping me remember BitCoin.&lt;/p&gt;
12805
12806 &lt;p&gt;So, what is bitcoins, you probably wonder? It is a digital
12807 crypto-currency, decentralised and handled using peer-to-peer
12808 networks. It allows anonymous transactions and prohibits central
12809 control over the transactions, making it impossible for governments
12810 and companies alike to block donations and other transactions. The
12811 source is free software, and while the key dependency wxWidgets 2.9
12812 for the graphical user interface is missing in Debian, the command
12813 line client builds just fine. Hopefully Jonas
12814 &lt;a href=&quot;http://bugs.debian.org/578157&quot;&gt;will get the package into
12815 Debian&lt;/a&gt; soon.&lt;/p&gt;
12816
12817 &lt;p&gt;Bitcoins can be converted to other currencies, like USD and EUR.
12818 There are &lt;a href=&quot;http://www.bitcoin.org/trade&quot;&gt;companies accepting
12819 bitcoins&lt;/a&gt; when selling services and goods, and there are even
12820 currency &quot;stock&quot; markets where the exchange rate is decided. There
12821 are not many users so far, but the concept seems promising. If you
12822 want to get started and lack a friend with any bitcoins to spare,
12823 you can even get
12824 &lt;a href=&quot;https://freebitcoins.appspot.com/&quot;&gt;some for free&lt;/a&gt; (0.05
12825 bitcoin at the time of writing). Use
12826 &lt;a href=&quot;http://www.bitcoinwatch.com/&quot;&gt;BitcoinWatch&lt;/a&gt; to keep an eye
12827 on the current exchange rates.&lt;/p&gt;
12828
12829 &lt;p&gt;As an experiment, I have decided to set up bitcoind on one of my
12830 machines. If you want to support my activity, please send Bitcoin
12831 donations to the address
12832 &lt;b&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/b&gt;. Thank you!&lt;/p&gt;
12833 </description>
12834 </item>
12835
12836 <item>
12837 <title>Student group continue the work on my Reprap 3D printer</title>
12838 <link>http://people.skolelinux.org/pere/blog/Student_group_continue_the_work_on_my_Reprap_3D_printer.html</link>
12839 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Student_group_continue_the_work_on_my_Reprap_3D_printer.html</guid>
12840 <pubDate>Thu, 9 Dec 2010 19:30:00 +0100</pubDate>
12841 <description>&lt;p&gt;A few days ago, I was introduces to some students in the robot
12842 student assosiation &lt;a href=&quot;http://www.robotica.no/&quot;&gt;Robotica
12843 Osloensis&lt;/a&gt; at the University of Oslo where I work, who planned to
12844 get their own 3D printer. They wanted to learn from me based on my
12845 work in the area. After having a short lunch meeting with them, I
12846 offered them to borrow my reprap kit, as I never had time to complete
12847 the build and this seem unlike to change any time soon. I look
12848 forward to see how this goes. This monday their volunteer driver
12849 picked up my kit and drove it to their lab, and tomorrow I am told the
12850 last exam is over so they can start work on getting the 3D printer
12851 operational.&lt;/p&gt;
12852
12853 &lt;p&gt;The robotic group have already build several robots on their own,
12854 and seem capable of getting the reprap operational. I really look
12855 forward to being able to print all the cool 3D designs published on
12856 &lt;a href=&quot;http://www.thingiverse.com/&quot;&gt;Thingiverse&lt;/a&gt;. I even got
12857 some 3D scans I got made during Dagen@IFI when one of the groups at
12858 the computer science department at the university demonstrated their
12859 very cool 3D scanner.&lt;/p&gt;
12860 </description>
12861 </item>
12862
12863 <item>
12864 <title>Debian Edu development gathering and General Assembly for FRiSK</title>
12865 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_development_gathering_and_General_Assembly_for_FRiSK.html</link>
12866 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_development_gathering_and_General_Assembly_for_FRiSK.html</guid>
12867 <pubDate>Mon, 29 Nov 2010 18:40:00 +0100</pubDate>
12868 <description>&lt;p&gt;On friday, the first Debian Edu / Skolelinux
12869 &lt;a href=&quot;http://www.friprogramvareiskolen.no/Gathering/2010-12-03-05-Oslo&quot;&gt;development
12870 gathering&lt;/a&gt; in a long time take place here in Oslo, Norway. I
12871 really look forward to seeing all the good people working on the
12872 Squeeze release. The gathering is open for everyone interested in
12873 learning more about Debian Edu / Skolelinux.&lt;/p&gt;
12874
12875 &lt;p&gt;On Saturday, the Norwegian member organization taking care of
12876 organizing these development gatherings, Fri Programvare i Skolen,
12877 will hold its
12878 &lt;a href=&quot;http://friprogramvareiskolen.no/Genfors/2010&quot;&gt;General Assembly
12879 for 2010&lt;/a&gt;. Membership is open for all, and currently there are 388
12880 people registered as members. Last year 32 members cast their vote in
12881 the memberdb based election system. I hope more people find time to
12882 vote this year.&lt;/p&gt;
12883 </description>
12884 </item>
12885
12886 <item>
12887 <title>Why isn&#39;t Debian Edu using VLC?</title>
12888 <link>http://people.skolelinux.org/pere/blog/Why_isn_t_Debian_Edu_using_VLC_.html</link>
12889 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Why_isn_t_Debian_Edu_using_VLC_.html</guid>
12890 <pubDate>Sat, 27 Nov 2010 11:30:00 +0100</pubDate>
12891 <description>&lt;p&gt;In the latest issue of Linux Journal, the readers choices were
12892 presented, and the winner among the multimedia player were VLC.
12893 Personally, I like VLC, and it is my player of choice when I first try
12894 to play a video file or stream. Only if VLC fail will I drag out
12895 gmplayer to see if it can do better. The reason is mostly the failure
12896 model and trust. When VLC fail, it normally pop up a error message
12897 reporting the problem. When mplayer fail, it normally segfault or
12898 just hangs. The latter failure mode drain my trust in the program.&lt;p&gt;
12899
12900 &lt;p&gt;But even if VLC is my player of choice, we have choosen to use
12901 mplayer in &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian
12902 Edu/Skolelinux&lt;/a&gt;. The reason is simple. We need a good browser
12903 plugin to play web videos seamlessly, and the VLC browser plugin is
12904 not very good. For example, it lack in-line control buttons, so there
12905 is no way for the user to pause the video. Also, when I
12906 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/BrowserMultimedia&quot;&gt;last
12907 tested the browser plugins&lt;/a&gt; available in Debian, the VLC plugin
12908 failed on several video pages where mplayer based plugins worked. If
12909 the browser plugin for VLC was as good as the gecko-mediaplayer
12910 package (which uses mplayer), we would switch.&lt;/P&gt;
12911
12912 &lt;p&gt;While VLC is a good player, its user interface is slightly
12913 annoying. The most annoying feature is its inconsistent use of
12914 keyboard shortcuts. When the player is in full screen mode, its
12915 shortcuts are different from when it is playing the video in a window.
12916 For example, space only work as pause when in full screen mode. I
12917 wish it had consisten shortcuts and that space also would work when in
12918 window mode. Another nice shortcut in gmplayer is [enter] to restart
12919 the current video. It is very nice when playing short videos from the
12920 web and want to restart it when new people arrive to have a look at
12921 what is going on.&lt;/p&gt;
12922 </description>
12923 </item>
12924
12925 <item>
12926 <title>Lenny-&gt;Squeeze upgrades of the Gnome and KDE desktop, now with apt-get autoremove</title>
12927 <link>http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades_of_the_Gnome_and_KDE_desktop__now_with_apt_get_autoremove.html</link>
12928 <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>
12929 <pubDate>Mon, 22 Nov 2010 14:15:00 +0100</pubDate>
12930 <description>&lt;p&gt;Michael Biebl suggested to me on IRC, that I changed my automated
12931 upgrade testing of the
12932 &lt;a href=&quot;http://people.skolelinux.org/~pere/debian-upgrade-testing/&quot;&gt;Lenny
12933 Gnome and KDE Desktop&lt;/a&gt; to do &lt;tt&gt;apt-get autoremove&lt;/tt&gt; when using apt-get.
12934 This seem like a very good idea, so I adjusted by test scripts and
12935 can now present the updated result from today:&lt;/p&gt;
12936
12937 &lt;p&gt;This is for Gnome:&lt;/p&gt;
12938
12939 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
12940
12941 &lt;blockquote&gt;&lt;p&gt;
12942 apache2.2-bin
12943 aptdaemon
12944 baobab
12945 binfmt-support
12946 browser-plugin-gnash
12947 cheese-common
12948 cli-common
12949 cups-pk-helper
12950 dmz-cursor-theme
12951 empathy
12952 empathy-common
12953 freedesktop-sound-theme
12954 freeglut3
12955 gconf-defaults-service
12956 gdm-themes
12957 gedit-plugins
12958 geoclue
12959 geoclue-hostip
12960 geoclue-localnet
12961 geoclue-manual
12962 geoclue-yahoo
12963 gnash
12964 gnash-common
12965 gnome
12966 gnome-backgrounds
12967 gnome-cards-data
12968 gnome-codec-install
12969 gnome-core
12970 gnome-desktop-environment
12971 gnome-disk-utility
12972 gnome-screenshot
12973 gnome-search-tool
12974 gnome-session-canberra
12975 gnome-system-log
12976 gnome-themes-extras
12977 gnome-themes-more
12978 gnome-user-share
12979 gstreamer0.10-fluendo-mp3
12980 gstreamer0.10-tools
12981 gtk2-engines
12982 gtk2-engines-pixbuf
12983 gtk2-engines-smooth
12984 hamster-applet
12985 libapache2-mod-dnssd
12986 libapr1
12987 libaprutil1
12988 libaprutil1-dbd-sqlite3
12989 libaprutil1-ldap
12990 libart2.0-cil
12991 libboost-date-time1.42.0
12992 libboost-python1.42.0
12993 libboost-thread1.42.0
12994 libchamplain-0.4-0
12995 libchamplain-gtk-0.4-0
12996 libcheese-gtk18
12997 libclutter-gtk-0.10-0
12998 libcryptui0
12999 libdiscid0
13000 libelf1
13001 libepc-1.0-2
13002 libepc-common
13003 libepc-ui-1.0-2
13004 libfreerdp-plugins-standard
13005 libfreerdp0
13006 libgconf2.0-cil
13007 libgdata-common
13008 libgdata7
13009 libgdu-gtk0
13010 libgee2
13011 libgeoclue0
13012 libgexiv2-0
13013 libgif4
13014 libglade2.0-cil
13015 libglib2.0-cil
13016 libgmime2.4-cil
13017 libgnome-vfs2.0-cil
13018 libgnome2.24-cil
13019 libgnomepanel2.24-cil
13020 libgpod-common
13021 libgpod4
13022 libgtk2.0-cil
13023 libgtkglext1
13024 libgtksourceview2.0-common
13025 libmono-addins-gui0.2-cil
13026 libmono-addins0.2-cil
13027 libmono-cairo2.0-cil
13028 libmono-corlib2.0-cil
13029 libmono-i18n-west2.0-cil
13030 libmono-posix2.0-cil
13031 libmono-security2.0-cil
13032 libmono-sharpzip2.84-cil
13033 libmono-system2.0-cil
13034 libmtp8
13035 libmusicbrainz3-6
13036 libndesk-dbus-glib1.0-cil
13037 libndesk-dbus1.0-cil
13038 libopal3.6.8
13039 libpolkit-gtk-1-0
13040 libpt2.6.7
13041 libpython2.6
13042 librpm1
13043 librpmio1
13044 libsdl1.2debian
13045 libsrtp0
13046 libssh-4
13047 libtelepathy-farsight0
13048 libtelepathy-glib0
13049 libtidy-0.99-0
13050 media-player-info
13051 mesa-utils
13052 mono-2.0-gac
13053 mono-gac
13054 mono-runtime
13055 nautilus-sendto
13056 nautilus-sendto-empathy
13057 p7zip-full
13058 pkg-config
13059 python-aptdaemon
13060 python-aptdaemon-gtk
13061 python-axiom
13062 python-beautifulsoup
13063 python-bugbuddy
13064 python-clientform
13065 python-coherence
13066 python-configobj
13067 python-crypto
13068 python-cupshelpers
13069 python-elementtree
13070 python-epsilon
13071 python-evolution
13072 python-feedparser
13073 python-gdata
13074 python-gdbm
13075 python-gst0.10
13076 python-gtkglext1
13077 python-gtksourceview2
13078 python-httplib2
13079 python-louie
13080 python-mako
13081 python-markupsafe
13082 python-mechanize
13083 python-nevow
13084 python-notify
13085 python-opengl
13086 python-openssl
13087 python-pam
13088 python-pkg-resources
13089 python-pyasn1
13090 python-pysqlite2
13091 python-rdflib
13092 python-serial
13093 python-tagpy
13094 python-twisted-bin
13095 python-twisted-conch
13096 python-twisted-core
13097 python-twisted-web
13098 python-utidylib
13099 python-webkit
13100 python-xdg
13101 python-zope.interface
13102 remmina
13103 remmina-plugin-data
13104 remmina-plugin-rdp
13105 remmina-plugin-vnc
13106 rhythmbox-plugin-cdrecorder
13107 rhythmbox-plugins
13108 rpm-common
13109 rpm2cpio
13110 seahorse-plugins
13111 shotwell
13112 software-center
13113 system-config-printer-udev
13114 telepathy-gabble
13115 telepathy-mission-control-5
13116 telepathy-salut
13117 tomboy
13118 totem
13119 totem-coherence
13120 totem-mozilla
13121 totem-plugins
13122 transmission-common
13123 xdg-user-dirs
13124 xdg-user-dirs-gtk
13125 xserver-xephyr
13126 &lt;/p&gt;&lt;/blockquote&gt;
13127
13128 &lt;p&gt;Installed using apt-get, removed with aptitude&lt;/p&gt;
13129
13130 &lt;blockquote&gt;&lt;p&gt;
13131 cheese
13132 ekiga
13133 eog
13134 epiphany-extensions
13135 evolution-exchange
13136 fast-user-switch-applet
13137 file-roller
13138 gcalctool
13139 gconf-editor
13140 gdm
13141 gedit
13142 gedit-common
13143 gnome-games
13144 gnome-games-data
13145 gnome-nettool
13146 gnome-system-tools
13147 gnome-themes
13148 gnuchess
13149 gucharmap
13150 guile-1.8-libs
13151 libavahi-ui0
13152 libdmx1
13153 libgalago3
13154 libgtk-vnc-1.0-0
13155 libgtksourceview2.0-0
13156 liblircclient0
13157 libsdl1.2debian-alsa
13158 libspeexdsp1
13159 libsvga1
13160 rhythmbox
13161 seahorse
13162 sound-juicer
13163 system-config-printer
13164 totem-common
13165 transmission-gtk
13166 vinagre
13167 vino
13168 &lt;/p&gt;&lt;/blockquote&gt;
13169
13170 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
13171
13172 &lt;blockquote&gt;&lt;p&gt;
13173 gstreamer0.10-gnomevfs
13174 &lt;/p&gt;&lt;/blockquote&gt;
13175
13176 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
13177
13178 &lt;blockquote&gt;&lt;p&gt;
13179 [nothing]
13180 &lt;/p&gt;&lt;/blockquote&gt;
13181
13182 &lt;p&gt;This is for KDE:&lt;/p&gt;
13183
13184 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
13185
13186 &lt;blockquote&gt;&lt;p&gt;
13187 ksmserver
13188 &lt;/p&gt;&lt;/blockquote&gt;
13189
13190 &lt;p&gt;Installed using apt-get, removed with aptitude&lt;/p&gt;
13191
13192 &lt;blockquote&gt;&lt;p&gt;
13193 kwin
13194 network-manager-kde
13195 &lt;/p&gt;&lt;/blockquote&gt;
13196
13197 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
13198
13199 &lt;blockquote&gt;&lt;p&gt;
13200 arts
13201 dolphin
13202 freespacenotifier
13203 google-gadgets-gst
13204 google-gadgets-xul
13205 kappfinder
13206 kcalc
13207 kcharselect
13208 kde-core
13209 kde-plasma-desktop
13210 kde-standard
13211 kde-window-manager
13212 kdeartwork
13213 kdeartwork-emoticons
13214 kdeartwork-style
13215 kdeartwork-theme-icon
13216 kdebase
13217 kdebase-apps
13218 kdebase-workspace
13219 kdebase-workspace-bin
13220 kdebase-workspace-data
13221 kdeeject
13222 kdelibs
13223 kdeplasma-addons
13224 kdeutils
13225 kdewallpapers
13226 kdf
13227 kfloppy
13228 kgpg
13229 khelpcenter4
13230 kinfocenter
13231 konq-plugins-l10n
13232 konqueror-nsplugins
13233 kscreensaver
13234 kscreensaver-xsavers
13235 ktimer
13236 kwrite
13237 libgle3
13238 libkde4-ruby1.8
13239 libkonq5
13240 libkonq5-templates
13241 libnetpbm10
13242 libplasma-ruby
13243 libplasma-ruby1.8
13244 libqt4-ruby1.8
13245 marble-data
13246 marble-plugins
13247 netpbm
13248 nuvola-icon-theme
13249 plasma-dataengines-workspace
13250 plasma-desktop
13251 plasma-desktopthemes-artwork
13252 plasma-runners-addons
13253 plasma-scriptengine-googlegadgets
13254 plasma-scriptengine-python
13255 plasma-scriptengine-qedje
13256 plasma-scriptengine-ruby
13257 plasma-scriptengine-webkit
13258 plasma-scriptengines
13259 plasma-wallpapers-addons
13260 plasma-widget-folderview
13261 plasma-widget-networkmanagement
13262 ruby
13263 sweeper
13264 update-notifier-kde
13265 xscreensaver-data-extra
13266 xscreensaver-gl
13267 xscreensaver-gl-extra
13268 xscreensaver-screensaver-bsod
13269 &lt;/p&gt;&lt;/blockquote&gt;
13270
13271 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
13272
13273 &lt;blockquote&gt;&lt;p&gt;
13274 ark
13275 google-gadgets-common
13276 google-gadgets-qt
13277 htdig
13278 kate
13279 kdebase-bin
13280 kdebase-data
13281 kdepasswd
13282 kfind
13283 klipper
13284 konq-plugins
13285 konqueror
13286 ksysguard
13287 ksysguardd
13288 libarchive1
13289 libcln6
13290 libeet1
13291 libeina-svn-06
13292 libggadget-1.0-0b
13293 libggadget-qt-1.0-0b
13294 libgps19
13295 libkdecorations4
13296 libkephal4
13297 libkonq4
13298 libkonqsidebarplugin4a
13299 libkscreensaver5
13300 libksgrd4
13301 libksignalplotter4
13302 libkunitconversion4
13303 libkwineffects1a
13304 libmarblewidget4
13305 libntrack-qt4-1
13306 libntrack0
13307 libplasma-geolocation-interface4
13308 libplasmaclock4a
13309 libplasmagenericshell4
13310 libprocesscore4a
13311 libprocessui4a
13312 libqalculate5
13313 libqedje0a
13314 libqtruby4shared2
13315 libqzion0a
13316 libruby1.8
13317 libscim8c2a
13318 libsmokekdecore4-3
13319 libsmokekdeui4-3
13320 libsmokekfile3
13321 libsmokekhtml3
13322 libsmokekio3
13323 libsmokeknewstuff2-3
13324 libsmokeknewstuff3-3
13325 libsmokekparts3
13326 libsmokektexteditor3
13327 libsmokekutils3
13328 libsmokenepomuk3
13329 libsmokephonon3
13330 libsmokeplasma3
13331 libsmokeqtcore4-3
13332 libsmokeqtdbus4-3
13333 libsmokeqtgui4-3
13334 libsmokeqtnetwork4-3
13335 libsmokeqtopengl4-3
13336 libsmokeqtscript4-3
13337 libsmokeqtsql4-3
13338 libsmokeqtsvg4-3
13339 libsmokeqttest4-3
13340 libsmokeqtuitools4-3
13341 libsmokeqtwebkit4-3
13342 libsmokeqtxml4-3
13343 libsmokesolid3
13344 libsmokesoprano3
13345 libtaskmanager4a
13346 libtidy-0.99-0
13347 libweather-ion4a
13348 libxklavier16
13349 libxxf86misc1
13350 okteta
13351 oxygencursors
13352 plasma-dataengines-addons
13353 plasma-scriptengine-superkaramba
13354 plasma-widget-lancelot
13355 plasma-widgets-addons
13356 plasma-widgets-workspace
13357 polkit-kde-1
13358 ruby1.8
13359 systemsettings
13360 update-notifier-common
13361 &lt;/p&gt;&lt;/blockquote&gt;
13362
13363 &lt;p&gt;Running apt-get autoremove made the results using apt-get and
13364 aptitude a bit more similar, but there are still quite a lott of
13365 differences. I have no idea what packages should be installed after
13366 the upgrade, but hope those that do can have a look.&lt;/p&gt;
13367 </description>
13368 </item>
13369
13370 <item>
13371 <title>Migrating Xen virtual machines using LVM to KVM using disk images</title>
13372 <link>http://people.skolelinux.org/pere/blog/Migrating_Xen_virtual_machines_using_LVM_to_KVM_using_disk_images.html</link>
13373 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Migrating_Xen_virtual_machines_using_LVM_to_KVM_using_disk_images.html</guid>
13374 <pubDate>Mon, 22 Nov 2010 11:20:00 +0100</pubDate>
13375 <description>&lt;p&gt;Most of the computers in use by the
13376 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu/Skolelinux project&lt;/a&gt;
13377 are virtual machines. And they have been Xen machines running on a
13378 fairly old IBM eserver xseries 345 machine, and we wanted to migrate
13379 them to KVM on a newer Dell PowerEdge 2950 host machine. This was a
13380 bit harder that it could have been, because we set up the Xen virtual
13381 machines to get the virtual partitions from LVM, which as far as I
13382 know is not supported by KVM. So to migrate, we had to convert
13383 several LVM logical volumes to partitions on a virtual disk file.&lt;/p&gt;
13384
13385 &lt;p&gt;I found
13386 &lt;a href=&quot;http://searchnetworking.techtarget.com.au/articles/35011-Six-steps-for-migrating-Xen-virtual-machines-to-KVM&quot;&gt;a
13387 nice recipe&lt;/a&gt; to do this, and wrote the following script to do the
13388 migration. It uses qemu-img from the qemu package to make the disk
13389 image, parted to partition it, losetup and kpartx to present the disk
13390 image partions as devices, and dd to copy the data. I NFS mounted the
13391 new servers storage area on the old server to do the migration.&lt;/p&gt;
13392
13393 &lt;pre&gt;
13394 #!/bin/sh
13395
13396 # Based on
13397 # http://searchnetworking.techtarget.com.au/articles/35011-Six-steps-for-migrating-Xen-virtual-machines-to-KVM
13398
13399 set -e
13400 set -x
13401
13402 if [ -z &quot;$1&quot; ] ; then
13403 echo &quot;Usage: $0 &amp;lt;hostname&amp;gt;&quot;
13404 exit 1
13405 else
13406 host=&quot;$1&quot;
13407 fi
13408
13409 if [ ! -e /dev/vg_data/$host-disk ] ; then
13410 echo &quot;error: unable to find LVM volume for $host&quot;
13411 exit 1
13412 fi
13413
13414 # Partitions need to be a bit bigger than the LVM LVs. not sure why.
13415 disksize=$( lvs --units m | grep $host-disk | awk &#39;{sum = sum + $4} END { print int(sum * 1.05) }&#39;)
13416 swapsize=$( lvs --units m | grep $host-swap | awk &#39;{sum = sum + $4} END { print int(sum * 1.05) }&#39;)
13417 totalsize=$(( ( $disksize + $swapsize ) ))
13418
13419 img=$host.img
13420 #dd if=/dev/zero of=$img bs=1M count=$(( $disksize + $swapsize ))
13421 qemu-img create $img ${totalsize}MMaking room on the Debian Edu/Sqeeze DVD
13422
13423 parted $img mklabel msdos
13424 parted $img mkpart primary linux-swap 0 $disksize
13425 parted $img mkpart primary ext2 $disksize $totalsize
13426 parted $img set 1 boot on
13427
13428 modprobe dm-mod
13429 losetup /dev/loop0 $img
13430 kpartx -a /dev/loop0
13431
13432 dd if=/dev/vg_data/$host-disk of=/dev/mapper/loop0p1 bs=1M
13433 fsck.ext3 -f /dev/mapper/loop0p1 || true
13434 mkswap /dev/mapper/loop0p2
13435
13436 kpartx -d /dev/loop0
13437 losetup -d /dev/loop0
13438 &lt;/pre&gt;
13439
13440 &lt;p&gt;The script is perhaps so simple that it is not copyrightable, but
13441 if it is, it is licenced using GPL v2 or later at your discretion.&lt;/p&gt;
13442
13443 &lt;p&gt;After doing this, I booted a Debian CD in rescue mode in KVM with
13444 the new disk image attached, installed grub-pc and linux-image-686 and
13445 set up grub to boot from the disk image. After this, the KVM machines
13446 seem to work just fine.&lt;/p&gt;
13447 </description>
13448 </item>
13449
13450 <item>
13451 <title>Lenny-&gt;Squeeze upgrades, apt vs aptitude with the Gnome and KDE desktop</title>
13452 <link>http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__apt_vs_aptitude_with_the_Gnome_and_KDE_desktop.html</link>
13453 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__apt_vs_aptitude_with_the_Gnome_and_KDE_desktop.html</guid>
13454 <pubDate>Sat, 20 Nov 2010 22:50:00 +0100</pubDate>
13455 <description>&lt;p&gt;I&#39;m still running upgrade testing of the
13456 &lt;a href=&quot;http://people.skolelinux.org/~pere/debian-upgrade-testing/&quot;&gt;Lenny
13457 Gnome and KDE Desktop&lt;/a&gt;, but have not had time to spend on reporting the
13458 status. Here is a short update based on a test I ran 20101118.&lt;/p&gt;
13459
13460 &lt;p&gt;I still do not know what a correct migration should look like, so I
13461 report any differences between apt and aptitude and hope someone else
13462 can see if anything should be changed.&lt;/p&gt;
13463
13464 &lt;p&gt;This is for Gnome:&lt;/p&gt;
13465
13466 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
13467
13468 &lt;blockquote&gt;&lt;p&gt;
13469 apache2.2-bin aptdaemon at-spi baobab binfmt-support
13470 browser-plugin-gnash cheese-common cli-common cpp-4.3 cups-pk-helper
13471 dmz-cursor-theme empathy empathy-common finger
13472 freedesktop-sound-theme freeglut3 gconf-defaults-service gdm-themes
13473 gedit-plugins geoclue geoclue-hostip geoclue-localnet geoclue-manual
13474 geoclue-yahoo gnash gnash-common gnome gnome-backgrounds
13475 gnome-cards-data gnome-codec-install gnome-core
13476 gnome-desktop-environment gnome-disk-utility gnome-screenshot
13477 gnome-search-tool gnome-session-canberra gnome-spell
13478 gnome-system-log gnome-themes-extras gnome-themes-more
13479 gnome-user-share gs-common gstreamer0.10-fluendo-mp3
13480 gstreamer0.10-tools gtk2-engines gtk2-engines-pixbuf
13481 gtk2-engines-smooth hal-info hamster-applet libapache2-mod-dnssd
13482 libapr1 libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-ldap
13483 libart2.0-cil libatspi1.0-0 libboost-date-time1.42.0
13484 libboost-python1.42.0 libboost-thread1.42.0 libchamplain-0.4-0
13485 libchamplain-gtk-0.4-0 libcheese-gtk18 libclutter-gtk-0.10-0
13486 libcryptui0 libcupsys2 libdiscid0 libeel2-data libelf1 libepc-1.0-2
13487 libepc-common libepc-ui-1.0-2 libfreerdp-plugins-standard
13488 libfreerdp0 libgail-common libgconf2.0-cil libgdata-common libgdata7
13489 libgdl-1-common libgdu-gtk0 libgee2 libgeoclue0 libgexiv2-0 libgif4
13490 libglade2.0-cil libglib2.0-cil libgmime2.4-cil libgnome-vfs2.0-cil
13491 libgnome2.24-cil libgnomepanel2.24-cil libgnomeprint2.2-data
13492 libgnomeprintui2.2-common libgnomevfs2-bin libgpod-common libgpod4
13493 libgtk2.0-cil libgtkglext1 libgtksourceview-common
13494 libgtksourceview2.0-common libmono-addins-gui0.2-cil
13495 libmono-addins0.2-cil libmono-cairo2.0-cil libmono-corlib2.0-cil
13496 libmono-i18n-west2.0-cil libmono-posix2.0-cil
13497 libmono-security2.0-cil libmono-sharpzip2.84-cil
13498 libmono-system2.0-cil libmtp8 libmusicbrainz3-6
13499 libndesk-dbus-glib1.0-cil libndesk-dbus1.0-cil libopal3.6.8
13500 libpolkit-gtk-1-0 libpt-1.10.10-plugins-alsa
13501 libpt-1.10.10-plugins-v4l libpt2.6.7 libpython2.6 librpm1 librpmio1
13502 libsdl1.2debian libservlet2.4-java libsrtp0 libssh-4
13503 libtelepathy-farsight0 libtelepathy-glib0 libtidy-0.99-0
13504 libxalan2-java libxerces2-java media-player-info mesa-utils
13505 mono-2.0-gac mono-gac mono-runtime nautilus-sendto
13506 nautilus-sendto-empathy openoffice.org-writer2latex
13507 openssl-blacklist p7zip p7zip-full pkg-config python-4suite-xml
13508 python-aptdaemon python-aptdaemon-gtk python-axiom
13509 python-beautifulsoup python-bugbuddy python-clientform
13510 python-coherence python-configobj python-crypto python-cupshelpers
13511 python-cupsutils python-eggtrayicon python-elementtree
13512 python-epsilon python-evolution python-feedparser python-gdata
13513 python-gdbm python-gst0.10 python-gtkglext1 python-gtkmozembed
13514 python-gtksourceview2 python-httplib2 python-louie python-mako
13515 python-markupsafe python-mechanize python-nevow python-notify
13516 python-opengl python-openssl python-pam python-pkg-resources
13517 python-pyasn1 python-pysqlite2 python-rdflib python-serial
13518 python-tagpy python-twisted-bin python-twisted-conch
13519 python-twisted-core python-twisted-web python-utidylib python-webkit
13520 python-xdg python-zope.interface remmina remmina-plugin-data
13521 remmina-plugin-rdp remmina-plugin-vnc rhythmbox-plugin-cdrecorder
13522 rhythmbox-plugins rpm-common rpm2cpio seahorse-plugins shotwell
13523 software-center svgalibg1 system-config-printer-udev
13524 telepathy-gabble telepathy-mission-control-5 telepathy-salut tomboy
13525 totem totem-coherence totem-mozilla totem-plugins
13526 transmission-common xdg-user-dirs xdg-user-dirs-gtk xserver-xephyr
13527 zip
13528 &lt;/p&gt;&lt;/blockquote&gt;
13529
13530 Installed using apt-get, removed with aptitude
13531
13532 &lt;blockquote&gt;&lt;p&gt;
13533 arj bluez-utils cheese dhcdbd djvulibre-desktop ekiga eog
13534 epiphany-extensions epiphany-gecko evolution-exchange
13535 fast-user-switch-applet file-roller gcalctool gconf-editor gdm gedit
13536 gedit-common gnome-app-install gnome-games gnome-games-data
13537 gnome-nettool gnome-system-tools gnome-themes gnome-utils
13538 gnome-vfs-obexftp gnome-volume-manager gnuchess gucharmap
13539 guile-1.8-libs hal libavahi-compat-libdnssd1 libavahi-core5
13540 libavahi-ui0 libbind9-50 libbluetooth2 libcamel1.2-11 libcdio7
13541 libcucul0 libcurl3 libdirectfb-1.0-0 libdmx1 libdvdread3
13542 libedata-cal1.2-6 libedataserver1.2-9 libeel2-2.20 libepc-1.0-1
13543 libepc-ui-1.0-1 libexchange-storage1.2-3 libfaad0 libgadu3
13544 libgalago3 libgd2-noxpm libgda3-3 libgda3-common libggz2 libggzcore9
13545 libggzmod4 libgksu1.2-0 libgksuui1.0-1 libgmyth0 libgnome-desktop-2
13546 libgnome-pilot2 libgnomecups1.0-1 libgnomeprint2.2-0
13547 libgnomeprintui2.2-0 libgpod3 libgraphviz4 libgtk-vnc-1.0-0
13548 libgtkhtml2-0 libgtksourceview1.0-0 libgtksourceview2.0-0
13549 libgucharmap6 libhesiod0 libicu38 libisccc50 libisccfg50 libiw29
13550 libjaxp1.3-java-gcj libkpathsea4 liblircclient0 libltdl3 liblwres50
13551 libmagick++10 libmagick10 libmalaga7 libmozjs1d libmpfr1ldbl libmtp7
13552 libmysqlclient15off libnautilus-burn4 libneon27 libnm-glib0
13553 libnm-util0 libopal-2.2 libosp5 libparted1.8-10 libpisock9
13554 libpisync1 libpoppler-glib3 libpoppler3 libpt-1.10.10 libraw1394-8
13555 libsdl1.2debian-alsa libsensors3 libsexy2 libsmbios2 libsoup2.2-8
13556 libspeexdsp1 libssh2-1 libsuitesparse-3.1.0 libsvga1
13557 libswfdec-0.6-90 libtalloc1 libtotem-plparser10 libtrackerclient0
13558 libvoikko1 libxalan2-java-gcj libxerces2-java-gcj libxklavier12
13559 libxtrap6 libxxf86misc1 libzephyr3 mysql-common rhythmbox seahorse
13560 sound-juicer swfdec-gnome system-config-printer totem-common
13561 totem-gstreamer transmission-gtk vinagre vino w3c-dtd-xhtml wodim
13562 &lt;/p&gt;&lt;/blockquote&gt;
13563
13564 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
13565
13566 &lt;blockquote&gt;&lt;p&gt;
13567 gstreamer0.10-gnomevfs
13568 &lt;/p&gt;&lt;/blockquote&gt;
13569
13570 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
13571
13572 &lt;blockquote&gt;&lt;p&gt;
13573 [nothing]
13574 &lt;/p&gt;&lt;/blockquote&gt;
13575
13576 &lt;p&gt;This is for KDE:&lt;/p&gt;
13577
13578 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
13579
13580 &lt;blockquote&gt;&lt;p&gt;
13581 autopoint bomber bovo cantor cantor-backend-kalgebra cpp-4.3 dcoprss
13582 edict espeak espeak-data eyesapplet fifteenapplet finger gettext
13583 ghostscript-x git gnome-audio gnugo granatier gs-common
13584 gstreamer0.10-pulseaudio indi kaddressbook-plugins kalgebra
13585 kalzium-data kanjidic kapman kate-plugins kblocks kbreakout kbstate
13586 kde-icons-mono kdeaccessibility kdeaddons-kfile-plugins
13587 kdeadmin-kfile-plugins kdeartwork-misc kdeartwork-theme-window
13588 kdeedu kdeedu-data kdeedu-kvtml-data kdegames kdegames-card-data
13589 kdegames-mahjongg-data kdegraphics-kfile-plugins kdelirc
13590 kdemultimedia-kfile-plugins kdenetwork-kfile-plugins
13591 kdepim-kfile-plugins kdepim-kio-plugins kdessh kdetoys kdewebdev
13592 kdiamond kdnssd kfilereplace kfourinline kgeography-data kigo
13593 killbots kiriki klettres-data kmoon kmrml knewsticker-scripts
13594 kollision kpf krosspython ksirk ksmserver ksquares kstars-data
13595 ksudoku kubrick kweather libasound2-plugins libboost-python1.42.0
13596 libcfitsio3 libconvert-binhex-perl libcrypt-ssleay-perl libdb4.6++
13597 libdjvulibre-text libdotconf1.0 liberror-perl libespeak1
13598 libfinance-quote-perl libgail-common libgsl0ldbl libhtml-parser-perl
13599 libhtml-tableextract-perl libhtml-tagset-perl libhtml-tree-perl
13600 libio-stringy-perl libkdeedu4 libkdegames5 libkiten4 libkpathsea5
13601 libkrossui4 libmailtools-perl libmime-tools-perl
13602 libnews-nntpclient-perl libopenbabel3 libportaudio2 libpulse-browse0
13603 libservlet2.4-java libspeechd2 libtiff-tools libtimedate-perl
13604 libunistring0 liburi-perl libwww-perl libxalan2-java libxerces2-java
13605 lirc luatex marble networkstatus noatun-plugins
13606 openoffice.org-writer2latex palapeli palapeli-data parley
13607 parley-data poster psutils pulseaudio pulseaudio-esound-compat
13608 pulseaudio-module-x11 pulseaudio-utils quanta-data rocs rsync
13609 speech-dispatcher step svgalibg1 texlive-binaries texlive-luatex
13610 ttf-sazanami-gothic
13611 &lt;/p&gt;&lt;/blockquote&gt;
13612
13613 &lt;p&gt;Installed using apt-get, removed with aptitude&lt;/p&gt;
13614
13615 &lt;blockquote&gt;&lt;p&gt;
13616 amor artsbuilder atlantik atlantikdesigner blinken bluez-utils cvs
13617 dhcdbd djvulibre-desktop imlib-base imlib11 kalzium kanagram kandy
13618 kasteroids katomic kbackgammon kbattleship kblackbox kbounce kbruch
13619 kcron kdat kdemultimedia-kappfinder-data kdeprint kdict kdvi kedit
13620 keduca kenolaba kfax kfaxview kfouleggs kgeography kghostview
13621 kgoldrunner khangman khexedit kiconedit kig kimagemapeditor
13622 kitchensync kiten kjumpingcube klatin klettres klickety klines
13623 klinkstatus kmag kmahjongg kmailcvt kmenuedit kmid kmilo kmines
13624 kmousetool kmouth kmplot knetwalk kodo kolf kommander konquest kooka
13625 kpager kpat kpdf kpercentage kpilot kpoker kpovmodeler krec
13626 kregexpeditor kreversi ksame ksayit kshisen ksig ksim ksirc ksirtet
13627 ksmiletris ksnake ksokoban kspaceduel kstars ksvg ksysv kteatime
13628 ktip ktnef ktouch ktron kttsd ktuberling kturtle ktux kuickshow
13629 kverbos kview kviewshell kvoctrain kwifimanager kwin kwin4 kwordquiz
13630 kworldclock kxsldbg libakode2 libarts1-akode libarts1-audiofile
13631 libarts1-mpeglib libarts1-xine libavahi-compat-libdnssd1
13632 libavahi-core5 libavc1394-0 libbind9-50 libbluetooth2
13633 libboost-python1.34.1 libcucul0 libcurl3 libcvsservice0
13634 libdirectfb-1.0-0 libdjvulibre21 libdvdread3 libfaad0 libfreebob0
13635 libgd2-noxpm libgraphviz4 libgsmme1c2a libgtkhtml2-0 libicu38
13636 libiec61883-0 libindex0 libisccc50 libisccfg50 libiw29
13637 libjaxp1.3-java-gcj libk3b3 libkcal2b libkcddb1 libkdeedu3
13638 libkdegames1 libkdepim1a libkgantt0 libkleopatra1 libkmime2
13639 libkpathsea4 libkpimexchange1 libkpimidentities1 libkscan1
13640 libksieve0 libktnef1 liblockdev1 libltdl3 liblwres50 libmagick10
13641 libmimelib1c2a libmodplug0c2 libmozjs1d libmpcdec3 libmpfr1ldbl
13642 libneon27 libnm-util0 libopensync0 libpisock9 libpoppler-glib3
13643 libpoppler-qt2 libpoppler3 libraw1394-8 librss1 libsensors3
13644 libsmbios2 libssh2-1 libsuitesparse-3.1.0 libswfdec-0.6-90
13645 libtalloc1 libxalan2-java-gcj libxerces2-java-gcj libxtrap6 lskat
13646 mpeglib network-manager-kde noatun pmount tex-common texlive-base
13647 texlive-common texlive-doc-base texlive-fonts-recommended tidy
13648 ttf-dustin ttf-kochi-gothic ttf-sjfonts
13649 &lt;/p&gt;&lt;/blockquote&gt;
13650
13651 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
13652
13653 &lt;blockquote&gt;&lt;p&gt;
13654 dolphin kde-core kde-plasma-desktop kde-standard kde-window-manager
13655 kdeartwork kdebase kdebase-apps kdebase-workspace
13656 kdebase-workspace-bin kdebase-workspace-data kdeutils kscreensaver
13657 kscreensaver-xsavers libgle3 libkonq5 libkonq5-templates libnetpbm10
13658 netpbm plasma-widget-folderview plasma-widget-networkmanagement
13659 xscreensaver-data-extra xscreensaver-gl xscreensaver-gl-extra
13660 xscreensaver-screensaver-bsod
13661 &lt;/p&gt;&lt;/blockquote&gt;
13662
13663 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
13664
13665 &lt;blockquote&gt;&lt;p&gt;
13666 kdebase-bin konq-plugins konqueror
13667 &lt;/p&gt;&lt;/blockquote&gt;
13668 </description>
13669 </item>
13670
13671 <item>
13672 <title>Gnash buildbot slave and Debian kfreebsd</title>
13673 <link>http://people.skolelinux.org/pere/blog/Gnash_buildbot_slave_and_Debian_kfreebsd.html</link>
13674 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Gnash_buildbot_slave_and_Debian_kfreebsd.html</guid>
13675 <pubDate>Sat, 20 Nov 2010 07:20:00 +0100</pubDate>
13676 <description>&lt;p&gt;Answering
13677 &lt;a href=&quot;http://www.listware.net/201011/gnash-dev/67431-gnash-dev-buildbot-looking-for-slaves.html&quot;&gt;the
13678 call from the Gnash project&lt;/a&gt; for
13679 &lt;a href=&quot;http://www.gnashdev.org:8010&quot;&gt;buildbot&lt;/a&gt; slaves to test the
13680 current source, I have set up a virtual KVM machine on the Debian
13681 Edu/Skolelinux virtualization host to test the git source on
13682 Debian/Squeeze. I hope this can help the developers in getting new
13683 releases out more often.&lt;/p&gt;
13684
13685 &lt;p&gt;As the developers want less main-stream build platforms tested to,
13686 I have considered setting up a &lt;a
13687 href=&quot;http://www.debian.org/ports/kfreebsd-gnu/&quot;&gt;Debian/kfreebsd&lt;/a&gt;
13688 machine as well. I have also considered using the kfreebsd
13689 architecture in Debian as a file server in NUUG to get access to the 5
13690 TB zfs volume we currently use to store DV video. Because of this, I
13691 finally got around to do a test installation of Debian/Squeeze with
13692 kfreebsd. Installation went fairly smooth, thought I noticed some
13693 visual glitches in the cdebconf dialogs (black cursor left on the
13694 screen at random locations). Have not gotten very far with the
13695 testing. Noticed cfdisk did not work, but fdisk did so it was not a
13696 fatal problem. Have to spend some more time on it to see if it is
13697 useful as a file server for NUUG. Will try to find time to set up a
13698 gnash buildbot slave on the Debian Edu/Skolelinux this weekend.&lt;/p&gt;
13699 </description>
13700 </item>
13701
13702 <item>
13703 <title>Debian in 3D</title>
13704 <link>http://people.skolelinux.org/pere/blog/Debian_in_3D.html</link>
13705 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_in_3D.html</guid>
13706 <pubDate>Tue, 9 Nov 2010 16:10:00 +0100</pubDate>
13707 <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;
13708
13709 &lt;p&gt;3D printing is just great. I just came across this Debian logo in
13710 3D linked in from
13711 &lt;a href=&quot;http://blog.thingiverse.com/2010/11/09/participatory-branding/&quot;&gt;the
13712 thingiverse blog&lt;/a&gt;.&lt;/p&gt;
13713 </description>
13714 </item>
13715
13716 <item>
13717 <title>Making room on the Debian Edu/Sqeeze DVD</title>
13718 <link>http://people.skolelinux.org/pere/blog/Making_room_on_the_Debian_Edu_Sqeeze_DVD.html</link>
13719 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Making_room_on_the_Debian_Edu_Sqeeze_DVD.html</guid>
13720 <pubDate>Sun, 7 Nov 2010 11:45:00 +0100</pubDate>
13721 <description>&lt;p&gt;Prioritising packages for the Debian Edu /
13722 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt; DVD, which is
13723 supposed provide a school with all the services and user applications
13724 needed on the pupils computer network has always been hard. Even
13725 schools without Internet connections should be able to get Debian Edu
13726 working using this DVD.&lt;/p&gt;
13727
13728 &lt;p&gt;The job became a lot harder when apt and aptitude started
13729 installing recommended packages by default. We want the same set of
13730 packages to be installed when using the DVD and the netinst CD, and
13731 that means all recommended packages need to be on the DVD. I created
13732 a patch for debian-cd in &lt;a href=&quot;http://bugs.debian.org/601203&quot;&gt;BTS
13733 report #601203&lt;/a&gt; to do this, and since this change was applied to
13734 the Debian Edu DVD build, we have been seriously short on space.&lt;/p&gt;
13735
13736 &lt;p&gt;A few days ago we decided to drop blender, wxmaxima and kicad from
13737 the default installation to save space on the DVD, believing that
13738 those needing these applications are few and can get them from the
13739 Debian archive.&lt;/p&gt;
13740
13741 &lt;p&gt;Yesterday, I had a look what source packages to see which packages
13742 were using most space. A few large packages are well know;
13743 openoffice.org, openclipart and fluid-soundfont. But I also
13744 discovered that lilypond used 106 MiB and fglrx-driver used 53 MiB.
13745 The lilypond package is pulled in as a dependency for rosegarden, and
13746 when looking a bit closer I discovered that 99 MiB of the 106 MiB were
13747 the documentation package, which is recommended by the binary package.
13748 I decided to drop this documentation package from our DVD, as most of
13749 our users will use the GUI front-ends and do not need the lilypond
13750 documentation. Similarly, I dropped the non-free fglrx-driver package
13751 which might be installed by d-i when its hardware is detected, as the
13752 free X driver should work.&lt;/p&gt;
13753
13754 &lt;p&gt;With this change, we finally got space for the LXDE and Gnome
13755 desktop packages as well as the language specific packages making the
13756 DVD more useful again.&lt;/p&gt;
13757 </description>
13758 </item>
13759
13760 <item>
13761 <title>Software updates 2010-10-24</title>
13762 <link>http://people.skolelinux.org/pere/blog/Software_updates_2010_10_24.html</link>
13763 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Software_updates_2010_10_24.html</guid>
13764 <pubDate>Sun, 24 Oct 2010 22:45:00 +0200</pubDate>
13765 <description>&lt;p&gt;Some updates.&lt;/p&gt;
13766
13767 &lt;p&gt;My &lt;a href=&quot;http://pledgebank.com/gnash-avm2&quot;&gt;gnash pledge&lt;/a&gt; to
13768 raise money for the project is going well. The lower limit of 10
13769 signers was reached in 24 hours, and so far 13 people have signed it.
13770 More signers and more funding is most welcome, and I am really curious
13771 how far we can get before the time limit of December 24 is reached.
13772 :)&lt;/p&gt;
13773
13774 &lt;p&gt;On the #gnash IRC channel on irc.freenode.net, I was just tipped
13775 about what appear to be a great code coverage tool capable of
13776 generating code coverage stats without any changes to the source code.
13777 It is called
13778 &lt;a href=&quot;http://simonkagstrom.github.com/kcov/index.html&quot;&gt;kcov&lt;/a&gt;,
13779 and can be used using &lt;tt&gt;kcov &amp;lt;directory&amp;gt; &amp;lt;binary&amp;gt;&lt;/tt&gt;.
13780 It is missing in Debian, but the git source built just fine in Squeeze
13781 after I installed libelf-dev, libdwarf-dev, pkg-config and
13782 libglib2.0-dev. Failed to build in Lenny, but suspect that is
13783 solvable. I hope kcov make it into Debian soon.&lt;/p&gt;
13784
13785 &lt;p&gt;Finally found time to wrap up the release notes for &lt;a
13786 href=&quot;http://lists.debian.org/debian-edu-announce/2010/10/msg00002.html&quot;&gt;a
13787 new alpha release of Debian Edu&lt;/a&gt;, and just published the second
13788 alpha test release of the Squeeze based Debian Edu /
13789 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;
13790 release. Give it a try if you need a complete linux solution for your
13791 school, including central infrastructure server, workstations, thin
13792 client servers and diskless workstations. A nice touch added
13793 yesterday is RDP support on the thin client servers, for windows
13794 clients to get a Linux desktop on request.&lt;/p&gt;
13795 </description>
13796 </item>
13797
13798 <item>
13799 <title>Pledge for funding to the Gnash project to get AVM2 support</title>
13800 <link>http://people.skolelinux.org/pere/blog/Pledge_for_funding_to_the_Gnash_project_to_get_AVM2_support.html</link>
13801 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Pledge_for_funding_to_the_Gnash_project_to_get_AVM2_support.html</guid>
13802 <pubDate>Tue, 19 Oct 2010 14:45:00 +0200</pubDate>
13803 <description>&lt;p&gt;&lt;a href=&quot;http://www.getgnash.org/&quot;&gt;The Gnash project&lt;/a&gt; is the
13804 most promising solution for a Free Software Flash implementation. It
13805 has done great so far, but there is still far to go, and recently its
13806 funding has dried up. I believe AVM2 support in Gnash is vital to the
13807 continued progress of the project, as more and more sites show up with
13808 AVM2 flash files.&lt;/p&gt;
13809
13810 &lt;p&gt;To try to get funding for developing such support, I have started
13811 &lt;a href=&quot;http://www.pledgebank.com/gnash-avm2&quot;&gt;a pledge&lt;/a&gt; with the
13812 following text:&lt;/P&gt;
13813
13814 &lt;p&gt;&lt;blockquote&gt;
13815
13816 &lt;p&gt;&quot;I will pay 100$ to the Gnash project to develop AVM2 support but
13817 only if 10 other people will do the same.&quot;&lt;/p&gt;
13818
13819 &lt;p&gt;- Petter Reinholdtsen, free software developer&lt;/p&gt;
13820
13821 &lt;p&gt;Deadline to sign up by: 24th December 2010&lt;/p&gt;
13822
13823 &lt;p&gt;The Gnash project need to get support for the new Flash file
13824 format AVM2 to work with a lot of sites using Flash on the
13825 web. Gnash already work with a lot of Flash sites using the old AVM1
13826 format, but more and more sites are using the AVM2 format these
13827 days. The project web page is available from
13828 http://www.getgnash.org/ . Gnash is a free software implementation
13829 of Adobe Flash, allowing those of us that do not accept the terms of
13830 the Adobe Flash license to get access to Flash sites.&lt;/p&gt;
13831
13832 &lt;p&gt;The project need funding to get developers to put aside enough
13833 time to develop the AVM2 support, and this pledge is my way to try
13834 to get this to happen.&lt;/p&gt;
13835
13836 &lt;p&gt;The project accept donations via the OpenMediaNow foundation,
13837 &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;
13838
13839 &lt;/blockquote&gt;&lt;/p&gt;
13840
13841 &lt;p&gt;I hope you will support this effort too. I hope more than 10
13842 people will participate to make this happen. The more money the
13843 project gets, the more features it can develop using these funds.
13844 :)&lt;/p&gt;
13845 </description>
13846 </item>
13847
13848 <item>
13849 <title>First version of a Perl library to control the Spykee robot</title>
13850 <link>http://people.skolelinux.org/pere/blog/First_version_of_a_Perl_library_to_control_the_Spykee_robot.html</link>
13851 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_version_of_a_Perl_library_to_control_the_Spykee_robot.html</guid>
13852 <pubDate>Sat, 9 Oct 2010 14:00:00 +0200</pubDate>
13853 <description>&lt;p&gt;This summer I got the chance to buy cheap Spykee robots, and since
13854 then I have worked on getting Linux software in place to control them.
13855 The firmware for the robot is available from the producer, and using
13856 that source it was trivial to figure out the protocol specification.
13857 I&#39;ve started on a perl library to control it, and made some demo
13858 programs using this perl library to allow one to control the
13859 robots.&lt;/p&gt;
13860
13861 &lt;p&gt;The library is quite functional already, and capable of controlling
13862 the driving, fetching video, uploading MP3s and play them. There are
13863 a few less important features too.&lt;/p&gt;
13864
13865 &lt;p&gt;Since a few weeks ago, I ran out of time to spend on this project,
13866 but I never got around to releasing the current source. I decided
13867 today that it was time to do something about it, and uploaded the
13868 source to my Debian package store at people.skolelinux.org.&lt;/p&gt;
13869
13870 &lt;p&gt;Because it was simpler for me, I made a Debian package and
13871 published the source and deb. If you got a spykee robot, grab the
13872 source or binary package:&lt;/p&gt;
13873
13874 &lt;p&gt;&lt;ul&gt;
13875 &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;
13876 &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;
13877 &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;
13878 &lt;/ul&gt;&lt;/p&gt;
13879
13880 &lt;p&gt;If you are interested in helping out with developing this library,
13881 please let me know.&lt;/p&gt;
13882 </description>
13883 </item>
13884
13885 <item>
13886 <title>Links for 2010-10-03</title>
13887 <link>http://people.skolelinux.org/pere/blog/Links_for_2010_10_03.html</link>
13888 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Links_for_2010_10_03.html</guid>
13889 <pubDate>Sun, 3 Oct 2010 22:30:00 +0200</pubDate>
13890 <description>&lt;p&gt;&lt;ul&gt;
13891
13892 &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
13893 is no Plan B: why the IPv4-to-IPv6 transition will be ugly&lt;/a&gt;&lt;/li&gt;
13894
13895 &lt;li&gt;Scanner looking under clothes
13896 &lt;a href=&quot;http://www.dagbladet.no/2010/10/03/nyheter/utenriks/reise/overvakingskamera/flyplasser/13667192/&quot;&gt;has
13897 already been misused at Heathrow&lt;/a&gt;.&lt;/li&gt;
13898
13899 &lt;li&gt;&lt;a href=&quot;http://wiki.softwarelivre.org/Landell&quot;&gt;Landell
13900 Webcasting&lt;/a&gt; - interesting alternative for
13901 &lt;ahref=&quot;http://dvswitch.alioth.debian.org/wiki/&quot;&gt;DVSwitch&lt;/a&gt; with
13902 simple setup.
13903
13904 &lt;/ul&gt;&lt;/p&gt;
13905 </description>
13906 </item>
13907
13908 <item>
13909 <title>Terms of use for video produced by a Canon IXUS 130 digital camera</title>
13910 <link>http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html</link>
13911 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html</guid>
13912 <pubDate>Thu, 9 Sep 2010 23:55:00 +0200</pubDate>
13913 <description>&lt;p&gt;A few days ago I had the mixed pleasure of bying a new digital
13914 camera, a Canon IXUS 130. It was instructive and very disturbing to
13915 be able to verify that also this camera producer have the nerve to
13916 specify how I can or can not use the videos produced with the camera.
13917 Even thought I was aware of the issue, the options with new cameras
13918 are limited and I ended up bying the camera anyway. What is the
13919 problem, you might ask? It is software patents, MPEG-4, H.264 and the
13920 MPEG-LA that is the problem, and our right to record our experiences
13921 without asking for permissions that is at risk.
13922
13923 &lt;p&gt;On page 27 of the Danish instruction manual, this section is
13924 written:&lt;/p&gt;
13925
13926 &lt;blockquote&gt;
13927 &lt;p&gt;This product is licensed under AT&amp;T patents for the MPEG-4 standard
13928 and may be used for encoding MPEG-4 compliant video and/or decoding
13929 MPEG-4 compliant video that was encoded only (1) for a personal and
13930 non-commercial purpose or (2) by a video provider licensed under the
13931 AT&amp;T patents to provide MPEG-4 compliant video.&lt;/p&gt;
13932
13933 &lt;p&gt;No license is granted or implied for any other use for MPEG-4
13934 standard.&lt;/p&gt;
13935 &lt;/blockquote&gt;
13936
13937 &lt;p&gt;In short, the camera producer have chosen to use technology
13938 (MPEG-4/H.264) that is only provided if I used it for personal and
13939 non-commercial purposes, or ask for permission from the organisations
13940 holding the knowledge monopoly (patent) for technology used.&lt;/p&gt;
13941
13942 &lt;p&gt;This issue has been brewing for a while, and I recommend you to
13943 read
13944 &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
13945 Our Civilization&#39;s Video Art and Culture is Threatened by the
13946 MPEG-LA&lt;/a&gt;&quot; by Eugenia Loli-Queru and
13947 &quot;&lt;a href=&quot;http://webmink.com/2010/09/03/h-264-and-foss/&quot;&gt;H.264 Is Not
13948 The Sort Of Free That Matters&lt;/a&gt;&quot; by Simon Phipps to learn more about
13949 the issue. The solution is to support the
13950 &lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;free and
13951 open standards&lt;/a&gt; for video, like &lt;a href=&quot;http://www.theora.org/&quot;&gt;Ogg
13952 Theora&lt;/a&gt;, and avoid MPEG-4 and H.264 if you can.&lt;/p&gt;
13953 </description>
13954 </item>
13955
13956 <item>
13957 <title>Some notes on Flash in Debian and Debian Edu</title>
13958 <link>http://people.skolelinux.org/pere/blog/Some_notes_on_Flash_in_Debian_and_Debian_Edu.html</link>
13959 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Some_notes_on_Flash_in_Debian_and_Debian_Edu.html</guid>
13960 <pubDate>Sat, 4 Sep 2010 10:10:00 +0200</pubDate>
13961 <description>&lt;p&gt;In the &lt;a href=&quot;http://popcon.debian.org/unknown/by_vote&quot;&gt;Debian
13962 popularity-contest numbers&lt;/a&gt;, the adobe-flashplugin package the
13963 second most popular used package that is missing in Debian. The sixth
13964 most popular is flashplayer-mozilla. This is a clear indication that
13965 working flash is important for Debian users. Around 10 percent of the
13966 users submitting data to popcon.debian.org have this package
13967 installed.&lt;/p&gt;
13968
13969 &lt;p&gt;In the report written by Lars Risan in August 2008
13970&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
13971 i bruk – Rapport for Hurum kommune, Universitetet i Agder og
13972 stiftelsen SLX Debian Labs&lt;/a&gt;»), one of the most important problems
13973 schools experienced with &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian
13974 Edu/Skolelinux&lt;/a&gt; was the lack of working Flash. A lot of educational
13975 web sites require Flash to work, and lacking working Flash support in
13976 the web browser and the problems with installing it was perceived as a
13977 good reason to stay with Windows.&lt;/p&gt;
13978
13979 &lt;p&gt;I once saw a funny and sad comment in a web forum, where Linux was
13980 said to be the retarded cousin that did not really understand
13981 everything you told him but could work fairly well. This was a
13982 comment regarding the problems Linux have with proprietary formats and
13983 non-standard web pages, and is sad because it exposes a fairly common
13984 understanding of whose fault it is if web pages that only work in for
13985 example Internet Explorer 6 fail to work on Firefox, and funny because
13986 it explain very well how annoying it is for users when Linux
13987 distributions do not work with the documents they receive or the web
13988 pages they want to visit.&lt;/p&gt;
13989
13990 &lt;p&gt;This is part of the reason why I believe it is important for Debian
13991 and Debian Edu to have a well working Flash implementation in the
13992 distribution, to get at least popular sites as Youtube and Google
13993 Video to working out of the box. For Squeeze, Debian have the chance
13994 to include the latest version of Gnash that will make this happen, as
13995 the new release 0.8.8 was published a few weeks ago and is resting in
13996 unstable. The new version work with more sites that version 0.8.7.
13997 The Gnash maintainers have asked for a freeze exception, but the
13998 release team have not had time to reply to it yet. I hope they agree
13999 with me that Flash is important for the Debian desktop users, and thus
14000 accept the new package into Squeeze.&lt;/p&gt;
14001 </description>
14002 </item>
14003
14004 <item>
14005 <title>My first perl GUI application - controlling a Spykee robot</title>
14006 <link>http://people.skolelinux.org/pere/blog/My_first_perl_GUI_application___controlling_a_Spykee_robot.html</link>
14007 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/My_first_perl_GUI_application___controlling_a_Spykee_robot.html</guid>
14008 <pubDate>Wed, 1 Sep 2010 21:00:00 +0200</pubDate>
14009 <description>&lt;p&gt;This evening I made my first Perl GUI application. The last few
14010 days I have worked on a Perl module for controlling my recently
14011 aquired Spykee robots, and the module is now getting complete enought
14012 that it is possible to use it to control the robot driving at least.
14013 It was now time to figure out how to use it to create some GUI to
14014 allow me to drive the robot around. I picked PerlQt as I have had
14015 positive experiences with the Qt API before, and spent a few minutes
14016 browsing the web for examples. Using Qt Designer seemed like a short
14017 cut, so I ended up writing the perl GUI using Qt Designer and
14018 compiling it into a perl program using the puic program from
14019 libqt-perl. Nothing fancy yet, but it got buttons to connect and
14020 drive around.&lt;/p&gt;
14021
14022 &lt;p&gt;The perl module I have written provide a object oriented API for
14023 controlling the robot. Here is an small example on how to use it:&lt;/p&gt;
14024
14025 &lt;p&gt;&lt;pre&gt;
14026 use Spykee;
14027 Spykee::discover(sub {$robot{$_[0]} = $_[1]});
14028 my $host = (keys %robot)[0];
14029 my $spykee = Spykee-&gt;new();
14030 $spykee-&gt;contact($host, &quot;admin&quot;, &quot;admin&quot;);
14031 $spykee-&gt;left();
14032 sleep 2;
14033 $spykee-&gt;right();
14034 sleep 2;
14035 $spykee-&gt;forward();
14036 sleep 2;
14037 $spykee-&gt;back();
14038 sleep 2;
14039 $spykee-&gt;stop();
14040 &lt;/pre&gt;&lt;/p&gt;
14041
14042 &lt;p&gt;Thanks to the release of the source of the robot firmware, I could
14043 peek into the implementation at the other end to figure out how to
14044 implement the protocol used by the robot. I&#39;ve implemented several of
14045 the commands the robot understand, but is still missing the camera
14046 support to make it possible to control the robot from remote. First I
14047 want to implement support for uploading new firmware and configuring
14048 the wireless network, to make it possible to bootstrap a Spykee robot
14049 without the producers Windows and MacOSX software (I only have Linux,
14050 so I had to ask a friend to come over to get the robot testing
14051 going. :).&lt;/p&gt;
14052
14053 &lt;p&gt;Will release the source to the public soon, but need to figure out
14054 where to make it available first. I will add a link to
14055 &lt;a href=&quot;http://wiki.nuug.no/grupper/robot/&quot;&gt;the NUUG wiki&lt;/a&gt; for
14056 those that want to check back later to find it.&lt;/p&gt;
14057 </description>
14058 </item>
14059
14060 <item>
14061 <title>Broken hard link handling with sshfs</title>
14062 <link>http://people.skolelinux.org/pere/blog/Broken_hard_link_handling_with_sshfs.html</link>
14063 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Broken_hard_link_handling_with_sshfs.html</guid>
14064 <pubDate>Mon, 30 Aug 2010 19:30:00 +0200</pubDate>
14065 <description>&lt;p&gt;Just got an email from Tobias Gruetzmacher as a followup on my
14066 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Broken_umask_handling_with_sshfs.html&quot;&gt;previous
14067 post about sshfs&lt;/a&gt;. He reported another problem with sshfs. It
14068 fail to handle hard links properly. A simple way to spot this is to
14069 look at the . and .. entries in the directory tree. These should have
14070 a link count &gt;1, but on sshfs the count is 1. I just tested to see
14071 what happen when trying to hardlink, and this fail as well:&lt;/p&gt;
14072
14073 &lt;pre&gt;
14074 % ln foo bar
14075 ln: creating hard link `bar&#39; =&gt; `foo&#39;: Function not implemented
14076 %
14077 &lt;/pre&gt;
14078
14079 &lt;p&gt;I have not yet found time to implement a test for this in my file
14080 system test code, but believe having working hard links is useful to
14081 avoid surprised unix programs. Not as useful as working file locking
14082 and symlinks, which are required to get a working desktop, but useful
14083 nevertheless. :)&lt;/p&gt;
14084
14085 &lt;p&gt;The latest version of the file system test code is available via
14086 git from
14087 &lt;a href=&quot;http://github.com/gebi/fs-test&quot;&gt;http://github.com/gebi/fs-test&lt;/a&gt;&lt;/p&gt;
14088 </description>
14089 </item>
14090
14091 <item>
14092 <title>Broken umask handling with sshfs</title>
14093 <link>http://people.skolelinux.org/pere/blog/Broken_umask_handling_with_sshfs.html</link>
14094 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Broken_umask_handling_with_sshfs.html</guid>
14095 <pubDate>Thu, 26 Aug 2010 13:30:00 +0200</pubDate>
14096 <description>&lt;p&gt;My file system sematics program
14097 &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
14098 a few days ago&lt;/a&gt; is very useful to verify that a file system can
14099 work as a unix home directory,and today I had to extend it a bit. I&#39;m
14100 looking into alternatives for home directory access here at the
14101 University of Oslo, and one of the options is sshfs. My friend
14102 Finn-Arne mentioned a while back that they had used sshfs with Debian
14103 Edu, but stopped because of problems. I asked today what the problems
14104 where, and he mentioned that sshfs failed to handle umask properly.
14105 Trying to detect the problem I wrote this addition to my fs testing
14106 script:&lt;/p&gt;
14107
14108 &lt;pre&gt;
14109 mode_t touch_get_mode(const char *name, mode_t mode) {
14110 mode_t retval = 0;
14111 int fd = open(name, O_RDWR|O_CREAT|O_LARGEFILE, mode);
14112 if (-1 != fd) {
14113 unlink(name);
14114 struct stat statbuf;
14115 if (-1 != fstat(fd, &amp;statbuf)) {
14116 retval = statbuf.st_mode &amp; 0x1ff;
14117 }
14118 close(fd);
14119 }
14120 return retval;
14121 }
14122
14123 /* Try to detect problem discovered using sshfs */
14124 int test_umask(void) {
14125 printf(&quot;info: testing umask effect on file creation\n&quot;);
14126
14127 mode_t orig_umask = umask(000);
14128 mode_t newmode;
14129 if (0666 != (newmode = touch_get_mode(&quot;foobar&quot;, 0666))) {
14130 printf(&quot; error: Wrong file mode %o when creating using mode 666 and umask 000\n&quot;,
14131 newmode);
14132 }
14133 umask(007);
14134 if (0660 != (newmode = touch_get_mode(&quot;foobar&quot;, 0666))) {
14135 printf(&quot; error: Wrong file mode %o when creating using mode 666 and umask 007\n&quot;,
14136 newmode);
14137 }
14138
14139 umask (orig_umask);
14140 return 0;
14141 }
14142
14143 int main(int argc, char **argv) {
14144 [...]
14145 test_umask();
14146 return 0;
14147 }
14148 &lt;/pre&gt;
14149
14150 &lt;p&gt;Sure enough. On NFS to a netapp, I get this result:&lt;/p&gt;
14151
14152 &lt;pre&gt;
14153 Testing POSIX/Unix sematics on file system
14154 info: testing symlink creation
14155 info: testing subdirectory creation
14156 info: testing fcntl locking
14157 Read-locking 1 byte from 1073741824
14158 Read-locking 510 byte from 1073741826
14159 Unlocking 1 byte from 1073741824
14160 Write-locking 1 byte from 1073741824
14161 Write-locking 510 byte from 1073741826
14162 Unlocking 2 byte from 1073741824
14163 info: testing umask effect on file creation
14164 &lt;/pre&gt;
14165
14166 &lt;p&gt;When mounting the same directory using sshfs, I get this
14167 result:&lt;/p&gt;
14168
14169 &lt;pre&gt;
14170 Testing POSIX/Unix sematics on file system
14171 info: testing symlink creation
14172 info: testing subdirectory creation
14173 info: testing fcntl locking
14174 Read-locking 1 byte from 1073741824
14175 Read-locking 510 byte from 1073741826
14176 Unlocking 1 byte from 1073741824
14177 Write-locking 1 byte from 1073741824
14178 Write-locking 510 byte from 1073741826
14179 Unlocking 2 byte from 1073741824
14180 info: testing umask effect on file creation
14181 error: Wrong file mode 644 when creating using mode 666 and umask 000
14182 error: Wrong file mode 640 when creating using mode 666 and umask 007
14183 &lt;/pre&gt;
14184
14185 &lt;p&gt;So, I can conclude that sshfs is better than smb to a Netapp or a
14186 Windows server, but not good enough to be used as a home
14187 directory.&lt;/p&gt;
14188
14189 &lt;p&gt;Update 2010-08-26: Reported the issue in
14190 &lt;a href=&quot;http://bugs.debian.org/594498&quot;&gt;BTS report #594498&lt;/a&gt;&lt;/p&gt;
14191
14192 &lt;p&gt;Update 2010-08-27: Michael Gebetsroither report that he found the
14193 script so useful that he created a GIT repository and stored it in
14194 &lt;a href=&quot;http://github.com/gebi/fs-test&quot;&gt;http://github.com/gebi/fs-test&lt;/a&gt;.&lt;/p&gt;
14195 </description>
14196 </item>
14197
14198 <item>
14199 <title>Rob Weir: How to Crush Dissent</title>
14200 <link>http://people.skolelinux.org/pere/blog/Rob_Weir__How_to_Crush_Dissent.html</link>
14201 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Rob_Weir__How_to_Crush_Dissent.html</guid>
14202 <pubDate>Sun, 15 Aug 2010 22:20:00 +0200</pubDate>
14203 <description>&lt;p&gt;I found the notes from Rob Weir on
14204 &lt;a href=&quot;http://feedproxy.google.com/~r/robweir/antic-atom/~3/VGb23-kta8c/how-to-crush-dissent.html&quot;&gt;how
14205 to crush dissent&lt;/a&gt; matching my own thoughts on the matter quite
14206 well. Highly recommended for those wondering which road our society
14207 should go down. In my view we have been heading the wrong way for a
14208 long time.&lt;/p&gt;
14209 </description>
14210 </item>
14211
14212 <item>
14213 <title>No hardcoded config on Debian Edu clients</title>
14214 <link>http://people.skolelinux.org/pere/blog/No_hardcoded_config_on_Debian_Edu_clients.html</link>
14215 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/No_hardcoded_config_on_Debian_Edu_clients.html</guid>
14216 <pubDate>Mon, 9 Aug 2010 20:15:00 +0200</pubDate>
14217 <description>&lt;p&gt;As reported earlier, the last few days I have looked at how Debian
14218 Edu clients are configured, and tried to get rid of all hardcoded
14219 configuration settings on the clients. I believe the work to be
14220 mostly done, and the clients seem to work just fine with dynamically
14221 generated configuration.&lt;/p&gt;
14222
14223 &lt;p&gt;What is the point, you might ask? The point is to allow a Debian
14224 Edu desktop to integrate into an existing network infrastructure
14225 without any manual configuration.&lt;/p&gt;
14226
14227 &lt;p&gt;This is what happens when installing a Debian Edu client here at
14228 the University of Oslo using PXE. With the PXE installation, I am
14229 asked for language (Norwegian Bokmål), locality (Norway) and keyboard
14230 layout (no-latin1), Debian Edu profile (Roaming Workstation), if I
14231 accept to reformat the hard drive (yes), if I want to submit info to
14232 popcon.debian.org (no) and root password (secret). After answering
14233 these questions, the installer goes ahead and does its thing, and
14234 after around 50 minutes it is done. I press enter to finish the
14235 installation, and the machine reboots into KDE. When the machine is
14236 ready and kdm asks for login information, I enter my university
14237 username and password, am told by kdm that a local home directory has
14238 been created and that I must log in again, and finally log in with the
14239 same username and password to the KDE 4.4 desktop. At no point during
14240 this process did it ask for university specific settings, and all the
14241 required configuration was dynamically detected using information
14242 fetched via DHCP and DNS. The roaming workstation is now ready for
14243 use.&lt;/p&gt;
14244
14245 &lt;p&gt;How was this done, you might wonder? First of all, here is the
14246 list of things that need to be configured on the client to get it
14247 working properly out of the box:&lt;/p&gt;
14248
14249 &lt;ul&gt;
14250 &lt;li&gt;IP address/netmask and DNS server.&lt;/li&gt;
14251 &lt;li&gt;Web proxy URL.&lt;/li&gt;
14252 &lt;li&gt;LDAP server for NSS directory information (user, group, etc).&lt;/li&gt;
14253 &lt;li&gt;Kerberos server for PAM password checking.&lt;/li&gt;
14254 &lt;li&gt;SMB mount point to access the network home directory. (*)&lt;/li&gt;
14255 &lt;li&gt;Central syslog server to send syslog messages to. (*)&lt;/li&gt;
14256 &lt;li&gt;Sitesummary collector URL to submit info to central server. (*)&lt;/li&gt;
14257 &lt;/ul&gt;
14258
14259 &lt;p&gt;(Hm, did I forget anything? Let me knew if I did.)&lt;/p&gt;
14260
14261 &lt;p&gt;The points marked (*) are not required to be able to use the
14262 machine, but needed to provide central storage and allowing system
14263 administrators to track their machines. Since yesterday, everything
14264 but the sitesummary collector URL is dynamically discovered at boot
14265 and installation time in the svn version of Debian Edu.&lt;/p&gt;
14266
14267 &lt;p&gt;The IP and DNS setup is fetched during boot using DHCP as usual.
14268 When a DHCP update arrives, the proxy setup is updated by looking for
14269 http://wpat/wpad.dat and using the content of this WPAD file to
14270 configure the http and ftp proxy in /etc/environment and
14271 /etc/apt/apt.conf. I decided to update the proxy setup using a DHCP
14272 hook to ensure that the client stops using the Debian Edu proxy when
14273 it is moved outside the Debian Edu network, and instead uses any local
14274 proxy present on the new network when it moves around.&lt;/p&gt;
14275
14276 &lt;p&gt;The DNS names of the LDAP, Kerberos and syslog server and related
14277 configuration are generated using DNS information at boot. First the
14278 installer looks for a host named ldap in the current DNS domain. If
14279 not found, it looks for _ldap._tcp SRV records in DNS instead. If an
14280 LDAP server is found, its root DSE entry is requested and the
14281 attributes namingContexts and defaultNamingContext are used to
14282 determine which LDAP base to use for NSS. If there are several
14283 namingContexts attibutes and the defaultNamingContext is present, that
14284 LDAP subtree is used as the base. If defaultNamingContext is missing,
14285 the subtrees listed as namingContexts are searched in sequence for any
14286 object with class posixAccount or posixGroup, and the first one with
14287 such an object is used as the LDAP base. For Kerberos, a similar
14288 search is done by first looking for a host named kerberos, and then
14289 for the _kerberos._tcp SRV record. I&#39;ve been unable to find a way to
14290 look up the Kerberos realm, so for this the upper case string of the
14291 current DNS domain is used.&lt;/p&gt;
14292
14293 &lt;p&gt;For the syslog server, the hosts syslog and loghost are searched
14294 for, and the _syslog._udp SRV record is consulted if no such host is
14295 found. This algorithm works for both Debian Edu and the University of
14296 Oslo. A similar strategy would work for locating the sitesummary
14297 server, but have not been implemented yet. I decided to fetch and
14298 save these settings during installation, to make sure moving to a
14299 different network does not change the set of users being allowed to
14300 log in nor the passwords required to log in. Usernames and passwords
14301 will be cached by sssd when the user logs in on the Debian Edu
14302 network, and will not change as the laptop move around. For a
14303 non-roaming machine, there is no caching, but given that it is
14304 supposed to stay in place it should not matter much. Perhaps we
14305 should switch those to use sssd too?&lt;/p&gt;
14306
14307 &lt;p&gt;The user&#39;s SMB mount point for the network home directory is
14308 located when the user logs in for the first time. The LDAP server is
14309 consulted to look for the user&#39;s LDAP object and the sambaHomePath
14310 attribute is used if found. If it isn&#39;t found, the home directory
14311 path fetched from NSS is used instead. Assuming the path is of the
14312 form /site/server/directory/username, the second part is looked up in
14313 DNS and used to generate a SMB URL of the form
14314 smb://server.domain/username. This algorithm works for both Debian
14315 edu and the University of Oslo. Perhaps there are better attributes
14316 to use or a better algorithm that works for more sites, but this will
14317 do for now. :)&lt;/p&gt;
14318
14319 &lt;p&gt;This work should make it easier to integrate the Debian Edu clients
14320 into any LDAP/Kerberos infrastructure, and make the current setup even
14321 more flexible than before. I suspect it will also work for thin
14322 client servers, allowing one to easily set up LTSP and hook it into a
14323 existing network infrastructure, but I have not had time to test this
14324 yet.&lt;/p&gt;
14325
14326 &lt;p&gt;If you want to help out with implementing these things for Debian
14327 Edu, please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
14328
14329 &lt;p&gt;Update 2010-08-09: Simon Farnsworth gave me a heads-up on how to
14330 detect Kerberos realm from DNS, by looking for _kerberos TXT entries
14331 before falling back to the upper case DNS domain name. Will have to
14332 implement it for Debian Edu. :)&lt;/p&gt;
14333 </description>
14334 </item>
14335
14336 <item>
14337 <title>Testing if a file system can be used for home directories...</title>
14338 <link>http://people.skolelinux.org/pere/blog/Testing_if_a_file_system_can_be_used_for_home_directories___.html</link>
14339 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Testing_if_a_file_system_can_be_used_for_home_directories___.html</guid>
14340 <pubDate>Sun, 8 Aug 2010 21:20:00 +0200</pubDate>
14341 <description>&lt;p&gt;A few years ago, I was involved in a project planning to use
14342 Windows file servers as home directory servers for Debian
14343 Edu/Skolelinux machines. This was thought to be no problem, as the
14344 access would be through the SMB network file system protocol, and we
14345 knew other sites used SMB with unix and samba as the file server to
14346 mount home directories without any problems. But, after months of
14347 struggling, we had to conclude that our goal was impossible.&lt;/p&gt;
14348
14349 &lt;p&gt;The reason is simply that while SMB can be used for home
14350 directories when the file server is Samba running on Unix, this only
14351 work because of Samba have some extensions and the fact that the
14352 underlying file system is a unix file system. When using a Windows
14353 file server, the underlying file system do not have POSIX semantics,
14354 and several programs will fail if the users home directory where they
14355 want to store their configuration lack POSIX semantics.&lt;/p&gt;
14356
14357 &lt;p&gt;As part of this work, I wrote a small C program I want to share
14358 with you all, to replicate a few of the problematic applications (like
14359 OpenOffice.org and GCompris) and see if the file system was working as
14360 it should. If you find yourself in spooky file system land, it might
14361 help you find your way out again. This is the fs-test.c source:&lt;/p&gt;
14362
14363 &lt;pre&gt;
14364 /*
14365 * Some tests to check the file system sematics. Used to verify that
14366 * CIFS from a windows server do not work properly as a linux home
14367 * directory.
14368 * License: GPL v2 or later
14369 *
14370 * needs libsqlite3-dev and build-essential installed
14371 * compile with: gcc -Wall -lsqlite3 -DTEST_SQLITE fs-test.c -o fs-test
14372 */
14373
14374 #define _FILE_OFFSET_BITS 64
14375 #define _LARGEFILE_SOURCE 1
14376 #define _LARGEFILE64_SOURCE 1
14377
14378 #define _GNU_SOURCE /* for asprintf() */
14379
14380 #include &amp;lt;errno.h&gt;
14381 #include &amp;lt;fcntl.h&gt;
14382 #include &amp;lt;stdio.h&gt;
14383 #include &amp;lt;string.h&gt;
14384 #include &amp;lt;stdlib.h&gt;
14385 #include &amp;lt;sys/file.h&gt;
14386 #include &amp;lt;sys/stat.h&gt;
14387 #include &amp;lt;sys/types.h&gt;
14388 #include &amp;lt;unistd.h&gt;
14389
14390 #ifdef TEST_SQLITE
14391 /*
14392 * Test sqlite open, as done by gcompris require the libsqlite3-dev
14393 * package and linking with -lsqlite3. A more low level test is
14394 * below.
14395 * See also &amp;lt;URL: http://www.sqlite.org./faq.html#q5 &gt;.
14396 */
14397 #include &amp;lt;sqlite3.h&gt;
14398 #define CREATE_TABLE_USERS \
14399 &quot;CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); &quot;
14400 int test_sqlite_open(void) {
14401 char *zErrMsg;
14402 char *name = &quot;testsqlite.db&quot;;
14403 sqlite3 *db=NULL;
14404 unlink(name);
14405 int rc = sqlite3_open(name, &amp;db);
14406 if( rc ){
14407 printf(&quot;error: sqlite open of %s failed: %s\n&quot;, name, sqlite3_errmsg(db));
14408 sqlite3_close(db);
14409 return -1;
14410 }
14411
14412 /* create tables */
14413 rc = sqlite3_exec(db,CREATE_TABLE_USERS, NULL, 0, &amp;zErrMsg);
14414 if( rc != SQLITE_OK ){
14415 printf(&quot;error: sqlite table create failed: %s\n&quot;, zErrMsg);
14416 sqlite3_close(db);
14417 return -1;
14418 }
14419 printf(&quot;info: sqlite worked\n&quot;);
14420 sqlite3_close(db);
14421 return 0;
14422 }
14423 #endif /* TEST_SQLITE */
14424
14425 /*
14426 * Demonstrate locking issue found in gcompris using sqlite3. This
14427 * work with ext3, but not with cifs server on Windows 2003. This is
14428 * done in the sqlite3 library.
14429 * See also
14430 * &amp;lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html&gt; and the
14431 * POSIX specification
14432 * &amp;lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html&gt;.
14433 */
14434 int test_gcompris_locking(void) {
14435 struct flock fl;
14436 char *name = &quot;testsqlite.db&quot;;
14437 unlink(name);
14438 int fd = open(name, O_RDWR|O_CREAT|O_LARGEFILE, 0644);
14439 printf(&quot;info: testing fcntl locking\n&quot;);
14440
14441 fl.l_whence = SEEK_SET;
14442 fl.l_pid = getpid();
14443 printf(&quot; Read-locking 1 byte from 1073741824&quot;);
14444 fl.l_start = 1073741824;
14445 fl.l_len = 1;
14446 fl.l_type = F_RDLCK;
14447 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
14448
14449 printf(&quot; Read-locking 510 byte from 1073741826&quot;);
14450 fl.l_start = 1073741826;
14451 fl.l_len = 510;
14452 fl.l_type = F_RDLCK;
14453 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
14454
14455 printf(&quot; Unlocking 1 byte from 1073741824&quot;);
14456 fl.l_start = 1073741824;
14457 fl.l_len = 1;
14458 fl.l_type = F_UNLCK;
14459 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
14460
14461 printf(&quot; Write-locking 1 byte from 1073741824&quot;);
14462 fl.l_start = 1073741824;
14463 fl.l_len = 1;
14464 fl.l_type = F_WRLCK;
14465 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
14466
14467 printf(&quot; Write-locking 510 byte from 1073741826&quot;);
14468 fl.l_start = 1073741826;
14469 fl.l_len = 510;
14470 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
14471
14472 printf(&quot; Unlocking 2 byte from 1073741824&quot;);
14473 fl.l_start = 1073741824;
14474 fl.l_len = 2;
14475 fl.l_type = F_UNLCK;
14476 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
14477
14478 close(fd);
14479 return 0;
14480 }
14481
14482 /*
14483 * Test if permissions of freshly created directories allow entries
14484 * below them. This was a problem with OpenOffice.org and gcompris.
14485 * Mounting with option &#39;sync&#39; seem to solve this problem while
14486 * slowing down file operations.
14487 */
14488 int test_subdirectory_creation(void) {
14489 #define LEVELS 5
14490 char *path = strdup(&quot;test&quot;);
14491 char *dirs[LEVELS];
14492 int level;
14493 printf(&quot;info: testing subdirectory creation\n&quot;);
14494 for (level = 0; level &amp;lt; LEVELS; level++) {
14495 char *newpath = NULL;
14496 if (-1 == mkdir(path, 0777)) {
14497 printf(&quot; error: Unable to create directory &#39;%s&#39;: %s\n&quot;,
14498 path, strerror(errno));
14499 break;
14500 }
14501 asprintf(&amp;newpath, &quot;%s/%s&quot;, path, &quot;test&quot;);
14502 free(path);
14503 path = newpath;
14504 }
14505 return 0;
14506 }
14507
14508 /*
14509 * Test if symlinks can be created. This was a problem detected with
14510 * KDE.
14511 */
14512 int test_symlinks(void) {
14513 printf(&quot;info: testing symlink creation\n&quot;);
14514 unlink(&quot;symlink&quot;);
14515 if (-1 == symlink(&quot;file&quot;, &quot;symlink&quot;))
14516 printf(&quot; error: Unable to create symlink\n&quot;);
14517 return 0;
14518 }
14519
14520 int main(int argc, char **argv) {
14521 printf(&quot;Testing POSIX/Unix sematics on file system\n&quot;);
14522 test_symlinks();
14523 test_subdirectory_creation();
14524 #ifdef TEST_SQLITE
14525 test_sqlite_open();
14526 #endif /* TEST_SQLITE */
14527 test_gcompris_locking();
14528 return 0;
14529 }
14530 &lt;/pre&gt;
14531
14532 &lt;p&gt;When everything is working, it should print something like
14533 this:&lt;/p&gt;
14534
14535 &lt;pre&gt;
14536 Testing POSIX/Unix sematics on file system
14537 info: testing symlink creation
14538 info: testing subdirectory creation
14539 info: sqlite worked
14540 info: testing fcntl locking
14541 Read-locking 1 byte from 1073741824
14542 Read-locking 510 byte from 1073741826
14543 Unlocking 1 byte from 1073741824
14544 Write-locking 1 byte from 1073741824
14545 Write-locking 510 byte from 1073741826
14546 Unlocking 2 byte from 1073741824
14547 &lt;/pre&gt;
14548
14549 &lt;p&gt;I do not remember the exact details of the problems we saw, but one
14550 of them was with locking, where if I remember correctly, POSIX allow a
14551 read-only lock to be upgraded to a read-write lock without unlocking
14552 the read-only lock (while Windows do not). Another was a bug in the
14553 CIFS/SMB client implementation in the Linux kernel where directory
14554 meta information would be wrong for a fraction of a second, making
14555 OpenOffice.org fail to create its deep directory tree because it was
14556 not allowed to create files in its freshly created directory.&lt;/p&gt;
14557
14558 &lt;p&gt;Anyway, here is a nice tool for your tool box, might you never need
14559 it. :)&lt;/p&gt;
14560
14561 &lt;p&gt;Update 2010-08-27: Michael Gebetsroither report that he found the
14562 script so useful that he created a GIT repository and stored it in
14563 &lt;a href=&quot;http://github.com/gebi/fs-test&quot;&gt;http://github.com/gebi/fs-test&lt;/a&gt;.&lt;/p&gt;
14564 </description>
14565 </item>
14566
14567 <item>
14568 <title>Autodetecting Client setup for roaming workstations in Debian Edu</title>
14569 <link>http://people.skolelinux.org/pere/blog/Autodetecting_Client_setup_for_roaming_workstations_in_Debian_Edu.html</link>
14570 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Autodetecting_Client_setup_for_roaming_workstations_in_Debian_Edu.html</guid>
14571 <pubDate>Sat, 7 Aug 2010 14:45:00 +0200</pubDate>
14572 <description>&lt;p&gt;A few days ago, I
14573 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Debian_Edu_roaming_workstation___at_the_university_of_Oslo.html&quot;&gt;tried
14574 to install&lt;/a&gt; a Roaming workation profile from Debian Edu/Squeeze
14575 while on the university network here at the University of Oslo, and
14576 noticed how much had to change to get it operational using the
14577 university infrastructure. It was fairly easy, but it occured to me
14578 that Debian Edu would improve a lot if I could get the client to
14579 connect without any changes at all, and thus let the client configure
14580 itself during installation and first boot to use the infrastructure
14581 around it. Now I am a huge step further along that road.&lt;/p&gt;
14582
14583 &lt;p&gt;With our current squeeze-test packages, I can select the roaming
14584 workstation profile and get a working laptop connecting to the
14585 university LDAP server for user and group and our active directory
14586 servers for Kerberos authentication. All this without any
14587 configuration at all during installation. My users home directory got
14588 a bookmark in the KDE menu to mount it via SMB, with the correct URL.
14589 In short, openldap and sssd is correctly configured. In addition to
14590 this, the client look for http://wpad/wpad.dat to configure a web
14591 proxy, and when it fail to find it no proxy settings are stored in
14592 /etc/environment and /etc/apt/apt.conf. Iceweasel and KDE is
14593 configured to look for the same wpad configuration and also do not use
14594 a proxy when at the university network. If the machine is moved to a
14595 network with such wpad setup, it would automatically use it when DHCP
14596 gave it a IP address.&lt;/p&gt;
14597
14598 &lt;p&gt;The LDAP server is located using DNS, by first looking for the DNS
14599 entry ldap.$domain. If this do not exist, it look for the
14600 _ldap._tcp.$domain SRV records and use the first one as the LDAP
14601 server. Next, it connects to the LDAP server and search all
14602 namingContexts entries for posixAccount or posixGroup objects, and
14603 pick the first one as the LDAP base. For Kerberos, a similar
14604 algorithm is used to locate the LDAP server, and the realm is the
14605 uppercase version of $domain.&lt;/p&gt;
14606
14607 &lt;p&gt;So, what is not working, you might ask. SMB mounting my home
14608 directory do not work. No idea why, but suspected the incorrect
14609 Kerberos settings in /etc/krb5.conf and /etc/samba/smb.conf might be
14610 the cause. These are not properly configured during installation, and
14611 had to be hand-edited to get the correct Kerberos realm and server,
14612 but SMB mounting still do not work. :(&lt;/p&gt;
14613
14614 &lt;p&gt;With this automatic configuration in place, I expect a Debian Edu
14615 roaming profile installation would be able to automatically detect and
14616 connect to any site using LDAP and Kerberos for NSS directory and PAM
14617 authentication. It should also work out of the box in a Active
14618 Directory environment providing posixAccount and posixGroup objects
14619 with UID and GID values.&lt;/p&gt;
14620
14621 &lt;p&gt;If you want to help out with implementing these things for Debian
14622 Edu, please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
14623 </description>
14624 </item>
14625
14626 <item>
14627 <title>Debian Edu roaming workstation - at the university of Oslo</title>
14628 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_roaming_workstation___at_the_university_of_Oslo.html</link>
14629 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_roaming_workstation___at_the_university_of_Oslo.html</guid>
14630 <pubDate>Tue, 3 Aug 2010 23:30:00 +0200</pubDate>
14631 <description>&lt;p&gt;The new roaming workstation profile in Debian Edu/Squeeze is fairly
14632 similar to the laptop setup am I working on using Ubuntu for the
14633 University of Oslo, and just for the heck of it, I tested today how
14634 hard it would be to integrate that profile into the university
14635 infrastructure. In this case, it is the university LDAP server,
14636 Active Directory Kerberos server and SMB mounting from the Netapp file
14637 servers.&lt;/p&gt;
14638
14639 &lt;p&gt;I was pleasantly surprised that the only three files needed to be
14640 changed (/etc/sssd/sssd.conf, /etc/ldap.conf and
14641 /etc/mklocaluser.d/20-debian-edu-config) and one file had to be added
14642 (/usr/share/perl5/Debian/Edu_Local.pm), to get the client working.
14643 Most of the changes were to get the client to use the university LDAP
14644 for NSS and Kerberos server for PAM, but one was to change a hard
14645 coded DNS domain name in the mklocaluser hook from .intern to
14646 .uio.no.&lt;/p&gt;
14647
14648 &lt;p&gt;This testing was so encouraging, that I went ahead and adjusted the
14649 Debian Edu scripts and setup in subversion to centralise the roaming
14650 workstation setup a bit more and avoid the hardcoded DNS domain name,
14651 so that when I test this tomorrow, I expect to get away with modifying
14652 only /etc/sssd/sssd.conf and /etc/ldap.conf to get it to use the
14653 university servers.&lt;/p&gt;
14654
14655 &lt;p&gt;My goal is to get the clients to have no hardcoded settings and
14656 fetch all their initial setup during installation and first boot, to
14657 allow them to be inserted also into environments where the default
14658 setup in Debian Edu has been changed or as with the university, where
14659 the environment is different but provides the protocols Debian Edu
14660 uses.&lt;/p&gt;
14661 </description>
14662 </item>
14663
14664 <item>
14665 <title>Circular package dependencies harms apt recovery</title>
14666 <link>http://people.skolelinux.org/pere/blog/Circular_package_dependencies_harms_apt_recovery.html</link>
14667 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Circular_package_dependencies_harms_apt_recovery.html</guid>
14668 <pubDate>Tue, 27 Jul 2010 23:50:00 +0200</pubDate>
14669 <description>&lt;p&gt;I discovered this while doing
14670 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Automatic_upgrade_testing_from_Lenny_to_Squeeze.html&quot;&gt;automated
14671 testing of upgrades from Debian Lenny to Squeeze&lt;/a&gt;. A few packages
14672 in Debian still got circular dependencies, and it is often claimed
14673 that apt and aptitude should be able to handle this just fine, but
14674 some times these dependency loops causes apt to fail.&lt;/p&gt;
14675
14676 &lt;p&gt;An example is from todays
14677 &lt;a href=&quot;http://people.skolelinux.org/~pere/debian-upgrade-testing//test-20100727-lenny-squeeze-kde-aptitude.txt&quot;&gt;upgrade
14678 of KDE using aptitude&lt;/a&gt;. In it, a bug in kdebase-workspace-data
14679 causes perl-modules to fail to upgrade. The cause is simple. If a
14680 package fail to unpack, then only part of packages with the circular
14681 dependency might end up being unpacked when unpacking aborts, and the
14682 ones already unpacked will fail to configure in the recovery phase
14683 because its dependencies are unavailable.&lt;/p&gt;
14684
14685 &lt;p&gt;In this log, the problem manifest itself with this error:&lt;/p&gt;
14686
14687 &lt;blockquote&gt;&lt;pre&gt;
14688 dpkg: dependency problems prevent configuration of perl-modules:
14689 perl-modules depends on perl (&gt;= 5.10.1-1); however:
14690 Version of perl on system is 5.10.0-19lenny2.
14691 dpkg: error processing perl-modules (--configure):
14692 dependency problems - leaving unconfigured
14693 &lt;/pre&gt;&lt;/blockquote&gt;
14694
14695 &lt;p&gt;The perl/perl-modules circular dependency is already
14696 &lt;a href=&quot;http://bugs.debian.org/527917&quot;&gt;reported as a bug&lt;/a&gt;, and will
14697 hopefully be solved as soon as possible, but it is not the only one,
14698 and each one of these loops in the dependency tree can cause similar
14699 failures. Of course, they only occur when there are bugs in other
14700 packages causing the unpacking to fail, but it is rather nasty when
14701 the failure of one package causes the problem to become worse because
14702 of dependency loops.&lt;/p&gt;
14703
14704 &lt;p&gt;Thanks to
14705 &lt;a href=&quot;http://lists.debian.org/debian-devel/2010/06/msg00116.html&quot;&gt;the
14706 tireless effort by Bill Allombert&lt;/a&gt;, the number of circular
14707 dependencies
14708 &lt;a href=&quot;http://debian.semistable.com/debgraph.out.html&quot;&gt;left in Debian
14709 is dropping&lt;/a&gt;, and perhaps it will reach zero one day. :)&lt;/p&gt;
14710
14711 &lt;p&gt;Todays testing also exposed a bug in
14712 &lt;a href=&quot;http://bugs.debian.org/590605&quot;&gt;update-notifier&lt;/a&gt; and
14713 &lt;a href=&quot;http://bugs.debian.org/590604&quot;&gt;different behaviour&lt;/a&gt; between
14714 apt-get and aptitude, the latter possibly caused by some circular
14715 dependency. Reported both to BTS to try to get someone to look at
14716 it.&lt;/p&gt;
14717 </description>
14718 </item>
14719
14720 <item>
14721 <title>First Debian Edu test release (alpha0) based on Squeeze is released</title>
14722 <link>http://people.skolelinux.org/pere/blog/First_Debian_Edu_test_release__alpha0__based_on_Squeeze_is_released.html</link>
14723 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_Debian_Edu_test_release__alpha0__based_on_Squeeze_is_released.html</guid>
14724 <pubDate>Tue, 27 Jul 2010 17:45:00 +0200</pubDate>
14725 <description>&lt;p&gt;I just posted this announcement culminating several months of work
14726 with the next Debian Edu release. Not nearly done, but one major step
14727 completed.&lt;/p&gt;
14728
14729 &lt;blockquote&gt;
14730 &lt;p&gt;This is the first test release based on Squeeze. The focus of this
14731 release is to test the user application selection. To have a look,
14732 install the standalone profile and let the developers know if the set
14733 of installed packages i.e. applications should be modified. If some
14734 user application is missing, or if there are some applications that no
14735 longer make sense to be included in Debian Edu, please let us know.
14736 Also, if a useful application is missing the translation for your
14737 language of choice, please let us know too.&lt;/p&gt;
14738
14739 &lt;p&gt;In addition, feedback and help to polish the desktop (menus,
14740 artwork, starters, etc.) is appreciated. We would like to ship a nice
14741 and handy KDE4 desktop targeted for schools out of the box.&lt;/p&gt;
14742
14743 &lt;p&gt;The other profiles should be installable, but there is a lot more
14744 work left to be done before they are ready, so do not expect to
14745 much.&lt;/p&gt;
14746
14747 &lt;p&gt;Changes compared to the lenny based version&lt;/p&gt;
14748
14749 &lt;ul&gt;
14750 &lt;li&gt;Everything from Debian Squeeze
14751 &lt;ul&gt;
14752 &lt;li&gt;Desktop environment KDE 4.4 =&gt; the new KDE desktop in
14753 combination with some new artwork
14754 &lt;li&gt;Web browser Iceweasel 3.5
14755 &lt;li&gt;OpenOffice.org 3.2
14756 &lt;li&gt;Educational toolbox GCompris 9.3
14757 &lt;li&gt;Music creator Rosegarden 10.04.2
14758 &lt;li&gt;Image editor Gimp 2.6.10
14759 &lt;li&gt;Virtual universe Celestia 1.6.0
14760 &lt;li&gt;Virtual stargazer Stellarium 0.10.4
14761 &lt;li&gt;3D modeler Blender 2.49.2 (new application)
14762 &lt;li&gt;Video editor Kdenlive 0.7.7 (new application)
14763 &lt;/ul&gt;&lt;/li&gt;
14764 &lt;li&gt;Now using Kerberos for password checking (migration not finished).
14765 Enabled for:
14766 &lt;ul&gt;
14767 &lt;li&gt;PAM
14768 &lt;li&gt;LDAP
14769 &lt;li&gt;IMAP
14770 &lt;li&gt;SMTP (sender verification)
14771 &lt;/ul&gt;
14772 &lt;/li&gt;
14773 &lt;li&gt;New experimental roaming workstation profile for laptops.&lt;/li&gt;
14774 &lt;li&gt;Show welcome page to users when they first log in. The URL is
14775 fetched from LDAP.&lt;/li&gt;
14776 &lt;li&gt;New LXDE desktop option, in addition to KDE (default) and Gnome.&lt;/li&gt;
14777 &lt;li&gt;General cleanup (not finished)&lt;/li&gt;
14778 &lt;/ul&gt;
14779 &lt;p&gt;The following features are not working as they should&lt;/p&gt;
14780
14781 &lt;ul&gt;
14782 &lt;li&gt;No web based administration tool for creating users and groups. The
14783 scripts ldap-createuser-krb and ldap-add-user-to-group can be used
14784 for testing.&lt;/li&gt;
14785 &lt;li&gt;DVD installs are missing debian-installer images for the PXE boot,
14786 and do not set up the PXE menu on eth0 because of this. LTSP
14787 clients should still boot from eth1 on thin client servers.&lt;/li&gt;
14788 &lt;li&gt;The restructured KDE menu is not implemented.&lt;/li&gt;
14789 &lt;li&gt;The LDAP server setup need to be reviewed for security.&lt;/li&gt;
14790 &lt;li&gt;The LDAP directory structure need to be reworked.&lt;/li&gt;
14791 &lt;li&gt;Different sets of packages are installed when using the DVD and the
14792 netinst CD. More packages are installed using the netinst CD.&lt;/li&gt;
14793 &lt;li&gt;The jackd package fail to install. This is believed to be caused by
14794 some ongoing transition, and hopefully should be solved soon. The
14795 jackd1 package can be installed manually for those that need it.&lt;/li&gt;
14796 &lt;li&gt;Some packages lack translations. See
14797 http://wiki.debian.org/DebianEdu/Status/Squeeze for updated status,
14798 and help out with translations.&lt;/li&gt;
14799 &lt;/ul&gt;
14800
14801 &lt;p&gt;To download this multiarch netinstall release you can use&lt;/p&gt;
14802
14803 &lt;ul&gt;
14804 &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;
14805 &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;
14806 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-CD.iso&lt;/li&gt;
14807 &lt;/ul&gt;
14808 &lt;p&gt;To download this multiarch dvd release you can use&lt;/p&gt;
14809
14810 &lt;ul&gt;
14811 &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;
14812 &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;
14813 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-DVD.iso&lt;/li&gt;
14814 &lt;/ul&gt;
14815
14816 &lt;p&gt;There is no source DVD available yet. It will be prepared when we
14817 get closer to the final release.&lt;/p&gt;
14818
14819 &lt;p&gt;The MD5SUM of these images are&lt;/p&gt;
14820
14821 &lt;ul&gt;
14822 &lt;li&gt;3dbf45d59f42a53518b6e3c9ec3b5eb6 debian-edu-6.0.0+edua0-CD.iso&lt;/li&gt;
14823 &lt;li&gt;22f2cbfce281d1c6e478be452638675d debian-edu-6.0.0+edua0-DVD.iso&lt;/li&gt;
14824 &lt;/ul&gt;
14825
14826 &lt;p&gt;The SHA1SUM of these images are&lt;/p&gt;
14827 &lt;ul&gt;
14828 &lt;li&gt;c53d1b69b40cf37cd27aefaf33f6f6a3821bedf0 debian-edu-6.0.0+edua0-CD.iso&lt;/li&gt;
14829 &lt;li&gt;2ec29d7db676d59d32197b05c277ffe16348376c debian-edu-6.0.0+edua0-DVD.iso&lt;/li&gt;
14830 &lt;/ul&gt;
14831 &lt;p&gt;How to report bugs:
14832 http://wiki.debian.org/DebianEdu/HowTo/ReportBugsInBugzilla&lt;/p&gt;
14833
14834 &lt;p&gt;Please direct replies to debian-edu@lists.debian.org&lt;/p&gt;
14835 &lt;/blockquote&gt;
14836 </description>
14837 </item>
14838
14839 <item>
14840 <title>One step closer to single signon in Debian Edu</title>
14841 <link>http://people.skolelinux.org/pere/blog/One_step_closer_to_single_signon_in_Debian_Edu.html</link>
14842 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/One_step_closer_to_single_signon_in_Debian_Edu.html</guid>
14843 <pubDate>Sun, 25 Jul 2010 10:00:00 +0200</pubDate>
14844 <description>&lt;p&gt;The last few months me and the other Debian Edu developers have
14845 been working hard to get the Debian/Squeeze based version of Debian
14846 Edu/Skolelinux into shape. This future version will use Kerberos for
14847 authentication, and services are slowly migrated to single signon,
14848 getting rid of password questions one at the time.&lt;/p&gt;
14849
14850 &lt;p&gt;It will also feature a roaming workstation profile with local home
14851 directory, for laptops that are only some times on the Skolelinux
14852 network, and for this profile a shortcut is created in Gnome and KDE
14853 to gain access to the users home directory on the file server. This
14854 shortcut uses SMB at the moment, and yesterday I had time to test if
14855 SMB mounting had started working in KDE after we added the cifs-utils
14856 package. I was pleasantly surprised how well it worked.&lt;/p&gt;
14857
14858 &lt;p&gt;Thanks to the recent changes to our samba configuration to get it
14859 to use Kerberos for authentication, there were no question about user
14860 password when mounting the SMB volume. A simple click on the shortcut
14861 in the KDE menu, and a window with the home directory popped
14862 up. :)&lt;/p&gt;
14863
14864 &lt;p&gt;One step closer to a single signon solution out of the box in
14865 Debian Edu. We already had PAM, LDAP, IMAP and SMTP in place, and now
14866 also Samba. Next step is Cups and hopefully also NFS.&lt;/p&gt;
14867
14868 &lt;p&gt;We had planned a alpha0 release of Debian Edu for today, but thanks
14869 to the autobuilder administrators for some architectures being slow to
14870 sign packages, we are still missing the fixed LTSP package we need for
14871 the release. It was uploaded three days ago with urgency=high, and if
14872 it had entered testing yesterday we would have been able to test it in
14873 time for a alpha0 release today. As the binaries for ia64 and powerpc
14874 still not uploaded to the Debian archive, we need to delay the alpha
14875 release another day.&lt;/p&gt;
14876
14877 &lt;p&gt;If you want to help out with implementing Kerberos for Debian Edu,
14878 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
14879 </description>
14880 </item>
14881
14882 <item>
14883 <title>OpenStreetmap one step closer to having routing on its front page</title>
14884 <link>http://people.skolelinux.org/pere/blog/OpenStreetmap_one_step_closer_to_having_routing_on_its_front_page.html</link>
14885 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/OpenStreetmap_one_step_closer_to_having_routing_on_its_front_page.html</guid>
14886 <pubDate>Sun, 18 Jul 2010 16:45:00 +0200</pubDate>
14887 <description>&lt;p&gt;Thanks to
14888 &lt;a href=&quot;http://feedproxy.google.com/~r/Opengeodata/~3/wUTCzDZk3lc/project-of-the-week-which-way-home&quot;&gt;todays
14889 opengeodata blog entry&lt;/a&gt;, I just discovered that the
14890 OpenStreetmap.org site have gotten
14891 &lt;a href=&quot;http://nroets.dev.openstreetmap.org/demo/index.html?layers=B000FTFTT&quot;&gt;support
14892 for calculating routes&lt;/a&gt;. The support is still experimental and
14893 only available from the development server, until more experience is
14894 gathered on the user interface and any scalability issues.&lt;/p&gt;
14895
14896 &lt;p&gt;Earlier, the routing I knew about using the OpenStreetmap.org data
14897 was provided by &lt;a href=&quot;http://maps.cloudmade.com/&quot;&gt;Cloudmade&lt;/a&gt;,
14898 but having it on the main page is required to make everyone aware of
14899 the issue. I&#39;ve had people reject Openstreetmap.org as a viable
14900 alternative for them because the front page lacked routing support,
14901 and I hope their needs will be catered for when routing show up on the
14902 www.openstreetmap.org front page.&lt;/p&gt;
14903 </description>
14904 </item>
14905
14906 <item>
14907 <title>What are they searching for - PowerDNS and ISC DHCP in LDAP</title>
14908 <link>http://people.skolelinux.org/pere/blog/What_are_they_searching_for___PowerDNS_and_ISC_DHCP_in_LDAP.html</link>
14909 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/What_are_they_searching_for___PowerDNS_and_ISC_DHCP_in_LDAP.html</guid>
14910 <pubDate>Sat, 17 Jul 2010 21:00:00 +0200</pubDate>
14911 <description>&lt;p&gt;This is a
14912 &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;
14913 on my
14914 &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
14915 work&lt;/a&gt; on
14916 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Combining_PowerDNS_and_ISC_DHCP_LDAP_objects.html&quot;&gt;merging
14917 all&lt;/a&gt; the computer related LDAP objects in Debian Edu.&lt;/p&gt;
14918
14919 &lt;p&gt;As a step to try to see if it possible to merge the DNS and DHCP
14920 LDAP objects, I have had a look at how the packages pdns-backend-ldap
14921 and dhcp3-server-ldap in Debian use the LDAP server. The two
14922 implementations are quite different in how they use LDAP.&lt;/p&gt;
14923
14924 To get this information, I started slapd with debugging enabled and
14925 dumped the debug output to a file to get the LDAP searches performed
14926 on a Debian Edu main-server. Here is a summary.
14927
14928 &lt;p&gt;&lt;strong&gt;powerdns&lt;/strong&gt;&lt;/p&gt;
14929
14930 &lt;a href=&quot;http://www.linuxnetworks.de/doc/index.php/PowerDNS_LDAP_Backend&quot;&gt;Clues
14931 on how to&lt;/a&gt; set up PowerDNS to use a LDAP backend is available on
14932 the web.
14933
14934 &lt;p&gt;PowerDNS have two modes of operation using LDAP as its backend.
14935 One &quot;strict&quot; mode where the forward and reverse DNS lookups are done
14936 using the same LDAP objects, and a &quot;tree&quot; mode where the forward and
14937 reverse entries are in two different subtrees in LDAP with a structure
14938 based on the DNS names, as in tjener.intern and
14939 2.2.0.10.in-addr.arpa.&lt;/p&gt;
14940
14941 &lt;p&gt;In tree mode, the server is set up to use a LDAP subtree as its
14942 base, and uses a &quot;base&quot; scoped search for the DNS name by adding
14943 &quot;dc=tjener,dc=intern,&quot; to the base with a filter for
14944 &quot;(associateddomain=tjener.intern)&quot; for the forward entry and
14945 &quot;dc=2,dc=2,dc=0,dc=10,dc=in-addr,dc=arpa,&quot; with a filter for
14946 &quot;(associateddomain=2.2.0.10.in-addr.arpa)&quot; for the reverse entry. For
14947 forward entries, it is looking for attributes named dnsttl, arecord,
14948 nsrecord, cnamerecord, soarecord, ptrrecord, hinforecord, mxrecord,
14949 txtrecord, rprecord, afsdbrecord, keyrecord, aaaarecord, locrecord,
14950 srvrecord, naptrrecord, kxrecord, certrecord, dsrecord, sshfprecord,
14951 ipseckeyrecord, rrsigrecord, nsecrecord, dnskeyrecord, dhcidrecord,
14952 spfrecord and modifytimestamp. For reverse entries it is looking for
14953 the attributes dnsttl, arecord, nsrecord, cnamerecord, soarecord,
14954 ptrrecord, hinforecord, mxrecord, txtrecord, rprecord, aaaarecord,
14955 locrecord, srvrecord, naptrrecord and modifytimestamp. The equivalent
14956 ldapsearch commands could look like this:&lt;/p&gt;
14957
14958 &lt;blockquote&gt;&lt;pre&gt;
14959 ldapsearch -h ldap \
14960 -b dc=tjener,dc=intern,ou=hosts,dc=skole,dc=skolelinux,dc=no \
14961 -s base -x &#39;(associateddomain=tjener.intern)&#39; dNSTTL aRecord nSRecord \
14962 cNAMERecord sOARecord pTRRecord hInfoRecord mXRecord tXTRecord \
14963 rPRecord aFSDBRecord KeyRecord aAAARecord lOCRecord sRVRecord \
14964 nAPTRRecord kXRecord certRecord dSRecord sSHFPRecord iPSecKeyRecord \
14965 rRSIGRecord nSECRecord dNSKeyRecord dHCIDRecord sPFRecord modifyTimestamp
14966
14967 ldapsearch -h ldap \
14968 -b dc=2,dc=2,dc=0,dc=10,dc=in-addr,dc=arpa,ou=hosts,dc=skole,dc=skolelinux,dc=no \
14969 -s base -x &#39;(associateddomain=2.2.0.10.in-addr.arpa)&#39;
14970 dnsttl, arecord, nsrecord, cnamerecord soarecord ptrrecord \
14971 hinforecord mxrecord txtrecord rprecord aaaarecord locrecord \
14972 srvrecord naptrrecord modifytimestamp
14973 &lt;/pre&gt;&lt;/blockquote&gt;
14974
14975 &lt;p&gt;In Debian Edu/Lenny, the PowerDNS tree mode is used with
14976 ou=hosts,dc=skole,dc=skolelinux,dc=no as the base, and these are two
14977 example LDAP objects used there. In addition to these objects, the
14978 parent objects all th way up to ou=hosts,dc=skole,dc=skolelinux,dc=no
14979 also exist.&lt;/p&gt;
14980
14981 &lt;blockquote&gt;&lt;pre&gt;
14982 dn: dc=tjener,dc=intern,ou=hosts,dc=skole,dc=skolelinux,dc=no
14983 objectclass: top
14984 objectclass: dnsdomain
14985 objectclass: domainrelatedobject
14986 dc: tjener
14987 arecord: 10.0.2.2
14988 associateddomain: tjener.intern
14989
14990 dn: dc=2,dc=2,dc=0,dc=10,dc=in-addr,dc=arpa,ou=hosts,dc=skole,dc=skolelinux,dc=no
14991 objectclass: top
14992 objectclass: dnsdomain2
14993 objectclass: domainrelatedobject
14994 dc: 2
14995 ptrrecord: tjener.intern
14996 associateddomain: 2.2.0.10.in-addr.arpa
14997 &lt;/pre&gt;&lt;/blockquote&gt;
14998
14999 &lt;p&gt;In strict mode, the server behaves differently. When looking for
15000 forward DNS entries, it is doing a &quot;subtree&quot; scoped search with the
15001 same base as in the tree mode for a object with filter
15002 &quot;(associateddomain=tjener.intern)&quot; and requests the attributes dnsttl,
15003 arecord, nsrecord, cnamerecord, soarecord, ptrrecord, hinforecord,
15004 mxrecord, txtrecord, rprecord, aaaarecord, locrecord, srvrecord,
15005 naptrrecord and modifytimestamp. For reverse entires it also do a
15006 subtree scoped search but this time the filter is &quot;(arecord=10.0.2.2)&quot;
15007 and the requested attributes are associateddomain, dnsttl and
15008 modifytimestamp. In short, in strict mode the objects with ptrrecord
15009 go away, and the arecord attribute in the forward object is used
15010 instead.&lt;/p&gt;
15011
15012 &lt;p&gt;The forward and reverse searches can be simulated using ldapsearch
15013 like this:&lt;/p&gt;
15014
15015 &lt;blockquote&gt;&lt;pre&gt;
15016 ldapsearch -h ldap -b ou=hosts,dc=skole,dc=skolelinux,dc=no -s sub -x \
15017 &#39;(associateddomain=tjener.intern)&#39; dNSTTL aRecord nSRecord \
15018 cNAMERecord sOARecord pTRRecord hInfoRecord mXRecord tXTRecord \
15019 rPRecord aFSDBRecord KeyRecord aAAARecord lOCRecord sRVRecord \
15020 nAPTRRecord kXRecord certRecord dSRecord sSHFPRecord iPSecKeyRecord \
15021 rRSIGRecord nSECRecord dNSKeyRecord dHCIDRecord sPFRecord modifyTimestamp
15022
15023 ldapsearch -h ldap -b ou=hosts,dc=skole,dc=skolelinux,dc=no -s sub -x \
15024 &#39;(arecord=10.0.2.2)&#39; associateddomain dnsttl modifytimestamp
15025 &lt;/pre&gt;&lt;/blockquote&gt;
15026
15027 &lt;p&gt;In addition to the forward and reverse searches , there is also a
15028 search for SOA records, which behave similar to the forward and
15029 reverse lookups.&lt;/p&gt;
15030
15031 &lt;p&gt;A thing to note with the PowerDNS behaviour is that it do not
15032 specify any objectclass names, and instead look for the attributes it
15033 need to generate a DNS reply. This make it able to work with any
15034 objectclass that provide the needed attributes.&lt;/p&gt;
15035
15036 &lt;p&gt;The attributes are normally provided in the cosine (RFC 1274) and
15037 dnsdomain2 schemas. The latter is used for reverse entries like
15038 ptrrecord and recent DNS additions like aaaarecord and srvrecord.&lt;/p&gt;
15039
15040 &lt;p&gt;In Debian Edu, we have created DNS objects using the object classes
15041 dcobject (for dc), dnsdomain or dnsdomain2 (structural, for the DNS
15042 attributes) and domainrelatedobject (for associatedDomain). The use
15043 of structural object classes make it impossible to combine these
15044 classes with the object classes used by DHCP.&lt;/p&gt;
15045
15046 &lt;p&gt;There are other schemas that could be used too, for example the
15047 dnszone structural object class used by Gosa and bind-sdb for the DNS
15048 attributes combined with the domainrelatedobject object class, but in
15049 this case some unused attributes would have to be included as well
15050 (zonename and relativedomainname).&lt;/p&gt;
15051
15052 &lt;p&gt;My proposal for Debian Edu would be to switch PowerDNS to strict
15053 mode and not use any of the existing objectclasses (dnsdomain,
15054 dnsdomain2 and dnszone) when one want to combine the DNS information
15055 with DHCP information, and instead create a auxiliary object class
15056 defined something like this (using the attributes defined for
15057 dnsdomain and dnsdomain2 or dnszone):&lt;/p&gt;
15058
15059 &lt;blockquote&gt;&lt;pre&gt;
15060 objectclass ( some-oid NAME &#39;dnsDomainAux&#39;
15061 SUP top
15062 AUXILIARY
15063 MAY ( ARecord $ MDRecord $ MXRecord $ NSRecord $ SOARecord $ CNAMERecord $
15064 DNSTTL $ DNSClass $ PTRRecord $ HINFORecord $ MINFORecord $
15065 TXTRecord $ SIGRecord $ KEYRecord $ AAAARecord $ LOCRecord $
15066 NXTRecord $ SRVRecord $ NAPTRRecord $ KXRecord $ CERTRecord $
15067 A6Record $ DNAMERecord
15068 ))
15069 &lt;/pre&gt;&lt;/blockquote&gt;
15070
15071 &lt;p&gt;This will allow any object to become a DNS entry when combined with
15072 the domainrelatedobject object class, and allow any entity to include
15073 all the attributes PowerDNS wants. I&#39;ve sent an email to the PowerDNS
15074 developers asking for their view on this schema and if they are
15075 interested in providing such schema with PowerDNS, and I hope my
15076 message will be accepted into their mailing list soon.&lt;/p&gt;
15077
15078 &lt;p&gt;&lt;strong&gt;ISC dhcp&lt;/strong&gt;&lt;/p&gt;
15079
15080 &lt;p&gt;The DHCP server searches for specific objectclass and requests all
15081 the object attributes, and then uses the attributes it want. This
15082 make it harder to figure out exactly what attributes are used, but
15083 thanks to the working example in Debian Edu I can at least get an idea
15084 what is needed without having to read the source code.&lt;/p&gt;
15085
15086 &lt;p&gt;In the DHCP server configuration, the LDAP base to use and the
15087 search filter to use to locate the correct dhcpServer entity is
15088 stored. These are the relevant entries from
15089 /etc/dhcp3/dhcpd.conf:&lt;/p&gt;
15090
15091 &lt;blockquote&gt;&lt;pre&gt;
15092 ldap-base-dn &quot;dc=skole,dc=skolelinux,dc=no&quot;;
15093 ldap-dhcp-server-cn &quot;dhcp&quot;;
15094 &lt;/pre&gt;&lt;/blockquote&gt;
15095
15096 &lt;p&gt;The DHCP server uses this information to nest all the DHCP
15097 configuration it need. The cn &quot;dhcp&quot; is located using the given LDAP
15098 base and the filter &quot;(&amp;(objectClass=dhcpServer)(cn=dhcp))&quot;. The
15099 search result is this entry:&lt;/p&gt;
15100
15101 &lt;blockquote&gt;&lt;pre&gt;
15102 dn: cn=dhcp,dc=skole,dc=skolelinux,dc=no
15103 cn: dhcp
15104 objectClass: top
15105 objectClass: dhcpServer
15106 dhcpServiceDN: cn=DHCP Config,dc=skole,dc=skolelinux,dc=no
15107 &lt;/pre&gt;&lt;/blockquote&gt;
15108
15109 &lt;p&gt;The content of the dhcpServiceDN attribute is next used to locate the
15110 subtree with DHCP configuration. The DHCP configuration subtree base
15111 is located using a base scope search with base &quot;cn=DHCP
15112 Config,dc=skole,dc=skolelinux,dc=no&quot; and filter
15113 &quot;(&amp;(objectClass=dhcpService)(|(dhcpPrimaryDN=cn=dhcp,dc=skole,dc=skolelinux,dc=no)(dhcpSecondaryDN=cn=dhcp,dc=skole,dc=skolelinux,dc=no)))&quot;.
15114 The search result is this entry:&lt;/p&gt;
15115
15116 &lt;blockquote&gt;&lt;pre&gt;
15117 dn: cn=DHCP Config,dc=skole,dc=skolelinux,dc=no
15118 cn: DHCP Config
15119 objectClass: top
15120 objectClass: dhcpService
15121 objectClass: dhcpOptions
15122 dhcpPrimaryDN: cn=dhcp, dc=skole,dc=skolelinux,dc=no
15123 dhcpStatements: ddns-update-style none
15124 dhcpStatements: authoritative
15125 dhcpOption: smtp-server code 69 = array of ip-address
15126 dhcpOption: www-server code 72 = array of ip-address
15127 dhcpOption: wpad-url code 252 = text
15128 &lt;/pre&gt;&lt;/blockquote&gt;
15129
15130 &lt;p&gt;Next, the entire subtree is processed, one level at the time. When
15131 all the DHCP configuration is loaded, it is ready to receive requests.
15132 The subtree in Debian Edu contain objects with object classes
15133 top/dhcpService/dhcpOptions, top/dhcpSharedNetwork/dhcpOptions,
15134 top/dhcpSubnet, top/dhcpGroup and top/dhcpHost. These provide options
15135 and information about netmasks, dynamic range etc. Leaving out the
15136 details here because it is not relevant for the focus of my
15137 investigation, which is to see if it is possible to merge dns and dhcp
15138 related computer objects.&lt;/p&gt;
15139
15140 &lt;p&gt;When a DHCP request come in, LDAP is searched for the MAC address
15141 of the client (00:00:00:00:00:00 in this example), using a subtree
15142 scoped search with &quot;cn=DHCP Config,dc=skole,dc=skolelinux,dc=no&quot; as
15143 the base and &quot;(&amp;(objectClass=dhcpHost)(dhcpHWAddress=ethernet
15144 00:00:00:00:00:00))&quot; as the filter. This is what a host object look
15145 like:&lt;/p&gt;
15146
15147 &lt;blockquote&gt;&lt;pre&gt;
15148 dn: cn=hostname,cn=group1,cn=THINCLIENTS,cn=DHCP Config,dc=skole,dc=skolelinux,dc=no
15149 cn: hostname
15150 objectClass: top
15151 objectClass: dhcpHost
15152 dhcpHWAddress: ethernet 00:00:00:00:00:00
15153 dhcpStatements: fixed-address hostname
15154 &lt;/pre&gt;&lt;/blockquote&gt;
15155
15156 &lt;p&gt;There is less flexiblity in the way LDAP searches are done here.
15157 The object classes need to have fixed names, and the configuration
15158 need to be stored in a fairly specific LDAP structure. On the
15159 positive side, the invidiual dhcpHost entires can be anywhere without
15160 the DN pointed to by the dhcpServer entries. The latter should make
15161 it possible to group all host entries in a subtree next to the
15162 configuration entries, and this subtree can also be shared with the
15163 DNS server if the schema proposed above is combined with the dhcpHost
15164 structural object class.
15165
15166 &lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;/p&gt;
15167
15168 &lt;p&gt;The PowerDNS implementation seem to be very flexible when it come
15169 to which LDAP schemas to use. While its &quot;tree&quot; mode is rigid when it
15170 come to the the LDAP structure, the &quot;strict&quot; mode is very flexible,
15171 allowing DNS objects to be stored anywhere under the base cn specified
15172 in the configuration.&lt;/p&gt;
15173
15174 &lt;p&gt;The DHCP implementation on the other hand is very inflexible, both
15175 regarding which LDAP schemas to use and which LDAP structure to use.
15176 I guess one could implement ones own schema, as long as the
15177 objectclasses and attributes have the names used, but this do not
15178 really help when the DHCP subtree need to have a fairly fixed
15179 structure.&lt;/p&gt;
15180
15181 &lt;p&gt;Based on the observed behaviour, I suspect a LDAP structure like
15182 this might work for Debian Edu:&lt;/p&gt;
15183
15184 &lt;blockquote&gt;&lt;pre&gt;
15185 ou=services
15186 cn=machine-info (dhcpService) - dhcpServiceDN points here
15187 cn=dhcp (dhcpServer)
15188 cn=dhcp-internal (dhcpSharedNetwork/dhcpOptions)
15189 cn=10.0.2.0 (dhcpSubnet)
15190 cn=group1 (dhcpGroup/dhcpOptions)
15191 cn=dhcp-thinclients (dhcpSharedNetwork/dhcpOptions)
15192 cn=192.168.0.0 (dhcpSubnet)
15193 cn=group1 (dhcpGroup/dhcpOptions)
15194 ou=machines - PowerDNS base points here
15195 cn=hostname (dhcpHost/domainrelatedobject/dnsDomainAux)
15196 &lt;/pre&gt;&lt;/blockquote&gt;
15197
15198 &lt;P&gt;This is not tested yet. If the DHCP server require the dhcpHost
15199 entries to be in the dhcpGroup subtrees, the entries can be stored
15200 there instead of a common machines subtree, and the PowerDNS base
15201 would have to be moved one level up to the machine-info subtree.&lt;/p&gt;
15202
15203 &lt;p&gt;The combined object under the machines subtree would look something
15204 like this:&lt;/p&gt;
15205
15206 &lt;blockquote&gt;&lt;pre&gt;
15207 dn: dc=hostname,ou=machines,cn=machine-info,dc=skole,dc=skolelinux,dc=no
15208 dc: hostname
15209 objectClass: top
15210 objectClass: dhcpHost
15211 objectclass: domainrelatedobject
15212 objectclass: dnsDomainAux
15213 associateddomain: hostname.intern
15214 arecord: 10.11.12.13
15215 dhcpHWAddress: ethernet 00:00:00:00:00:00
15216 dhcpStatements: fixed-address hostname.intern
15217 &lt;/pre&gt;&lt;/blockquote&gt;
15218
15219 &lt;/p&gt;One could even add the LTSP configuration associated with a given
15220 machine, as long as the required attributes are available in a
15221 auxiliary object class.&lt;/p&gt;
15222 </description>
15223 </item>
15224
15225 <item>
15226 <title>Combining PowerDNS and ISC DHCP LDAP objects</title>
15227 <link>http://people.skolelinux.org/pere/blog/Combining_PowerDNS_and_ISC_DHCP_LDAP_objects.html</link>
15228 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Combining_PowerDNS_and_ISC_DHCP_LDAP_objects.html</guid>
15229 <pubDate>Wed, 14 Jul 2010 23:45:00 +0200</pubDate>
15230 <description>&lt;p&gt;For a while now, I have wanted to find a way to change the DNS and
15231 DHCP services in Debian Edu to use the same LDAP objects for a given
15232 computer, to avoid the possibility of having a inconsistent state for
15233 a computer in LDAP (as in DHCP but no DNS entry or the other way
15234 around) and make it easier to add computers to LDAP.&lt;/p&gt;
15235
15236 &lt;p&gt;I&#39;ve looked at how powerdns and dhcpd is using LDAP, and using this
15237 information finally found a solution that seem to work.&lt;/p&gt;
15238
15239 &lt;p&gt;The old setup required three LDAP objects for a given computer.
15240 One forward DNS entry, one reverse DNS entry and one DHCP entry. If
15241 we switch powerdns to use its strict LDAP method (ldap-method=strict
15242 in pdns-debian-edu.conf), the forward and reverse DNS entries are
15243 merged into one while making it impossible to transfer the reverse map
15244 to a slave DNS server.&lt;/p&gt;
15245
15246 &lt;p&gt;If we also replace the object class used to get the DNS related
15247 attributes to one allowing these attributes to be combined with the
15248 dhcphost object class, we can merge the DNS and DHCP entries into one.
15249 I&#39;ve written such object class in the dnsdomainaux.schema file (need
15250 proper OIDs, but that is a minor issue), and tested the setup. It
15251 seem to work.&lt;/p&gt;
15252
15253 &lt;p&gt;With this test setup in place, we can get away with one LDAP object
15254 for both DNS and DHCP, and even the LTSP configuration I suggested in
15255 an earlier email. The combined LDAP object will look something like
15256 this:&lt;/p&gt;
15257
15258 &lt;blockquote&gt;&lt;pre&gt;
15259 dn: cn=hostname,cn=group1,cn=THINCLIENTS,cn=DHCP Config,dc=skole,dc=skolelinux,dc=no
15260 cn: hostname
15261 objectClass: dhcphost
15262 objectclass: domainrelatedobject
15263 objectclass: dnsdomainaux
15264 associateddomain: hostname.intern
15265 arecord: 10.11.12.13
15266 dhcphwaddress: ethernet 00:00:00:00:00:00
15267 dhcpstatements: fixed-address hostname
15268 ldapconfigsound: Y
15269 &lt;/pre&gt;&lt;/blockquote&gt;
15270
15271 &lt;p&gt;The DNS server uses the associateddomain and arecord entries, while
15272 the DHCP server uses the dhcphwaddress and dhcpstatements entries
15273 before asking DNS to resolve the fixed-adddress. LTSP will use
15274 dhcphwaddress or associateddomain and the ldapconfig* attributes.&lt;/p&gt;
15275
15276 &lt;p&gt;I am not yet sure if I can get the DHCP server to look for its
15277 dhcphost in a different location, to allow us to put the objects
15278 outside the &quot;DHCP Config&quot; subtree, but hope to figure out a way to do
15279 that. If I can&#39;t figure out a way to do that, we can still get rid of
15280 the hosts subtree and move all its content into the DHCP Config tree
15281 (which probably should be renamed to be more related to the new
15282 content. I suspect cn=dnsdhcp,ou=services or something like that
15283 might be a good place to put it.&lt;/p&gt;
15284
15285 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
15286 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
15287 </description>
15288 </item>
15289
15290 <item>
15291 <title>Idea for storing LTSP configuration in LDAP</title>
15292 <link>http://people.skolelinux.org/pere/blog/Idea_for_storing_LTSP_configuration_in_LDAP.html</link>
15293 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Idea_for_storing_LTSP_configuration_in_LDAP.html</guid>
15294 <pubDate>Sun, 11 Jul 2010 22:00:00 +0200</pubDate>
15295 <description>&lt;p&gt;Vagrant mentioned on IRC today that ltsp_config now support
15296 sourcing files from /usr/share/ltsp/ltsp_config.d/ on the thin
15297 clients, and that this can be used to fetch configuration from LDAP if
15298 Debian Edu choose to store configuration there.&lt;/p&gt;
15299
15300 &lt;p&gt;Armed with this information, I got inspired and wrote a test module
15301 to get configuration from LDAP. The idea is to look up the MAC
15302 address of the client in LDAP, and look for attributes on the form
15303 ltspconfigsetting=value, and use this to export SETTING=value to the
15304 LTSP clients.&lt;/p&gt;
15305
15306 &lt;p&gt;The goal is to be able to store the LTSP configuration attributes
15307 in a &quot;computer&quot; LDAP object used by both DNS and DHCP, and thus
15308 allowing us to store all information about a computer in one place.&lt;/p&gt;
15309
15310 &lt;p&gt;This is a untested draft implementation, and I welcome feedback on
15311 this approach. A real LDAP schema for the ltspClientAux objectclass
15312 need to be written. Comments, suggestions, etc?&lt;/p&gt;
15313
15314 &lt;blockquote&gt;&lt;pre&gt;
15315 # Store in /opt/ltsp/$arch/usr/share/ltsp/ltsp_config.d/ldap-config
15316 #
15317 # Fetch LTSP client settings from LDAP based on MAC address
15318 #
15319 # Uses ethernet address as stored in the dhcpHost objectclass using
15320 # the dhcpHWAddress attribute or ethernet address stored in the
15321 # ieee802Device objectclass with the macAddress attribute.
15322 #
15323 # This module is written to be schema agnostic, and only depend on the
15324 # existence of attribute names.
15325 #
15326 # The LTSP configuration variables are saved directly using a
15327 # ltspConfig prefix and uppercasing the rest of the attribute name.
15328 # To set the SERVER variable, set the ltspConfigServer attribute.
15329 #
15330 # Some LDAP schema should be created with all the relevant
15331 # configuration settings. Something like this should work:
15332 #
15333 # objectclass ( 1.1.2.2 NAME &#39;ltspClientAux&#39;
15334 # SUP top
15335 # AUXILIARY
15336 # MAY ( ltspConfigServer $ ltsConfigSound $ ... )
15337
15338 LDAPSERVER=$(debian-edu-ldapserver)
15339 if [ &quot;$LDAPSERVER&quot; ] ; then
15340 LDAPBASE=$(debian-edu-ldapserver -b)
15341 for MAC in $(LANG=C ifconfig |grep -i hwaddr| awk &#39;{print $5}&#39;|sort -u) ; do
15342 filter=&quot;(|(dhcpHWAddress=ethernet $MAC)(macAddress=$MAC))&quot;
15343 ldapsearch -h &quot;$LDAPSERVER&quot; -b &quot;$LDAPBASE&quot; -v -x &quot;$filter&quot; | \
15344 grep &#39;^ltspConfig&#39; | while read attr value ; do
15345 # Remove prefix and convert to upper case
15346 attr=$(echo $attr | sed &#39;s/^ltspConfig//i&#39; | tr a-z A-Z)
15347 # bass value on to clients
15348 eval &quot;$attr=$value; export $attr&quot;
15349 done
15350 done
15351 fi
15352 &lt;/pre&gt;&lt;/blockquote&gt;
15353
15354 &lt;p&gt;I&#39;m not sure this shell construction will work, because I suspect
15355 the while block might end up in a subshell causing the variables set
15356 there to not show up in ltsp-config, but if that is the case I am sure
15357 the code can be restructured to make sure the variables are passed on.
15358 I expect that can be solved with some testing. :)&lt;/p&gt;
15359
15360 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
15361 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
15362
15363 &lt;p&gt;Update 2010-07-17: I am aware of another effort to store LTSP
15364 configuration in LDAP that was created around year 2000 by
15365 &lt;a href=&quot;http://www.pcxperience.com/thinclient/documentation/ldap.html&quot;&gt;PC
15366 Xperience, Inc., 2000&lt;/a&gt;. I found its
15367 &lt;a href=&quot;http://people.redhat.com/alikins/ltsp/ldap/&quot;&gt;files&lt;/a&gt; on a
15368 personal home page over at redhat.com.&lt;/p&gt;
15369 </description>
15370 </item>
15371
15372 <item>
15373 <title>jXplorer, a very nice LDAP GUI</title>
15374 <link>http://people.skolelinux.org/pere/blog/jXplorer__a_very_nice_LDAP_GUI.html</link>
15375 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/jXplorer__a_very_nice_LDAP_GUI.html</guid>
15376 <pubDate>Fri, 9 Jul 2010 12:55:00 +0200</pubDate>
15377 <description>&lt;p&gt;Since
15378 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/LUMA__a_very_nice_LDAP_GUI.html&quot;&gt;my
15379 last post&lt;/a&gt; about available LDAP tools in Debian, I was told about a
15380 LDAP GUI that is even better than luma. The java application
15381 &lt;a href=&quot;http://jxplorer.org/&quot;&gt;jXplorer&lt;/a&gt; is claimed to be capable of
15382 moving LDAP objects and subtrees using drag-and-drop, and can
15383 authenticate using Kerberos. I have only tested the Kerberos
15384 authentication, but do not have a LDAP setup allowing me to rewrite
15385 LDAP with my test user yet. It is
15386 &lt;a href=&quot;http://packages.qa.debian.org/j/jxplorer.html&quot;&gt;available in
15387 Debian&lt;/a&gt; testing and unstable at the moment. The only problem I
15388 have with it is how it handle errors. If something go wrong, its
15389 non-intuitive behaviour require me to go through some query work list
15390 and remove the failing query. Nothing big, but very annoying.&lt;/p&gt;
15391 </description>
15392 </item>
15393
15394 <item>
15395 <title>Lenny-&gt;Squeeze upgrades, apt vs aptitude with the Gnome desktop</title>
15396 <link>http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__apt_vs_aptitude_with_the_Gnome_desktop.html</link>
15397 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__apt_vs_aptitude_with_the_Gnome_desktop.html</guid>
15398 <pubDate>Sat, 3 Jul 2010 23:55:00 +0200</pubDate>
15399 <description>&lt;p&gt;Here is a short update on my &lt;a
15400 href=&quot;http://people.skolelinux.org/~pere/debian-upgrade-testing/&quot;&gt;my
15401 Debian Lenny-&gt;Squeeze upgrade testing&lt;/a&gt;. Here is a summary of the
15402 difference for Gnome when it is upgraded by apt-get and aptitude. I&#39;m
15403 not reporting the status for KDE, because the upgrade crashes when
15404 aptitude try because of missing conflicts
15405 (&lt;a href=&quot;http://bugs.debian.org/584861&quot;&gt;#584861&lt;/a&gt; and
15406 &lt;a href=&quot;http://bugs.debian.org/585716&quot;&gt;#585716&lt;/a&gt;).&lt;/p&gt;
15407
15408 &lt;p&gt;At the end of the upgrade test script, dpkg -l is executed to get a
15409 complete list of the installed packages. Based on this I see these
15410 differences when I did a test run today. As usual, I do not really
15411 know what the correct set of packages would be, but thought it best to
15412 publish the difference.&lt;/p&gt;
15413
15414 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
15415
15416 &lt;blockquote&gt;&lt;p&gt;
15417 at-spi cpp-4.3 finger gnome-spell gstreamer0.10-gnomevfs
15418 libatspi1.0-0 libcupsys2 libeel2-data libgail-common libgdl-1-common
15419 libgnomeprint2.2-data libgnomeprintui2.2-common libgnomevfs2-bin
15420 libgtksourceview-common libpt-1.10.10-plugins-alsa
15421 libpt-1.10.10-plugins-v4l libservlet2.4-java libxalan2-java
15422 libxerces2-java openoffice.org-writer2latex openssl-blacklist p7zip
15423 python-4suite-xml python-eggtrayicon python-gtkhtml2
15424 python-gtkmozembed svgalibg1 xserver-xephyr zip
15425 &lt;/p&gt;&lt;/blockquote&gt;
15426
15427 &lt;p&gt;Installed using apt-get, removed with aptitude&lt;/p&gt;
15428
15429 &lt;blockquote&gt;&lt;p&gt;
15430 bluez-utils dhcdbd djvulibre-desktop epiphany-gecko
15431 gnome-app-install gnome-mount gnome-vfs-obexftp gnome-volume-manager
15432 libao2 libavahi-compat-libdnssd1 libavahi-core5 libbind9-50
15433 libbluetooth2 libcamel1.2-11 libcdio7 libcucul0 libcurl3
15434 libdirectfb-1.0-0 libdvdread3 libedata-cal1.2-6 libedataserver1.2-9
15435 libeel2-2.20 libepc-1.0-1 libepc-ui-1.0-1 libexchange-storage1.2-3
15436 libfaad0 libgd2-noxpm libgda3-3 libgda3-common libggz2 libggzcore9
15437 libggzmod4 libgksu1.2-0 libgksuui1.0-1 libgmyth0 libgnome-desktop-2
15438 libgnome-pilot2 libgnomecups1.0-1 libgnomeprint2.2-0
15439 libgnomeprintui2.2-0 libgpod3 libgraphviz4 libgtkhtml2-0
15440 libgtksourceview1.0-0 libgucharmap6 libhesiod0 libicu38 libisccc50
15441 libisccfg50 libiw29 libkpathsea4 libltdl3 liblwres50 libmagick++10
15442 libmagick10 libmalaga7 libmtp7 libmysqlclient15off libnautilus-burn4
15443 libneon27 libnm-glib0 libnm-util0 libopal-2.2 libosp5
15444 libparted1.8-10 libpisock9 libpisync1 libpoppler-glib3 libpoppler3
15445 libpt-1.10.10 libraw1394-8 libsensors3 libsmbios2 libsoup2.2-8
15446 libssh2-1 libsuitesparse-3.1.0 libswfdec-0.6-90 libtalloc1
15447 libtotem-plparser10 libtrackerclient0 libvoikko1 libxalan2-java-gcj
15448 libxerces2-java-gcj libxklavier12 libxtrap6 libxxf86misc1 libzephyr3
15449 mysql-common swfdec-gnome totem-gstreamer wodim
15450 &lt;/p&gt;&lt;/blockquote&gt;
15451
15452 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
15453
15454 &lt;blockquote&gt;&lt;p&gt;
15455 gnome gnome-desktop-environment hamster-applet python-gnomeapplet
15456 python-gnomekeyring python-wnck rhythmbox-plugins xorg
15457 xserver-xorg-input-all xserver-xorg-input-evdev
15458 xserver-xorg-input-kbd xserver-xorg-input-mouse
15459 xserver-xorg-input-synaptics xserver-xorg-video-all
15460 xserver-xorg-video-apm xserver-xorg-video-ark xserver-xorg-video-ati
15461 xserver-xorg-video-chips xserver-xorg-video-cirrus
15462 xserver-xorg-video-dummy xserver-xorg-video-fbdev
15463 xserver-xorg-video-glint xserver-xorg-video-i128
15464 xserver-xorg-video-i740 xserver-xorg-video-mach64
15465 xserver-xorg-video-mga xserver-xorg-video-neomagic
15466 xserver-xorg-video-nouveau xserver-xorg-video-nv
15467 xserver-xorg-video-r128 xserver-xorg-video-radeon
15468 xserver-xorg-video-radeonhd xserver-xorg-video-rendition
15469 xserver-xorg-video-s3 xserver-xorg-video-s3virge
15470 xserver-xorg-video-savage xserver-xorg-video-siliconmotion
15471 xserver-xorg-video-sis xserver-xorg-video-sisusb
15472 xserver-xorg-video-tdfx xserver-xorg-video-tga
15473 xserver-xorg-video-trident xserver-xorg-video-tseng
15474 xserver-xorg-video-vesa xserver-xorg-video-vmware
15475 xserver-xorg-video-voodoo
15476 &lt;/p&gt;&lt;/blockquote&gt;
15477
15478 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
15479
15480 &lt;blockquote&gt;&lt;p&gt;
15481 deskbar-applet xserver-xorg xserver-xorg-core
15482 xserver-xorg-input-wacom xserver-xorg-video-intel
15483 xserver-xorg-video-openchrome
15484 &lt;/p&gt;&lt;/blockquote&gt;
15485
15486 &lt;p&gt;I was told on IRC that the xorg-xserver package was
15487 &lt;a href=&quot;http://git.debian.org/?p=pkg-xorg/xserver/xorg-server.git;a=commit;h=9c8080d06c457932d3bfec021c69ac000aa60120&quot;&gt;changed
15488 in git&lt;/a&gt; today to try to get apt-get to not remove xorg completely.
15489 No idea when it hits Squeeze, but when it does I hope it will reduce
15490 the difference somewhat.
15491 </description>
15492 </item>
15493
15494 <item>
15495 <title>Caching password, user and group on a roaming Debian laptop</title>
15496 <link>http://people.skolelinux.org/pere/blog/Caching_password__user_and_group_on_a_roaming_Debian_laptop.html</link>
15497 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Caching_password__user_and_group_on_a_roaming_Debian_laptop.html</guid>
15498 <pubDate>Thu, 1 Jul 2010 11:40:00 +0200</pubDate>
15499 <description>&lt;p&gt;For a laptop, centralized user directories and password checking is
15500 a bit troubling. Laptops are typically used also when not connected
15501 to the network, and it is vital for a user to be able to log in or
15502 unlock the screen saver also when a central server is unavailable.
15503 This is possible by caching passwords and directory information (user
15504 and group attributes) locally, and the packages to do so are available
15505 in Debian. Here follow two recipes to set this up in Debian/Squeeze.
15506 It is also possible to set up in Debian/Lenny, but require more manual
15507 setup there because pam-auth-update is missing in Lenny.&lt;/p&gt;
15508
15509 &lt;h2&gt;LDAP/Kerberos + nscd + libpam-ccreds + libpam-mklocaluser/pam_mkhomedir&lt;/h2&gt;
15510
15511 This is the traditional method with a twist. The password caching is
15512 provided by libpam-ccreds (version 10-4 or later is needed on
15513 Squeeze), and the directory caching is done by nscd. The directory
15514 lookup and password checking is done using LDAP. If one want to use
15515 Kerberos for password checking the libpam-ldapd package can be
15516 replaced with libpam-krb5 or libpam-heimdal. If one is happy having a
15517 local home directory with the path listed in LDAP, one can use the
15518 pam_mkhomedir module from pam-modules to make this happen instead of
15519 using libpam-mklocaluser. A setup for pam-auth-update to enable
15520 pam_mkhomedir will have to be written until a fix for
15521 &lt;a href=&quot;http://bugs.debian.org/568577&quot;&gt;bug #568577&lt;/a&gt; is in the
15522 archive. Because I believe it is a bad idea to have local home
15523 directories using misleading paths like /site/server/partition/, I
15524 prefer to create a local user with the home directory in /home/. This
15525 is done using the libpam-mklocaluser package.&lt;/p&gt;
15526
15527 &lt;p&gt;These packages need to be installed and configured&lt;/p&gt;
15528
15529 &lt;blockquote&gt;&lt;pre&gt;
15530 libnss-ldapd libpam-ldapd nscd libpam-ccreds libpam-mklocaluser
15531 &lt;/pre&gt;&lt;/blockquote&gt;
15532
15533 &lt;p&gt;The ldapd packages will ask for LDAP connection information, and
15534 one have to fill in the values that fits ones own site. Make sure the
15535 PAM part uses encrypted connections, to make sure the password is not
15536 sent in clear text to the LDAP server. I&#39;ve been unable to get TLS
15537 certificate checking for a self signed certificate working, which make
15538 LDAP authentication unsafe for Debian Edu (nslcd is not checking if it
15539 is talking to the correct LDAP server), and very much welcome feedback
15540 on how to get this working.&lt;/p&gt;
15541
15542 &lt;p&gt;Because nscd do not have a default configuration fit for offline
15543 caching until &lt;a href=&quot;http://bugs.debian.org/485282&quot;&gt;bug #485282&lt;/a&gt;
15544 is fixed, this configuration should be used instead of the one
15545 currently in /etc/nscd.conf. The changes are in the fields
15546 reload-count and positive-time-to-live, and is based on the
15547 instructions I found in the
15548 &lt;a href=&quot;http://www.flyn.org/laptopldap/&quot;&gt;LDAP for Mobile Laptops&lt;/a&gt;
15549 instructions by Flyn Computing.&lt;/p&gt;
15550
15551 &lt;blockquote&gt;&lt;pre&gt;
15552 debug-level 0
15553 reload-count unlimited
15554 paranoia no
15555
15556 enable-cache passwd yes
15557 positive-time-to-live passwd 2592000
15558 negative-time-to-live passwd 20
15559 suggested-size passwd 211
15560 check-files passwd yes
15561 persistent passwd yes
15562 shared passwd yes
15563 max-db-size passwd 33554432
15564 auto-propagate passwd yes
15565
15566 enable-cache group yes
15567 positive-time-to-live group 2592000
15568 negative-time-to-live group 20
15569 suggested-size group 211
15570 check-files group yes
15571 persistent group yes
15572 shared group yes
15573 max-db-size group 33554432
15574 auto-propagate group yes
15575
15576 enable-cache hosts no
15577 positive-time-to-live hosts 2592000
15578 negative-time-to-live hosts 20
15579 suggested-size hosts 211
15580 check-files hosts yes
15581 persistent hosts yes
15582 shared hosts yes
15583 max-db-size hosts 33554432
15584
15585 enable-cache services yes
15586 positive-time-to-live services 2592000
15587 negative-time-to-live services 20
15588 suggested-size services 211
15589 check-files services yes
15590 persistent services yes
15591 shared services yes
15592 max-db-size services 33554432
15593 &lt;/pre&gt;&lt;/blockquote&gt;
15594
15595 &lt;p&gt;While we wait for a mechanism to update /etc/nsswitch.conf
15596 automatically like the one provided in
15597 &lt;a href=&quot;http://bugs.debian.org/496915&quot;&gt;bug #496915&lt;/a&gt;, the file
15598 content need to be manually replaced to ensure LDAP is used as the
15599 directory service on the machine. /etc/nsswitch.conf should normally
15600 look like this:&lt;/p&gt;
15601
15602 &lt;blockquote&gt;&lt;pre&gt;
15603 passwd: files ldap
15604 group: files ldap
15605 shadow: files ldap
15606 hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4
15607 networks: files
15608 protocols: files
15609 services: files
15610 ethers: files
15611 rpc: files
15612 netgroup: files ldap
15613 &lt;/pre&gt;&lt;/blockquote&gt;
15614
15615 &lt;p&gt;The important parts are that ldap is listed last for passwd, group,
15616 shadow and netgroup.&lt;/p&gt;
15617
15618 &lt;p&gt;With these changes in place, any user in LDAP will be able to log
15619 in locally on the machine using for example kdm, get a local home
15620 directory created and have the password as well as user and group
15621 attributes cached.
15622
15623 &lt;h2&gt;LDAP/Kerberos + nss-updatedb + libpam-ccreds +
15624 libpam-mklocaluser/pam_mkhomedir&lt;/h2&gt;
15625
15626 &lt;p&gt;Because nscd have had its share of problems, and seem to have
15627 problems doing proper caching, I&#39;ve seen suggestions and recipes to
15628 use nss-updatedb to copy parts of the LDAP database locally when the
15629 LDAP database is available. I have not tested such setup, because I
15630 discovered sssd.&lt;/p&gt;
15631
15632 &lt;h2&gt;LDAP/Kerberos + sssd + libpam-mklocaluser&lt;/h2&gt;
15633
15634 &lt;p&gt;A more flexible and robust setup than the nscd combination
15635 mentioned earlier that has shown up recently, is the
15636 &lt;a href=&quot;https://fedorahosted.org/sssd/&quot;&gt;sssd&lt;/a&gt; package from Redhat.
15637 It is part of the &lt;a href=&quot;http://www.freeipa.org/&quot;&gt;FreeIPA&lt;/A&gt; project
15638 to provide a Active Directory like directory service for Linux
15639 machines. The sssd system combines the caching of passwords and user
15640 information into one package, and remove the need for nscd and
15641 libpam-ccreds. It support LDAP and Kerberos, but not NIS. Version
15642 1.2 do not support netgroups, but it is said that it will support this
15643 in version 1.5 expected to show up later in 2010. Because the
15644 &lt;a href=&quot;http://packages.qa.debian.org/s/sssd.html&quot;&gt;sssd package&lt;/a&gt;
15645 was missing in Debian, I ended up co-maintaining it with Werner, and
15646 version 1.2 is now in testing.
15647
15648 &lt;p&gt;These packages need to be installed and configured to get the
15649 roaming setup I want&lt;/p&gt;
15650
15651 &lt;blockquote&gt;&lt;pre&gt;
15652 libpam-sss libnss-sss libpam-mklocaluser
15653 &lt;/pre&gt;&lt;/blockquote&gt;
15654
15655 The complete setup of sssd is done by editing/creating
15656 &lt;tt&gt;/etc/sssd/sssd.conf&lt;/tt&gt;.
15657
15658 &lt;blockquote&gt;&lt;pre&gt;
15659 [sssd]
15660 config_file_version = 2
15661 reconnection_retries = 3
15662 sbus_timeout = 30
15663 services = nss, pam
15664 domains = INTERN
15665
15666 [nss]
15667 filter_groups = root
15668 filter_users = root
15669 reconnection_retries = 3
15670
15671 [pam]
15672 reconnection_retries = 3
15673
15674 [domain/INTERN]
15675 enumerate = false
15676 cache_credentials = true
15677
15678 id_provider = ldap
15679 auth_provider = ldap
15680 chpass_provider = ldap
15681
15682 ldap_uri = ldap://ldap
15683 ldap_search_base = dc=skole,dc=skolelinux,dc=no
15684 ldap_tls_reqcert = never
15685 ldap_tls_cacert = /etc/ssl/certs/ca-certificates.crt
15686 &lt;/pre&gt;&lt;/blockquote&gt;
15687
15688 &lt;p&gt;I got the same problem here with certificate checking. Had to set
15689 &quot;ldap_tls_reqcert = never&quot; to get it working.&lt;/p&gt;
15690
15691 &lt;p&gt;With the libnss-sss package in testing at the moment, the
15692 nsswitch.conf file is update automatically, so there is no need to
15693 modify it manually.&lt;/p&gt;
15694
15695 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
15696 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
15697 </description>
15698 </item>
15699
15700 <item>
15701 <title>LUMA, a very nice LDAP GUI</title>
15702 <link>http://people.skolelinux.org/pere/blog/LUMA__a_very_nice_LDAP_GUI.html</link>
15703 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/LUMA__a_very_nice_LDAP_GUI.html</guid>
15704 <pubDate>Mon, 28 Jun 2010 00:30:00 +0200</pubDate>
15705 <description>&lt;p&gt;The last few days I have been looking into the status of the LDAP
15706 directory in Debian Edu, and in the process I started to miss a GUI
15707 tool to browse the LDAP tree. The only one I was able to find in
15708 Debian/Squeeze and Lenny is
15709 &lt;a href=&quot;http://luma.sourceforge.net/&quot;&gt;LUMA&lt;/a&gt;, which has proved to
15710 be a great tool to get a overview of the current LDAP directory
15711 populated by default in Skolelinux. Thanks to it, I have been able to
15712 find empty and obsolete subtrees, misplaced objects and duplicate
15713 objects. It will be installed by default in Debian/Squeeze. If you
15714 are working with LDAP, give it a go. :)&lt;/p&gt;
15715
15716 &lt;p&gt;I did notice one problem with it I have not had time to report to
15717 the BTS yet. There is no .desktop file in the package, so the tool do
15718 not show up in the Gnome and KDE menus, but only deep down in in the
15719 Debian submenu in KDE. I hope that can be fixed before Squeeze is
15720 released.&lt;/p&gt;
15721
15722 &lt;p&gt;I have not yet been able to get it to modify the tree yet. I would
15723 like to move objects and remove subtrees directly in the GUI, but have
15724 not found a way to do that with LUMA yet. So in the mean time, I use
15725 &lt;a href=&quot;http://www.lichteblau.com/ldapvi/&quot;&gt;ldapvi&lt;/a&gt; for that.&lt;/p&gt;
15726
15727 &lt;p&gt;If you have tips on other GUI tools for LDAP that might be useful
15728 in Debian Edu, please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
15729
15730 &lt;p&gt;Update 2010-06-29: Ross Reedstrom tipped us about the
15731 &lt;a href=&quot;http://packages.qa.debian.org/g/gq.html&quot;&gt;gq&lt;/a&gt; package as a
15732 useful GUI alternative. It seem like a good tool, but is unmaintained
15733 in Debian and got a RC bug keeping it out of Squeeze. Unless that
15734 changes, it will not be an option for Debian Edu based on Squeeze.&lt;/p&gt;
15735 </description>
15736 </item>
15737
15738 <item>
15739 <title>Idea for a change to LDAP schemas allowing DNS and DHCP info to be combined into one object</title>
15740 <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>
15741 <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>
15742 <pubDate>Thu, 24 Jun 2010 00:35:00 +0200</pubDate>
15743 <description>&lt;p&gt;A while back, I
15744 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Time_for_new__LDAP_schemas_replacing_RFC_2307_.html&quot;&gt;complained
15745 about the fact&lt;/a&gt; that it is not possible with the provided schemas
15746 for storing DNS and DHCP information in LDAP to combine the two sets
15747 of information into one LDAP object representing a computer.&lt;/p&gt;
15748
15749 &lt;p&gt;In the mean time, I discovered that a simple fix would be to make
15750 the dhcpHost object class auxiliary, to allow it to be combined with
15751 the dNSDomain object class, and thus forming one object for one
15752 computer when storing both DHCP and DNS information in LDAP.&lt;/p&gt;
15753
15754 &lt;p&gt;If I understand this correctly, it is not safe to do this change
15755 without also changing the assigned number for the object class, and I
15756 do not know enough about LDAP schema design to do that properly for
15757 Debian Edu.&lt;/p&gt;
15758
15759 &lt;p&gt;Anyway, for future reference, this is how I believe we could change
15760 the
15761 &lt;a href=&quot;http://tools.ietf.org/html/draft-ietf-dhc-ldap-schema-00&quot;&gt;DHCP
15762 schema&lt;/a&gt; to solve at least part of the problem with the LDAP schemas
15763 available today from IETF.&lt;/p&gt;
15764
15765 &lt;pre&gt;
15766 --- dhcp.schema (revision 65192)
15767 +++ dhcp.schema (working copy)
15768 @@ -376,7 +376,7 @@
15769 objectclass ( 2.16.840.1.113719.1.203.6.6
15770 NAME &#39;dhcpHost&#39;
15771 DESC &#39;This represents information about a particular client&#39;
15772 - SUP top
15773 + SUP top AUXILIARY
15774 MUST cn
15775 MAY (dhcpLeaseDN $ dhcpHWAddress $ dhcpOptionsDN $ dhcpStatements $ dhcpComments $ dhcpOption)
15776 X-NDS_CONTAINMENT (&#39;dhcpService&#39; &#39;dhcpSubnet&#39; &#39;dhcpGroup&#39;) )
15777 &lt;/pre&gt;
15778
15779 &lt;p&gt;I very much welcome clues on how to do this properly for Debian
15780 Edu/Squeeze. We provide the DHCP schema in our debian-edu-config
15781 package, and should thus be free to rewrite it as we see fit.&lt;/p&gt;
15782
15783 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
15784 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
15785 </description>
15786 </item>
15787
15788 <item>
15789 <title>Calling tasksel like the installer, while still getting useful output</title>
15790 <link>http://people.skolelinux.org/pere/blog/Calling_tasksel_like_the_installer__while_still_getting_useful_output.html</link>
15791 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Calling_tasksel_like_the_installer__while_still_getting_useful_output.html</guid>
15792 <pubDate>Wed, 16 Jun 2010 14:55:00 +0200</pubDate>
15793 <description>&lt;p&gt;A few times I have had the need to simulate the way tasksel
15794 installs packages during the normal debian-installer run. Until now,
15795 I have ended up letting tasksel do the work, with the annoying problem
15796 of not getting any feedback at all when something fails (like a
15797 conffile question from dpkg or a download that fails), using code like
15798 this:
15799
15800 &lt;blockquote&gt;&lt;pre&gt;
15801 export DEBIAN_FRONTEND=noninteractive
15802 tasksel --new-install
15803 &lt;/pre&gt;&lt;/blockquote&gt;
15804
15805 This would invoke tasksel, let its automatic task selection pick the
15806 tasks to install, and continue to install the requested tasks without
15807 any output what so ever.
15808
15809 Recently I revisited this problem while working on the automatic
15810 package upgrade testing, because tasksel would some times hang without
15811 any useful feedback, and I want to see what is going on when it
15812 happen. Then it occured to me, I can parse the output from tasksel
15813 when asked to run in test mode, and use that aptitude command line
15814 printed by tasksel then to simulate the tasksel run. I ended up using
15815 code like this:
15816
15817 &lt;blockquote&gt;&lt;pre&gt;
15818 export DEBIAN_FRONTEND=noninteractive
15819 cmd=&quot;$(in_target tasksel -t --new-install | sed &#39;s/debconf-apt-progress -- //&#39;)&quot;
15820 $cmd
15821 &lt;/pre&gt;&lt;/blockquote&gt;
15822
15823 &lt;p&gt;The content of $cmd is typically something like &quot;&lt;tt&gt;aptitude -q
15824 --without-recommends -o APT::Install-Recommends=no -y install
15825 ~t^desktop$ ~t^gnome-desktop$ ~t^laptop$ ~pstandard ~prequired
15826 ~pimportant&lt;/tt&gt;&quot;, which will install the gnome desktop task, the
15827 laptop task and all packages with priority standard , required and
15828 important, just like tasksel would have done it during
15829 installation.&lt;/p&gt;
15830
15831 &lt;p&gt;A better approach is probably to extend tasksel to be able to
15832 install packages without using debconf-apt-progress, for use cases
15833 like this.&lt;/p&gt;
15834 </description>
15835 </item>
15836
15837 <item>
15838 <title>Officeshots taking shape</title>
15839 <link>http://people.skolelinux.org/pere/blog/Officeshots_taking_shape.html</link>
15840 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Officeshots_taking_shape.html</guid>
15841 <pubDate>Sun, 13 Jun 2010 11:40:00 +0200</pubDate>
15842 <description>&lt;p&gt;For those of us caring about document exchange and
15843 interoperability, &lt;a href=&quot;http://www.officeshots.org/&quot;&gt;OfficeShots&lt;/a&gt;
15844 is a great service. It is to ODF documents what
15845 &lt;a href=&quot;http://browsershots.org/&quot;&gt;BrowserShots&lt;/a&gt; is for web
15846 pages.&lt;/p&gt;
15847
15848 &lt;p&gt;A while back, I was contacted by Knut Yrvin at the part of Nokia
15849 that used to be Trolltech, who wanted to help the OfficeShots project
15850 and wondered if the University of Oslo where I work would be
15851 interested in supporting the project. I helped him to navigate his
15852 request to the right people at work, and his request was answered with
15853 a spot in the machine room with power and network connected, and Knut
15854 arranged funding for a machine to fill the spot. The machine is
15855 administrated by the OfficeShots people, so I do not have daily
15856 contact with its progress, and thus from time to time check back to
15857 see how the project is doing.&lt;/p&gt;
15858
15859 &lt;p&gt;Today I had a look, and was happy to see that the Dell box in our
15860 machine room now is the host for several virtual machines running as
15861 OfficeShots factories, and the project is able to render ODF documents
15862 in 17 different document processing implementation on Linux and
15863 Windows. This is great.&lt;/p&gt;
15864 </description>
15865 </item>
15866
15867 <item>
15868 <title>Lenny-&gt;Squeeze upgrades, removals by apt and aptitude</title>
15869 <link>http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__removals_by_apt_and_aptitude.html</link>
15870 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__removals_by_apt_and_aptitude.html</guid>
15871 <pubDate>Sun, 13 Jun 2010 09:05:00 +0200</pubDate>
15872 <description>&lt;p&gt;My
15873 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Automatic_upgrade_testing_from_Lenny_to_Squeeze.html&quot;&gt;testing
15874 of Debian upgrades&lt;/a&gt; from Lenny to Squeeze continues, and I&#39;ve
15875 finally made the upgrade logs available from
15876 &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;.
15877 I am now testing dist-upgrade of Gnome and KDE in a chroot using both
15878 apt and aptitude, and found their differences interesting. This time
15879 I will only focus on their removal plans.&lt;/p&gt;
15880
15881 &lt;p&gt;After installing a Gnome desktop and the laptop task, apt-get wants
15882 to remove 72 packages when dist-upgrading from Lenny to Squeeze. The
15883 surprising part is that it want to remove xorg and all
15884 xserver-xorg-video* drivers. Clearly not a good choice, but I am not
15885 sure why. When asking aptitude to do the same, it want to remove 129
15886 packages, but most of them are library packages I suspect are no
15887 longer needed. Both of them want to remove bluetooth packages, which
15888 I do not know. Perhaps these bluetooth packages are obsolete?&lt;/p&gt;
15889
15890 &lt;p&gt;For KDE, apt-get want to remove 82 packages, among them kdebase
15891 which seem like a bad idea and xorg the same way as with Gnome. Asking
15892 aptitude for the same, it wants to remove 192 packages, none which are
15893 too surprising.&lt;/p&gt;
15894
15895 &lt;p&gt;I guess the removal of xorg during upgrades should be investigated
15896 and avoided, and perhaps others as well. Here are the complete list
15897 of planned removals. The complete logs is available from the URL
15898 above. Note if you want to repeat these tests, that the upgrade test
15899 for kde+apt-get hung in the tasksel setup because of dpkg asking
15900 conffile questions. No idea why. I worked around it by using
15901 &#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
15902 continue.&lt;/p&gt;
15903
15904 &lt;p&gt;&lt;b&gt;apt-get gnome 72&lt;/b&gt;
15905 &lt;br&gt;bluez-gnome cupsddk-drivers deskbar-applet gnome
15906 gnome-desktop-environment gnome-network-admin gtkhtml3.14
15907 iceweasel-gnome-support libavcodec51 libdatrie0 libgdl-1-0
15908 libgnomekbd2 libgnomekbdui2 libmetacity0 libslab0 libxcb-xlib0
15909 nautilus-cd-burner python-gnome2-desktop python-gnome2-extras
15910 serpentine swfdec-mozilla update-manager xorg xserver-xorg
15911 xserver-xorg-core xserver-xorg-input-all xserver-xorg-input-evdev
15912 xserver-xorg-input-kbd xserver-xorg-input-mouse
15913 xserver-xorg-input-synaptics xserver-xorg-input-wacom
15914 xserver-xorg-video-all xserver-xorg-video-apm xserver-xorg-video-ark
15915 xserver-xorg-video-ati xserver-xorg-video-chips
15916 xserver-xorg-video-cirrus xserver-xorg-video-cyrix
15917 xserver-xorg-video-dummy xserver-xorg-video-fbdev
15918 xserver-xorg-video-glint xserver-xorg-video-i128
15919 xserver-xorg-video-i740 xserver-xorg-video-imstt
15920 xserver-xorg-video-intel xserver-xorg-video-mach64
15921 xserver-xorg-video-mga xserver-xorg-video-neomagic
15922 xserver-xorg-video-nsc xserver-xorg-video-nv
15923 xserver-xorg-video-openchrome xserver-xorg-video-r128
15924 xserver-xorg-video-radeon xserver-xorg-video-radeonhd
15925 xserver-xorg-video-rendition xserver-xorg-video-s3
15926 xserver-xorg-video-s3virge xserver-xorg-video-savage
15927 xserver-xorg-video-siliconmotion xserver-xorg-video-sis
15928 xserver-xorg-video-sisusb xserver-xorg-video-tdfx
15929 xserver-xorg-video-tga xserver-xorg-video-trident
15930 xserver-xorg-video-tseng xserver-xorg-video-v4l
15931 xserver-xorg-video-vesa xserver-xorg-video-vga
15932 xserver-xorg-video-vmware xserver-xorg-video-voodoo xulrunner-1.9
15933 xulrunner-1.9-gnome-support&lt;/p&gt;
15934
15935 &lt;p&gt;&lt;b&gt;aptitude gnome 129&lt;/b&gt;
15936
15937 &lt;br&gt;bluez-gnome bluez-utils cpp-4.3 cupsddk-drivers dhcdbd
15938 djvulibre-desktop finger gnome-app-install gnome-mount
15939 gnome-network-admin gnome-spell gnome-vfs-obexftp
15940 gnome-volume-manager gstreamer0.10-gnomevfs gtkhtml3.14 libao2
15941 libavahi-compat-libdnssd1 libavahi-core5 libavcodec51 libbluetooth2
15942 libcamel1.2-11 libcdio7 libcucul0 libcupsys2 libcurl3 libdatrie0
15943 libdirectfb-1.0-0 libdvdread3 libedataserver1.2-9 libeel2-2.20
15944 libeel2-data libepc-1.0-1 libepc-ui-1.0-1 libfaad0 libgail-common
15945 libgd2-noxpm libgda3-3 libgda3-common libgdl-1-0 libgdl-1-common
15946 libggz2 libggzcore9 libggzmod4 libgksu1.2-0 libgksuui1.0-1 libgmyth0
15947 libgnomecups1.0-1 libgnomekbd2 libgnomekbdui2 libgnomeprint2.2-0
15948 libgnomeprint2.2-data libgnomeprintui2.2-0 libgnomeprintui2.2-common
15949 libgnomevfs2-bin libgpod3 libgraphviz4 libgtkhtml2-0
15950 libgtksourceview-common libgtksourceview1.0-0 libgucharmap6
15951 libhesiod0 libicu38 libiw29 libkpathsea4 libltdl3 libmagick++10
15952 libmagick10 libmalaga7 libmetacity0 libmtp7 libmysqlclient15off
15953 libnautilus-burn4 libneon27 libnm-glib0 libnm-util0 libopal-2.2
15954 libosp5 libparted1.8-10 libpoppler-glib3 libpoppler3 libpt-1.10.10
15955 libpt-1.10.10-plugins-alsa libpt-1.10.10-plugins-v4l libraw1394-8
15956 libsensors3 libslab0 libsmbios2 libsoup2.2-8 libssh2-1
15957 libsuitesparse-3.1.0 libswfdec-0.6-90 libtalloc1 libtotem-plparser10
15958 libtrackerclient0 libxalan2-java libxalan2-java-gcj libxcb-xlib0
15959 libxerces2-java libxerces2-java-gcj libxklavier12 libxtrap6
15960 libxxf86misc1 libzephyr3 mysql-common nautilus-cd-burner
15961 openoffice.org-writer2latex openssl-blacklist p7zip
15962 python-4suite-xml python-eggtrayicon python-gnome2-desktop
15963 python-gnome2-extras python-gtkhtml2 python-gtkmozembed
15964 python-numeric python-sexy serpentine svgalibg1 swfdec-gnome
15965 swfdec-mozilla totem-gstreamer update-manager wodim
15966 xserver-xorg-video-cyrix xserver-xorg-video-imstt
15967 xserver-xorg-video-nsc xserver-xorg-video-v4l xserver-xorg-video-vga
15968 zip&lt;/p&gt;
15969
15970 &lt;p&gt;&lt;b&gt;apt-get kde 82&lt;/b&gt;
15971
15972 &lt;br&gt;cupsddk-drivers karm kaudiocreator kcoloredit kcontrol kde kde-core
15973 kdeaddons kdeartwork kdebase kdebase-bin kdebase-bin-kde3
15974 kdebase-kio-plugins kdesktop kdeutils khelpcenter kicker
15975 kicker-applets knewsticker kolourpaint konq-plugins konqueror korn
15976 kpersonalizer kscreensaver ksplash libavcodec51 libdatrie0 libkiten1
15977 libxcb-xlib0 quanta superkaramba texlive-base-bin xorg xserver-xorg
15978 xserver-xorg-core xserver-xorg-input-all xserver-xorg-input-evdev
15979 xserver-xorg-input-kbd xserver-xorg-input-mouse
15980 xserver-xorg-input-synaptics xserver-xorg-input-wacom
15981 xserver-xorg-video-all xserver-xorg-video-apm xserver-xorg-video-ark
15982 xserver-xorg-video-ati xserver-xorg-video-chips
15983 xserver-xorg-video-cirrus xserver-xorg-video-cyrix
15984 xserver-xorg-video-dummy xserver-xorg-video-fbdev
15985 xserver-xorg-video-glint xserver-xorg-video-i128
15986 xserver-xorg-video-i740 xserver-xorg-video-imstt
15987 xserver-xorg-video-intel xserver-xorg-video-mach64
15988 xserver-xorg-video-mga xserver-xorg-video-neomagic
15989 xserver-xorg-video-nsc xserver-xorg-video-nv
15990 xserver-xorg-video-openchrome xserver-xorg-video-r128
15991 xserver-xorg-video-radeon xserver-xorg-video-radeonhd
15992 xserver-xorg-video-rendition xserver-xorg-video-s3
15993 xserver-xorg-video-s3virge xserver-xorg-video-savage
15994 xserver-xorg-video-siliconmotion xserver-xorg-video-sis
15995 xserver-xorg-video-sisusb xserver-xorg-video-tdfx
15996 xserver-xorg-video-tga xserver-xorg-video-trident
15997 xserver-xorg-video-tseng xserver-xorg-video-v4l
15998 xserver-xorg-video-vesa xserver-xorg-video-vga
15999 xserver-xorg-video-vmware xserver-xorg-video-voodoo xulrunner-1.9&lt;/p&gt;
16000
16001 &lt;p&gt;&lt;b&gt;aptitude kde 192&lt;/b&gt;
16002 &lt;br&gt;bluez-utils cpp-4.3 cupsddk-drivers cvs dcoprss dhcdbd
16003 djvulibre-desktop dosfstools eyesapplet fifteenapplet finger gettext
16004 ghostscript-x imlib-base imlib11 indi kandy karm kasteroids
16005 kaudiocreator kbackgammon kbstate kcoloredit kcontrol kcron kdat
16006 kdeadmin-kfile-plugins kdeartwork-misc kdeartwork-theme-window
16007 kdebase-bin-kde3 kdebase-kio-plugins kdeedu-data
16008 kdegraphics-kfile-plugins kdelirc kdemultimedia-kappfinder-data
16009 kdemultimedia-kfile-plugins kdenetwork-kfile-plugins
16010 kdepim-kfile-plugins kdepim-kio-plugins kdeprint kdesktop kdessh
16011 kdict kdnssd kdvi kedit keduca kenolaba kfax kfaxview kfouleggs
16012 kghostview khelpcenter khexedit kiconedit kitchensync klatin
16013 klickety kmailcvt kmenuedit kmid kmilo kmoon kmrml kodo kolourpaint
16014 kooka korn kpager kpdf kpercentage kpf kpilot kpoker kpovmodeler
16015 krec kregexpeditor ksayit ksim ksirc ksirtet ksmiletris ksmserver
16016 ksnake ksokoban ksplash ksvg ksysv ktip ktnef kuickshow kverbos
16017 kview kviewshell kvoctrain kwifimanager kwin kwin4 kworldclock
16018 kxsldbg libakode2 libao2 libarts1-akode libarts1-audiofile
16019 libarts1-mpeglib libarts1-xine libavahi-compat-libdnssd1
16020 libavahi-core5 libavc1394-0 libavcodec51 libbluetooth2
16021 libboost-python1.34.1 libcucul0 libcurl3 libcvsservice0 libdatrie0
16022 libdirectfb-1.0-0 libdjvulibre21 libdvdread3 libfaad0 libfreebob0
16023 libgail-common libgd2-noxpm libgraphviz4 libgsmme1c2a libgtkhtml2-0
16024 libicu38 libiec61883-0 libindex0 libiw29 libk3b3 libkcal2b libkcddb1
16025 libkdeedu3 libkdepim1a libkgantt0 libkiten1 libkleopatra1 libkmime2
16026 libkpathsea4 libkpimexchange1 libkpimidentities1 libkscan1
16027 libksieve0 libktnef1 liblockdev1 libltdl3 libmagick10 libmimelib1c2a
16028 libmozjs1d libmpcdec3 libneon27 libnm-util0 libopensync0 libpisock9
16029 libpoppler-glib3 libpoppler-qt2 libpoppler3 libraw1394-8 libsmbios2
16030 libssh2-1 libsuitesparse-3.1.0 libtalloc1 libtiff-tools
16031 libxalan2-java libxalan2-java-gcj libxcb-xlib0 libxerces2-java
16032 libxerces2-java-gcj libxtrap6 mpeglib networkstatus
16033 openoffice.org-writer2latex pmount poster psutils quanta quanta-data
16034 superkaramba svgalibg1 tex-common texlive-base texlive-base-bin
16035 texlive-common texlive-doc-base texlive-fonts-recommended
16036 xserver-xorg-video-cyrix xserver-xorg-video-imstt
16037 xserver-xorg-video-nsc xserver-xorg-video-v4l xserver-xorg-video-vga
16038 xulrunner-1.9&lt;/p&gt;
16039
16040 </description>
16041 </item>
16042
16043 <item>
16044 <title>Automatic upgrade testing from Lenny to Squeeze</title>
16045 <link>http://people.skolelinux.org/pere/blog/Automatic_upgrade_testing_from_Lenny_to_Squeeze.html</link>
16046 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatic_upgrade_testing_from_Lenny_to_Squeeze.html</guid>
16047 <pubDate>Fri, 11 Jun 2010 22:50:00 +0200</pubDate>
16048 <description>&lt;p&gt;The last few days I have done some upgrade testing in Debian, to
16049 see if the upgrade from Lenny to Squeeze will go smoothly. A few bugs
16050 have been discovered and reported in the process
16051 (&lt;a href=&quot;http://bugs.debian.org/585410&quot;&gt;#585410&lt;/a&gt; in nagios3-cgi,
16052 &lt;a href=&quot;http://bugs.debian.org/584879&quot;&gt;#584879&lt;/a&gt; already fixed in
16053 enscript and &lt;a href=&quot;http://bugs.debian.org/584861&quot;&gt;#584861&lt;/a&gt; in
16054 kdebase-workspace-data), and to get a more regular testing going on, I
16055 am working on a script to automate the test.&lt;/p&gt;
16056
16057 &lt;p&gt;The idea is to create a Lenny chroot and use tasksel to install a
16058 Gnome or KDE desktop installation inside the chroot before upgrading
16059 it. To ensure no services are started in the chroot, a policy-rc.d
16060 script is inserted. To make sure tasksel believe it is to install a
16061 desktop on a laptop, the tasksel tests are replaced in the chroot
16062 (only acceptable because this is a throw-away chroot).&lt;/p&gt;
16063
16064 &lt;p&gt;A naive upgrade from Lenny to Squeeze using aptitude dist-upgrade
16065 currently always fail because udev refuses to upgrade with the kernel
16066 in Lenny, so to avoid that problem the file /etc/udev/kernel-upgrade
16067 is created. The bug report
16068 &lt;a href=&quot;http://bugs.debian.org/566000&quot;&gt;#566000&lt;/a&gt; make me suspect
16069 this problem do not trigger in a chroot, but I touch the file anyway
16070 to make sure the upgrade go well. Testing on virtual and real
16071 hardware have failed me because of udev so far, and creating this file
16072 do the trick in such settings anyway. This is a
16073 &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
16074 issue&lt;/a&gt; and the current udev behaviour is intended by the udev
16075 maintainer because he lack the resources to rewrite udev to keep
16076 working with old kernels or something like that. I really wish the
16077 udev upstream would keep udev backwards compatible, to avoid such
16078 upgrade problem, but given that they fail to do so, I guess
16079 documenting the way out of this mess is the best option we got for
16080 Debian Squeeze.&lt;/p&gt;
16081
16082 &lt;p&gt;Anyway, back to the task at hand, testing upgrades. This test
16083 script, which I call &lt;tt&gt;upgrade-test&lt;/tt&gt; for now, is doing the
16084 trick:&lt;/p&gt;
16085
16086 &lt;blockquote&gt;&lt;pre&gt;
16087 #!/bin/sh
16088 set -ex
16089
16090 if [ &quot;$1&quot; ] ; then
16091 desktop=$1
16092 else
16093 desktop=gnome
16094 fi
16095
16096 from=lenny
16097 to=squeeze
16098
16099 exec &amp;lt; /dev/null
16100 unset LANG
16101 mirror=http://ftp.skolelinux.org/debian
16102 tmpdir=chroot-$from-upgrade-$to-$desktop
16103 fuser -mv .
16104 debootstrap $from $tmpdir $mirror
16105 chroot $tmpdir aptitude update
16106 cat &gt; $tmpdir/usr/sbin/policy-rc.d &amp;lt;&amp;lt;EOF
16107 #!/bin/sh
16108 exit 101
16109 EOF
16110 chmod a+rx $tmpdir/usr/sbin/policy-rc.d
16111 exit_cleanup() {
16112 umount $tmpdir/proc
16113 }
16114 mount -t proc proc $tmpdir/proc
16115 # Make sure proc is unmounted also on failure
16116 trap exit_cleanup EXIT INT
16117
16118 chroot $tmpdir aptitude -y install debconf-utils
16119
16120 # Make sure tasksel autoselection trigger. It need the test scripts
16121 # to return the correct answers.
16122 echo tasksel tasksel/desktop multiselect $desktop | \
16123 chroot $tmpdir debconf-set-selections
16124
16125 # Include the desktop and laptop task
16126 for test in desktop laptop ; do
16127 echo &gt; $tmpdir/usr/lib/tasksel/tests/$test &amp;lt;&amp;lt;EOF
16128 #!/bin/sh
16129 exit 2
16130 EOF
16131 chmod a+rx $tmpdir/usr/lib/tasksel/tests/$test
16132 done
16133
16134 DEBIAN_FRONTEND=noninteractive
16135 DEBIAN_PRIORITY=critical
16136 export DEBIAN_FRONTEND DEBIAN_PRIORITY
16137 chroot $tmpdir tasksel --new-install
16138
16139 echo deb $mirror $to main &gt; $tmpdir/etc/apt/sources.list
16140 chroot $tmpdir aptitude update
16141 touch $tmpdir/etc/udev/kernel-upgrade
16142 chroot $tmpdir aptitude -y dist-upgrade
16143 fuser -mv
16144 &lt;/pre&gt;&lt;/blockquote&gt;
16145
16146 &lt;p&gt;I suspect it would be useful to test upgrades with both apt-get and
16147 with aptitude, but I have not had time to look at how they behave
16148 differently so far. I hope to get a cron job running to do the test
16149 regularly and post the result on the web. The Gnome upgrade currently
16150 work, while the KDE upgrade fail because of the bug in
16151 kdebase-workspace-data&lt;/p&gt;
16152
16153 &lt;p&gt;I am not quite sure what kind of extract from the huge upgrade logs
16154 (KDE 167 KiB, Gnome 516 KiB) it make sense to include in this blog
16155 post, so I will refrain from trying. I can report that for Gnome,
16156 aptitude report 760 packages upgraded, 448 newly installed, 129 to
16157 remove and 1 not upgraded and 1024MB need to be downloaded while for
16158 KDE the same numbers are 702 packages upgraded, 507 newly installed,
16159 193 to remove and 0 not upgraded and 1117MB need to be downloaded&lt;/p&gt;
16160
16161 &lt;p&gt;I am very happy to notice that the Gnome desktop + laptop upgrade
16162 is able to migrate to dependency based boot sequencing and parallel
16163 booting without a hitch. Was unsure if there were still bugs with
16164 packages failing to clean up their obsolete init.d script during
16165 upgrades, and no such problem seem to affect the Gnome desktop+laptop
16166 packages.&lt;/p&gt;
16167 </description>
16168 </item>
16169
16170 <item>
16171 <title>Upstart or sysvinit - as init.d scripts see it</title>
16172 <link>http://people.skolelinux.org/pere/blog/Upstart_or_sysvinit___as_init_d_scripts_see_it.html</link>
16173 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Upstart_or_sysvinit___as_init_d_scripts_see_it.html</guid>
16174 <pubDate>Sun, 6 Jun 2010 23:55:00 +0200</pubDate>
16175 <description>&lt;p&gt;If Debian is to migrate to upstart on Linux, I expect some init.d
16176 scripts to migrate (some of) their operations to upstart job while
16177 keeping the init.d for hurd and kfreebsd. The packages with such
16178 needs will need a way to get their init.d scripts to behave
16179 differently when used with sysvinit and with upstart. Because of
16180 this, I had a look at the environment variables set when a init.d
16181 script is running under upstart, and when it is not.&lt;/p&gt;
16182
16183 &lt;p&gt;With upstart, I notice these environment variables are set when a
16184 script is started from rcS.d/ (ignoring some irrelevant ones like
16185 COLUMNS):&lt;/p&gt;
16186
16187 &lt;blockquote&gt;&lt;pre&gt;
16188 DEFAULT_RUNLEVEL=2
16189 previous=N
16190 PREVLEVEL=
16191 RUNLEVEL=
16192 runlevel=S
16193 UPSTART_EVENTS=startup
16194 UPSTART_INSTANCE=
16195 UPSTART_JOB=rc-sysinit
16196 &lt;/pre&gt;&lt;/blockquote&gt;
16197
16198 &lt;p&gt;With sysvinit, these environment variables are set for the same
16199 script.&lt;/p&gt;
16200
16201 &lt;blockquote&gt;&lt;pre&gt;
16202 INIT_VERSION=sysvinit-2.88
16203 previous=N
16204 PREVLEVEL=N
16205 RUNLEVEL=S
16206 runlevel=S
16207 &lt;/pre&gt;&lt;/blockquote&gt;
16208
16209 &lt;p&gt;The RUNLEVEL and PREVLEVEL environment variables passed on from
16210 sysvinit are not set by upstart. Not sure if it is intentional or not
16211 to not be compatible with sysvinit in this regard.&lt;/p&gt;
16212
16213 &lt;p&gt;For scripts needing to behave differently when upstart is used,
16214 looking for the UPSTART_JOB environment variable seem to be a good
16215 choice.&lt;/p&gt;
16216 </description>
16217 </item>
16218
16219 <item>
16220 <title>A manual for standards wars...</title>
16221 <link>http://people.skolelinux.org/pere/blog/A_manual_for_standards_wars___.html</link>
16222 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_manual_for_standards_wars___.html</guid>
16223 <pubDate>Sun, 6 Jun 2010 14:15:00 +0200</pubDate>
16224 <description>&lt;p&gt;Via the
16225 &lt;a href=&quot;http://feedproxy.google.com/~r/robweir/antic-atom/~3/QzU4RgoAGMg/weekly-links-10.html&quot;&gt;blog
16226 of Rob Weir&lt;/a&gt; I came across the very interesting essay named
16227 &lt;a href=&quot;http://faculty.haas.berkeley.edu/shapiro/wars.pdf&quot;&gt;The Art of
16228 Standards Wars&lt;/a&gt; (PDF 25 pages). I recommend it for everyone
16229 following the standards wars of today.&lt;/p&gt;
16230 </description>
16231 </item>
16232
16233 <item>
16234 <title>Sitesummary tip: Listing computer hardware models used at site</title>
16235 <link>http://people.skolelinux.org/pere/blog/Sitesummary_tip__Listing_computer_hardware_models_used_at_site.html</link>
16236 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Sitesummary_tip__Listing_computer_hardware_models_used_at_site.html</guid>
16237 <pubDate>Thu, 3 Jun 2010 12:05:00 +0200</pubDate>
16238 <description>&lt;p&gt;When using sitesummary at a site to track machines, it is possible
16239 to get a list of the machine types in use thanks to the DMI
16240 information extracted from each machine. The script to do so is
16241 included in the sitesummary package, and here is example output from
16242 the Skolelinux build servers:&lt;/p&gt;
16243
16244 &lt;blockquote&gt;&lt;pre&gt;
16245 maintainer:~# /usr/lib/sitesummary/hardware-model-summary
16246 vendor count
16247 Dell Computer Corporation 1
16248 PowerEdge 1750 1
16249 IBM 1
16250 eserver xSeries 345 -[8670M1X]- 1
16251 Intel 2
16252 [no-dmi-info] 3
16253 maintainer:~#
16254 &lt;/pre&gt;&lt;/blockquote&gt;
16255
16256 &lt;p&gt;The quality of the report depend on the quality of the DMI tables
16257 provided in each machine. Here there are Intel machines without model
16258 information listed with Intel as vendor and no model, and virtual Xen
16259 machines listed as [no-dmi-info]. One can add -l as a command line
16260 option to list the individual machines.&lt;/p&gt;
16261
16262 &lt;p&gt;A larger list is
16263 &lt;a href=&quot;http://narvikskolen.no/sitesummary/&quot;&gt;available from the the
16264 city of Narvik&lt;/a&gt;, which uses Skolelinux on all their shools and also
16265 provide the basic sitesummary report publicly. In their report there
16266 are ~1400 machines. I know they use both Ubuntu and Skolelinux on
16267 their machines, and as sitesummary is available in both distributions,
16268 it is trivial to get all of them to report to the same central
16269 collector.&lt;/p&gt;
16270 </description>
16271 </item>
16272
16273 <item>
16274 <title>KDM fail at boot with NVidia cards - and no one try to fix it?</title>
16275 <link>http://people.skolelinux.org/pere/blog/KDM_fail_at_boot_with_NVidia_cards___and_no_one_try_to_fix_it_.html</link>
16276 <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>
16277 <pubDate>Tue, 1 Jun 2010 17:05:00 +0200</pubDate>
16278 <description>&lt;p&gt;It is strange to watch how a bug in Debian causing KDM to fail to
16279 start at boot when an NVidia video card is used is handled. The
16280 problem seem to be that the nvidia X.org driver uses a long time to
16281 initialize, and this duration is longer than kdm is configured to
16282 wait.&lt;/p&gt;
16283
16284 &lt;p&gt;I came across two bugs related to this issue,
16285 &lt;a href=&quot;http://bugs.debian.org/583312&quot;&gt;#583312&lt;/a&gt; initially filed
16286 against initscripts and passed on to nvidia-glx when it became obvious
16287 that the nvidia drivers were involved, and
16288 &lt;a href=&quot;http://bugs.debian.org/524751&quot;&gt;#524751&lt;/a&gt; initially filed against
16289 kdm and passed on to src:nvidia-graphics-drivers for unknown reasons.&lt;/p&gt;
16290
16291 &lt;p&gt;To me, it seem that no-one is interested in actually solving the
16292 problem nvidia video card owners experience and make sure the Debian
16293 distribution work out of the box for these users. The nvidia driver
16294 maintainers expect kdm to be set up to wait longer, while kdm expect
16295 the nvidia driver maintainers to fix the driver to start faster, and
16296 while they wait for each other I guess the users end up switching to a
16297 distribution that work for them. I have no idea what the solution is,
16298 but I am pretty sure that waiting for each other is not it.&lt;/p&gt;
16299
16300 &lt;p&gt;I wonder why we end up handling bugs this way.&lt;/p&gt;
16301 </description>
16302 </item>
16303
16304 <item>
16305 <title>Parallellized boot seem to hold up well in Debian/testing</title>
16306 <link>http://people.skolelinux.org/pere/blog/Parallellized_boot_seem_to_hold_up_well_in_Debian_testing.html</link>
16307 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Parallellized_boot_seem_to_hold_up_well_in_Debian_testing.html</guid>
16308 <pubDate>Thu, 27 May 2010 23:55:00 +0200</pubDate>
16309 <description>&lt;p&gt;A few days ago, parallel booting was enabled in Debian/testing.
16310 The feature seem to hold up pretty well, but three fairly serious
16311 issues are known and should be solved:
16312
16313 &lt;p&gt;&lt;ul&gt;
16314
16315 &lt;li&gt;The wicd package seen to
16316 &lt;a href=&quot;http://bugs.debian.org/508289&quot;&gt;break NFS mounting&lt;/a&gt; and
16317 &lt;a href=&quot;http://bugs.debian.org/581586&quot;&gt;network setup&lt;/a&gt; when
16318 parallel booting is enabled. No idea why, but the wicd maintainer
16319 seem to be on the case.&lt;/li&gt;
16320
16321 &lt;li&gt;The nvidia X driver seem to
16322 &lt;a href=&quot;http://bugs.debian.org/583312&quot;&gt;have a race condition&lt;/a&gt;
16323 triggered more easily when parallel booting is in effect. The
16324 maintainer is on the case.&lt;/li&gt;
16325
16326 &lt;li&gt;The sysv-rc package fail to properly enable dependency based boot
16327 sequencing (the shutdown is broken) when old file-rc users
16328 &lt;a href=&quot;http://bugs.debian.org/575080&quot;&gt;try to switch back&lt;/a&gt; to
16329 sysv-rc. One way to solve it would be for file-rc to create
16330 /etc/init.d/.legacy-bootordering, and another is to try to make
16331 sysv-rc more robust. Will investigate some more and probably upload a
16332 workaround in sysv-rc to help those trying to move from file-rc to
16333 sysv-rc get a working shutdown.&lt;/li&gt;
16334
16335 &lt;/ul&gt;&lt;/p&gt;
16336
16337 &lt;p&gt;All in all not many surprising issues, and all of them seem
16338 solvable before Squeeze is released. In addition to these there are
16339 some packages with bugs in their dependencies and run level settings,
16340 which I expect will be fixed in a reasonable time span.&lt;/p&gt;
16341
16342 &lt;p&gt;If you report any problems with dependencies in init.d scripts to
16343 the BTS, please usertag the report to get it to show up at
16344 &lt;a href=&quot;http://bugs.debian.org/cgi-bin/pkgreport.cgi?users=initscripts-ng-devel@lists.alioth.debian.org&quot;&gt;the
16345 list of usertagged bugs related to this&lt;/a&gt;.&lt;/p&gt;
16346
16347 &lt;p&gt;Update: Correct bug number to file-rc issue.&lt;/p&gt;
16348 </description>
16349 </item>
16350
16351 <item>
16352 <title>More flexible firmware handling in debian-installer</title>
16353 <link>http://people.skolelinux.org/pere/blog/More_flexible_firmware_handling_in_debian_installer.html</link>
16354 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/More_flexible_firmware_handling_in_debian_installer.html</guid>
16355 <pubDate>Sat, 22 May 2010 21:30:00 +0200</pubDate>
16356 <description>&lt;p&gt;After a long break from debian-installer development, I finally
16357 found time today to return to the project. Having to spend less time
16358 working dependency based boot in debian, as it is almost complete now,
16359 definitely helped freeing some time.&lt;/p&gt;
16360
16361 &lt;p&gt;A while back, I ran into a problem while working on Debian Edu. We
16362 include some firmware packages on the Debian Edu CDs, those needed to
16363 get disk and network controllers working. Without having these
16364 firmware packages available during installation, it is impossible to
16365 install Debian Edu on the given machine, and because our target group
16366 are non-technical people, asking them to provide firmware packages on
16367 an external medium is a support pain. Initially, I expected it to be
16368 enough to include the firmware packages on the CD to get
16369 debian-installer to find and use them. This proved to be wrong.
16370 Next, I hoped it was enough to symlink the relevant firmware packages
16371 to some useful location on the CD (tried /cdrom/ and
16372 /cdrom/firmware/). This also proved to not work, and at this point I
16373 found time to look at the debian-installer code to figure out what was
16374 going to work.&lt;/p&gt;
16375
16376 &lt;p&gt;The firmware loading code is in the hw-detect package, and a closer
16377 look revealed that it would only look for firmware packages outside
16378 the installation media, so the CD was never checked for firmware
16379 packages. It would only check USB sticks, floppies and other
16380 &quot;external&quot; media devices. Today I changed it to also look in the
16381 /cdrom/firmware/ directory on the mounted CD or DVD, which should
16382 solve the problem I ran into with Debian edu. I also changed it to
16383 look in /firmware/, to make sure the installer also find firmware
16384 provided in the initrd when booting the installer via PXE, to allow us
16385 to provide the same feature in the PXE setup included in Debian
16386 Edu.&lt;/p&gt;
16387
16388 &lt;p&gt;To make sure firmware deb packages with a license questions are not
16389 activated without asking if the license is accepted, I extended
16390 hw-detect to look for preinst scripts in the firmware packages, and
16391 run these before activating the firmware during installation. The
16392 license question is asked using debconf in the preinst, so this should
16393 solve the issue for the firmware packages I have looked at so far.&lt;/p&gt;
16394
16395 &lt;p&gt;If you want to discuss the details of these features, please
16396 contact us on debian-boot@lists.debian.org.&lt;/p&gt;
16397 </description>
16398 </item>
16399
16400 <item>
16401 <title>Pieces of the roaming laptop puzzle in Debian</title>
16402 <link>http://people.skolelinux.org/pere/blog/Pieces_of_the_roaming_laptop_puzzle_in_Debian.html</link>
16403 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Pieces_of_the_roaming_laptop_puzzle_in_Debian.html</guid>
16404 <pubDate>Wed, 19 May 2010 19:00:00 +0200</pubDate>
16405 <description>&lt;p&gt;Today, the last piece of the puzzle for roaming laptops in Debian
16406 Edu finally entered the Debian archive. Today, the new
16407 &lt;a href=&quot;http://packages.qa.debian.org/libp/libpam-mklocaluser.html&quot;&gt;libpam-mklocaluser&lt;/a&gt;
16408 package was accepted. Two days ago, two other pieces was accepted
16409 into unstable. The
16410 &lt;a href=&quot;http://packages.qa.debian.org/p/pam-python.html&quot;&gt;pam-python&lt;/a&gt;
16411 package needed by libpam-mklocaluser, and the
16412 &lt;a href=&quot;http://packages.qa.debian.org/s/sssd.html&quot;&gt;sssd&lt;/a&gt; package
16413 passed NEW on Monday. In addition, the
16414 &lt;a href=&quot;http://packages.qa.debian.org/libp/libpam-ccreds.html&quot;&gt;libpam-ccreds&lt;/a&gt;
16415 package we need is in experimental (version 10-4) since Saturday, and
16416 hopefully will be moved to unstable soon.&lt;/p&gt;
16417
16418 &lt;p&gt;This collection of packages allow for two different setups for
16419 roaming laptops. The traditional setup would be using libpam-ccreds,
16420 nscd and libpam-mklocaluser with LDAP or Kerberos authentication,
16421 which should work out of the box if the configuration changes proposed
16422 for nscd in &lt;a href=&quot;http://bugs.debian.org/485282&quot;&gt;BTS report
16423 #485282&lt;/a&gt; is implemented. The alternative setup is to use sssd with
16424 libpam-mklocaluser to connect to LDAP or Kerberos and let sssd take
16425 care of the caching of passwords and group information.&lt;/p&gt;
16426
16427 &lt;p&gt;I have so far been unable to get sssd to work with the LDAP server
16428 at the University, but suspect the issue is some SSL/GnuTLS related
16429 problem with the server certificate. I plan to update the Debian
16430 package to version 1.2, which is scheduled for next week, and hope to
16431 find time to make sure the next release will include both the
16432 Debian/Ubuntu specific patches. Upstream is friendly and responsive,
16433 and I am sure we will find a good solution.&lt;/p&gt;
16434
16435 &lt;p&gt;The idea is to set up the roaming laptops to authenticate using
16436 LDAP or Kerberos and create a local user with home directory in /home/
16437 when a usre in LDAP logs in via KDM or GDM for the first time, and
16438 cache the password for offline checking, as well as caching group
16439 memberhips and other relevant LDAP information. The
16440 libpam-mklocaluser package was created to make sure the local home
16441 directory is in /home/, instead of /site/server/directory/ which would
16442 be the home directory if pam_mkhomedir was used. To avoid confusion
16443 with support requests and configuration, we do not want local laptops
16444 to have users in a path that is used for the same users home directory
16445 on the home directory servers.&lt;/p&gt;
16446
16447 &lt;p&gt;One annoying problem with gdm is that it do not show the PAM
16448 message passed to the user from libpam-mklocaluser when the local user
16449 is created. Instead gdm simply reject the login with some generic
16450 message. The message is shown in kdm, ssh and login, so I guess it is
16451 a bug in gdm. Have not investigated if there is some other message
16452 type that can be used instead to get gdm to also show the message.&lt;/p&gt;
16453
16454 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
16455 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
16456 </description>
16457 </item>
16458
16459 <item>
16460 <title>Parallellized boot is now the default in Debian/unstable</title>
16461 <link>http://people.skolelinux.org/pere/blog/Parallellized_boot_is_now_the_default_in_Debian_unstable.html</link>
16462 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Parallellized_boot_is_now_the_default_in_Debian_unstable.html</guid>
16463 <pubDate>Fri, 14 May 2010 22:40:00 +0200</pubDate>
16464 <description>&lt;p&gt;Since this evening, parallel booting is the default in
16465 Debian/unstable for machines using dependency based boot sequencing.
16466 Apparently the testing of concurrent booting has been wider than
16467 expected, if I am to believe the
16468 &lt;a href=&quot;http://lists.debian.org/debian-devel/2010/05/msg00122.html&quot;&gt;input
16469 on debian-devel@&lt;/a&gt;, and I concluded a few days ago to move forward
16470 with the feature this weekend, to give us some time to detect any
16471 remaining problems before Squeeze is frozen. If serious problems are
16472 detected, it is simple to change the default back to sequential boot.
16473 The upload of the new sysvinit package also activate a new upstream
16474 version.&lt;/p&gt;
16475
16476 More information about
16477 &lt;a href=&quot;http://wiki.debian.org/LSBInitScripts/DependencyBasedBoot&quot;&gt;dependency
16478 based boot sequencing&lt;/a&gt; is available from the Debian wiki. It is
16479 currently possible to disable parallel booting when one run into
16480 problems caused by it, by adding this line to /etc/default/rcS:&lt;/p&gt;
16481
16482 &lt;blockquote&gt;&lt;pre&gt;
16483 CONCURRENCY=none
16484 &lt;/pre&gt;&lt;/blockquote&gt;
16485
16486 &lt;p&gt;If you report any problems with dependencies in init.d scripts to
16487 the BTS, please usertag the report to get it to show up at
16488 &lt;a href=&quot;http://bugs.debian.org/cgi-bin/pkgreport.cgi?users=initscripts-ng-devel@lists.alioth.debian.org&quot;&gt;the
16489 list of usertagged bugs related to this&lt;/a&gt;.&lt;/p&gt;
16490 </description>
16491 </item>
16492
16493 <item>
16494 <title>Sitesummary tip: Listing MAC address of all clients</title>
16495 <link>http://people.skolelinux.org/pere/blog/Sitesummary_tip__Listing_MAC_address_of_all_clients.html</link>
16496 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Sitesummary_tip__Listing_MAC_address_of_all_clients.html</guid>
16497 <pubDate>Fri, 14 May 2010 21:10:00 +0200</pubDate>
16498 <description>&lt;p&gt;In the recent Debian Edu versions, the
16499 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/HowTo/SiteSummary&quot;&gt;sitesummary
16500 system&lt;/a&gt; is used to keep track of the machines in the school
16501 network. Each machine will automatically report its status to the
16502 central server after boot and once per night. The network setup is
16503 also reported, and using this information it is possible to get the
16504 MAC address of all network interfaces in the machines. This is useful
16505 to update the DHCP configuration.&lt;/p&gt;
16506
16507 &lt;p&gt;To give some idea how to use sitesummary, here is a one-liner to
16508 ist all MAC addresses of all machines reporting to sitesummary. Run
16509 this on the collector host:&lt;/p&gt;
16510
16511 &lt;blockquote&gt;&lt;pre&gt;
16512 perl -MSiteSummary -e &#39;for_all_hosts(sub { print join(&quot; &quot;, get_macaddresses(shift)), &quot;\n&quot;; });&#39;
16513 &lt;/pre&gt;&lt;/blockquote&gt;
16514
16515 &lt;p&gt;This will list all MAC addresses assosiated with all machine, one
16516 line per machine and with space between the MAC addresses.&lt;/p&gt;
16517
16518 &lt;p&gt;To allow system administrators easier job at adding static DHCP
16519 addresses for hosts, it would be possible to extend this to fetch
16520 machine information from sitesummary and update the DHCP and DNS
16521 tables in LDAP using this information. Such tool is unfortunately not
16522 written yet.&lt;/p&gt;
16523 </description>
16524 </item>
16525
16526 <item>
16527 <title>systemd, an interesting alternative to upstart</title>
16528 <link>http://people.skolelinux.org/pere/blog/systemd__an_interesting_alternative_to_upstart.html</link>
16529 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/systemd__an_interesting_alternative_to_upstart.html</guid>
16530 <pubDate>Thu, 13 May 2010 22:20:00 +0200</pubDate>
16531 <description>&lt;p&gt;The last few days a new boot system called
16532 &lt;a href=&quot;http://www.freedesktop.org/wiki/Software/systemd&quot;&gt;systemd&lt;/a&gt;
16533 has been
16534 &lt;a href=&quot;http://0pointer.de/blog/projects/systemd.html&quot;&gt;introduced&lt;/a&gt;
16535
16536 to the free software world. I have not yet had time to play around
16537 with it, but it seem to be a very interesting alternative to
16538 &lt;a href=&quot;http://upstart.ubuntu.com/&quot;&gt;upstart&lt;/a&gt;, and might prove to be
16539 a good alternative for Debian when we are able to switch to an event
16540 based boot system. Tollef is
16541 &lt;a href=&quot;http://bugs.debian.org/580814&quot;&gt;in the process&lt;/a&gt; of getting
16542 systemd into Debian, and I look forward to seeing how well it work. I
16543 like the fact that systemd handles init.d scripts with dependency
16544 information natively, allowing them to run in parallel where upstart
16545 at the moment do not.&lt;/p&gt;
16546
16547 &lt;p&gt;Unfortunately do systemd have the same problem as upstart regarding
16548 platform support. It only work on recent Linux kernels, and also need
16549 some new kernel features enabled to function properly. This means
16550 kFreeBSD and Hurd ports of Debian will need a port or a different boot
16551 system. Not sure how that will be handled if systemd proves to be the
16552 way forward.&lt;/p&gt;
16553
16554 &lt;p&gt;In the mean time, based on the
16555 &lt;a href=&quot;http://lists.debian.org/debian-devel/2010/05/msg00122.html&quot;&gt;input
16556 on debian-devel@&lt;/a&gt; regarding parallel booting in Debian, I have
16557 decided to enable full parallel booting as the default in Debian as
16558 soon as possible (probably this weekend or early next week), to see if
16559 there are any remaining serious bugs in the init.d dependencies. A
16560 new version of the sysvinit package implementing this change is
16561 already in experimental. If all go well, Squeeze will be released
16562 with parallel booting enabled by default.&lt;/p&gt;
16563 </description>
16564 </item>
16565
16566 <item>
16567 <title>Parallellizing the boot in Debian Squeeze - ready for wider testing</title>
16568 <link>http://people.skolelinux.org/pere/blog/Parallellizing_the_boot_in_Debian_Squeeze___ready_for_wider_testing.html</link>
16569 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Parallellizing_the_boot_in_Debian_Squeeze___ready_for_wider_testing.html</guid>
16570 <pubDate>Thu, 6 May 2010 23:25:00 +0200</pubDate>
16571 <description>&lt;p&gt;These days, the init.d script dependencies in Squeeze are quite
16572 complete, so complete that it is actually possible to run all the
16573 init.d scripts in parallell based on these dependencies. If you want
16574 to test your Squeeze system, make sure
16575 &lt;a href=&quot;http://wiki.debian.org/LSBInitScripts/DependencyBasedBoot&quot;&gt;dependency
16576 based boot sequencing&lt;/a&gt; is enabled, and add this line to
16577 /etc/default/rcS:&lt;/p&gt;
16578
16579 &lt;blockquote&gt;&lt;pre&gt;
16580 CONCURRENCY=makefile
16581 &lt;/pre&gt;&lt;/blockquote&gt;
16582
16583 &lt;p&gt;That is it. It will cause sysv-rc to use the startpar tool to run
16584 scripts in parallel using the dependency information stored in
16585 /etc/init.d/.depend.boot, /etc/init.d/.depend.start and
16586 /etc/init.d/.depend.stop to order the scripts. Startpar is configured
16587 to try to start the kdm and gdm scripts as early as possible, and will
16588 start the facilities required by kdm or gdm as early as possible to
16589 make this happen.&lt;/p&gt;
16590
16591 &lt;p&gt;Give it a try, and see if you like the result. If some services
16592 fail to start properly, it is most likely because they have incomplete
16593 init.d script dependencies in their startup script (or some of their
16594 dependent scripts have incomplete dependencies). Report bugs and get
16595 the package maintainers to fix it. :)&lt;/p&gt;
16596
16597 &lt;p&gt;Running scripts in parallel could be the default in Debian when we
16598 manage to get the init.d script dependencies complete and correct. I
16599 expect we will get there in Squeeze+1, if we get manage to test and
16600 fix the remaining issues.&lt;/p&gt;
16601
16602 &lt;p&gt;If you report any problems with dependencies in init.d scripts to
16603 the BTS, please usertag the report to get it to show up at
16604 &lt;a href=&quot;http://bugs.debian.org/cgi-bin/pkgreport.cgi?users=initscripts-ng-devel@lists.alioth.debian.org&quot;&gt;the
16605 list of usertagged bugs related to this&lt;/a&gt;.&lt;/p&gt;
16606 </description>
16607 </item>
16608
16609 <item>
16610 <title>Forcing new users to change their password on first login</title>
16611 <link>http://people.skolelinux.org/pere/blog/Forcing_new_users_to_change_their_password_on_first_login.html</link>
16612 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Forcing_new_users_to_change_their_password_on_first_login.html</guid>
16613 <pubDate>Sun, 2 May 2010 13:47:00 +0200</pubDate>
16614 <description>&lt;p&gt;One interesting feature in Active Directory, is the ability to
16615 create a new user with an expired password, and thus force the user to
16616 change the password on the first login attempt.&lt;/p&gt;
16617
16618 &lt;p&gt;I&#39;m not quite sure how to do that with the LDAP setup in Debian
16619 Edu, but did some initial testing with a local account. The account
16620 and password aging information is available in /etc/shadow, but
16621 unfortunately, it is not possible to specify an expiration time for
16622 passwords, only a maximum age for passwords.&lt;/p&gt;
16623
16624 &lt;p&gt;A freshly created account (using adduser test) will have these
16625 settings in /etc/shadow:&lt;/p&gt;
16626
16627 &lt;blockquote&gt;&lt;pre&gt;
16628 root@tjener:~# chage -l test
16629 Last password change : May 02, 2010
16630 Password expires : never
16631 Password inactive : never
16632 Account expires : never
16633 Minimum number of days between password change : 0
16634 Maximum number of days between password change : 99999
16635 Number of days of warning before password expires : 7
16636 root@tjener:~#
16637 &lt;/pre&gt;&lt;/blockquote&gt;
16638
16639 &lt;p&gt;The only way I could come up with to create a user with an expired
16640 account, is to change the date of the last password change to the
16641 lowest value possible (January 1th 1970), and the maximum password age
16642 to the difference in days between that date and today. To make it
16643 simple, I went for 30 years (30 * 365 = 10950) and January 2th (to
16644 avoid testing if 0 is a valid value).&lt;/p&gt;
16645
16646 &lt;p&gt;After using these commands to set it up, it seem to work as
16647 intended:&lt;/p&gt;
16648
16649 &lt;blockquote&gt;&lt;pre&gt;
16650 root@tjener:~# chage -d 1 test; chage -M 10950 test
16651 root@tjener:~# chage -l test
16652 Last password change : Jan 02, 1970
16653 Password expires : never
16654 Password inactive : never
16655 Account expires : never
16656 Minimum number of days between password change : 0
16657 Maximum number of days between password change : 10950
16658 Number of days of warning before password expires : 7
16659 root@tjener:~#
16660 &lt;/pre&gt;&lt;/blockquote&gt;
16661
16662 &lt;p&gt;So far I have tested this with ssh and console, and kdm (in
16663 Squeeze) login, and all ask for a new password before login in the
16664 user (with ssh, I was thrown out and had to log in again).&lt;/p&gt;
16665
16666 &lt;p&gt;Perhaps we should set up something similar for Debian Edu, to make
16667 sure only the user itself have the account password?&lt;/p&gt;
16668
16669 &lt;p&gt;If you want to comment on or help out with implementing this for
16670 Debian Edu, please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
16671
16672 &lt;p&gt;Update 2010-05-02 17:20: Paul Tötterman tells me on IRC that the
16673 shadow(8) page in Debian/testing now state that setting the date of
16674 last password change to zero (0) will force the password to be changed
16675 on the first login. This was not mentioned in the manual in Lenny, so
16676 I did not notice this in my initial testing. I have tested it on
16677 Squeeze, and &#39;&lt;tt&gt;chage -d 0 username&lt;/tt&gt;&#39; do work there. I have not
16678 tested it on Lenny yet.&lt;/p&gt;
16679
16680 &lt;p&gt;Update 2010-05-02-19:05: Jim Paris tells me via email that an
16681 equivalent command to expire a password is &#39;&lt;tt&gt;passwd -e
16682 username&lt;/tt&gt;&#39;, which insert zero into the date of the last password
16683 change.&lt;/p&gt;
16684 </description>
16685 </item>
16686
16687 <item>
16688 <title>Thoughts on roaming laptop setup for Debian Edu</title>
16689 <link>http://people.skolelinux.org/pere/blog/Thoughts_on_roaming_laptop_setup_for_Debian_Edu.html</link>
16690 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Thoughts_on_roaming_laptop_setup_for_Debian_Edu.html</guid>
16691 <pubDate>Wed, 28 Apr 2010 20:40:00 +0200</pubDate>
16692 <description>&lt;p&gt;For some years now, I have wondered how we should handle laptops in
16693 Debian Edu. The Debian Edu infrastructure is mostly designed to
16694 handle stationary computers, and less suited for computers that come
16695 and go.&lt;/p&gt;
16696
16697 &lt;p&gt;Now I finally believe I have an sensible idea on how to adjust
16698 Debian Edu for laptops, by introducing a new profile for them, for
16699 example called Roaming Workstations. Here are my thought on this.
16700 The setup would consist of the following:&lt;/p&gt;
16701
16702 &lt;ul&gt;
16703
16704 &lt;li&gt;During installation, the user name of the owner / primary user of
16705 the laptop is requested and a local home directory is set up for
16706 the user, with uid and gid information fetched from the LDAP
16707 server. This allow the user to work also when offline. The
16708 central home directory can be available in a subdirectory on
16709 request, for example mounted via CIFS. It could be mounted
16710 automatically when a user log in while on the Debian Edu network,
16711 and unmounted when the machine is taken away (network down,
16712 hibernate, etc), it can be set up to do automatic mounting on
16713 request (using autofs), or perhaps some GUI button on the desktop
16714 can be used to access it when needed. Perhaps it is enough to use
16715 the fish protocol in KDE?&lt;/li&gt;
16716
16717 &lt;li&gt;Password checking is set up to use LDAP or Kerberos
16718 authentication when the machine is on the Debian Edu network, and
16719 to cache the password for offline checking when the machine unable
16720 to reach the LDAP or Kerberos server. This can be done using
16721 &lt;a href=&quot;http://www.padl.com/OSS/pam_ccreds.html&quot;&gt;libpam-ccreds&lt;/a&gt;
16722 or the Fedora developed
16723 &lt;a href=&quot;https://fedoraproject.org/wiki/Features/SSSD&quot;&gt;System
16724 Security Services Daemon&lt;/a&gt; packages.&lt;/li&gt;
16725
16726 &lt;li&gt;File synchronisation with the central home directory is set up
16727 using a shared directory in both the local and the central home
16728 directory, using unison.&lt;/li&gt;
16729
16730 &lt;li&gt;Printing should be set up to print to all printers broadcasting
16731 their existence on the local network, and should then work out of
16732 the box with CUPS. For sites needing accurate printer quotas, some
16733 system with Kerberos authentication or printing via ssh could be
16734 implemented.&lt;/li&gt;
16735
16736 &lt;li&gt;For users that should have local root access to their laptop,
16737 sudo should be used to allow this to the local user.&lt;/li&gt;
16738
16739 &lt;li&gt;It would be nice if user and group information from LDAP is
16740 cached on the client, but given that there are entries for the
16741 local user and primary group in /etc/, it should not be needed.&lt;/li&gt;
16742
16743 &lt;/ul&gt;
16744
16745 &lt;p&gt;I believe all the pieces to implement this are in Debian/testing at
16746 the moment. If we work quickly, we should be able to get this ready
16747 in time for the Squeeze release to freeze. Some of the pieces need
16748 tweaking, like libpam-ccreds should get support for pam-auth-update
16749 (&lt;a href=&quot;http://bugs.debian.org/566718&quot;&gt;#566718&lt;/a&gt;) and nslcd (or
16750 perhaps debian-edu-config) should get some integration code to stop
16751 its daemon when the LDAP server is unavailable to avoid long timeouts
16752 when disconnected from the net. If we get Kerberos enabled, we need
16753 to make sure we avoid long timeouts there too.&lt;/p&gt;
16754
16755 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
16756 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
16757 </description>
16758 </item>
16759
16760 <item>
16761 <title>Great book: &quot;Content: Selected Essays on Technology, Creativity, Copyright, and the Future of the Future&quot;</title>
16762 <link>http://people.skolelinux.org/pere/blog/Great_book___Content__Selected_Essays_on_Technology__Creativity__Copyright__and_the_Future_of_the_Future_.html</link>
16763 <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>
16764 <pubDate>Mon, 19 Apr 2010 17:10:00 +0200</pubDate>
16765 <description>&lt;p&gt;The last few weeks i have had the pleasure of reading a
16766 thought-provoking collection of essays by Cory Doctorow, on topics
16767 touching copyright, virtual worlds, the future of man when the
16768 conscience mind can be duplicated into a computer and many more. The
16769 book titled &quot;Content: Selected Essays on Technology, Creativity,
16770 Copyright, and the Future of the Future&quot; is available with few
16771 restrictions on the web, for example from
16772 &lt;a href=&quot;http://craphound.com/content/&quot;&gt;his own site&lt;/a&gt;. I read the
16773 epub-version from
16774 &lt;a href=&quot;http://www.feedbooks.com/book/2883&quot;&gt;feedbooks&lt;/a&gt; using
16775 &lt;a href=&quot;http://www.fbreader.org/&quot;&gt;fbreader&lt;/a&gt; and my N810. I
16776 strongly recommend this book.&lt;/p&gt;
16777 </description>
16778 </item>
16779
16780 <item>
16781 <title>Kerberos for Debian Edu/Squeeze?</title>
16782 <link>http://people.skolelinux.org/pere/blog/Kerberos_for_Debian_Edu_Squeeze_.html</link>
16783 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Kerberos_for_Debian_Edu_Squeeze_.html</guid>
16784 <pubDate>Wed, 14 Apr 2010 17:20:00 +0200</pubDate>
16785 <description>&lt;p&gt;&lt;a href=&quot;http://www.nuug.no/aktiviteter/20100413-kerberos/&quot;&gt;Yesterdays
16786 NUUG presentation&lt;/a&gt; about Kerberos was inspiring, and reminded me
16787 about the need to start using Kerberos in Skolelinux. Setting up a
16788 Kerberos server seem to be straight forward, and if we get this in
16789 place a long time before the Squeeze version of Debian freezes, we
16790 have a chance to migrate Skolelinux away from NFSv3 for the home
16791 directories, and over to an architecture where the infrastructure do
16792 not have to trust IP addresses and machines, and instead can trust
16793 users and cryptographic keys instead.&lt;/p&gt;
16794
16795 &lt;p&gt;A challenge will be integration and administration. Is there a
16796 Kerberos implementation for Debian where one can control the
16797 administration access in Kerberos using LDAP groups? With it, the
16798 school administration will have to maintain access control using flat
16799 files on the main server, which give a huge potential for errors.&lt;/p&gt;
16800
16801 &lt;p&gt;A related question I would like to know is how well Kerberos and
16802 pam-ccreds (offline password check) work together. Anyone know?&lt;/p&gt;
16803
16804 &lt;p&gt;Next step will be to use Kerberos for access control in Lwat and
16805 Nagios. I have no idea how much work that will be to implement. We
16806 would also need to document how to integrate with Windows AD, as such
16807 shared network will require two Kerberos realms that need to cooperate
16808 to work properly.&lt;/p&gt;
16809
16810 &lt;p&gt;I believe a good start would be to start using Kerberos on the
16811 skolelinux.no machines, and this way get ourselves experience with
16812 configuration and integration. A natural starting point would be
16813 setting up ldap.skolelinux.no as the Kerberos server, and migrate the
16814 rest of the machines from PAM via LDAP to PAM via Kerberos one at the
16815 time.&lt;/p&gt;
16816
16817 &lt;p&gt;If you would like to contribute to get this working in Skolelinux,
16818 I recommend you to see the video recording from yesterdays NUUG
16819 presentation, and start using Kerberos at home. The video show show
16820 up in a few days.&lt;/p&gt;
16821 </description>
16822 </item>
16823
16824 <item>
16825 <title>After 6 years of waiting, the Xreset.d feature is implemented</title>
16826 <link>http://people.skolelinux.org/pere/blog/After_6_years_of_waiting__the_Xreset_d_feature_is_implemented.html</link>
16827 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/After_6_years_of_waiting__the_Xreset_d_feature_is_implemented.html</guid>
16828 <pubDate>Sat, 6 Mar 2010 18:15:00 +0100</pubDate>
16829 <description>&lt;p&gt;6 years ago, as part of the Debian Edu development I am involved
16830 in, I asked for a hook in the kdm and gdm setup to run scripts as root
16831 when the user log out. A bug was submitted against the xfree86-common
16832 package in 2004 (&lt;a href=&quot;http://bugs.debian.org/230422&quot;&gt;#230422&lt;/a&gt;),
16833 and revisited every time Debian Edu was working on a new release.
16834 Today, this finally paid off.&lt;/p&gt;
16835
16836 &lt;p&gt;The framework for this feature was today commited to the git
16837 repositry for the xorg package, and the git repository for xdm has
16838 been updated to use this framework. Next on my agenda is to make sure
16839 kdm and gdm also add code to use this framework.&lt;/p&gt;
16840
16841 &lt;p&gt;In Debian Edu, we want to ability to run commands as root when the
16842 user log out, to get rid of runaway processes and do general cleanup
16843 after a user. With this framework in place, we finally can do that in
16844 a generic way that work with all display managers using this
16845 framework. My goal is to get all display managers in Debian use it,
16846 similar to how they use the Xsession.d framework today.&lt;p&gt;
16847 </description>
16848 </item>
16849
16850 <item>
16851 <title>Debian Edu / Skolelinux based on Lenny released, work continues</title>
16852 <link>http://people.skolelinux.org/pere/blog/Debian_Edu___Skolelinux_based_on_Lenny_released__work_continues.html</link>
16853 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu___Skolelinux_based_on_Lenny_released__work_continues.html</guid>
16854 <pubDate>Thu, 11 Feb 2010 17:15:00 +0100</pubDate>
16855 <description>&lt;p&gt;On Tuesday, the Debian/Lenny based version of
16856 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt; was finally
16857 shipped. This was a major leap forward for the project, and I am very
16858 pleased that we finally got the release wrapped up. Work on the first
16859 point release starts imediately, as we plan to get that one out a
16860 month after the major release, to include all fixes for bugs we found
16861 and fixed too late in the release process to include last Tuesday.&lt;/p&gt;
16862
16863 &lt;p&gt;Perhaps it even is time for some partying?&lt;/p&gt;
16864
16865 &lt;p&gt;After this first point release, my plan is to focus again on the
16866 next major release, based on Squeeze. We will try to get as many of
16867 the fixes we need into the official Debian packages before the freeze,
16868 and have just a few weeks or months to make it happen.&lt;/p&gt;
16869 </description>
16870 </item>
16871
16872 <item>
16873 <title>Automatic Munin and Nagios configuration</title>
16874 <link>http://people.skolelinux.org/pere/blog/Automatic_Munin_and_Nagios_configuration.html</link>
16875 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatic_Munin_and_Nagios_configuration.html</guid>
16876 <pubDate>Wed, 27 Jan 2010 15:15:00 +0100</pubDate>
16877 <description>&lt;p&gt;One of the new features in the next Debian/Lenny based release of
16878 Debian Edu/Skolelinux, which is scheduled for release in the next few
16879 days, is automatic configuration of the service monitoring system
16880 Nagios. The previous release had automatic configuration of trend
16881 analysis using Munin, and this Lenny based release take that a step
16882 further.&lt;/p&gt;
16883
16884 &lt;p&gt;When installing a Debian Edu Main-server, it is automatically
16885 configured as a Munin and Nagios server. In addition, it is
16886 configured to be a server for the
16887 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/HowTo/SiteSummary&quot;&gt;SiteSummary
16888 system&lt;/a&gt; I have written for use in Debian Edu. The SiteSummary
16889 system is inspired by a system used by the University of Oslo where I
16890 work. In short, the system provide a centralised collector of
16891 information about the computers on the network, and a client on each
16892 computer submitting information to this collector. This allow for
16893 automatic information on which packages are installed on each machine,
16894 which kernel the machines are using, what kind of configuration the
16895 packages got etc. This also allow us to automatically generate Munin
16896 and Nagios configuration.&lt;/p&gt;
16897
16898 &lt;p&gt;All computers reporting to the sitesummary collector with the
16899 munin-node package installed is automatically enabled as a Munin
16900 client and graphs from the statistics collected from that machine show
16901 up automatically on http://www/munin/ on the Main-server.&lt;/p&gt;
16902
16903 &lt;p&gt;All non-laptop computers reporting to the sitesummary collector are
16904 automatically monitored for network presence (ping and any network
16905 services detected). In addition, all computers (also laptops) with
16906 the nagios-nrpe-server package installed and configured the way
16907 sitesummary would configure it, are monitored for full disks, software
16908 raid status, swap free and other checks that need to run locally on
16909 the machine.&lt;/p&gt;
16910
16911 &lt;p&gt;The result is that the administrator on a school using Debian Edu
16912 based on Lenny will be able to check the health of his installation
16913 with one look at the Nagios settings, without having to spend any time
16914 keeping the Nagios configuration up-to-date.&lt;/p&gt;
16915
16916 &lt;p&gt;The only configuration one need to do to get Nagios up and running
16917 is to set the password used to get access via HTTP. The system
16918 administrator need to run &quot;&lt;tt&gt;htpasswd /etc/nagios3/htpasswd.users
16919 nagiosadmin&lt;/tt&gt;&quot; to create a nagiosadmin user and set a password for
16920 it to be able to log into the Nagios web pages. After that,
16921 everything is taken care of.&lt;/p&gt;
16922 </description>
16923 </item>
16924
16925 <item>
16926 <title>Relative popularity of document formats (MS Office vs. ODF)</title>
16927 <link>http://people.skolelinux.org/pere/blog/Relative_popularity_of_document_formats__MS_Office_vs__ODF_.html</link>
16928 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Relative_popularity_of_document_formats__MS_Office_vs__ODF_.html</guid>
16929 <pubDate>Wed, 12 Aug 2009 15:50:00 +0200</pubDate>
16930 <description>&lt;p&gt;Just for fun, I did a search right now on Google for a few file ODF
16931 and MS Office based formats (not to be mistaken for ISO or ECMA
16932 OOXML), to get an idea of their relative usage. I searched using
16933 &#39;filetype:odt&#39; and equvalent terms, and got these results:&lt;/P&gt;
16934
16935 &lt;table&gt;
16936 &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;
16937 &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;
16938 &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;
16939 &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;
16940 &lt;/table&gt;
16941
16942 &lt;p&gt;Next, I added a &#39;site:no&#39; limit to get the numbers for Norway, and
16943 got these numbers:&lt;/p&gt;
16944
16945 &lt;table&gt;
16946 &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;
16947 &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;
16948 &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;
16949 &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;
16950 &lt;/table&gt;
16951
16952 &lt;p&gt;I wonder how these numbers change over time.&lt;/p&gt;
16953
16954 &lt;p&gt;I am aware of Google returning different results and numbers based
16955 on where the search is done, so I guess these numbers will differ if
16956 they are conduced in another country. Because of this, I did the same
16957 search from a machine in California, USA, a few minutes after the
16958 search done from a machine here in Norway.&lt;/p&gt;
16959
16960
16961 &lt;table&gt;
16962 &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;
16963 &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;
16964 &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;
16965 &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;
16966 &lt;/table&gt;
16967
16968 &lt;p&gt;And with &#39;site:no&#39;:
16969
16970 &lt;table&gt;
16971 &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;
16972 &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;
16973 &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;
16974 &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;
16975 &lt;/table&gt;
16976
16977 &lt;p&gt;Interesting difference, not sure what to conclude from these
16978 numbers.&lt;/p&gt;
16979 </description>
16980 </item>
16981
16982 <item>
16983 <title>ISO still hope to fix OOXML</title>
16984 <link>http://people.skolelinux.org/pere/blog/ISO_still_hope_to_fix_OOXML.html</link>
16985 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/ISO_still_hope_to_fix_OOXML.html</guid>
16986 <pubDate>Sat, 8 Aug 2009 14:00:00 +0200</pubDate>
16987 <description>&lt;p&gt;According to &lt;a
16988 href=&quot;http://twerner.blogspot.com/2009/08/defects-of-office-open-xml.html&quot;&gt;a
16989 blog post from Torsten Werner&lt;/a&gt;, the current defect report for ISO
16990 29500 (ISO OOXML) is 809 pages. His interesting point is that the
16991 defect report is 71 pages more than the full ODF 1.1 specification.
16992 Personally I find it more interesting that ISO still believe ISO OOXML
16993 can be fixed in ISO. Personally, I believe it is broken beyon repair,
16994 and I completely lack any trust in ISO for being able to get anywhere
16995 close to solving the problems. I was part of the Norwegian committee
16996 involved in the OOXML fast track process, and was not impressed with
16997 Standard Norway and ISO in how they handled it.&lt;/p&gt;
16998
16999 &lt;p&gt;These days I focus on ODF instead, which seem like a specification
17000 with the future ahead of it. We are working in NUUG to organise a ODF
17001 seminar this autumn.&lt;/p&gt;
17002 </description>
17003 </item>
17004
17005 <item>
17006 <title>Debian has switched to dependency based boot sequencing</title>
17007 <link>http://people.skolelinux.org/pere/blog/Debian_has_switched_to_dependency_based_boot_sequencing.html</link>
17008 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_has_switched_to_dependency_based_boot_sequencing.html</guid>
17009 <pubDate>Mon, 27 Jul 2009 23:50:00 +0200</pubDate>
17010 <description>&lt;p&gt;Since this evening, with the upload of sysvinit version 2.87dsf-2,
17011 and the upload of insserv version 1.12.0-10 yesterday, Debian unstable
17012 have been migrated to using dependency based boot sequencing. This
17013 conclude work me and others have been doing for the last three days.
17014 It feels great to see this finally part of the default Debian
17015 installation. Now we just need to weed out the last few problems that
17016 are bound to show up, to get everything ready for Squeeze.&lt;/p&gt;
17017
17018 &lt;p&gt;The next step is migrating /sbin/init from sysvinit to upstart, and
17019 fixing the more fundamental problem of handing the event based
17020 non-predictable kernel in the early boot.&lt;/p&gt;
17021 </description>
17022 </item>
17023
17024 <item>
17025 <title>Taking over sysvinit development</title>
17026 <link>http://people.skolelinux.org/pere/blog/Taking_over_sysvinit_development.html</link>
17027 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Taking_over_sysvinit_development.html</guid>
17028 <pubDate>Wed, 22 Jul 2009 23:00:00 +0200</pubDate>
17029 <description>&lt;p&gt;After several years of frustration with the lack of activity from
17030 the existing sysvinit upstream developer, I decided a few weeks ago to
17031 take over the package and become the new upstream. The number of
17032 patches to track for the Debian package was becoming a burden, and the
17033 lack of synchronization between the distribution made it hard to keep
17034 the package up to date.&lt;/p&gt;
17035
17036 &lt;p&gt;On the new sysvinit team is the SuSe maintainer Dr. Werner Fink,
17037 and my Debian co-maintainer Kel Modderman. About 10 days ago, I made
17038 a new upstream tarball with version number 2.87dsf (for Debian, SuSe
17039 and Fedora), based on the patches currently in use in these
17040 distributions. We Debian maintainers plan to move to this tarball as
17041 the new upstream as soon as we find time to do the merge. Since the
17042 new tarball was created, we agreed with Werner at SuSe to make a new
17043 upstream project at &lt;a href=&quot;http://savannah.nongnu.org/&quot;&gt;Savannah&lt;/a&gt;, and continue
17044 development there. The project is registered and currently waiting
17045 for approval by the Savannah administrators, and as soon as it is
17046 approved, we will import the old versions from svn and continue
17047 working on the future release.&lt;/p&gt;
17048
17049 &lt;p&gt;It is a bit ironic that this is done now, when some of the involved
17050 distributions are moving to upstart as a syvinit replacement.&lt;/p&gt;
17051 </description>
17052 </item>
17053
17054 <item>
17055 <title>Debian boots quicker and quicker</title>
17056 <link>http://people.skolelinux.org/pere/blog/Debian_boots_quicker_and_quicker.html</link>
17057 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_boots_quicker_and_quicker.html</guid>
17058 <pubDate>Wed, 24 Jun 2009 21:40:00 +0200</pubDate>
17059 <description>&lt;p&gt;I spent Monday and tuesday this week in London with a lot of the
17060 people involved in the boot system on Debian and Ubuntu, to see if we
17061 could find more ways to speed up the boot system. This was an Ubuntu
17062 funded
17063 &lt;a href=&quot;https://wiki.ubuntu.com/FoundationsTeam/BootPerformance/DebianUbuntuSprint&quot;&gt;developer
17064 gathering&lt;/a&gt;. It was quite productive. We also discussed the future
17065 of boot systems, and ways to handle the increasing number of boot
17066 issues introduced by the Linux kernel becoming more and more
17067 asynchronous and event base. The Ubuntu approach using udev and
17068 upstart might be a good way forward. Time will show.&lt;/p&gt;
17069
17070 &lt;p&gt;Anyway, there are a few ways at the moment to speed up the boot
17071 process in Debian. All of these should be applied to get a quick
17072 boot:&lt;/p&gt;
17073
17074 &lt;ul&gt;
17075
17076 &lt;li&gt;Use dash as /bin/sh.&lt;/li&gt;
17077
17078 &lt;li&gt;Disable the init.d/hwclock*.sh scripts and make sure the hardware
17079 clock is in UTC.&lt;/li&gt;
17080
17081 &lt;li&gt;Install and activate the insserv package to enable
17082 &lt;a href=&quot;http://wiki.debian.org/LSBInitScripts/DependencyBasedBoot&quot;&gt;dependency
17083 based boot sequencing&lt;/a&gt;, and enable concurrent booting.&lt;/li&gt;
17084
17085 &lt;/ul&gt;
17086
17087 These points are based on the Google summer of code work done by
17088 &lt;a href=&quot;http://initscripts-ng.alioth.debian.org/soc2006-bootsystem/&quot;&gt;Carlos
17089 Villegas&lt;/a&gt;.
17090
17091 &lt;p&gt;Support for makefile-style concurrency during boot was uploaded to
17092 unstable yesterday. When we tested it, we were able to cut 6 seconds
17093 from the boot sequence. It depend on very correct dependency
17094 declaration in all init.d scripts, so I expect us to find edge cases
17095 where the dependences in some scripts are slightly wrong when we start
17096 using this.&lt;/p&gt;
17097
17098 &lt;p&gt;On our IRC channel for this effort, #pkg-sysvinit, a new idea was
17099 introduced by Raphael Geissert today, one that could affect the
17100 startup speed as well. Instead of starting some scripts concurrently
17101 from rcS.d/ and another set of scripts from rc2.d/, it would be
17102 possible to run a of them in the same process. A quick way to test
17103 this would be to enable insserv and run &#39;mv /etc/rc2.d/S* /etc/rcS.d/;
17104 insserv&#39;. Will need to test if that work. :)&lt;/p&gt;
17105 </description>
17106 </item>
17107
17108 <item>
17109 <title>Two projects that have improved the quality of free software a lot</title>
17110 <link>http://people.skolelinux.org/pere/blog/Two_projects_that_have_improved_the_quality_of_free_software_a_lot.html</link>
17111 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Two_projects_that_have_improved_the_quality_of_free_software_a_lot.html</guid>
17112 <pubDate>Sat, 2 May 2009 15:00:00 +0200</pubDate>
17113 <description>&lt;p&gt;There are two software projects that have had huge influence on the
17114 quality of free software, and I wanted to mention both in case someone
17115 do not yet know them.&lt;/p&gt;
17116
17117 &lt;p&gt;The first one is &lt;a href=&quot;http://valgrind.org/&quot;&gt;valgrind&lt;/a&gt;, a
17118 tool to detect and expose errors in the memory handling of programs.
17119 It is easy to use, all one need to do is to run &#39;valgrind program&#39;,
17120 and it will report any problems on stdout. It is even better if the
17121 program include debug information. With debug information, it is able
17122 to report the source file name and line number where the problem
17123 occurs. It can report things like &#39;reading past memory block in file
17124 X line N, the memory block was allocated in file Y, line M&#39;, and
17125 &#39;using uninitialised value in control logic&#39;. This tool has made it
17126 trivial to investigate reproducible crash bugs in programs, and have
17127 reduced the number of this kind of bugs in free software a lot.
17128
17129 &lt;p&gt;The second one is
17130 &lt;a href=&quot;http://en.wikipedia.org/wiki/Coverity&quot;&gt;Coverity&lt;/a&gt; which is
17131 a source code checker. It is able to process the source of a program
17132 and find problems in the logic without running the program. It
17133 started out as the Stanford Checker and became well known when it was
17134 used to find bugs in the Linux kernel. It is now a commercial tool
17135 and the company behind it is running
17136 &lt;a href=&quot;http://www.scan.coverity.com/&quot;&gt;a community service&lt;/a&gt; for the
17137 free software community, where a lot of free software projects get
17138 their source checked for free. Several thousand defects have been
17139 found and fixed so far. It can find errors like &#39;lock L taken in file
17140 X line N is never released if exiting in line M&#39;, or &#39;the code in file
17141 Y lines O to P can never be executed&#39;. The projects included in the
17142 community service project have managed to get rid of a lot of
17143 reliability problems thanks to Coverity.&lt;/p&gt;
17144
17145 &lt;p&gt;I believe tools like this, that are able to automatically find
17146 errors in the source, are vital to improve the quality of software and
17147 make sure we can get rid of the crashing and failing software we are
17148 surrounded by today.&lt;/p&gt;
17149 </description>
17150 </item>
17151
17152 <item>
17153 <title>No patch is not better than a useless patch</title>
17154 <link>http://people.skolelinux.org/pere/blog/No_patch_is_not_better_than_a_useless_patch.html</link>
17155 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/No_patch_is_not_better_than_a_useless_patch.html</guid>
17156 <pubDate>Tue, 28 Apr 2009 09:30:00 +0200</pubDate>
17157 <description>&lt;p&gt;Julien Blache
17158 &lt;a href=&quot;http://blog.technologeek.org/2009/04/12/214&quot;&gt;claim that no
17159 patch is better than a useless patch&lt;/a&gt;. I completely disagree, as a
17160 patch allow one to discuss a concrete and proposed solution, and also
17161 prove that the issue at hand is important enough for someone to spent
17162 time on fixing it. No patch do not provide any of these positive
17163 properties.&lt;/p&gt;
17164 </description>
17165 </item>
17166
17167 <item>
17168 <title>Recording video from cron using VLC</title>
17169 <link>http://people.skolelinux.org/pere/blog/Recording_video_from_cron_using_VLC.html</link>
17170 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Recording_video_from_cron_using_VLC.html</guid>
17171 <pubDate>Sun, 5 Apr 2009 10:00:00 +0200</pubDate>
17172 <description>&lt;p&gt;One think I have wanted to figure out for a along time is how to
17173 run vlc from cron to do recording of video streams on the net. The
17174 task is trivial with mplayer, but I do not really trust the security
17175 of mplayer (it crashes too often on strange input), and thus prefer
17176 vlc. I finally found a way to do it today. I spent an hour or so
17177 searching the web for recipes and reading the documentation. The
17178 hardest part was to get rid of the GUI window, but after finding the
17179 dummy interface, the command line finally presented itself:&lt;/p&gt;
17180
17181 &lt;blockquote&gt;&lt;pre&gt;URL=http://www.ping.uio.no/video/rms-oslo_2009.ogg
17182 SAVEFILE=rms.ogg
17183 DISPLAY= vlc -q $URL \
17184 --sout=&quot;#duplicate{dst=std{access=file,url=&#39;$SAVEFILE&#39;},dst=nodisplay}&quot; \
17185 --intf=dummy&lt;/pre&gt;&lt;/blockquote&gt;
17186
17187 &lt;p&gt;The command stream the URL and store it in the SAVEFILE by
17188 duplicating the output stream to &quot;nodisplay&quot; and the file, using the
17189 dummy interface. The dummy interface and the nodisplay output make
17190 sure no X interface is needed.&lt;/p&gt;
17191
17192 &lt;p&gt;The cron job then need to start this job with the appropriate URL
17193 and file name to save, sleep for the duration wanted, and then kill
17194 the vlc process with SIGTERM. Here is a complete script
17195 &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;
17196
17197 &lt;blockquote&gt;&lt;pre&gt;#!/bin/sh
17198 set -e
17199 URL=&quot;$1&quot;
17200 SAVEFILE=&quot;$2&quot;
17201 DURATION=&quot;$3&quot;
17202 DISPLAY= vlc -q &quot;$URL&quot; \
17203 --sout=&quot;#duplicate{dst=std{access=file,url=&#39;$SAVEFILE&#39;},dst=nodisplay}&quot; \
17204 --intf=dummy &lt; /dev/null &gt; /dev/null 2&gt;&amp;1 &amp;
17205 pid=$!
17206 sleep $DURATION
17207 kill $pid
17208 wait $pid&lt;/pre&gt;&lt;/blockquote&gt;
17209 </description>
17210 </item>
17211
17212 <item>
17213 <title>Standardize on protocols and formats, not vendors and applications</title>
17214 <link>http://people.skolelinux.org/pere/blog/Standardize_on_protocols_and_formats__not_vendors_and_applications.html</link>
17215 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Standardize_on_protocols_and_formats__not_vendors_and_applications.html</guid>
17216 <pubDate>Mon, 30 Mar 2009 11:50:00 +0200</pubDate>
17217 <description>&lt;p&gt;Where I work at the University of Oslo, one decision stand out as a
17218 very good one to form a long lived computer infrastructure. It is the
17219 simple one, lost by many in todays computer industry: Standardize on
17220 open network protocols and open exchange/storage formats, not applications.
17221 Applications come and go, while protocols and files tend to stay, and
17222 thus one want to make it easy to change application and vendor, while
17223 avoiding conversion costs and locking users to a specific platform or
17224 application.&lt;/p&gt;
17225
17226 &lt;p&gt;This approach make it possible to replace the client applications
17227 independently of the server applications. One can even allow users to
17228 use several different applications as long as they handle the selected
17229 protocol and format. In the normal case, only one client application
17230 is recommended and users only get help if they choose to use this
17231 application, but those that want to deviate from the easy path are not
17232 blocked from doing so.&lt;/p&gt;
17233
17234 &lt;p&gt;It also allow us to replace the server side without forcing the
17235 users to replace their applications, and thus allow us to select the
17236 best server implementation at any moment, when scale and resouce
17237 requirements change.&lt;/p&gt;
17238
17239 &lt;p&gt;I strongly recommend standardizing - on open network protocols and
17240 open formats, but I would never recommend standardizing on a single
17241 application that do not use open network protocol or open formats.&lt;/p&gt;
17242 </description>
17243 </item>
17244
17245 <item>
17246 <title>Returning from Skolelinux developer gathering</title>
17247 <link>http://people.skolelinux.org/pere/blog/Returning_from_Skolelinux_developer_gathering.html</link>
17248 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Returning_from_Skolelinux_developer_gathering.html</guid>
17249 <pubDate>Sun, 29 Mar 2009 21:00:00 +0200</pubDate>
17250 <description>&lt;p&gt;I&#39;m sitting on the train going home from this weekends Debian
17251 Edu/Skolelinux development gathering. I got a bit done tuning the
17252 desktop, and looked into the dynamic service location protocol
17253 implementation avahi. It look like it could be useful for us. Almost
17254 30 people participated, and I believe it was a great environment to
17255 get to know the Skolelinux system. Walter Bender, involved in the
17256 development of the Sugar educational platform, presented his stuff and
17257 also helped me improve my OLPC installation. He also showed me that
17258 his Turtle Art application can be used in standalone mode, and we
17259 agreed that I would help getting it packaged for Debian. As a
17260 standalone application it would be great for Debian Edu. We also
17261 tried to get the video conferencing working with two OLPCs, but that
17262 proved to be too hard for us. The application seem to need more work
17263 before it is ready for me. I look forward to getting home and relax
17264 now. :)&lt;/p&gt;
17265 </description>
17266 </item>
17267
17268 <item>
17269 <title>Time for new LDAP schemas replacing RFC 2307?</title>
17270 <link>http://people.skolelinux.org/pere/blog/Time_for_new__LDAP_schemas_replacing_RFC_2307_.html</link>
17271 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Time_for_new__LDAP_schemas_replacing_RFC_2307_.html</guid>
17272 <pubDate>Sun, 29 Mar 2009 20:30:00 +0200</pubDate>
17273 <description>&lt;p&gt;The state of standardized LDAP schemas on Linux is far from
17274 optimal. There is RFC 2307 documenting one way to store NIS maps in
17275 LDAP, and a modified version of this normally called RFC 2307bis, with
17276 some modifications to be compatible with Active Directory. The RFC
17277 specification handle the content of a lot of system databases, but do
17278 not handle DNS zones and DHCP configuration.&lt;/p&gt;
17279
17280 &lt;p&gt;In &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu/Skolelinux&lt;/a&gt;,
17281 we would like to store information about users, SMB clients/hosts,
17282 filegroups, netgroups (users and hosts), DHCP and DNS configuration,
17283 and LTSP configuration in LDAP. These objects have a lot in common,
17284 but with the current LDAP schemas it is not possible to have one
17285 object per entity. For example, one need to have at least three LDAP
17286 objects for a given computer, one with the SMB related stuff, one with
17287 DNS information and another with DHCP information. The schemas
17288 provided for DNS and DHCP are impossible to combine into one LDAP
17289 object. In addition, it is impossible to implement quick queries for
17290 netgroup membership, because of the way NIS triples are implemented.
17291 It just do not scale. I believe it is time for a few RFC
17292 specifications to cleam up this mess.&lt;/p&gt;
17293
17294 &lt;p&gt;I would like to have one LDAP object representing each computer in
17295 the network, and this object can then keep the SMB (ie host key), DHCP
17296 (mac address/name) and DNS (name/IP address) settings in one place.
17297 It need to be efficently stored to make sure it scale well.&lt;/p&gt;
17298
17299 &lt;p&gt;I would also like to have a quick way to map from a user or
17300 computer and to the net group this user or computer is a member.&lt;/p&gt;
17301
17302 &lt;p&gt;Active Directory have done a better job than unix heads like myself
17303 in this regard, and the unix side need to catch up. Time to start a
17304 new IETF work group?&lt;/p&gt;
17305 </description>
17306 </item>
17307
17308 <item>
17309 <title>Checking server hardware support status for Dell, HP and IBM servers</title>
17310 <link>http://people.skolelinux.org/pere/blog/Checking_server_hardware_support_status_for_Dell__HP_and_IBM_servers.html</link>
17311 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Checking_server_hardware_support_status_for_Dell__HP_and_IBM_servers.html</guid>
17312 <pubDate>Sat, 28 Feb 2009 23:50:00 +0100</pubDate>
17313 <description>&lt;p&gt;At work, we have a few hundred Linux servers, and with that amount
17314 of hardware it is important to keep track of when the hardware support
17315 contract expire for each server. We have a machine (and service)
17316 register, which until recently did not contain much useful besides the
17317 machine room location and contact information for the system owner for
17318 each machine. To make it easier for us to track support contract
17319 status, I&#39;ve recently spent time on extending the machine register to
17320 include information about when the support contract expire, and to tag
17321 machines with expired contracts to make it easy to get a list of such
17322 machines. I extended a perl script already being used to import
17323 information about machines into the register, to also do some screen
17324 scraping off the sites of Dell, HP and IBM (our majority of machines
17325 are from these vendors), and automatically check the support status
17326 for the relevant machines. This make the support status information
17327 easily available and I hope it will make it easier for the computer
17328 owner to know when to get new hardware or renew the support contract.
17329 The result of this work documented that 27% of the machines in the
17330 registry is without a support contract, and made it very easy to find
17331 them. 27% might seem like a lot, but I see it more as the case of us
17332 using machines a bit longer than the 3 years a normal support contract
17333 last, to have test machines and a platform for less important
17334 services. After all, the machines without a contract are working fine
17335 at the moment and the lack of contract is only a problem if any of
17336 them break down. When that happen, we can either fix it using spare
17337 parts from other machines or move the service to another old
17338 machine.&lt;/p&gt;
17339
17340 &lt;p&gt;I believe the code for screen scraping the Dell site was originally
17341 written by Trond Hasle Amundsen, and later adjusted by me and Morten
17342 Werner Forsbring. The HP scraping was written by me after reading a
17343 nice article in ;login: about how to use WWW::Mechanize, and the IBM
17344 scraping was written by me based on the Dell code. I know the HTML
17345 parsing could be done using nice libraries, but did not want to
17346 introduce more dependencies. This is the current incarnation:&lt;/p&gt;
17347
17348 &lt;pre&gt;
17349 use LWP::Simple;
17350 use POSIX;
17351 use WWW::Mechanize;
17352 use Date::Parse;
17353 [...]
17354 sub get_support_info {
17355 my ($machine, $model, $serial, $productnumber) = @_;
17356 my $str;
17357
17358 if ( $model =~ m/^Dell / ) {
17359 # fetch website from Dell support
17360 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;;
17361 my $webpage = get($url);
17362 return undef unless ($webpage);
17363
17364 my $daysleft = -1;
17365 my @lines = split(/\n/, $webpage);
17366 foreach my $line (@lines) {
17367 next unless ($line =~ m/Beskrivelse/);
17368 $line =~ s/&amp;lt;[^&gt;]+?&gt;/;/gm;
17369 $line =~ s/^.+?;(Beskrivelse;)/$1/;
17370
17371 my @f = split(/\;/, $line);
17372 @f = @f[13 .. $#f];
17373 my $lastend = &quot;&quot;;
17374 while ($f[3] eq &quot;DELL&quot;) {
17375 my ($type, $startstr, $endstr, $days) = @f[0, 5, 7, 10];
17376
17377 my $start = POSIX::strftime(&quot;%Y-%m-%d&quot;,
17378 localtime(str2time($startstr)));
17379 my $end = POSIX::strftime(&quot;%Y-%m-%d&quot;,
17380 localtime(str2time($endstr)));
17381 $str .= &quot;$type $start -&gt; $end &quot;;
17382 @f = @f[14 .. $#f];
17383 $lastend = $end if ($end gt $lastend);
17384 }
17385 my $today = POSIX::strftime(&quot;%Y-%m-%d&quot;, localtime(time));
17386 tag_machine_unsupported($machine)
17387 if ($lastend lt $today);
17388 }
17389 } elsif ( $model =~ m/^HP / ) {
17390 my $mech = WWW::Mechanize-&gt;new();
17391 my $url =
17392 &#39;http://www1.itrc.hp.com/service/ewarranty/warrantyInput.do&#39;;
17393 $mech-&gt;get($url);
17394 my $fields = {
17395 &#39;BODServiceID&#39; =&gt; &#39;NA&#39;,
17396 &#39;RegisteredPurchaseDate&#39; =&gt; &#39;&#39;,
17397 &#39;country&#39; =&gt; &#39;NO&#39;,
17398 &#39;productNumber&#39; =&gt; $productnumber,
17399 &#39;serialNumber1&#39; =&gt; $serial,
17400 };
17401 $mech-&gt;submit_form( form_number =&gt; 2,
17402 fields =&gt; $fields );
17403 # Next step is screen scraping
17404 my $content = $mech-&gt;content();
17405
17406 $content =~ s/&amp;lt;[^&gt;]+?&gt;/;/gm;
17407 $content =~ s/\s+/ /gm;
17408 $content =~ s/;\s*;/;;/gm;
17409 $content =~ s/;[\s;]+/;/gm;
17410
17411 my $today = POSIX::strftime(&quot;%Y-%m-%d&quot;, localtime(time));
17412
17413 while ($content =~ m/;Warranty Type;/) {
17414 my ($type, $status, $startstr, $stopstr) = $content =~
17415 m/;Warranty Type;([^;]+);.+?;Status;(\w+);Start Date;([^;]+);End Date;([^;]+);/;
17416 $content =~ s/^.+?;Warranty Type;//;
17417 my $start = POSIX::strftime(&quot;%Y-%m-%d&quot;,
17418 localtime(str2time($startstr)));
17419 my $end = POSIX::strftime(&quot;%Y-%m-%d&quot;,
17420 localtime(str2time($stopstr)));
17421
17422 $str .= &quot;$type ($status) $start -&gt; $end &quot;;
17423
17424 tag_machine_unsupported($machine)
17425 if ($end lt $today);
17426 }
17427 } elsif ( $model =~ m/^IBM / ) {
17428 # This code ignore extended support contracts.
17429 my ($producttype) = $model =~ m/.*-\[(.{4}).+\]-/;
17430 if ($producttype &amp;amp;&amp;amp; $serial) {
17431 my $content =
17432 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;);
17433 if ($content) {
17434 $content =~ s/&amp;lt;[^&gt;]+?&gt;/;/gm;
17435 $content =~ s/\s+/ /gm;
17436 $content =~ s/;\s*;/;;/gm;
17437 $content =~ s/;[\s;]+/;/gm;
17438
17439 $content =~ s/^.+?;Warranty status;//;
17440 my ($status, $end) = $content =~ m/;Warranty status;([^;]+)\s*;Expiration date;(\S+) ;/;
17441
17442 $str .= &quot;($status) -&gt; $end &quot;;
17443
17444 my $today = POSIX::strftime(&quot;%Y-%m-%d&quot;, localtime(time));
17445 tag_machine_unsupported($machine)
17446 if ($end lt $today);
17447 }
17448 }
17449 }
17450 return $str;
17451 }
17452 &lt;/pre&gt;
17453
17454 &lt;p&gt;Here are some examples on how to use the function, using fake
17455 serial numbers. The information passed in as arguments are fetched
17456 from dmidecode.&lt;/p&gt;
17457
17458 &lt;pre&gt;
17459 print get_support_info(&quot;hp.host&quot;, &quot;HP ProLiant BL460c G1&quot;, &quot;1234567890&quot;
17460 &quot;447707-B21&quot;);
17461 print get_support_info(&quot;dell.host&quot;, &quot;Dell Inc. PowerEdge 2950&quot;, &quot;1234567&quot;);
17462 print get_support_info(&quot;ibm.host&quot;, &quot;IBM eserver xSeries 345 -[867061X]-&quot;,
17463 &quot;1234567&quot;);
17464 &lt;/pre&gt;
17465
17466 &lt;p&gt;I would recommend this approach for tracking support contracts for
17467 everyone with more than a few computers to administer. :)&lt;/p&gt;
17468
17469 &lt;p&gt;Update 2009-03-06: The IBM page do not include extended support
17470 contracts, so it is useless in that case. The original Dell code do
17471 not handle extended support contracts either, but has been updated to
17472 do so.&lt;/p&gt;
17473 </description>
17474 </item>
17475
17476 <item>
17477 <title>Using bar codes at a computing center</title>
17478 <link>http://people.skolelinux.org/pere/blog/Using_bar_codes_at_a_computing_center.html</link>
17479 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Using_bar_codes_at_a_computing_center.html</guid>
17480 <pubDate>Fri, 20 Feb 2009 08:50:00 +0100</pubDate>
17481 <description>&lt;p&gt;At work with the University of Oslo, we have several hundred computers
17482 in our computing center. This give us a challenge in tracking the
17483 location and cabling of the computers, when they are added, moved and
17484 removed. Some times the location register is not updated when a
17485 computer is inserted or moved and we then have to search the room for
17486 the &quot;missing&quot; computer.&lt;/p&gt;
17487
17488 &lt;p&gt;In the last issue of Linux Journal, I came across a project
17489 &lt;a href=&quot;http://www.libdmtx.org/&quot;&gt;libdmtx&lt;/a&gt; to write and read bar
17490 code blocks as defined in the
17491 &lt;a href=&quot;http://en.wikipedia.org/wiki/Data_Matrix&quot;&gt;The Data Matrix
17492 Standard&lt;/a&gt;. This is bar codes that can be read with a normal
17493 digital camera, for example that on a cell phone, and several such bar
17494 codes can be read by libdmtx from one picture. The bar code standard
17495 allow up to 2 KiB to be written in the tag. There is another project
17496 with &lt;a href=&quot;http://www.terryburton.co.uk/barcodewriter/&quot;&gt;a bar code
17497 writer written in postscript&lt;/a&gt; capable of creating such bar codes,
17498 but this was the first time I found a tool to read these bar
17499 codes.&lt;/p&gt;
17500
17501 &lt;p&gt;It occurred to me that this could be used to tag and track the
17502 machines in our computing center. If both racks and computers are
17503 tagged this way, we can use a picture of the rack and all its
17504 computers to detect the rack location of any computer in that rack.
17505 If we do this regularly for the entire room, we will find all
17506 locations, and can detect movements and removals.&lt;/p&gt;
17507
17508 &lt;p&gt;I decided to test if this would work in practice, and picked a
17509 random rack and tagged all the machines with their names. Next, I
17510 took pictures with my digital camera, and gave the dmtxread program
17511 these JPEG pictures to see how many tags it could read. This worked
17512 fairly well. If the pictures was well focused and not taken from the
17513 side, all tags in the image could be read. Because of limited space
17514 between the racks, I was unable to get a good picture of the entire
17515 rack, but could without problem read all tags from a picture covering
17516 about half the rack. I had to limit the search time used by dmtxread
17517 to 60000 ms to make sure it terminated in a reasonable time frame.&lt;/p&gt;
17518
17519 &lt;p&gt;My conclusion is that this could work, and we should probably look
17520 at adjusting our computer tagging procedures to use bar codes for
17521 easier automatic tracking of computers.&lt;/p&gt;
17522 </description>
17523 </item>
17524
17525 <item>
17526 <title>When web browser developers make a video player...</title>
17527 <link>http://people.skolelinux.org/pere/blog/When_web_browser_developers_make_a_video_player___.html</link>
17528 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/When_web_browser_developers_make_a_video_player___.html</guid>
17529 <pubDate>Sat, 17 Jan 2009 18:50:00 +0100</pubDate>
17530 <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;
17531 to publish video recordings of our monthly presentations, we provide a
17532 page with embedded video for easy access to the recording. Putting a
17533 good set of HTML tags together to get working embedded video in all
17534 browsers and across all operating systems is not easy. I hope this
17535 will become easier when the &amp;lt;video&amp;gt; tag is implemented in all
17536 browsers, but I am not sure. We provide the recordings in several
17537 formats, MPEG1, Ogg Theora, H.264 and Quicktime, and want the
17538 browser/media plugin to pick one it support and use it to play the
17539 recording, using whatever embed mechanism the browser understand.
17540 There is at least four different tags to use for this, the new HTML5
17541 &amp;lt;video&amp;gt; tag, the &amp;lt;object&amp;gt; tag, the &amp;lt;embed&amp;gt; tag and
17542 the &amp;lt;applet&amp;gt; tag. All of these take a lot of options, and
17543 finding the best options is a major challenge.&lt;/p&gt;
17544
17545 &lt;p&gt;I just tested the experimental Opera browser available from &lt;a
17546 href=&quot;http://labs.opera.com&quot;&gt;labs.opera.com&lt;/a&gt;, to see how it handled
17547 a &amp;lt;video&amp;gt; tag with a few video sources and no extra attributes.
17548 I was not very impressed. The browser start by fetching a picture
17549 from the video stream. Not sure if it is the first frame, but it is
17550 definitely very early in the recording. So far, so good. Next,
17551 instead of streaming the 76 MiB video file, it start to download all
17552 of it, but do not start to play the video. This mean I have to wait
17553 for several minutes for the downloading to finish. When the download
17554 is done, the playing of the video do not start! Waiting for the
17555 download, but I do not get to see the video? Some testing later, I
17556 discover that I have to add the controls=&quot;true&quot; attribute to be able
17557 to get a play button to pres to start the video. Adding
17558 autoplay=&quot;true&quot; did not help. I sure hope this is a misfeature of the
17559 test version of Opera, and that future implementations of the
17560 &amp;lt;video&amp;gt; tag will stream recordings by default, or at least start
17561 playing when the download is done.&lt;/p&gt;
17562
17563 &lt;p&gt;The test page I used (since changed to add more attributes) is
17564 &lt;a href=&quot;http://www.nuug.no/aktiviteter/20090113-foredrag-om-foredrag/&quot;&gt;available
17565 from the nuug site&lt;/a&gt;. Will have to test it with the new Firefox
17566 too.&lt;/p&gt;
17567
17568 &lt;p&gt;In the test process, I discovered a missing feature. I was unable
17569 to find a way to get the URL of the playing video out of Opera, so I
17570 am not quite sure it picked the Ogg Theora version of the video. I
17571 sure hope it was using the announced Ogg Theora support. :)&lt;/p&gt;
17572 </description>
17573 </item>
17574
17575 <item>
17576 <title>Software video mixer on a USB stick</title>
17577 <link>http://people.skolelinux.org/pere/blog/Software_video_mixer_on_a_USB_stick.html</link>
17578 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Software_video_mixer_on_a_USB_stick.html</guid>
17579 <pubDate>Sun, 28 Dec 2008 15:40:00 +0100</pubDate>
17580 <description>&lt;p&gt;The &lt;a href=&quot;http://www.nuug.no/&quot;&gt;Norwegian Unix User Group&lt;/a&gt; is
17581 recording our montly presentation on video, and recently we have
17582 worked on improving the quality of the recordings by mixing the slides
17583 directly with the video stream. For this, we use the
17584 &lt;a href=&quot;http://dvswitch.alioth.debian.org/&quot;&gt;dvswitch&lt;/a&gt; package from
17585 the Debian video team. As this require quite one computer per video
17586 source, and NUUG do not have enough laptops available, we need to
17587 borrow laptops. And to avoid having to install extra software on
17588 these borrwed laptops, I have wrapped up all the programs needed on a
17589 bootable USB stick. The software required is dvswitch with assosiated
17590 source, sink and mixer applications and
17591 &lt;a href=&quot;http://www.kinodv.org/&quot;&gt;dvgrab&lt;/a&gt;. To allow this setup to
17592 work without any configuration, I&#39;ve patched dvswitch to use
17593 &lt;a href=&quot;http://www.avahi.org/&quot;&gt;avahi&lt;/a&gt; to connect the various parts
17594 together. And to allow us to use laptops without firewire plugs, I
17595 upgraded dvgrab to the one from Debian/unstable to get one that work
17596 with USB sources. We have not yet tested this setup in a production
17597 setup, but I hope it will work properly, and allow us to set up a
17598 video mixer in a very short time frame. We will need it for
17599 &lt;a href=&quot;http://www.goopen.no/&quot;&gt;Go Open 2009&lt;/a&gt;.&lt;/p&gt;
17600
17601 &lt;p&gt;&lt;a href=&quot;http://www.nuug.no/pub/video/bin/usbstick-dvswitch.img.gz&quot;&gt;The
17602 USB image&lt;/a&gt; is for a 1 GB memory stick, but can be used on any
17603 larger stick as well.&lt;/p&gt;
17604 </description>
17605 </item>
17606
17607 <item>
17608 <title>Devcamp brought us closer to the Lenny based Debian Edu release</title>
17609 <link>http://people.skolelinux.org/pere/blog/Devcamp_brought_us_closer_to_the_Lenny_based_Debian_Edu_release.html</link>
17610 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Devcamp_brought_us_closer_to_the_Lenny_based_Debian_Edu_release.html</guid>
17611 <pubDate>Sun, 7 Dec 2008 12:00:00 +0100</pubDate>
17612 <description>&lt;p&gt;This weekend we had a small developer gathering for Debian Edu in
17613 Oslo. Most of Saturday was used for the general assemly for the
17614 member organization, but the rest of the weekend I used to tune the
17615 LTSP installation. LTSP now work out of the box on the 10-network.
17616 Acer Aspire One proved to be a very nice thin client, with both
17617 screen, mouse and keybard in a small box. Was working on getting the
17618 diskless workstation setup configured out of the box, but did not
17619 finish it before the weekend was up.&lt;/p&gt;
17620
17621 &lt;p&gt;Did not find time to look at the 4 VGA cards in one box we got from
17622 the Brazilian group, so that will have to wait for the next
17623 development gathering. Would love to have the Debian Edu installer
17624 automatically detect and configure a multiseat setup when it find one
17625 of these cards.&lt;/p&gt;
17626 </description>
17627 </item>
17628
17629 <item>
17630 <title>The sorry state of multimedia browser plugins in Debian</title>
17631 <link>http://people.skolelinux.org/pere/blog/The_sorry_state_of_multimedia_browser_plugins_in_Debian.html</link>
17632 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_sorry_state_of_multimedia_browser_plugins_in_Debian.html</guid>
17633 <pubDate>Tue, 25 Nov 2008 00:10:00 +0100</pubDate>
17634 <description>&lt;p&gt;Recently I have spent some time evaluating the multimedia browser
17635 plugins available in Debian Lenny, to see which one we should use by
17636 default in Debian Edu. We need an embedded video playing plugin with
17637 control buttons to pause or stop the video, and capable of streaming
17638 all the multimedia content available on the web. The test results and
17639 notes are available on
17640 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/BrowserMultimedia&quot;&gt;the
17641 Debian wiki&lt;/a&gt;. I was surprised how few of the plugins are able to
17642 fill this need. My personal video player favorite, VLC, has a really
17643 bad plugin which fail on a lot of the test pages. A lot of the MIME
17644 types I would expect to work with any free software player (like
17645 video/ogg), just do not work. And simple formats like the
17646 audio/x-mplegurl format (m3u playlists), just isn&#39;t supported by the
17647 totem and vlc plugins. I hope the situation will improve soon. No
17648 wonder sites use the proprietary Adobe flash to play video.&lt;/p&gt;
17649
17650 &lt;p&gt;For Lenny, we seem to end up with the mplayer plugin. It seem to
17651 be the only one fitting our needs. :/&lt;/p&gt;
17652 </description>
17653 </item>
17654
17655 </channel>
17656 </rss>