]> pere.pagekite.me Git - homepage.git/blob - blog/tags/english/english.rss
00bc155a24c3b8e4239aad30f4f405c4a5c30a45
[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>Making battery measurements a little easier in Debian</title>
11 <link>http://people.skolelinux.org/pere/blog/Making_battery_measurements_a_little_easier_in_Debian.html</link>
12 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Making_battery_measurements_a_little_easier_in_Debian.html</guid>
13 <pubDate>Tue, 15 Mar 2016 15:00:00 +0100</pubDate>
14 <description>&lt;p&gt;Back in September, I blogged about
15 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/The_life_and_death_of_a_laptop_battery.html&quot;&gt;the
16 system I wrote to collect statistics about my laptop battery&lt;/a&gt;, and
17 how it showed the decay and death of this battery (now replaced). I
18 created a simple deb package to handle the collection and graphing,
19 but did not want to upload it to Debian as there were already
20 &lt;a href=&quot;https://tracker.debian.org/pkg/battery-stats&quot;&gt;a battery-stats
21 package in Debian&lt;/a&gt; that should do the same thing, and I did not see
22 a point of uploading a competing package when battery-stats could be
23 fixed instead. I reported a few bugs about its non-function, and
24 hoped someone would step in and fix it. But no-one did.&lt;/p&gt;
25
26 &lt;p&gt;I got tired of waiting a few days ago, and took matters in my own
27 hands. The end result is that I am now the new upstream developer of
28 battery stats (&lt;a href=&quot;https://github.com/petterreinholdtsen/battery-stats&quot;&gt;available from github&lt;/a&gt;) and part of the team maintaining
29 battery-stats in Debian, and the package in Debian unstable is finally
30 able to collect battery status using the &lt;tt&gt;/sys/class/power_supply/&lt;/tt&gt;
31 information provided by the Linux kernel. If you install the
32 battery-stats package from unstable now, you will be able to get a
33 graph of the current battery fill level, to get some idea about the
34 status of the battery. The source package build and work just fine in
35 Debian testing and stable (and probably oldstable too, but I have not
36 tested). The default graph you get for that system look like this:&lt;/p&gt;
37
38 &lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2016-03-15-battery-stats-graph-example.png&quot; width=&quot;70%&quot; align=&quot;center&quot;&gt;&lt;/p&gt;
39
40 &lt;p&gt;My plans for the future is to merge my old scripts into the
41 battery-stats package, as my old scripts collected a lot more details
42 about the battery. The scripts are merged into the upstream
43 battery-stats git repository already, but I am not convinced they work
44 yet, as I changed a lot of paths along the way. Will have to test a
45 bit more before I make a new release.&lt;/p&gt;
46
47 &lt;p&gt;I will also consider changing the file format slightly, as I
48 suspect the way I combine several values into one field might make it
49 impossible to know the type of the value when using it for processing
50 and graphing.&lt;/p&gt;
51
52 &lt;p&gt;If you would like I would like to keep an close eye on your laptop
53 battery, check out the battery-stats package in
54 &lt;a href=&quot;https://tracker.debian.org/pkg/battery-stats&quot;&gt;Debian&lt;/a&gt; and
55 on
56 &lt;a href=&quot;https://github.com/petterreinholdtsen/battery-stats&quot;&gt;github&lt;/a&gt;.
57 I would love some help to improve the system further.&lt;/p&gt;
58 </description>
59 </item>
60
61 <item>
62 <title>Creating, updating and checking debian/copyright semi-automatically</title>
63 <link>http://people.skolelinux.org/pere/blog/Creating__updating_and_checking_debian_copyright_semi_automatically.html</link>
64 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Creating__updating_and_checking_debian_copyright_semi_automatically.html</guid>
65 <pubDate>Fri, 19 Feb 2016 15:00:00 +0100</pubDate>
66 <description>&lt;p&gt;Making packages for Debian requires quite a lot of attention to
67 details. And one of the details is the content of the
68 debian/copyright file, which should list all relevant licenses used by
69 the code in the package in question, preferably in
70 &lt;a href=&quot;https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/&quot;&gt;machine
71 readable DEP5 format&lt;/a&gt;.&lt;/p&gt;
72
73 &lt;p&gt;For large packages with lots of contributors it is hard to write
74 and update this file manually, and if you get some detail wrong, the
75 package is normally rejected by the ftpmasters. So getting it right
76 the first time around get the package into Debian faster, and save
77 both you and the ftpmasters some work.. Today, while trying to figure
78 out what was wrong with
79 &lt;a href=&quot;https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=686447&quot;&gt;the
80 zfsonlinux copyright file&lt;/a&gt;, I decided to spend some time on
81 figuring out the options for doing this job automatically, or at least
82 semi-automatically.&lt;/p&gt;
83
84 &lt;p&gt;Lucikly, there are at least two tools available for generating the
85 file based on the code in the source package,
86 &lt;tt&gt;&lt;a href=&quot;https://tracker.debian.org/pkg/debmake&quot;&gt;debmake&lt;/a&gt;&lt;/tt&gt;
87 and &lt;tt&gt;&lt;a href=&quot;https://tracker.debian.org/pkg/cme&quot;&gt;cme&lt;/a&gt;&lt;/tt&gt;. I&#39;m
88 not sure which one of them came first, but both seem to be able to
89 create a sensible draft file. As far as I can tell, none of them can
90 be trusted to get the result just right, so the content need to be
91 polished a bit before the file is OK to upload. I found the debmake
92 option in
93 &lt;a href=&quot;http://goofying-with-debian.blogspot.com/2014/07/debmake-checking-source-against-dep-5.html&quot;&gt;a
94 blog posts from 2014&lt;/a&gt;.
95
96 &lt;p&gt;To generate using debmake, use the -cc option:
97
98 &lt;p&gt;&lt;pre&gt;
99 debmake -cc &gt; debian/copyright
100 &lt;/pre&gt;&lt;/p&gt;
101
102 &lt;p&gt;Note there are some problems with python and non-ASCII names, so
103 this might not be the best option.&lt;/p&gt;
104
105 &lt;p&gt;The cme option is based on a config parsing library, and I found
106 this approach in
107 &lt;a href=&quot;https://ddumont.wordpress.com/2015/04/05/improving-creation-of-debian-copyright-file/&quot;&gt;a
108 blog post from 2015&lt;/a&gt;. To generate using cme, use the &#39;update
109 dpkg-copyright&#39; option:
110
111 &lt;p&gt;&lt;pre&gt;
112 cme update dpkg-copyright
113 &lt;/pre&gt;&lt;/p&gt;
114
115 &lt;p&gt;This will create or update debian/copyright. The cme tool seem to
116 handle UTF-8 names better than debmake.&lt;/p&gt;
117
118 &lt;p&gt;When the copyright file is created, I would also like some help to
119 check if the file is correct. For this I found two good options,
120 &lt;tt&gt;debmake -k&lt;/tt&gt; and &lt;tt&gt;license-reconcile&lt;/tt&gt;. The former seem
121 to focus on license types and file matching, and is able to detect
122 ineffective blocks in the copyright file. The latter reports missing
123 copyright holders and years, but was confused by inconsistent license
124 names (like CDDL vs. CDDL-1.0). I suspect it is good to use both and
125 fix all issues reported by them before uploading. But I do not know
126 if the tools and the ftpmasters agree on what is important to fix in a
127 copyright file, so the package might still be rejected.&lt;/p&gt;
128
129 &lt;p&gt;The devscripts tool &lt;tt&gt;licensecheck&lt;/tt&gt; deserve mentioning. It
130 will read through the source and try to find all copyright statements.
131 It is not comparing the result to the content of debian/copyright, but
132 can be useful when verifying the content of the copyright file.&lt;/p&gt;
133
134 &lt;p&gt;Are you aware of better tools in Debian to create and update
135 debian/copyright file. Please let me know, or blog about it on
136 planet.debian.org.&lt;/p&gt;
137
138 &lt;p&gt;As usual, if you use Bitcoin and want to show your support of my
139 activities, please send Bitcoin donations to my address
140 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
141
142 &lt;p&gt;&lt;strong&gt;Update 2016-02-20&lt;/strong&gt;: I got a tip from Mike Gabriel
143 on how to use licensecheck and cdbs to create a draft copyright file
144
145 &lt;p&gt;&lt;pre&gt;
146 licensecheck --copyright -r `find * -type f` | \
147 /usr/lib/cdbs/licensecheck2dep5 &gt; debian/copyright.auto
148 &lt;/pre&gt;&lt;/p&gt;
149
150 &lt;p&gt;He mentioned that he normally check the generated file into the
151 version control system to make it easier to discover license and
152 copyright changes in the upstream source. I will try to do the same
153 with my packages in the future.&lt;/p&gt;
154
155 &lt;p&gt;&lt;strong&gt;Update 2016-02-21&lt;/strong&gt;: The cme author recommended
156 against using -quiet for new users, so I removed it from the proposed
157 command line.&lt;/p&gt;
158 </description>
159 </item>
160
161 <item>
162 <title>Using appstream in Debian to locate packages with firmware and mime type support</title>
163 <link>http://people.skolelinux.org/pere/blog/Using_appstream_in_Debian_to_locate_packages_with_firmware_and_mime_type_support.html</link>
164 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Using_appstream_in_Debian_to_locate_packages_with_firmware_and_mime_type_support.html</guid>
165 <pubDate>Thu, 4 Feb 2016 16:40:00 +0100</pubDate>
166 <description>&lt;p&gt;The &lt;a href=&quot;https://wiki.debian.org/DEP-11&quot;&gt;appstream system&lt;/a&gt;
167 is taking shape in Debian, and one provided feature is a very
168 convenient way to tell you which package to install to make a given
169 firmware file available when the kernel is looking for it. This can
170 be done using apt-file too, but that is for someone else to blog
171 about. :)&lt;/p&gt;
172
173 &lt;p&gt;Here is a small recipe to find the package with a given firmware
174 file, in this example I am looking for ctfw-3.2.3.0.bin, randomly
175 picked from the set of firmware announced using appstream in Debian
176 unstable. In general you would be looking for the firmware requested
177 by the kernel during kernel module loading. To find the package
178 providing the example file, do like this:&lt;/p&gt;
179
180 &lt;blockquote&gt;&lt;pre&gt;
181 % apt install appstream
182 [...]
183 % apt update
184 [...]
185 % appstreamcli what-provides firmware:runtime ctfw-3.2.3.0.bin | \
186 awk &#39;/Package:/ {print $2}&#39;
187 firmware-qlogic
188 %
189 &lt;/pre&gt;&lt;/blockquote&gt;
190
191 &lt;p&gt;See &lt;a href=&quot;https://wiki.debian.org/AppStream/Guidelines&quot;&gt;the
192 appstream wiki&lt;/a&gt; page to learn how to embed the package metadata in
193 a way appstream can use.&lt;/p&gt;
194
195 &lt;p&gt;This same approach can be used to find any package supporting a
196 given MIME type. This is very useful when you get a file you do not
197 know how to handle. First find the mime type using &lt;tt&gt;file
198 --mime-type&lt;/tt&gt;, and next look up the package providing support for
199 it. Lets say you got an SVG file. Its MIME type is image/svg+xml,
200 and you can find all packages handling this type like this:&lt;/p&gt;
201
202 &lt;blockquote&gt;&lt;pre&gt;
203 % apt install appstream
204 [...]
205 % apt update
206 [...]
207 % appstreamcli what-provides mimetype image/svg+xml | \
208 awk &#39;/Package:/ {print $2}&#39;
209 bkchem
210 phototonic
211 inkscape
212 shutter
213 tetzle
214 geeqie
215 xia
216 pinta
217 gthumb
218 karbon
219 comix
220 mirage
221 viewnior
222 postr
223 ristretto
224 kolourpaint4
225 eog
226 eom
227 gimagereader
228 midori
229 %
230 &lt;/pre&gt;&lt;/blockquote&gt;
231
232 &lt;p&gt;I believe the MIME types are fetched from the desktop file for
233 packages providing appstream metadata.&lt;/p&gt;
234 </description>
235 </item>
236
237 <item>
238 <title>Creepy, visualise geotagged social media information - nice free software</title>
239 <link>http://people.skolelinux.org/pere/blog/Creepy__visualise_geotagged_social_media_information___nice_free_software.html</link>
240 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Creepy__visualise_geotagged_social_media_information___nice_free_software.html</guid>
241 <pubDate>Sun, 24 Jan 2016 10:50:00 +0100</pubDate>
242 <description>&lt;p&gt;Most people seem not to realise that every time they walk around
243 with the computerised radio beacon known as a mobile phone their
244 position is tracked by the phone company and often stored for a long
245 time (like every time a SMS is received or sent). And if their
246 computerised radio beacon is capable of running programs (often called
247 mobile apps) downloaded from the Internet, these programs are often
248 also capable of tracking their location (if the app requested access
249 during installation). And when these programs send out information to
250 central collection points, the location is often included, unless
251 extra care is taken to not send the location. The provided
252 information is used by several entities, for good and bad (what is
253 good and bad, depend on your point of view). What is certain, is that
254 the private sphere and the right to free movement is challenged and
255 perhaps even eradicated for those announcing their location this way,
256 when they share their whereabouts with private and public
257 entities.&lt;/p&gt;
258
259 &lt;p align=&quot;center&quot;&gt;&lt;img width=&quot;70%&quot; src=&quot;http://people.skolelinux.org/pere/blog/images/2016-01-24-nice-creepy-desktop-window.png&quot;&gt;&lt;/p&gt;
260
261 &lt;p&gt;The phone company logs provide a register of locations to check out
262 when one want to figure out what the tracked person was doing. It is
263 unavailable for most of us, but provided to selected government
264 officials, company staff, those illegally buying information from
265 unfaithful servants and crackers stealing the information. But the
266 public information can be collected and analysed, and a free software
267 tool to do so is called
268 &lt;a href=&quot;http://www.geocreepy.com/&quot;&gt;Creepy or Cree.py&lt;/a&gt;. I
269 discovered it when I read
270 &lt;a href=&quot;http://www.aftenposten.no/kultur/Slik-kan-du-bli-overvaket-pa-Twitter-og-Instagram-uten-a-ane-det-7787884.html&quot;&gt;an
271 article about Creepy&lt;/a&gt; in the Norwegian newspaper Aftenposten i
272 November 2014, and decided to check if it was available in Debian.
273 The python program was in Debian, but
274 &lt;a href=&quot;https://tracker.debian.org/pkg/creepy&quot;&gt;the version in
275 Debian&lt;/a&gt; was completely broken and practically unmaintained. I
276 uploaded a new version which did not work quite right, but did not
277 have time to fix it then. This Christmas I decided to finally try to
278 get Creepy operational in Debian. Now a fixed version is available in
279 Debian unstable and testing, and almost all Debian specific patches
280 are now included
281 &lt;a href=&quot;https://github.com/jkakavas/creepy&quot;&gt;upstream&lt;/a&gt;.&lt;/p&gt;
282
283 &lt;p&gt;The Creepy program visualises geolocation information fetched from
284 Twitter, Instagram, Flickr and Google+, and allow one to get a
285 complete picture of every social media message posted recently in a
286 given area, or track the movement of a given individual across all
287 these services. Earlier it was possible to use the search API of at
288 least some of these services without identifying oneself, but these
289 days it is impossible. This mean that to use Creepy, you need to
290 configure it to log in as yourself on these services, and provide
291 information to them about your search interests. This should be taken
292 into account when using Creepy, as it will also share information
293 about yourself with the services.&lt;/p&gt;
294
295 &lt;p&gt;The picture above show the twitter messages sent from (or at least
296 geotagged with a position from) the city centre of Oslo, the capital
297 of Norway. One useful way to use Creepy is to first look at
298 information tagged with an area of interest, and next look at all the
299 information provided by one or more individuals who was in the area.
300 I tested it by checking out which celebrity provide their location in
301 twitter messages by checkout out who sent twitter messages near a
302 Norwegian TV station, and next could track their position over time,
303 making it possible to locate their home and work place, among other
304 things. A similar technique have been
305 &lt;a href=&quot;http://www.buzzfeed.com/maxseddon/does-this-soldiers-instagram-account-prove-russia-is-covertl&quot;&gt;used
306 to locate Russian soldiers in Ukraine&lt;/a&gt;, and it is both a powerful
307 tool to discover lying governments, and a useful tool to help people
308 understand the value of the private information they provide to the
309 public.&lt;/p&gt;
310
311 &lt;p&gt;The package is not trivial to backport to Debian Stable/Jessie, as
312 it depend on several python modules currently missing in Jessie (at
313 least python-instagram, python-flickrapi and
314 python-requests-toolbelt).&lt;/p&gt;
315
316 &lt;p&gt;(I have uploaded
317 &lt;a href=&quot;https://screenshots.debian.net/package/creepy&quot;&gt;the image to
318 screenshots.debian.net&lt;/a&gt; and licensed it under the same terms as the
319 Creepy program in Debian.)&lt;/p&gt;
320 </description>
321 </item>
322
323 <item>
324 <title>Always download Debian packages using Tor - the simple recipe</title>
325 <link>http://people.skolelinux.org/pere/blog/Always_download_Debian_packages_using_Tor___the_simple_recipe.html</link>
326 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Always_download_Debian_packages_using_Tor___the_simple_recipe.html</guid>
327 <pubDate>Fri, 15 Jan 2016 00:30:00 +0100</pubDate>
328 <description>&lt;p&gt;During his DebConf15 keynote, Jacob Appelbaum
329 &lt;a href=&quot;https://summit.debconf.org/debconf15/meeting/331/what-is-to-be-done/&quot;&gt;observed
330 that those listening on the Internet lines would have good reason to
331 believe a computer have a given security hole&lt;/a&gt; if it download a
332 security fix from a Debian mirror. This is a good reason to always
333 use encrypted connections to the Debian mirror, to make sure those
334 listening do not know which IP address to attack. In August, Richard
335 Hartmann observed that encryption was not enough, when it was possible
336 to interfere download size to security patches or the fact that
337 download took place shortly after a security fix was released, and
338 &lt;a href=&quot;http://richardhartmann.de/blog/posts/2015/08/24-Tor-enabled_Debian_mirror/&quot;&gt;proposed
339 to always use Tor to download packages from the Debian mirror&lt;/a&gt;. He
340 was not the first to propose this, as the
341 &lt;tt&gt;&lt;a href=&quot;https://tracker.debian.org/pkg/apt-transport-tor&quot;&gt;apt-transport-tor&lt;/a&gt;&lt;/tt&gt;
342 package by Tim Retout already existed to make it easy to convince apt
343 to use &lt;a href=&quot;https://www.torproject.org/&quot;&gt;Tor&lt;/a&gt;, but I was not
344 aware of that package when I read the blog post from Richard.&lt;/p&gt;
345
346 &lt;p&gt;Richard discussed the idea with Peter Palfrader, one of the Debian
347 sysadmins, and he set up a Tor hidden service on one of the central
348 Debian mirrors using the address vwakviie2ienjx6t.onion, thus making
349 it possible to download packages directly between two tor nodes,
350 making sure the network traffic always were encrypted.&lt;/p&gt;
351
352 &lt;p&gt;Here is a short recipe for enabling this on your machine, by
353 installing &lt;tt&gt;apt-transport-tor&lt;/tt&gt; and replacing http and https
354 urls with tor+http and tor+https, and using the hidden service instead
355 of the official Debian mirror site. I recommend installing
356 &lt;tt&gt;etckeeper&lt;/tt&gt; before you start to have a history of the changes
357 done in /etc/.&lt;/p&gt;
358
359 &lt;blockquote&gt;&lt;pre&gt;
360 apt install apt-transport-tor
361 sed -i &#39;s% http://ftp.debian.org/% tor+http://vwakviie2ienjx6t.onion/%&#39; /etc/apt/sources.list
362 sed -i &#39;s% http% tor+http%&#39; /etc/apt/sources.list
363 &lt;/pre&gt;&lt;/blockquote&gt;
364
365 &lt;p&gt;If you have more sources listed in /etc/apt/sources.list.d/, run
366 the sed commands for these too. The sed command is assuming your are
367 using the ftp.debian.org Debian mirror. Adjust the command (or just
368 edit the file manually) to match your mirror.&lt;/p&gt;
369
370 &lt;p&gt;This work in Debian Jessie and later. Note that tools like
371 &lt;tt&gt;apt-file&lt;/tt&gt; only recently started using the apt transport
372 system, and do not work with these tor+http URLs. For
373 &lt;tt&gt;apt-file&lt;/tt&gt; you need the version currently in experimental,
374 which need a recent apt version currently only in unstable. So if you
375 need a working &lt;tt&gt;apt-file&lt;/tt&gt;, this is not for you.&lt;/p&gt;
376
377 &lt;p&gt;Another advantage from this change is that your machine will start
378 using Tor regularly and at fairly random intervals (every time you
379 update the package lists or upgrade or install a new package), thus
380 masking other Tor traffic done from the same machine. Using Tor will
381 become normal for the machine in question.&lt;/p&gt;
382
383 &lt;p&gt;On &lt;a href=&quot;https://wiki.debian.org/FreedomBox&quot;&gt;Freedombox&lt;/a&gt;, APT
384 is set up by default to use &lt;tt&gt;apt-transport-tor&lt;/tt&gt; when Tor is
385 enabled. It would be great if it was the default on any Debian
386 system.&lt;/p&gt;
387 </description>
388 </item>
389
390 <item>
391 <title>OpenALPR, find car license plates in video streams - nice free software</title>
392 <link>http://people.skolelinux.org/pere/blog/OpenALPR__find_car_license_plates_in_video_streams___nice_free_software.html</link>
393 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/OpenALPR__find_car_license_plates_in_video_streams___nice_free_software.html</guid>
394 <pubDate>Wed, 23 Dec 2015 01:00:00 +0100</pubDate>
395 <description>&lt;p&gt;When I was a kid, we used to collect &quot;car numbers&quot;, as we used to
396 call the car license plate numbers in those days. I would write the
397 numbers down in my little book and compare notes with the other kids
398 to see how many region codes we had seen and if we had seen some
399 exotic or special region codes and numbers. It was a fun game to pass
400 time, as we kids have plenty of it.&lt;/p&gt;
401
402 &lt;p&gt;A few days I came across
403 &lt;a href=&quot;https://github.com/openalpr/openalpr&quot;&gt;the OpenALPR
404 project&lt;/a&gt;, a free software project to automatically discover and
405 report license plates in images and video streams, and provide the
406 &quot;car numbers&quot; in a machine readable format. I&#39;ve been looking for
407 such system for a while now, because I believe it is a bad idea that the
408 &lt;a href=&quot;https://en.wikipedia.org/wiki/Automatic_number_plate_recognition&quot;&gt;automatic
409 number plate recognition&lt;/a&gt; tool only is available in the hands of
410 the powerful, and want it to be available also for the powerless to
411 even the score when it comes to surveillance and sousveillance. I
412 discovered the developer
413 &lt;a href=&quot;https://bugs.debian.org/747509&quot;&gt;wanted to get the tool into
414 Debian&lt;/a&gt;, and as I too wanted it to be in Debian, I volunteered to
415 help him get it into shape to get the package uploaded into the Debian
416 archive.&lt;/p&gt;
417
418 &lt;p&gt;Today we finally managed to get the package into shape and uploaded
419 it into Debian, where it currently
420 &lt;a href=&quot;https://ftp-master.debian.org//new/openalpr_2.2.1-1.html&quot;&gt;waits
421 in the NEW queue&lt;/a&gt; for review by the Debian ftpmasters.&lt;/p&gt;
422
423 &lt;p&gt;I guess you are wondering why on earth such tool would be useful
424 for the common folks, ie those not running a large government
425 surveillance system? Well, I plan to put it in a computer on my bike
426 and in my car, tracking the cars nearby and allowing me to be notified
427 when number plates on my watch list are discovered. Another use case
428 was suggested by a friend of mine, who wanted to set it up at his home
429 to open the car port automatically when it discovered the plate on his
430 car. When I mentioned it perhaps was a bit foolhardy to allow anyone
431 capable of placing his license plate number of a piece of cardboard to
432 open his car port, men replied that it was always unlocked anyway. I
433 guess for such use case it make sense. I am sure there are other use
434 cases too, for those with imagination and a vision.&lt;/p&gt;
435
436 &lt;p&gt;If you want to build your own version of the Debian package, check
437 out the upstream git source and symlink ./distros/debian to ./debian/
438 before running &quot;debuild&quot; to build the source. Or wait a bit until the
439 package show up in unstable.&lt;/p&gt;
440 </description>
441 </item>
442
443 <item>
444 <title>Using appstream with isenkram to install hardware related packages in Debian</title>
445 <link>http://people.skolelinux.org/pere/blog/Using_appstream_with_isenkram_to_install_hardware_related_packages_in_Debian.html</link>
446 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Using_appstream_with_isenkram_to_install_hardware_related_packages_in_Debian.html</guid>
447 <pubDate>Sun, 20 Dec 2015 12:20:00 +0100</pubDate>
448 <description>&lt;p&gt;Around three years ago, I created
449 &lt;a href=&quot;http://packages.qa.debian.org/isenkram&quot;&gt;the isenkram
450 system&lt;/a&gt; to get a more practical solution in Debian for handing
451 hardware related packages. A GUI system in the isenkram package will
452 present a pop-up dialog when some hardware dongle supported by
453 relevant packages in Debian is inserted into the machine. The same
454 lookup mechanism to detect packages is available as command line
455 tools in the isenkram-cli package. In addition to mapping hardware,
456 it will also map kernel firmware files to packages and make it easy to
457 install needed firmware packages automatically. The key for this
458 system to work is a good way to map hardware to packages, in other
459 words, allow packages to announce what hardware they will work
460 with.&lt;/p&gt;
461
462 &lt;p&gt;I started by providing data files in the isenkram source, and
463 adding code to download the latest version of these data files at run
464 time, to ensure every user had the most up to date mapping available.
465 I also added support for storing the mapping in the Packages file in
466 the apt repositories, but did not push this approach because while I
467 was trying to figure out how to best store hardware/package mappings,
468 &lt;a href=&quot;http://www.freedesktop.org/software/appstream/docs/&quot;&gt;the
469 appstream system&lt;/a&gt; was announced. I got in touch and suggested to
470 add the hardware mapping into that data set to be able to use
471 appstream as a data source, and this was accepted at least for the
472 Debian version of appstream.&lt;/p&gt;
473
474 &lt;p&gt;A few days ago using appstream in Debian for this became possible,
475 and today I uploaded a new version 0.20 of isenkram adding support for
476 appstream as a data source for mapping hardware to packages. The only
477 package so far using appstream to announce its hardware support is my
478 pymissile package. I got help from Matthias Klumpp with figuring out
479 how do add the required
480 &lt;a href=&quot;https://appstream.debian.org/html/sid/main/metainfo/pymissile.html&quot;&gt;metadata
481 in pymissile&lt;/a&gt;. I added a file debian/pymissile.metainfo.xml with
482 this content:&lt;/p&gt;
483
484 &lt;blockquote&gt;&lt;pre&gt;
485 &amp;lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&amp;gt;
486 &amp;lt;component&amp;gt;
487 &amp;lt;id&amp;gt;pymissile&amp;lt;/id&amp;gt;
488 &amp;lt;metadata_license&amp;gt;MIT&amp;lt;/metadata_license&amp;gt;
489 &amp;lt;name&amp;gt;pymissile&amp;lt;/name&amp;gt;
490 &amp;lt;summary&amp;gt;Control original Striker USB Missile Launcher&amp;lt;/summary&amp;gt;
491 &amp;lt;description&amp;gt;
492 &amp;lt;p&amp;gt;
493 Pymissile provides a curses interface to control an original
494 Marks and Spencer / Striker USB Missile Launcher, as well as a
495 motion control script to allow a webcamera to control the
496 launcher.
497 &amp;lt;/p&amp;gt;
498 &amp;lt;/description&amp;gt;
499 &amp;lt;provides&amp;gt;
500 &amp;lt;modalias&amp;gt;usb:v1130p0202d*&amp;lt;/modalias&amp;gt;
501 &amp;lt;/provides&amp;gt;
502 &amp;lt;/component&amp;gt;
503 &lt;/pre&gt;&lt;/blockquote&gt;
504
505 &lt;p&gt;The key for isenkram is the component/provides/modalias value,
506 which is a glob style match rule for hardware specific strings
507 (modalias strings) provided by the Linux kernel. In this case, it
508 will map to all USB devices with vendor code 1130 and product code
509 0202.&lt;/p&gt;
510
511 &lt;p&gt;Note, it is important that the license of all the metadata files
512 are compatible to have permissions to aggregate them into archive wide
513 appstream files. Matthias suggested to use MIT or BSD licenses for
514 these files. A challenge is figuring out a good id for the data, as
515 it is supposed to be globally unique and shared across distributions
516 (in other words, best to coordinate with upstream what to use). But
517 it can be changed later or, so we went with the package name as
518 upstream for this project is dormant.&lt;/p&gt;
519
520 &lt;p&gt;To get the metadata file installed in the correct location for the
521 mirror update scripts to pick it up and include its content the
522 appstream data source, the file must be installed in the binary
523 package under /usr/share/appdata/. I did this by adding the following
524 line to debian/pymissile.install:&lt;/p&gt;
525
526 &lt;blockquote&gt;&lt;pre&gt;
527 debian/pymissile.metainfo.xml usr/share/appdata
528 &lt;/pre&gt;&lt;/blockquote&gt;
529
530 &lt;p&gt;With that in place, the command line tool isenkram-lookup will list
531 all packages useful on the current computer automatically, and the GUI
532 pop-up handler will propose to install the package not already
533 installed if a hardware dongle is inserted into the machine in
534 question.&lt;/p&gt;
535
536 &lt;p&gt;Details of the modalias field in appstream is available from the
537 &lt;a href=&quot;https://wiki.debian.org/DEP-11&quot;&gt;DEP-11&lt;/a&gt; proposal.&lt;/p&gt;
538
539 &lt;p&gt;To locate the modalias values of all hardware present in a machine,
540 try running this command on the command line:&lt;/p&gt;
541
542 &lt;blockquote&gt;&lt;pre&gt;
543 cat $(find /sys/devices/|grep modalias)
544 &lt;/pre&gt;&lt;/blockquote&gt;
545
546 &lt;p&gt;To learn more about the isenkram system, please check out
547 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/tags/isenkram/&quot;&gt;my
548 blog posts tagged isenkram&lt;/a&gt;.&lt;/p&gt;
549 </description>
550 </item>
551
552 <item>
553 <title>The GNU General Public License is not magic pixie dust</title>
554 <link>http://people.skolelinux.org/pere/blog/The_GNU_General_Public_License_is_not_magic_pixie_dust.html</link>
555 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_GNU_General_Public_License_is_not_magic_pixie_dust.html</guid>
556 <pubDate>Mon, 30 Nov 2015 09:55:00 +0100</pubDate>
557 <description>&lt;p&gt;A blog post from my fellow Debian developer Paul Wise titled
558 &quot;&lt;a href=&quot;http://bonedaddy.net/pabs3/log/2015/11/27/sfc-supporter/&quot;&gt;The
559 GPL is not magic pixie dust&lt;/a&gt;&quot; explain the importance of making sure
560 the &lt;a href=&quot;http://www.gnu.org/copyleft/gpl.html&quot;&gt;GPL&lt;/a&gt; is enforced.
561 I quote the blog post from Paul in full here with his permission:&lt;p&gt;
562
563 &lt;blockquote&gt;
564
565 &lt;p&gt;&lt;a href=&quot;https://sfconservancy.org/supporter/&quot;&gt;&lt;img src=&quot;https://sfconservancy.org/img/supporter-badge.png&quot; width=&quot;194&quot; height=&quot;90&quot; alt=&quot;Become a Software Freedom Conservancy Supporter!&quot; align=&quot;right&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
566
567 &lt;blockquote&gt;
568 The GPL is not magic pixie dust. It does not work by itself.&lt;br/&gt;
569
570 The first step is to choose a
571 &lt;a href=&quot;https://copyleft.org/&quot;&gt;copyleft&lt;/a&gt; license for your
572 code.&lt;br/&gt;
573
574 The next step is, when someone fails to follow that copyleft license,
575 &lt;b&gt;it must be enforced&lt;/b&gt;&lt;br/&gt;
576
577 and its a simple fact of our modern society that such type of
578 work&lt;br/&gt;
579
580 is incredibly expensive to do and incredibly difficult to do.
581 &lt;/blockquote&gt;
582
583 &lt;p&gt;&lt;small&gt;-- &lt;a href=&quot;http://ebb.org/bkuhn/&quot;&gt;Bradley Kuhn&lt;/a&gt;, in
584 &lt;a href=&quot;http://faif.us/&quot; title=&quot;Free as in Freedom&quot;&gt;FaiF&lt;/a&gt;
585 &lt;a href=&quot;http://faif.us/cast/2015/nov/24/0x57/&quot;&gt;episode
586 0x57&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;
587
588 &lt;p&gt;As the Debian Website
589 &lt;a href=&quot;https://bugs.debian.org/794116&quot;&gt;used&lt;/a&gt;
590 &lt;a href=&quot;https://anonscm.debian.org/viewvc/webwml/webwml/english/intro/free.wml?r1=1.24&amp;amp;r2=1.25&quot;&gt;to&lt;/a&gt;
591 imply, public domain and permissively licensed software can lead to
592 the production of more proprietary software as people discover useful
593 software, extend it and or incorporate it into their hardware or
594 software products. Copyleft licenses such as the GNU GPL were created
595 to close off this avenue to the production of proprietary software but
596 such licenses are not enough. With the ongoing adoption of Free
597 Software by individuals and groups, inevitably the community&#39;s
598 expectations of license compliance are violated, usually out of
599 ignorance of the way Free Software works, but not always. As Karen
600 and Bradley explained in &lt;a href=&quot;http://faif.us/&quot; title=&quot;Free as in
601 Freedom&quot;&gt;FaiF&lt;/a&gt;
602 &lt;a href=&quot;http://faif.us/cast/2015/nov/24/0x57/&quot;&gt;episode 0x57&lt;/a&gt;,
603 copyleft is nothing if no-one is willing and able to stand up in court
604 to protect it. The reality of today&#39;s world is that legal
605 representation is expensive, difficult and time consuming. With
606 &lt;a href=&quot;http://gpl-violations.org/&quot;&gt;gpl-violations.org&lt;/a&gt; in hiatus
607 &lt;a href=&quot;http://gpl-violations.org/news/20151027-homepage-recovers/&quot;&gt;until&lt;/a&gt;
608 some time in 2016, the &lt;a href=&quot;https://sfconservancy.org/&quot;&gt;Software
609 Freedom Conservancy&lt;/a&gt; (a tax-exempt charity) is the major defender
610 of the Linux project, Debian and other groups against GPL violations.
611 In March the SFC supported a
612 &lt;a href=&quot;https://sfconservancy.org/news/2015/mar/05/vmware-lawsuit/&quot;&gt;lawsuit
613 by Christoph Hellwig&lt;/a&gt; against VMware for refusing to
614 &lt;a href=&quot;https://sfconservancy.org/linux-compliance/vmware-lawsuit-faq.html&quot;&gt;comply
615 with the GPL&lt;/a&gt; in relation to their use of parts of the Linux
616 kernel. Since then two of their sponsors pulled corporate funding and
617 conferences
618 &lt;a href=&quot;https://sfconservancy.org/blog/2015/nov/24/faif-carols-fundraiser/&quot;&gt;blocked
619 or cancelled their talks&lt;/a&gt;. As a result they have decided to rely
620 less on corporate funding and more on the broad community of
621 individuals who support Free Software and copyleft. So the SFC has
622 &lt;a href=&quot;https://sfconservancy.org/news/2015/nov/23/2015fundraiser/&quot;&gt;launched&lt;/a&gt;
623 a &lt;a href=&quot;https://sfconservancy.org/supporter/&quot;&gt;campaign&lt;/a&gt; to create
624 a community of folks who stand up for copyleft and the GPL by
625 supporting their work on promoting and supporting copyleft and Free
626 Software.&lt;/p&gt;
627
628 &lt;p&gt;If you support Free Software,
629 &lt;a href=&quot;https://sfconservancy.org/blog/2015/nov/26/like-what-I-do/&quot;&gt;like&lt;/a&gt;
630 what the SFC do, agree with their
631 &lt;a href=&quot;https://sfconservancy.org/linux-compliance/principles.html&quot;&gt;compliance
632 principles&lt;/a&gt;, are happy about their
633 &lt;a href=&quot;https://sfconservancy.org/supporter/&quot;&gt;successes&lt;/a&gt; in 2015,
634 work on a project that is an SFC
635 &lt;a href=&quot;https://sfconservancy.org/members/current/&quot;&gt;member&lt;/a&gt; and or
636 just want to stand up for copyleft, please join
637 &lt;a href=&quot;https://identi.ca/cwebber/image/JQGPA4qbTyyp3-MY8QpvuA&quot;&gt;Christopher
638 Allan Webber&lt;/a&gt;,
639 &lt;a href=&quot;https://sfconservancy.org/blog/2015/nov/24/faif-carols-fundraiser/&quot;&gt;Carol
640 Smith&lt;/a&gt;,
641 &lt;a href=&quot;http://www.jonobacon.org/2015/11/25/supporting-software-freedom-conservancy/&quot;&gt;Jono
642 Bacon&lt;/a&gt;, myself and
643 &lt;a href=&quot;https://sfconservancy.org/sponsors/#supporters&quot;&gt;others&lt;/a&gt; in
644 becoming a
645 &lt;a href=&quot;https://sfconservancy.org/supporter/&quot;&gt;supporter&lt;/a&gt;. For the
646 next week your donation will be
647 &lt;a href=&quot;https://sfconservancy.org/news/2015/nov/27/black-friday/&quot;&gt;matched&lt;/a&gt;
648 by an anonymous donor. Please also consider asking your employer to
649 match your donation or become a sponsor of SFC. Don&#39;t forget to
650 spread the word about your support for SFC via email, your blog and or
651 social media accounts.&lt;/p&gt;
652
653 &lt;/blockquote&gt;
654
655 &lt;p&gt;I agree with Paul on this topic and just signed up as a Supporter
656 of Software Freedom Conservancy myself. Perhaps you should be a
657 supporter too?&lt;/p&gt;
658 </description>
659 </item>
660
661 <item>
662 <title>PGP key transition statement for key EE4E02F9</title>
663 <link>http://people.skolelinux.org/pere/blog/PGP_key_transition_statement_for_key_EE4E02F9.html</link>
664 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/PGP_key_transition_statement_for_key_EE4E02F9.html</guid>
665 <pubDate>Tue, 17 Nov 2015 10:50:00 +0100</pubDate>
666 <description>&lt;p&gt;I&#39;ve needed a new OpenPGP key for a while, but have not had time to
667 set it up properly. I wanted to generate it offline and have it
668 available on &lt;a href=&quot;http://shop.kernelconcepts.de/#openpgp&quot;&gt;a OpenPGP
669 smart card&lt;/a&gt; for daily use, and learning how to do it and finding
670 time to sit down with an offline machine almost took forever. But
671 finally I&#39;ve been able to complete the process, and have now moved
672 from my old GPG key to a new GPG key. See
673 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2015-11-17-new-gpg-key-transition.txt&quot;&gt;the
674 full transition statement, signed with both my old and new key&lt;/a&gt; for
675 the details. This is my new key:&lt;/p&gt;
676
677 &lt;pre&gt;
678 pub 3936R/&lt;a href=&quot;http://pgp.cs.uu.nl/stats/111D6B29EE4E02F9.html&quot;&gt;111D6B29EE4E02F9&lt;/a&gt; 2015-11-03 [expires: 2019-11-14]
679 Key fingerprint = 3AC7 B2E3 ACA5 DF87 78F1 D827 111D 6B29 EE4E 02F9
680 uid Petter Reinholdtsen &amp;lt;pere@hungry.com&amp;gt;
681 uid Petter Reinholdtsen &amp;lt;pere@debian.org&amp;gt;
682 sub 4096R/87BAFB0E 2015-11-03 [expires: 2019-11-02]
683 sub 4096R/F91E6DE9 2015-11-03 [expires: 2019-11-02]
684 sub 4096R/A0439BAB 2015-11-03 [expires: 2019-11-02]
685 &lt;/pre&gt;
686
687 &lt;p&gt;The key can be downloaded from the OpenPGP key servers, signed by
688 my old key.&lt;/p&gt;
689
690 &lt;p&gt;If you signed my old key
691 (&lt;a href=&quot;http://pgp.cs.uu.nl/stats/DB4CCC4B2A30D729.html&quot;&gt;DB4CCC4B2A30D729&lt;/a&gt;),
692 I&#39;d very much appreciate a signature on my new key, details and
693 instructions in the transition statement. I m happy to reciprocate if
694 you have a similarly signed transition statement to present.&lt;/p&gt;
695 </description>
696 </item>
697
698 <item>
699 <title>Is Pentagon deciding the Norwegian negotiating position on Internet governance?</title>
700 <link>http://people.skolelinux.org/pere/blog/Is_Pentagon_deciding_the_Norwegian_negotiating_position_on_Internet_governance_.html</link>
701 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Is_Pentagon_deciding_the_Norwegian_negotiating_position_on_Internet_governance_.html</guid>
702 <pubDate>Tue, 3 Nov 2015 13:40:00 +0100</pubDate>
703 <description>&lt;p&gt;In Norway, all government offices are required by law to keep a
704 list of every document or letter arriving and leaving their offices.
705 Internal notes should also be documented. The document list (called a mail
706 journal - &quot;postjournal&quot; in Norwegian) is public information and thanks
707 to the Norwegian Freedom of Information Act (Offentleglova) the mail
708 journal is available for everyone. Most offices even publish the mail
709 journal on their web pages, as PDFs or tables in web pages. The state-level offices even have a shared web based search service (called
710 &lt;a href=&quot;https://www.oep.no/&quot;&gt;Offentlig Elektronisk Postjournal -
711 OEP&lt;/a&gt;) to make it possible to search the entries in the list. Not
712 all journal entries show up on OEP, and the search service is hard to
713 use, but OEP does make it easier to find at least some interesting
714 journal entries .&lt;/p&gt;
715
716 &lt;p&gt;In 2012 I came across a document in the mail journal for the
717 Norwegian Ministry of Transport and Communications on OEP that
718 piqued my interest. The title of the document was
719 &quot;&lt;a href=&quot;https://www.oep.no/search/resultSingle.html?journalPostId=4192362&quot;&gt;Internet
720 Governance and how it affects national security&lt;/a&gt;&quot; (Norwegian:
721 &quot;Internet Governance og påvirkning på nasjonal sikkerhet&quot;). The
722 document date was 2012-05-22, and it was said to be sent from the
723 &quot;Permanent Mission of Norway to the United Nations&quot;. I asked for a
724 copy, but my request was rejected with a reference to a legal clause said to authorize them to reject it
725 (&lt;a href=&quot;http://lovdata.no/lov/2006-05-19-1620&quot;&gt;offentleglova § 20,
726 letter c&lt;/a&gt;) and an explanation that the document was exempt because
727 of foreign policy interests as it contained information related to the
728 Norwegian negotiating position, negotiating strategies or similar. I
729 was told the information in the document related to the ongoing
730 negotiation in the International Telecommunications Union (ITU). The
731 explanation made sense to me in early January 2013, as a ITU
732 conference in Dubay discussing Internet Governance
733 (&lt;a href=&quot;https://en.wikipedia.org/wiki/International_Telecommunication_Union#World_Conference_on_International_Telecommunications_2012_.28WCIT-12.29&quot;&gt;World
734 Conference on International Telecommunications - WCIT-12&lt;/a&gt;) had just
735 ended,
736 &lt;a href=&quot;http://www.digi.no/kommentarer/2012/12/18/tvil-om-usas-rolle-pa-teletoppmote&quot;&gt;reportedly
737 in chaos&lt;/a&gt; when USA walked out of the negotiations and 25 countries
738 including Norway refused to sign the new treaty. It seemed
739 reasonable to believe talks were still going on a few weeks later.
740 Norway was represented at the ITU meeting by two authorities, the
741 &lt;a href=&quot;http://www.nkom.no/&quot;&gt;Norwegian Communications Authority&lt;/a&gt;
742 and the &lt;a href=&quot;https://www.regjeringen.no/no/dep/sd/&quot;&gt;Ministry of
743 Transport and Communications&lt;/a&gt;. This might be the reason the letter
744 was sent to the ministry. As I was unable to find the document in the
745 mail journal of any Norwegian UN mission, I asked the ministry who had
746 sent the document to the ministry, and was told that it was the Deputy
747 Permanent Representative with the Permanent Mission of Norway in
748 Geneva.&lt;/p&gt;
749
750 &lt;p&gt;Three years later, I was still curious about the content of that
751 document, and again asked for a copy, believing the negotiation was
752 over now. This time
753 &lt;a href=&quot;https://mimesbronn.no/request/kopi_av_dokumenter_i_sak_2012914&quot;&gt;I
754 asked both the Ministry of Transport and Communications as the
755 receiver&lt;/a&gt; and
756 &lt;a href=&quot;https://mimesbronn.no/request/brev_om_internet_governance_og_p&quot;&gt;asked
757 the Permanent Mission of Norway in Geneva as the sender&lt;/a&gt; for a
758 copy, to see if they both agreed that it should be withheld from the
759 public. The ministry upheld its rejection quoting the same law
760 reference as before, while the permanent mission rejected it quoting a
761 different clause
762 (&lt;a href=&quot;http://lovdata.no/lov/2006-05-19-1620&quot;&gt;offentleglova § 20
763 letter b&lt;/a&gt;), claiming that they were required to keep the
764 content of the document from the public because it contained
765 information given to Norway with the expressed or implied expectation
766 that the information should not be made public. I asked the permanent
767 mission for an explanation, and was told that the document contained
768 an account from a meeting held in the Pentagon for a limited group of NATO
769 nations where the organiser of the meeting did not intend the content
770 of the meeting to be publicly known. They explained that giving me a
771 copy might cause Norway to not get access to similar information in
772 the future and thus hurt the future foreign interests of Norway. They
773 also explained that the Permanent Mission of Norway in Geneva was not
774 the author of the document, they only got a copy of it, and because of
775 this had not listed it in their mail journal.&lt;/p&gt;
776
777 &lt;p&gt;Armed with this
778 knowledge I asked the Ministry to reconsider and asked who was the
779 author of the document, now realising that it was not same as the
780 &quot;sender&quot; according to Ministry of Transport and Communications. The
781 ministry upheld its rejection but told me the name of the author of
782 the document. According to
783 &lt;a href=&quot;https://www.regjeringen.no/no/aktuelt/unga69_rapport1/id2001204/&quot;&gt;a
784 government report&lt;/a&gt; the author was with the Permanent Mission of
785 Norway in New York a bit more than a year later (2014-09-22), so I
786 guessed that might be the office responsible for writing and sending
787 the report initially and
788 &lt;a href=&quot;https://www.mimesbronn.no/request/mote_2012_i_pentagon_om_itu&quot;&gt;asked
789 them for a copy&lt;/a&gt; but I was obviously wrong as I was told that the
790 document was unknown to them and that the author did not work there
791 when the document was written. Next, I asked the Permanent Mission of
792 Norway in Geneva and the Foreign Ministry to reconsider and at least
793 tell me who sent the document to Deputy Permanent Representative with
794 the Permanent Mission of Norway in Geneva. The Foreign Ministry also
795 upheld its rejection, but told me that the person sending the document
796 to Permanent Mission of Norway in Geneva was the defence attaché with
797 the Norwegian Embassy in Washington. I do not know if this is the
798 same person as the author of the document.&lt;/p&gt;
799
800 &lt;p&gt;If I understand the situation correctly, someone capable of
801 inviting selected NATO nations to a meeting in Pentagon organised a
802 meeting where someone representing the Norwegian defence attaché in
803 Washington attended, and the account from this meeting is interpreted
804 by the Ministry of Transport and Communications to expose Norways
805 negotiating position, negotiating strategies and similar regarding the
806 ITU negotiations on Internet Governance. It is truly amazing what can
807 be derived from mere meta-data.&lt;/p&gt;
808
809 &lt;p&gt;I wonder which NATO countries besides Norway attended this meeting?
810 And what exactly was said and done at the meeting? Anyone know?&lt;/p&gt;
811 </description>
812 </item>
813
814 <item>
815 <title>New book, &quot;Fri kultur&quot; by @lessig, a Norwegian Bokmål translation of &quot;Free Culture&quot; from 2004</title>
816 <link>http://people.skolelinux.org/pere/blog/New_book___Fri_kultur__by__lessig__a_Norwegian_Bokm_l_translation_of__Free_Culture__from_2004.html</link>
817 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/New_book___Fri_kultur__by__lessig__a_Norwegian_Bokm_l_translation_of__Free_Culture__from_2004.html</guid>
818 <pubDate>Sat, 31 Oct 2015 09:00:00 +0100</pubDate>
819 <description>&lt;p&gt;People keep asking me where to get the various forms of the book I
820 published last week, the Norwegian Bokmål edition of Lawrence Lessigs
821 book &lt;a href=&quot;http://www.free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt;. It was
822 published on paper via lulu.com, and is also available in PDF, ePub
823 and MOBI format. I currently sell the paper edition for self cost
824 from lulu.com, but might extend the distribution to book stores like
825 Amazon and Barnes &amp; Noble later. This will double the price and force
826 me to make a profit from selling the book. Anyway, here are links to
827 get the book in different formats:&lt;/p&gt;
828
829 &lt;ul&gt;
830
831 &lt;li&gt;&lt;a href=&quot;http://www.lulu.com/shop/lawrence-lessig/fri-kultur/paperback/product-22406445.html&quot;&gt;Buy
832 paper edition from lulu.com&lt;/a&gt;&lt;/li&gt;
833
834 &lt;li&gt;&lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig/raw/master/archive/freeculture.nb.pdf&quot;&gt;Download
835 PDF, size 7.9 MiB&lt;/a&gt; (gratis/free)&lt;/li&gt;
836
837 &lt;li&gt;&lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig/raw/master/archive/freeculture.nb.epub&quot;&gt;Download
838 ePub, size 11 MiB&lt;/a&gt; (gratis/free)&lt;/li&gt;
839
840 &lt;li&gt;&lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig/raw/master/archive/freeculture.nb.mobi&quot;&gt;Download
841 MOBI, size 3.8 MiB&lt;/a&gt; (gratis/free)&lt;/li&gt;
842
843 &lt;/ul&gt;
844
845 &lt;p&gt;Note that the MOBI version have problems with the table of content,
846 at least with the viewers I have been able to test. And the ePub file
847 have several problems according to
848 &lt;a href=&quot;https://github.com/IDPF/epubcheck&quot;&gt;epubcheck&lt;/a&gt;, but seem
849 to display fine in the viewers I have tested. All the files needed to
850 create the book in various forms are available from
851 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;the
852 github project page&lt;/a&gt;.&lt;/p&gt;
853
854 &lt;p&gt;The project got press coverage from the Norwegian IT news site
855 digi.no. Check out the article
856 &quot;&lt;a href=&quot;http://www.digi.no/juss_og_samfunn/2015/10/29/vil-apne-politikernes-oyne-for-creative-commons&quot;&gt;Vil
857 åpne politikernes øyne for Creative Commons&lt;/a&gt;&quot;.&lt;/li&gt;
858
859 &lt;p&gt;I&#39;ve &lt;a href=&quot;http://people.skolelinux.org/pere/blog/tags/freeculture&quot;&gt;blogged
860 about the project&lt;/a&gt; as it moved along. The blogs document the translation
861 progress and insights I had along the way.&lt;/p&gt;
862 </description>
863 </item>
864
865 <item>
866 <title>&quot;Free Culture&quot; by @lessig - The background story for Creative Commons - new edition available</title>
867 <link>http://people.skolelinux.org/pere/blog/_Free_Culture__by__lessig___The_background_story_for_Creative_Commons___new_edition_available.html</link>
868 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/_Free_Culture__by__lessig___The_background_story_for_Creative_Commons___new_edition_available.html</guid>
869 <pubDate>Fri, 23 Oct 2015 12:10:00 +0200</pubDate>
870 <description>&lt;p&gt;&lt;a href=&quot;http://www.lulu.com/shop/lawrence-lessig/free-culture/paperback/product-22402863.html&quot;&gt;Click
871 here to buy the book&lt;/a&gt;.&lt;/p&gt;
872
873 &lt;p&gt;In 2004, as the &lt;a href=&quot;https://creativecommons.org/&quot;&gt;Creative Commons
874 movement&lt;/a&gt; gained momentum, its creator Lawrence Lessig wrote the
875 book &lt;a href=&quot;https://en.wikipedia.org/wiki/Free_Culture_(book)&quot;&gt;Free
876 Culture&lt;/a&gt; to explain the problems with increasing copyright
877 regulation and suggest some solutions. I read the book back then and
878 was very moved by it. Reading the book inspired me and changed the
879 way I looked on copyright law, and I would love it if more people
880 would read it too.&lt;/p&gt;
881
882 &lt;p&gt;Because of this, I decided in the summer of 2012 to translate it to
883 Norwegian Bokmål and publish it for those of my friends and family
884 that prefer to read books in Norwegian. I translated the book using
885 docbook and a gettext PO file, and a byproduct of this process is a
886 new edition of the English original. I&#39;ve been in touch with the
887 author during by work, and he said it was fine with him if I also
888 published an English version. So I decided to do so. Today, I made
889 this edition
890 &lt;a href=&quot;http://www.lulu.com/shop/lawrence-lessig/free-culture/paperback/product-22402863.html&quot;&gt;available
891 for sale on Lulu.com&lt;/a&gt;, for those interested in a paper book. This
892 is the cover:
893
894 &lt;p align=&quot;center&quot;&gt;&lt;a href=&quot;http://www.lulu.com/shop/lawrence-lessig/free-culture/paperback/product-22402863.html&quot;&gt;&lt;img align=&quot;center&quot; src=&quot;http://people.skolelinux.org/pere/blog/images/2015-10-23-free-culture-english-published-cover.png&quot;/&gt;&lt;/a&gt;&lt;/p&gt;
895
896 &lt;p&gt;The Norwegian Bokmål version will be available for purchase in a
897 few days. I also plan to publish a French version in a few weeks or
898 months, depending on the amount of people with knowledge of French to
899 join the translation project. So far there is only one active
900 person, but the French book is almost completely translated but
901 need some proof reading.&lt;/p&gt;
902
903 &lt;p&gt;The book is also available in PDF, ePub and MOBI formats from
904 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;my
905 github project page&lt;/a&gt;. Note the ePub and MOBI versions have some
906 formatting problems I believe is due to bugs in the docbook tool
907 dbtoepub (Debian BTS issues
908 &lt;a href=&quot;https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=795842&quot;&gt;#795842&lt;/a&gt;
909 and
910 &lt;a href=&quot;https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=796871&quot;&gt;#796871&lt;/a&gt;),
911 but I have not taken the time to investigate. I recommend the PDF and
912 ePub version for now, as they seem to show up fine in the viewers I
913 have available.&lt;/p&gt;
914
915 &lt;p&gt;After the translation to Norwegian Bokmål was complete, I was able
916 to secure some sponsoring from
917 &lt;a href=&quot;http://www.nuugfoundation.no/&quot;&gt;the NUUG Foundation&lt;/a&gt; to
918 print the book. This is the reason their logo is located on the back
919 cover. I am very grateful for their contribution, and will use it to
920 give a copy of the Norwegian edition to members of the Norwegian
921 Parliament and other decision makers here in Norway.&lt;/p&gt;
922 </description>
923 </item>
924
925 <item>
926 <title>Lawrence Lessig interviewed Edward Snowden a year ago</title>
927 <link>http://people.skolelinux.org/pere/blog/Lawrence_Lessig_interviewed_Edward_Snowden_a_year_ago.html</link>
928 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lawrence_Lessig_interviewed_Edward_Snowden_a_year_ago.html</guid>
929 <pubDate>Mon, 19 Oct 2015 11:50:00 +0200</pubDate>
930 <description>&lt;p&gt;Last year, &lt;a href=&quot;https://lessig2016.us/&quot;&gt;US president candidate
931 in the Democratic Party&lt;/a&gt; Lawrence interviewed Edward Snowden. The
932 one hour interview was
933 &lt;a href=&quot;https://www.youtube.com/watch?v=o_Sr96TFQQE&quot;&gt;published by
934 Harvard Law School 2014-10-23 on Youtube&lt;/a&gt;, and the meeting took
935 place 2014-10-20.&lt;/p&gt;
936
937 &lt;p&gt;The questions are very good, and there is lots of useful
938 information to be learned and very interesting issues to think about
939 being raised. Please check it out.&lt;/p&gt;
940
941 &lt;iframe width=&quot;560&quot; height=&quot;315&quot; src=&quot;https://www.youtube.com/embed/o_Sr96TFQQE&quot; frameborder=&quot;0&quot; allowfullscreen&gt;&lt;/iframe&gt;
942
943 &lt;p&gt;I find it especially interesting to hear again that Snowden did try
944 to bring up his reservations through the official channels without any
945 luck. It is in sharp contrast to the answers made 2013-11-06 by the
946 Norwegian prime minister Erna Solberg to the Norwegian Parliament,
947 &lt;a href=&quot;https://tale.holderdeord.no/speeches/s131106/68&quot;&gt;claiming
948 Snowden is no Whistle-Blower&lt;/a&gt; because he should have taken up his
949 concerns internally and using official channels. It make me sad
950 that this is the political leadership we have here in Norway.&lt;/p&gt;
951 </description>
952 </item>
953
954 <item>
955 <title>The Story of Aaron Swartz - Let us all weep!</title>
956 <link>http://people.skolelinux.org/pere/blog/The_Story_of_Aaron_Swartz___Let_us_all_weep_.html</link>
957 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_Story_of_Aaron_Swartz___Let_us_all_weep_.html</guid>
958 <pubDate>Thu, 8 Oct 2015 12:10:00 +0200</pubDate>
959 <description>&lt;p&gt;The movie &quot;&lt;a href=&quot;http://www.takepart.com/internets-own-boy&quot;&gt;The
960 Internet&#39;s Own Boy: The Story of Aaron Swartz&lt;/a&gt;&quot; is both inspiring
961 and depressing at the same time. The work of Aaron Swartz has
962 inspired me in my work, and I am grateful of all the improvements he
963 was able to initiate or complete. I wish I am able to do as much good
964 in my life as he did in his. Every minute of this 1:45 long movie is
965 inspiring in documenting how much impact a single person can have on
966 improving the society and this world. And it is depressing in
967 documenting how the law enforcement of USA (and other countries) is
968 corrupted to a point where they can push a bright kid to his death for
969 downloading too many scientific articles. Aaron is dead. Let us all
970 weep.&lt;/p&gt;
971
972 &lt;p&gt;The movie is also available on
973 &lt;a href=&quot;https://www.youtube.com/watch?v=vXr-2hwTk58&quot;&gt;Youtube&lt;/a&gt;. I
974 wish there were Norwegian subtitles available, so I could show it to
975 my parents.&lt;/p&gt;
976 </description>
977 </item>
978
979 <item>
980 <title>French Docbook/PDF/EPUB/MOBI edition of the Free Culture book</title>
981 <link>http://people.skolelinux.org/pere/blog/French_Docbook_PDF_EPUB_MOBI_edition_of_the_Free_Culture_book.html</link>
982 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/French_Docbook_PDF_EPUB_MOBI_edition_of_the_Free_Culture_book.html</guid>
983 <pubDate>Thu, 1 Oct 2015 13:20:00 +0200</pubDate>
984 <description>&lt;p&gt;As I wrap up the Norwegian version of
985 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;Free
986 Culture&lt;/a&gt; book by Lawrence Lessig (still waiting for my final proof
987 reading copy to arrive in the mail), my great
988 &lt;a href=&quot;http://dblatex.sourceforge.net/&quot;&gt;dblatex&lt;/a&gt; helper and
989 developer of the dblatex docbook processor, Benoît Guillon, decided a
990 to try to create a French version of the book. He started with the
991 French translation available from the
992 &lt;a href=&quot;http://www.wikilivres.ca/wiki/Culture_libre&quot;&gt;Wikilivres wiki
993 pages&lt;/a&gt;, and wrote a program to convert it into a PO file, allowing
994 the translation to be integrated into the po4a based framework I use
995 to create the Norwegian translation from the English edition. We meet
996 on the &lt;a href=&quot;irc://irc.freenode.net/%23dblatex&quot;&gt;#dblatex IRC
997 channel&lt;/a&gt; to discuss the work. If you want to help create a French
998 edition, check out
999 &lt;a href=&quot;https://github.com/marsgui/free-culture-lessig&quot;&gt;his git
1000 repository&lt;/a&gt; and join us on IRC. If the French edition look good,
1001 we might publish it as a paper book on lulu.com. A French version of
1002 the drawings and the cover need to be provided for this to happen.&lt;/p&gt;
1003 </description>
1004 </item>
1005
1006 <item>
1007 <title>The life and death of a laptop battery</title>
1008 <link>http://people.skolelinux.org/pere/blog/The_life_and_death_of_a_laptop_battery.html</link>
1009 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_life_and_death_of_a_laptop_battery.html</guid>
1010 <pubDate>Thu, 24 Sep 2015 16:00:00 +0200</pubDate>
1011 <description>&lt;p&gt;When I get a new laptop, the battery life time at the start is OK.
1012 But this do not last. The last few laptops gave me a feeling that
1013 within a year, the life time is just a fraction of what it used to be,
1014 and it slowly become painful to use the laptop without power connected
1015 all the time. Because of this, when I got a new Thinkpad X230 laptop
1016 about two years ago, I decided to monitor its battery state to have
1017 more hard facts when the battery started to fail.&lt;/p&gt;
1018
1019 &lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2015-09-24-laptop-battery-graph.png&quot;/&gt;
1020
1021 &lt;p&gt;First I tried to find a sensible Debian package to record the
1022 battery status, assuming that this must be a problem already handled
1023 by someone else. I found
1024 &lt;a href=&quot;https://tracker.debian.org/pkg/battery-stats&quot;&gt;battery-stats&lt;/a&gt;,
1025 which collects statistics from the battery, but it was completely
1026 broken. I sent a few suggestions to the maintainer, but decided to
1027 write my own collector as a shell script while I waited for feedback
1028 from him. Via
1029 &lt;a href=&quot;http://www.ifweassume.com/2013/08/the-de-evolution-of-my-laptop-battery.html&quot;&gt;a
1030 blog post about the battery development on a MacBook Air&lt;/a&gt; I also
1031 discovered
1032 &lt;a href=&quot;https://github.com/jradavenport/batlog.git&quot;&gt;batlog&lt;/a&gt;, not
1033 available in Debian.&lt;/p&gt;
1034
1035 &lt;p&gt;I started my collector 2013-07-15, and it has been collecting
1036 battery stats ever since. Now my
1037 /var/log/hjemmenett-battery-status.log file contain around 115,000
1038 measurements, from the time the battery was working great until now,
1039 when it is unable to charge above 7% of original capacity. My
1040 collector shell script is quite simple and look like this:&lt;/p&gt;
1041
1042 &lt;pre&gt;
1043 #!/bin/sh
1044 # Inspired by
1045 # http://www.ifweassume.com/2013/08/the-de-evolution-of-my-laptop-battery.html
1046 # See also
1047 # http://blog.sleeplessbeastie.eu/2013/01/02/debian-how-to-monitor-battery-capacity/
1048 logfile=/var/log/hjemmenett-battery-status.log
1049
1050 files=&quot;manufacturer model_name technology serial_number \
1051 energy_full energy_full_design energy_now cycle_count status&quot;
1052
1053 if [ ! -e &quot;$logfile&quot; ] ; then
1054 (
1055 printf &quot;timestamp,&quot;
1056 for f in $files; do
1057 printf &quot;%s,&quot; $f
1058 done
1059 echo
1060 ) &gt; &quot;$logfile&quot;
1061 fi
1062
1063 log_battery() {
1064 # Print complete message in one echo call, to avoid race condition
1065 # when several log processes run in parallel.
1066 msg=$(printf &quot;%s,&quot; $(date +%s); \
1067 for f in $files; do \
1068 printf &quot;%s,&quot; $(cat $f); \
1069 done)
1070 echo &quot;$msg&quot;
1071 }
1072
1073 cd /sys/class/power_supply
1074
1075 for bat in BAT*; do
1076 (cd $bat &amp;&amp; log_battery &gt;&gt; &quot;$logfile&quot;)
1077 done
1078 &lt;/pre&gt;
1079
1080 &lt;p&gt;The script is called when the power management system detect a
1081 change in the power status (power plug in or out), and when going into
1082 and out of hibernation and suspend. In addition, it collect a value
1083 every 10 minutes. This make it possible for me know when the battery
1084 is discharging, charging and how the maximum charge change over time.
1085 The code for the Debian package
1086 &lt;a href=&quot;https://github.com/petterreinholdtsen/battery-status&quot;&gt;is now
1087 available on github&lt;/a&gt;.&lt;/p&gt;
1088
1089 &lt;p&gt;The collected log file look like this:&lt;/p&gt;
1090
1091 &lt;pre&gt;
1092 timestamp,manufacturer,model_name,technology,serial_number,energy_full,energy_full_design,energy_now,cycle_count,status,
1093 1376591133,LGC,45N1025,Li-ion,974,62800000,62160000,39050000,0,Discharging,
1094 [...]
1095 1443090528,LGC,45N1025,Li-ion,974,4900000,62160000,4900000,0,Full,
1096 1443090601,LGC,45N1025,Li-ion,974,4900000,62160000,4900000,0,Full,
1097 &lt;/pre&gt;
1098
1099 &lt;p&gt;I wrote a small script to create a graph of the charge development
1100 over time. This graph depicted above show the slow death of my laptop
1101 battery.&lt;/p&gt;
1102
1103 &lt;p&gt;But why is this happening? Why are my laptop batteries always
1104 dying in a year or two, while the batteries of space probes and
1105 satellites keep working year after year. If we are to believe
1106 &lt;a href=&quot;http://batteryuniversity.com/learn/article/how_to_prolong_lithium_based_batteries&quot;&gt;Battery
1107 University&lt;/a&gt;, the cause is me charging the battery whenever I have a
1108 chance, and the fix is to not charge the Lithium-ion batteries to 100%
1109 all the time, but to stay below 90% of full charge most of the time.
1110 I&#39;ve been told that the Tesla electric cars
1111 &lt;a href=&quot;http://my.teslamotors.com/de_CH/forum/forums/battery-charge-limit&quot;&gt;limit
1112 the charge of their batteries to 80%&lt;/a&gt;, with the option to charge to
1113 100% when preparing for a longer trip (not that I would want a car
1114 like Tesla where rights to privacy is abandoned, but that is another
1115 story), which I guess is the option we should have for laptops on
1116 Linux too.&lt;/p&gt;
1117
1118 &lt;p&gt;Is there a good and generic way with Linux to tell the battery to
1119 stop charging at 80%, unless requested to charge to 100% once in
1120 preparation for a longer trip? I found
1121 &lt;a href=&quot;http://askubuntu.com/questions/34452/how-can-i-limit-battery-charging-to-80-capacity&quot;&gt;one
1122 recipe on askubuntu for Ubuntu to limit charging on Thinkpad to
1123 80%&lt;/a&gt;, but could not get it to work (kernel module refused to
1124 load).&lt;/p&gt;
1125
1126 &lt;p&gt;I wonder why the battery capacity was reported to be more than 100%
1127 at the start. I also wonder why the &quot;full capacity&quot; increases some
1128 times, and if it is possible to repeat the process to get the battery
1129 back to design capacity. And I wonder if the discharge and charge
1130 speed change over time, or if this stay the same. I did not yet try
1131 to write a tool to calculate the derivative values of the battery
1132 level, but suspect some interesting insights might be learned from
1133 those.&lt;/p&gt;
1134
1135 &lt;p&gt;Update 2015-09-24: I got a tip to install the packages
1136 acpi-call-dkms and tlp (unfortunately missing in Debian stable)
1137 packages instead of the tp-smapi-dkms package I had tried to use
1138 initially, and use &#39;tlp setcharge 40 80&#39; to change when charging start
1139 and stop. I&#39;ve done so now, but expect my existing battery is toast
1140 and need to be replaced. The proposal is unfortunately Thinkpad
1141 specific.&lt;/p&gt;
1142 </description>
1143 </item>
1144
1145 <item>
1146 <title>Book cover for the Free Culture book finally done</title>
1147 <link>http://people.skolelinux.org/pere/blog/Book_cover_for_the_Free_Culture_book_finally_done.html</link>
1148 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Book_cover_for_the_Free_Culture_book_finally_done.html</guid>
1149 <pubDate>Thu, 3 Sep 2015 21:00:00 +0200</pubDate>
1150 <description>&lt;p&gt;Creating a good looking book cover proved harder than I expected.
1151 I wanted to create a cover looking similar to the original cover of
1152 the
1153 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;Free
1154 Culture&lt;/a&gt; book we are translating to Norwegian, and I wanted it in
1155 vector format for high resolution printing. But my inkscape knowledge
1156 were not nearly good enough to pull that off.
1157
1158 &lt;p&gt;But thanks to the great inkscape community, I was able to wrap up
1159 the cover yesterday evening. I asked on the
1160 &lt;a href=&quot;irc://irc.freenode.net/%23inkscape&quot;&gt;#inkscape IRC channel&lt;/a&gt;
1161 on Freenode for help and clues, and Marc Jeanmougin (Mc-) volunteered
1162 to try to recreate it based on the PDF of the cover from the HTML
1163 version. Not only did he create a
1164 &lt;a href=&quot;https://marc.jeanmougin.fr/share/copy1.svg &quot;&gt;SVG document with
1165 the original and his vector version side by side&lt;/a&gt;, he even provided
1166 an &lt;a href=&quot;https://marc.jeanmougin.fr/share/out-1.ogv&quot;&gt;instruction
1167 video&lt;/a&gt; explaining how he did it&lt;/a&gt;. But the instruction video is
1168 not easy to follow for an untrained inkscape user. The video is a
1169 recording on how he did it, and he is obviously very experienced as
1170 the menu selections are very quick and he mentioned on IRC that he did
1171 use some keyboard shortcuts that can&#39;t be seen on the video, but it
1172 give a good idea about the inkscape operations to use to create the
1173 stripes with the embossed copyright sign in the center.&lt;/p&gt;
1174
1175 &lt;p&gt;I took his SVG file, copied the vector image and re-sized it to fit
1176 on the cover I was drawing. I am happy with the end result, and the
1177 current english version look like this:&lt;/p&gt;
1178
1179 &lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2015-09-03-free-culture-cover.png&quot; width=&quot;70%&quot; align=&quot;center&quot;/&gt;
1180
1181 &lt;p&gt;I am not quite sure about the text on the back, but guess it will
1182 do. I picked three quotes from the official site for the book, and
1183 hope it will work to trigger the interest of potential readers. The
1184 Norwegian cover will look the same, but with the texts and bar code
1185 replaced with the Norwegian version.&lt;/p&gt;
1186
1187 &lt;p&gt;The book is very close to being ready for publication, and I expect
1188 to upload the final draft to Lulu in the next few days and order a
1189 final proof reading copy to verify that everything look like it should
1190 before allowing everyone to order their own copy of Free Culture, in
1191 English or Norwegian Bokmål. I&#39;m waiting to give the the productive
1192 proof readers a chance to complete their work.&lt;/p&gt;
1193 </description>
1194 </item>
1195
1196 <item>
1197 <title>In my hand, a pocket book edition of the Norwegian Free Culture book!</title>
1198 <link>http://people.skolelinux.org/pere/blog/In_my_hand__a_pocket_book_edition_of_the_Norwegian_Free_Culture_book_.html</link>
1199 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/In_my_hand__a_pocket_book_edition_of_the_Norwegian_Free_Culture_book_.html</guid>
1200 <pubDate>Wed, 19 Aug 2015 22:10:00 +0200</pubDate>
1201 <description>&lt;p&gt;Today, finally, my first printed draft edition of the Norwegian
1202 translation of Free Culture I have been working on for the last few
1203 years arrived in the mail. I had to fake a cover to get the interior
1204 printed, and the exterior of the book look awful, but that is
1205 irrelevant at this point. I asked for a printed pocket book version
1206 to get an idea about the font sizes and paper format as well as how
1207 good the figures and images look in print, but also to test what the
1208 pocket book version would look like. After receiving the 500 page
1209 pocket book, it became obvious to me that that pocket book size is too
1210 small for this book. I believe the book is too thick, and several
1211 tables and figures do not look good in the size they get with that
1212 small page sizes. I believe I will go with the 5.5x8.5 inch size
1213 instead. A surprise discovery from the paper version was how bad the
1214 URLs look in print. They are very hard to read in the colophon page.
1215 The URLs are red in the PDF, but light gray on paper. I need to
1216 change the color of links somehow to look better. But there is a
1217 printed book in my hand, and it feels great. :)&lt;/p&gt;
1218
1219 &lt;p&gt;Now I only need to fix the cover, wrap up the postscript with the
1220 store behind the book, and collect the last corrections from the proof
1221 readers before the book is ready for proper printing. Cover artists
1222 willing to work for free and create a Creative Commons licensed vector
1223 file looking similar to the original is most welcome, as my skills as
1224 a graphics designer are mostly missing.&lt;/p&gt;
1225 </description>
1226 </item>
1227
1228 <item>
1229 <title>First paper version of the Norwegian Free Culture book heading my way</title>
1230 <link>http://people.skolelinux.org/pere/blog/First_paper_version_of_the_Norwegian_Free_Culture_book_heading_my_way.html</link>
1231 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_paper_version_of_the_Norwegian_Free_Culture_book_heading_my_way.html</guid>
1232 <pubDate>Sun, 9 Aug 2015 10:15:00 +0200</pubDate>
1233 <description>&lt;p&gt;Typesetting a book is harder than I hoped. As the translation is
1234 mostly done, and a volunteer proof reader was going to check the text
1235 on paper, it was time this summer to focus on formatting my translated
1236 &lt;a href=&quot;http://www.docbook.org/&quot;&gt;docbook&lt;/a&gt; based version of the
1237 &lt;a href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; book by Lawrence
1238 Lessig. I&#39;ve been trying to get both docboox-xsl+fop and dblatex to
1239 give me a good looking PDF, but in the end I went with dblatex, because
1240 its Debian maintainer and upstream developer were responsive and very
1241 helpful in solving my formatting challenges.&lt;/p&gt;
1242
1243 &lt;p&gt;Last night, I finally managed to create a PDF that no longer made
1244 &lt;a href=&quot;http://www.lulu.com/&quot;&gt;Lulu.com&lt;/a&gt; complain after uploading,
1245 and I ordered a text version of the book on paper. It is lacking a
1246 proper book cover and is not tagged with the correct ISBN number, but
1247 should give me an idea what the finished book will look like.&lt;/p&gt;
1248
1249 &lt;p&gt;Instead of using Lulu, I did consider printing the book using
1250 &lt;a href=&quot;http://www.createspace.com/&quot;&gt;CreateSpace&lt;/a&gt;, but ended up
1251 using Lulu because it had smaller book size options (CreateSpace seem
1252 to lack pocket book with extended distribution). I looked for a
1253 similar service in Norway, but have not seen anything so far. Please
1254 let me know if I am missing out on something here.&lt;/p&gt;
1255
1256 &lt;p&gt;But I still struggle to decide the book size. Should I go for
1257 pocket book (4.25x6.875 inches / 10.8x17.5 cm) with 556 pages, Digest
1258 (5.5x8.5 inches / 14x21.6 cm) with 323 pages or US Trade (6x8 inches /
1259 15.3x22.9 cm) with 280 pages? Fewer pager give a cheaper book, and a
1260 smaller book is easier to carry around. The test book I ordered was
1261 pocket book sized, to give me an idea how well that fit in my hand,
1262 but I suspect I will end up using a digest sized book in the end to
1263 bring the prize down further.&lt;/p&gt;
1264
1265 &lt;p&gt;My biggest challenge at the moment is making nice cover art. My
1266 inkscape skills are not yet up to the task of replicating the original
1267 cover in SVG format. I also need to figure out what to write about
1268 the book on the back (will most likely use the same text as the
1269 description on web based book stores). I would love help with this,
1270 if you are willing to license the art source and final version using
1271 the same CC license as the book. My artistic skills are not really up
1272 to the task.&lt;/p&gt;
1273
1274 &lt;p&gt;I plan to publish the book in both English and Norwegian and on
1275 paper, in PDF form as well as EPUB and MOBI format. The current
1276 status can as usual be found on
1277 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;
1278 in the archive/ directory. So far I have spent all time on making the
1279 PDF version look good. Someone should probably do the same with the
1280 dbtoepub generated e-book. Help is definitely needed here, as I
1281 expect to run out of steem before I find time to improve the epub
1282 formatting.&lt;/p&gt;
1283
1284 &lt;p&gt;Please let me know via github if you find typos in the book or
1285 discover translations that should be improved. The final proof
1286 reading is being done right now, and I expect to publish the finished
1287 result in a few months.&lt;/p&gt;
1288 </description>
1289 </item>
1290
1291 <item>
1292 <title>Typesetting DocBook footnotes as endnotes with dblatex</title>
1293 <link>http://people.skolelinux.org/pere/blog/Typesetting_DocBook_footnotes_as_endnotes_with_dblatex.html</link>
1294 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Typesetting_DocBook_footnotes_as_endnotes_with_dblatex.html</guid>
1295 <pubDate>Thu, 16 Jul 2015 18:10:00 +0200</pubDate>
1296 <description>&lt;p&gt;I&#39;m still working on the Norwegian version of the
1297 &lt;a href=&quot;http://free-culture.cc/&quot;&gt;Free Culture book by Lawrence
1298 Lessig&lt;/a&gt;, and is now working on the final typesetting and layout.
1299 One of the features I want to get the structure similar to the
1300 original book is to typeset the footnotes as endnotes in the notes
1301 chapter. Based on the
1302 &lt;a href=&quot;https://bugs.debian.org/685063&quot;&gt;feedback from the Debian
1303 maintainer and the dblatex developer&lt;/a&gt;, I came up with this recipe I
1304 would like to share with you. The proposal was to create a new LaTeX
1305 class file and add the LaTeX code there, but this is not always
1306 practical, when I want to be able to replace the class using a make
1307 file variable. So my proposal misuses the latex.begindocument XSL
1308 parameter value, to get a small fragment into the correct location in
1309 the generated LaTeX File.&lt;/p&gt;
1310
1311 &lt;p&gt;First, decide where in the DocBook document to place the endnotes,
1312 and add this text there:&lt;/p&gt;
1313
1314 &lt;pre&gt;
1315 &amp;lt;?latex \theendnotes ?&amp;gt;
1316 &lt;/pre&gt;
1317
1318 &lt;p&gt;Next, create a xsl stylesheet file dblatex-endnotes.xsl to add the
1319 code needed to add the endnote instructions in the preamble of the
1320 generated LaTeX document, with content like this:&lt;/p&gt;
1321
1322 &lt;pre&gt;
1323 &amp;lt;?xml version=&#39;1.0&#39;?&amp;gt;
1324 &amp;lt;xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&#39;1.0&#39;&amp;gt;
1325 &amp;lt;xsl:param name=&quot;latex.begindocument&quot;&amp;gt;
1326 &amp;lt;xsl:text&amp;gt;
1327 \usepackage{endnotes}
1328 \let\footnote=\endnote
1329 \def\enoteheading{\mbox{}\par\vskip-\baselineskip }
1330 \begin{document}
1331 &amp;lt;/xsl:text&amp;gt;
1332 &amp;lt;/xsl:param&amp;gt;
1333 &amp;lt;/xsl:stylesheet&amp;gt;
1334 &lt;/pre&gt;
1335
1336 &lt;p&gt;Finally, load this xsl file when running dblatex, for example like
1337 this:&lt;/p&gt;
1338
1339 &lt;pre&gt;
1340 dblatex --xsl-user=dblatex-endnotes.xsl freeculture.nb.xml
1341 &lt;/pre&gt;
1342
1343 &lt;p&gt;The end result can be seen on github, where
1344 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;my
1345 book project&lt;/a&gt; is located.&lt;/p&gt;
1346 </description>
1347 </item>
1348
1349 <item>
1350 <title>MPEG LA on &quot;Internet Broadcast AVC Video&quot; licensing and non-private use</title>
1351 <link>http://people.skolelinux.org/pere/blog/MPEG_LA_on__Internet_Broadcast_AVC_Video__licensing_and_non_private_use.html</link>
1352 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/MPEG_LA_on__Internet_Broadcast_AVC_Video__licensing_and_non_private_use.html</guid>
1353 <pubDate>Tue, 7 Jul 2015 09:50:00 +0200</pubDate>
1354 <description>&lt;p&gt;After asking the Norwegian Broadcasting Company (NRK)
1355 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Hva_gj_r_at_NRK_kan_distribuere_H_264_video_uten_patentavtale_med_MPEG_LA_.html&quot;&gt;why
1356 they can broadcast and stream H.264 video without an agreement with
1357 the MPEG LA&lt;/a&gt;, I was wiser, but still confused. So I asked MPEG LA
1358 if their understanding matched that of NRK. As far as I can tell, it
1359 does not.&lt;/p&gt;
1360
1361 &lt;p&gt;I started by asking for more information about the various
1362 licensing classes and what exactly is covered by the &quot;Internet
1363 Broadcast AVC Video&quot; class that NRK pointed me at to explain why NRK
1364 did not need a license for streaming H.264 video:
1365
1366 &lt;p&gt;&lt;blockquote&gt;
1367
1368 &lt;p&gt;According to
1369 &lt;a href=&quot;http://www.mpegla.com/Lists/MPEG%20LA%20News%20List/Attachments/226/n-10-02-02.pdf&quot;&gt;a
1370 MPEG LA press release dated 2010-02-02&lt;/a&gt;, there is no charge when
1371 using MPEG AVC/H.264 according to the terms of &quot;Internet Broadcast AVC
1372 Video&quot;. I am trying to understand exactly what the terms of &quot;Internet
1373 Broadcast AVC Video&quot; is, and wondered if you could help me. What
1374 exactly is covered by these terms, and what is not?&lt;/p&gt;
1375
1376 &lt;p&gt;The only source of more information I have been able to find is a
1377 PDF named
1378 &lt;a href=&quot;http://www.mpegla.com/main/programs/avc/Documents/avcweb.pdf&quot;&gt;AVC
1379 Patent Portfolio License Briefing&lt;/a&gt;, which states this about the
1380 fees:&lt;/p&gt;
1381
1382 &lt;ul&gt;
1383 &lt;li&gt;Where End User pays for AVC Video
1384 &lt;ul&gt;
1385 &lt;li&gt;Subscription (not limited by title) – 100,000 or fewer
1386 subscribers/yr = no royalty; &amp;gt; 100,000 to 250,000 subscribers/yr =
1387 $25,000; &amp;gt;250,000 to 500,000 subscribers/yr = $50,000; &amp;gt;500,000 to
1388 1M subscribers/yr = $75,000; &amp;gt;1M subscribers/yr = $100,000&lt;/li&gt;
1389
1390 &lt;li&gt;Title-by-Title - 12 minutes or less = no royalty; &amp;gt;12 minutes in
1391 length = lower of (a) 2% or (b) $0.02 per title&lt;/li&gt;
1392 &lt;/ul&gt;&lt;/li&gt;
1393
1394 &lt;li&gt;Where remuneration is from other sources
1395 &lt;ul&gt;
1396 &lt;li&gt;Free Television - (a) one-time $2,500 per transmission encoder or
1397 (b) annual fee starting at $2,500 for &amp;gt; 100,000 HH rising to
1398 maximum $10,000 for &amp;gt;1,000,000 HH&lt;/li&gt;
1399
1400 &lt;li&gt;Internet Broadcast AVC Video (not title-by-title, not subscription)
1401 – no royalty for life of the AVC Patent Portfolio License&lt;/li&gt;
1402 &lt;/ul&gt;&lt;/li&gt;
1403 &lt;/ul&gt;
1404
1405 &lt;p&gt;Am I correct in assuming that the four categories listed is the
1406 categories used when selecting licensing terms, and that &quot;Internet
1407 Broadcast AVC Video&quot; is the category for things that do not fall into
1408 one of the other three categories? Can you point me to a good source
1409 explaining what is ment by &quot;title-by-title&quot; and &quot;Free Television&quot; in
1410 the license terms for AVC/H.264?&lt;/p&gt;
1411
1412 &lt;p&gt;Will a web service providing H.264 encoded video content in a
1413 &quot;video on demand&quot; fashing similar to Youtube and Vimeo, where no
1414 subscription is required and no payment is required from end users to
1415 get access to the videos, fall under the terms of the &quot;Internet
1416 Broadcast AVC Video&quot;, ie no royalty for life of the AVC Patent
1417 Portfolio license? Does it matter if some users are subscribed to get
1418 access to personalized services?&lt;/p&gt;
1419
1420 &lt;p&gt;Note, this request and all answers will be published on the
1421 Internet.&lt;/p&gt;
1422 &lt;/blockquote&gt;&lt;/p&gt;
1423
1424 &lt;p&gt;The answer came quickly from Benjamin J. Myers, Licensing Associate
1425 with the MPEG LA:&lt;/p&gt;
1426
1427 &lt;p&gt;&lt;blockquote&gt;
1428 &lt;p&gt;Thank you for your message and for your interest in MPEG LA. We
1429 appreciate hearing from you and I will be happy to assist you.&lt;/p&gt;
1430
1431 &lt;p&gt;As you are aware, MPEG LA offers our AVC Patent Portfolio License
1432 which provides coverage under patents that are essential for use of
1433 the AVC/H.264 Standard (MPEG-4 Part 10). Specifically, coverage is
1434 provided for end products and video content that make use of AVC/H.264
1435 technology. Accordingly, the party offering such end products and
1436 video to End Users concludes the AVC License and is responsible for
1437 paying the applicable royalties.&lt;/p&gt;
1438
1439 &lt;p&gt;Regarding Internet Broadcast AVC Video, the AVC License generally
1440 defines such content to be video that is distributed to End Users over
1441 the Internet free-of-charge. Therefore, if a party offers a service
1442 which allows users to upload AVC/H.264 video to its website, and such
1443 AVC Video is delivered to End Users for free, then such video would
1444 receive coverage under the sublicense for Internet Broadcast AVC
1445 Video, which is not subject to any royalties for the life of the AVC
1446 License. This would also apply in the scenario where a user creates a
1447 free online account in order to receive a customized offering of free
1448 AVC Video content. In other words, as long as the End User is given
1449 access to or views AVC Video content at no cost to the End User, then
1450 no royalties would be payable under our AVC License.&lt;/p&gt;
1451
1452 &lt;p&gt;On the other hand, if End Users pay for access to AVC Video for a
1453 specific period of time (e.g., one month, one year, etc.), then such
1454 video would constitute Subscription AVC Video. In cases where AVC
1455 Video is delivered to End Users on a pay-per-view basis, then such
1456 content would constitute Title-by-Title AVC Video. If a party offers
1457 Subscription or Title-by-Title AVC Video to End Users, then they would
1458 be responsible for paying the applicable royalties you noted below.&lt;/p&gt;
1459
1460 &lt;p&gt;Finally, in the case where AVC Video is distributed for free
1461 through an &quot;over-the-air, satellite and/or cable transmission&quot;, then
1462 such content would constitute Free Television AVC Video and would be
1463 subject to the applicable royalties.&lt;/p&gt;
1464
1465 &lt;p&gt;For your reference, I have attached
1466 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/images/2015-07-07-mpegla.pdf&quot;&gt;a
1467 .pdf copy of the AVC License&lt;/a&gt;. You will find the relevant
1468 sublicense information regarding AVC Video in Sections 2.2 through
1469 2.5, and the corresponding royalties in Section 3.1.2 through 3.1.4.
1470 You will also find the definitions of Title-by-Title AVC Video,
1471 Subscription AVC Video, Free Television AVC Video, and Internet
1472 Broadcast AVC Video in Section 1 of the License. Please note that the
1473 electronic copy is provided for informational purposes only and cannot
1474 be used for execution.&lt;/p&gt;
1475
1476 &lt;p&gt;I hope the above information is helpful. If you have additional
1477 questions or need further assistance with the AVC License, please feel
1478 free to contact me directly.&lt;/p&gt;
1479 &lt;/blockquote&gt;&lt;/p&gt;
1480
1481 &lt;p&gt;Having a fresh copy of the license text was useful, and knowing
1482 that the definition of Title-by-Title required payment per title made
1483 me aware that my earlier understanding of that phrase had been wrong.
1484 But I still had a few questions:&lt;/p&gt;
1485
1486 &lt;p&gt;&lt;blockquote&gt;
1487 &lt;p&gt;I have a small followup question. Would it be possible for me to get
1488 a license with MPEG LA even if there are no royalties to be paid? The
1489 reason I ask, is that some video related products have a copyright
1490 clause limiting their use without a license with MPEG LA. The clauses
1491 typically look similar to this:
1492
1493 &lt;p&gt;&lt;blockquote&gt;
1494 This product is licensed under the AVC patent portfolio license for
1495 the personal and non-commercial use of a consumer to (a) encode
1496 video in compliance with the AVC standard (&quot;AVC video&quot;) and/or (b)
1497 decode AVC video that was encoded by a consumer engaged in a
1498 personal and non-commercial activity and/or AVC video that was
1499 obtained from a video provider licensed to provide AVC video. No
1500 license is granted or shall be implied for any other use. additional
1501 information may be obtained from MPEG LA L.L.C.
1502 &lt;/blockquote&gt;&lt;/p&gt;
1503
1504 &lt;p&gt;It is unclear to me if this clause mean that I need to enter into
1505 an agreement with MPEG LA to use the product in question, even if
1506 there are no royalties to be paid to MPEG LA. I suspect it will
1507 differ depending on the jurisdiction, and mine is Norway. What is
1508 MPEG LAs view on this?&lt;/p&gt;
1509 &lt;/blockquote&gt;&lt;/p&gt;
1510
1511 &lt;p&gt;According to the answer, MPEG LA believe those using such tools for
1512 non-personal or commercial use need a license with them:&lt;/p&gt;
1513
1514 &lt;p&gt;&lt;blockquote&gt;
1515
1516 &lt;p&gt;With regard to the Notice to Customers, I would like to begin by
1517 clarifying that the Notice from Section 7.1 of the AVC License
1518 reads:&lt;/p&gt;
1519
1520 &lt;p&gt;THIS PRODUCT IS LICENSED UNDER THE AVC PATENT PORTFOLIO LICENSE FOR
1521 THE PERSONAL USE OF A CONSUMER OR OTHER USES IN WHICH IT DOES NOT
1522 RECEIVE REMUNERATION TO (i) ENCODE VIDEO IN COMPLIANCE WITH THE AVC
1523 STANDARD (&quot;AVC VIDEO&quot;) AND/OR (ii) DECODE AVC VIDEO THAT WAS ENCODED
1524 BY A CONSUMER ENGAGED IN A PERSONAL ACTIVITY AND/OR WAS OBTAINED FROM
1525 A VIDEO PROVIDER LICENSED TO PROVIDE AVC VIDEO. NO LICENSE IS GRANTED
1526 OR SHALL BE IMPLIED FOR ANY OTHER USE. ADDITIONAL INFORMATION MAY BE
1527 OBTAINED FROM MPEG LA, L.L.C. SEE HTTP://WWW.MPEGLA.COM&lt;/p&gt;
1528
1529 &lt;p&gt;The Notice to Customers is intended to inform End Users of the
1530 personal usage rights (for example, to watch video content) included
1531 with the product they purchased, and to encourage any party using the
1532 product for commercial purposes to contact MPEG LA in order to become
1533 licensed for such use (for example, when they use an AVC Product to
1534 deliver Title-by-Title, Subscription, Free Television or Internet
1535 Broadcast AVC Video to End Users, or to re-Sell a third party&#39;s AVC
1536 Product as their own branded AVC Product).&lt;/p&gt;
1537
1538 &lt;p&gt;Therefore, if a party is to be licensed for its use of an AVC
1539 Product to Sell AVC Video on a Title-by-Title, Subscription, Free
1540 Television or Internet Broadcast basis, that party would need to
1541 conclude the AVC License, even in the case where no royalties were
1542 payable under the License. On the other hand, if that party (either a
1543 Consumer or business customer) simply uses an AVC Product for their
1544 own internal purposes and not for the commercial purposes referenced
1545 above, then such use would be included in the royalty paid for the AVC
1546 Products by the licensed supplier.&lt;/p&gt;
1547
1548 &lt;p&gt;Finally, I note that our AVC License provides worldwide coverage in
1549 countries that have AVC Patent Portfolio Patents, including
1550 Norway.&lt;/p&gt;
1551
1552 &lt;p&gt;I hope this clarification is helpful. If I may be of any further
1553 assistance, just let me know.&lt;/p&gt;
1554 &lt;/blockquote&gt;&lt;/p&gt;
1555
1556 &lt;p&gt;The mentioning of Norwegian patents made me a bit confused, so I
1557 asked for more information:&lt;/p&gt;
1558
1559 &lt;p&gt;&lt;blockquote&gt;
1560
1561 &lt;p&gt;But one minor question at the end. If I understand you correctly,
1562 you state in the quote above that there are patents in the AVC Patent
1563 Portfolio that are valid in Norway. This make me believe I read the
1564 list available from &amp;lt;URL:
1565 &lt;a href=&quot;http://www.mpegla.com/main/programs/AVC/Pages/PatentList.aspx&quot;&gt;http://www.mpegla.com/main/programs/AVC/Pages/PatentList.aspx&lt;/a&gt;
1566 &amp;gt; incorrectly, as I believed the &quot;NO&quot; prefix in front of patents
1567 were Norwegian patents, and the only one I could find under Mitsubishi
1568 Electric Corporation expired in 2012. Which patents are you referring
1569 to that are relevant for Norway?&lt;/p&gt;
1570
1571 &lt;/blockquote&gt;&lt;/p&gt;
1572
1573 &lt;p&gt;Again, the quick answer explained how to read the list of patents
1574 in that list:&lt;/p&gt;
1575
1576 &lt;p&gt;&lt;blockquote&gt;
1577
1578 &lt;p&gt;Your understanding is correct that the last AVC Patent Portfolio
1579 Patent in Norway expired on 21 October 2012. Therefore, where AVC
1580 Video is both made and Sold in Norway after that date, then no
1581 royalties would be payable for such AVC Video under the AVC License.
1582 With that said, our AVC License provides historic coverage for AVC
1583 Products and AVC Video that may have been manufactured or Sold before
1584 the last Norwegian AVC patent expired. I would also like to clarify
1585 that coverage is provided for the country of manufacture and the
1586 country of Sale that has active AVC Patent Portfolio Patents.&lt;/p&gt;
1587
1588 &lt;p&gt;Therefore, if a party offers AVC Products or AVC Video for Sale in
1589 a country with active AVC Patent Portfolio Patents (for example,
1590 Sweden, Denmark, Finland, etc.), then that party would still need
1591 coverage under the AVC License even if such products or video are
1592 initially made in a country without active AVC Patent Portfolio
1593 Patents (for example, Norway). Similarly, a party would need to
1594 conclude the AVC License if they make AVC Products or AVC Video in a
1595 country with active AVC Patent Portfolio Patents, but eventually Sell
1596 such AVC Products or AVC Video in a country without active AVC Patent
1597 Portfolio Patents.&lt;/p&gt;
1598 &lt;/blockquote&gt;&lt;/p&gt;
1599
1600 &lt;p&gt;As far as I understand it, MPEG LA believe anyone using Adobe
1601 Premiere and other video related software with a H.264 distribution
1602 license need a license agreement with MPEG LA to use such tools for
1603 anything non-private or commercial, while it is OK to set up a
1604 Youtube-like service as long as no-one pays to get access to the
1605 content. I still have no clear idea how this applies to Norway, where
1606 none of the patents MPEG LA is licensing are valid. Will the
1607 copyright terms take precedence or can those terms be ignored because
1608 the patents are not valid in Norway?&lt;/p&gt;
1609 </description>
1610 </item>
1611
1612 <item>
1613 <title>New laptop - some more clues and ideas based on feedback</title>
1614 <link>http://people.skolelinux.org/pere/blog/New_laptop___some_more_clues_and_ideas_based_on_feedback.html</link>
1615 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/New_laptop___some_more_clues_and_ideas_based_on_feedback.html</guid>
1616 <pubDate>Sun, 5 Jul 2015 21:40:00 +0200</pubDate>
1617 <description>&lt;p&gt;Several people contacted me after my previous blog post about my
1618 need for a new laptop, and provided very useful feedback. I wish to
1619 thank every one of these. Several pointed me to the possibility of
1620 fixing my X230, and I am already in the process of getting Lenovo to
1621 do so thanks to the on site, next day support contract covering the
1622 machine. But the battery is almost useless (I expect to replace it
1623 with a non-official battery) and I do not expect the machine to live
1624 for many more years, so it is time to plan its replacement. If I did
1625 not have a support contract, it was suggested to find replacement parts
1626 using &lt;a href=&quot;http://www.francecrans.com/&quot;&gt;FrancEcrans&lt;/a&gt;, but it
1627 might present a language barrier as I do not understand French.&lt;/p&gt;
1628
1629 &lt;p&gt;One tip I got was to use the
1630 &lt;a href=&quot;https://skinflint.co.uk/?cat=nb&quot;&gt;Skinflint&lt;/a&gt; web service to
1631 compare laptop models. It seem to have more models available than
1632 prisjakt.no. Another tip I got from someone I know have similar
1633 keyboard preferences was that the HP EliteBook 840 keyboard is not
1634 very good, and this matches my experience with earlier EliteBook
1635 keyboards I tested. Because of this, I will not consider it any further.
1636
1637 &lt;p&gt;When I wrote my blog post, I was not aware of Thinkpad X250, the
1638 newest Thinkpad X model. The keyboard reintroduces mouse buttons
1639 (which is missing from the X240), and is working fairly well with
1640 Debian Sid/Unstable according to
1641 &lt;a href=&quot;http://www.corsac.net/X250/&quot;&gt;Corsac.net&lt;/a&gt;. The reports I
1642 got on the keyboard quality are not consistent. Some say the keyboard
1643 is good, others say it is ok, while others say it is not very good.
1644 Those with experience from X41 and and X60 agree that the X250
1645 keyboard is not as good as those trusty old laptops, and suggest I
1646 keep and fix my X230 instead of upgrading, or get a used X230 to
1647 replace it. I&#39;m also told that the X250 lack leds for caps lock, disk
1648 activity and battery status, which is very convenient on my X230. I&#39;m
1649 also told that the CPU fan is running very often, making it a bit
1650 noisy. In any case, the X250 do not work out of the box with Debian
1651 Stable/Jessie, one of my requirements.&lt;/p&gt;
1652
1653 &lt;p&gt;I have also gotten a few vendor proposals, one was
1654 &lt;a href=&quot;http://pro-star.com&quot;&gt;Pro-Star&lt;/a&gt;, another was
1655 &lt;a href=&quot;http://shop.gluglug.org.uk/product/libreboot-x200/&quot;&gt;Libreboot&lt;/a&gt;.
1656 The latter look very attractive to me.&lt;/p&gt;
1657
1658 &lt;p&gt;Again, thank you all for the very useful feedback. It help a lot
1659 as I keep looking for a replacement.&lt;/p&gt;
1660
1661 &lt;p&gt;Update 2015-07-06: I was recommended to check out the
1662 &lt;a href=&quot;&quot;&gt;lapstore.de&lt;/a&gt; web shop for used laptops. They got several
1663 different
1664 &lt;a href=&quot;http://www.lapstore.de/f.php/shop/lapstore/f/411/lang/x/kw/Lenovo_ThinkPad_X_Serie/&quot;&gt;old
1665 thinkpad X models&lt;/a&gt;, and provide one year warranty.&lt;/p&gt;
1666 </description>
1667 </item>
1668
1669 <item>
1670 <title>Time to find a new laptop, as the old one is broken after only two years</title>
1671 <link>http://people.skolelinux.org/pere/blog/Time_to_find_a_new_laptop__as_the_old_one_is_broken_after_only_two_years.html</link>
1672 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Time_to_find_a_new_laptop__as_the_old_one_is_broken_after_only_two_years.html</guid>
1673 <pubDate>Fri, 3 Jul 2015 07:10:00 +0200</pubDate>
1674 <description>&lt;p&gt;My primary work horse laptop is failing, and will need a
1675 replacement soon. The left 5 cm of the screen on my Thinkpad X230
1676 started flickering yesterday, and I suspect the cause is a broken
1677 cable, as changing the angle of the screen some times get rid of the
1678 flickering.&lt;/p&gt;
1679
1680 &lt;p&gt;My requirements have not really changed since I bought it, and is
1681 still as
1682 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Thank_you_Thinkpad_X41__for_your_long_and_trustworthy_service.html&quot;&gt;I
1683 described them in 2013&lt;/a&gt;. The last time I bought a laptop, I had
1684 good help from
1685 &lt;a href=&quot;http://www.prisjakt.no/category.php?k=353&quot;&gt;prisjakt.no&lt;/a&gt;
1686 where I could select at least a few of the requirements (mouse pin,
1687 wifi, weight) and go through the rest manually. Three button mouse
1688 and a good keyboard is not available as an option, and all the three
1689 laptop models proposed today (Thinkpad X240, HP EliteBook 820 G1 and
1690 G2) lack three mouse buttons). It is also unclear to me how good the
1691 keyboard on the HP EliteBooks are. I hope Lenovo have not messed up
1692 the keyboard, even if the quality and robustness in the X series have
1693 deteriorated since X41.&lt;/p&gt;
1694
1695 &lt;p&gt;I wonder how I can find a sensible laptop when none of the options
1696 seem sensible to me? Are there better services around to search the
1697 set of available laptops for features? Please send me an email if you
1698 have suggestions.&lt;/p&gt;
1699
1700 &lt;p&gt;Update 2015-07-23: I got a suggestion to check out the FSF
1701 &lt;a href=&quot;http://www.fsf.org/resources/hw/endorsement/respects-your-freedom&quot;&gt;list
1702 of endorsed hardware&lt;/a&gt;, which is useful background information.&lt;/p&gt;
1703 </description>
1704 </item>
1705
1706 <item>
1707 <title>MakerCon Nordic videos now available on Frikanalen</title>
1708 <link>http://people.skolelinux.org/pere/blog/MakerCon_Nordic_videos_now_available_on_Frikanalen.html</link>
1709 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/MakerCon_Nordic_videos_now_available_on_Frikanalen.html</guid>
1710 <pubDate>Thu, 2 Jul 2015 14:10:00 +0200</pubDate>
1711 <description>&lt;p&gt;Last oktober I was involved on behalf of
1712 &lt;a href=&quot;http://www.nuug.no/&quot;&gt;NUUG&lt;/a&gt; with recording the talks at
1713 &lt;a href=&quot;http://www.makercon.no/&quot;&gt;MakerCon Nordic&lt;/a&gt;, a conference for
1714 the Maker movement. Since then it has been the plan to publish the
1715 recordings on &lt;a href=&quot;http://www.frikanalen.no/&quot;&gt;Frikanalen&lt;/a&gt;, which
1716 finally happened the last few days. A few talks are missing because
1717 the speakers asked the organizers to not publish them, but most of the
1718 talks are available. The talks are being broadcasted on RiksTV
1719 channel 50 and using multicast on Uninett, as well as being available
1720 from the Frikanalen web site. The unedited recordings are
1721 &lt;a href=&quot;https://www.youtube.com/user/MakerConNordic/&quot;&gt;available on
1722 Youtube too&lt;/a&gt;.&lt;/p&gt;
1723
1724 &lt;p&gt;This is the list of talks available at the moment. Visit the
1725 &lt;a href=&quot;http://beta.frikanalen.no/video/?q=makercon&quot;&gt;Frikanalen video
1726 pages&lt;/a&gt; to view them.&lt;/p&gt;
1727
1728 &lt;ul&gt;
1729
1730 &lt;li&gt;Evolutionary algorithms as a design tool - from art
1731 to robotics (Kyrre Glette)&lt;/li&gt;
1732
1733 &lt;li&gt;Make and break (Hans Gerhard Meier)&lt;/li&gt;
1734
1735 &lt;li&gt;Making a one year school course for young makers
1736 (Olav Helland)&lt;/li&gt;
1737
1738 &lt;li&gt;Innovation Inspiration - IPR Databases as a Source of
1739 Inspiration (Hege Langlo)&lt;/li&gt;
1740
1741 &lt;li&gt;Making a toy for makers (Erik Torstensson)&lt;/li&gt;
1742
1743 &lt;li&gt;How to make 3D printer electronics (Elias Bakken)&lt;/li&gt;
1744
1745 &lt;li&gt;Hovering Clouds: Looking at online tool offerings for Product
1746 Design and 3D Printing (William Kempton)&lt;/li&gt;
1747
1748 &lt;li&gt;Travelling maker stories (Øyvind Nydal Dahl)&lt;/li&gt;
1749
1750 &lt;li&gt;Making the first Maker Faire in Sweden (Nils Olander)&lt;/li&gt;
1751
1752 &lt;li&gt;Breaking the mold: Printing 1000’s of parts (Espen Sivertsen)&lt;/li&gt;
1753
1754 &lt;li&gt;Ultimaker — and open source 3D printing (Erik de Bruijn)&lt;/li&gt;
1755
1756 &lt;li&gt;Autodesk’s 3D Printing Platform: Sparking innovation (Hilde
1757 Sevens)&lt;/li&gt;
1758
1759 &lt;li&gt;How Making is Changing the World – and How You Can Too!
1760 (Jennifer Turliuk)&lt;/li&gt;
1761
1762 &lt;li&gt;Open-Source Adventuring: OpenROV, OpenExplorer and the Future of
1763 Connected Exploration (David Lang)&lt;/li&gt;
1764
1765 &lt;li&gt;Making in Norway (Haakon Karlsen Jr., Graham Hayward and Jens
1766 Dyvik)&lt;/li&gt;
1767
1768 &lt;li&gt;The Impact of the Maker Movement (Mike Senese)&lt;/li&gt;
1769
1770 &lt;/ul&gt;
1771
1772 &lt;p&gt;Part of the reason this took so long was that the scripts NUUG had
1773 to prepare a recording for publication were five years old and no
1774 longer worked with the current video processing tools (command line
1775 argument changes). In addition, we needed better audio normalization,
1776 which sent me on a detour to
1777 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Measuring_and_adjusting_the_loudness_of_a_TV_channel_using_bs1770gain.html&quot;&gt;package
1778 bs1770gain for Debian&lt;/a&gt;. Now this is in place and it became a lot
1779 easier to publish NUUG videos on Frikanalen.&lt;/p&gt;
1780 </description>
1781 </item>
1782
1783 <item>
1784 <title>Graphing the Norwegian company ownership structure</title>
1785 <link>http://people.skolelinux.org/pere/blog/Graphing_the_Norwegian_company_ownership_structure.html</link>
1786 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Graphing_the_Norwegian_company_ownership_structure.html</guid>
1787 <pubDate>Mon, 15 Jun 2015 14:00:00 +0200</pubDate>
1788 <description>&lt;p&gt;It is a bit work to figure out the ownership structure of companies
1789 in Norway. The information is publicly available, but one need to
1790 recursively look up ownership for all owners to figure out the complete
1791 ownership graph of a given set of companies. To save me the work in
1792 the future, I wrote a script to do this automatically, outputting the
1793 ownership structure using the Graphviz/dotty format. The data source
1794 is web scraping from &lt;a href=&quot;http://www.proff.no/&quot;&gt;Proff&lt;/a&gt;, because
1795 I failed to find a useful source directly from the official keepers of
1796 the ownership data, &lt;a href=&quot;http://www.brreg.no/&quot;&gt;Brønnøysundsregistrene&lt;/a&gt;.&lt;/p&gt;
1797
1798 &lt;p&gt;To get an ownership graph for a set of companies, fetch
1799 &lt;a href=&quot;https://github.com/petterreinholdtsen/brreg-norway-ownership-graph&quot;&gt;the code from git&lt;/a&gt; and run it using the organisation number. I&#39;m
1800 using the Norwegian newspaper Dagbladet as an example here, as its
1801 ownership structure is very simple:&lt;/p&gt;
1802
1803 &lt;pre&gt;
1804 % time ./bin/eierskap-dotty 958033540 &gt; dagbladet.dot
1805
1806 real 0m2.841s
1807 user 0m0.184s
1808 sys 0m0.036s
1809 %
1810 &lt;/pre&gt;
1811
1812 &lt;p&gt;The script accept several organisation numbers on the command line,
1813 allowing a cluster of companies to be graphed in the same image. The
1814 resulting dot file for the example above look like this. The edges
1815 are labeled with the ownership percentage, and the nodes uses the
1816 organisation number as their name and the name as the label:&lt;/p&gt;
1817
1818 &lt;pre&gt;
1819 digraph ownership {
1820 rankdir = LR;
1821 &quot;Aller Holding A/s&quot; -&gt; &quot;910119877&quot; [label=&quot;100%&quot;]
1822 &quot;910119877&quot; -&gt; &quot;998689015&quot; [label=&quot;100%&quot;]
1823 &quot;998689015&quot; -&gt; &quot;958033540&quot; [label=&quot;99%&quot;]
1824 &quot;974530600&quot; -&gt; &quot;958033540&quot; [label=&quot;1%&quot;]
1825 &quot;958033540&quot; [label=&quot;AS DAGBLADET&quot;]
1826 &quot;998689015&quot; [label=&quot;Berner Media Holding AS&quot;]
1827 &quot;974530600&quot; [label=&quot;Dagbladets Stiftelse&quot;]
1828 &quot;910119877&quot; [label=&quot;Aller Media AS&quot;]
1829 }
1830 &lt;/pre&gt;
1831
1832 &lt;p&gt;To view the ownership graph, run &quot;&lt;tt&gt;dotty dagbladet.dot&lt;/tt&gt;&quot; or
1833 convert it to a PNG using &quot;&lt;tt&gt;dot -T png dagbladet.dot &gt;
1834 dagbladet.png&lt;/tt&gt;&quot;. The result can be seen below:&lt;/p&gt;
1835
1836 &lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2015-06-15-ownership-graphs-norway-dagbladet.png&quot; width=&quot;80%&quot;&gt;
1837
1838 &lt;p&gt;Note that I suspect the &quot;Aller Holding A/S&quot; entry to be incorrect
1839 data in the official ownership register, as that name is not
1840 registered in the official company register for Norway. The ownership
1841 register is sensitive to typos and there seem to be no strict checking
1842 of the ownership links.&lt;/p&gt;
1843
1844 &lt;p&gt;Let me know if you improve the script or find better data sources.
1845 The code is licensed according to GPL 2 or newer.&lt;/p&gt;
1846
1847 &lt;p&gt;Update 2015-06-15: Since the initial post I&#39;ve been told that
1848 &quot;&lt;a href=&quot;http://www.proff.dk/firma/carl-allers-etablissement-aktieselskab/københavn-v/hovedkontorer/13624518-3/&quot;&gt;Aller
1849 Holding A/S&lt;/a&gt;&quot; is a Danish company, which explain why it did not
1850 have a Norwegian organisation number. I&#39;ve also been told that there
1851 is a &lt;a href=&quot;http://www.brreg.no/automatiske/webservices/&quot;&gt;web
1852 services API available&lt;/a&gt; from Brønnøysundsregistrene, for those
1853 willing to accept the terms or pay the price.&lt;/p&gt;
1854 </description>
1855 </item>
1856
1857 <item>
1858 <title>Measuring and adjusting the loudness of a TV channel using bs1770gain</title>
1859 <link>http://people.skolelinux.org/pere/blog/Measuring_and_adjusting_the_loudness_of_a_TV_channel_using_bs1770gain.html</link>
1860 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Measuring_and_adjusting_the_loudness_of_a_TV_channel_using_bs1770gain.html</guid>
1861 <pubDate>Thu, 11 Jun 2015 13:40:00 +0200</pubDate>
1862 <description>&lt;p&gt;Television loudness is the source of frustration for viewers
1863 everywhere. Some channels are very load, others are less loud, and
1864 ads tend to shout very high to get the attention of the viewers, and
1865 the viewers do not like this. This fact is well known to the TV
1866 channels. See for example the BBC white paper
1867 &quot;&lt;a href=&quot;http://downloads.bbc.co.uk/rd/pubs/whp/whp-pdf-files/WHP202.pdf&quot;&gt;Terminology
1868 for loudness and level dBTP, LU, and all that&lt;/a&gt;&quot; from 2011 for a
1869 summary of the problem domain. To better address the need for even
1870 loadness, the TV channels got together several years ago to agree on a
1871 new way to measure loudness in digital files as one step in
1872 standardizing loudness. From this came the ITU-R standard BS.1770,
1873 &quot;&lt;a href=&quot;http://www.itu.int/rec/R-REC-BS.1770/en&quot;&gt;Algorithms to
1874 measure audio programme loudness and true-peak audio level&lt;/a&gt;&quot;.&lt;/p&gt;
1875
1876 &lt;p&gt;The ITU-R BS.1770 specification describe an algorithm to measure
1877 loadness in LUFS (Loudness Units, referenced to Full Scale). But
1878 having a way to measure is not enough. To get the same loudness
1879 across TV channels, one also need to decide which value to standardize
1880 on. For European TV channels, this was done in the EBU Recommondaton
1881 R128, &quot;&lt;a href=&quot;https://tech.ebu.ch/docs/r/r128.pdf&quot;&gt;Loudness
1882 normalisation and permitted maximum level of audio signals&lt;/a&gt;&quot;, which
1883 specifies a recommended level of -23 LUFS. In Norway, I have been
1884 told that NRK, TV2, MTG and SBS have decided among themselves to
1885 follow the R128 recommondation for playout from 2016-03-01.&lt;/p&gt;
1886
1887 &lt;p&gt;There are free software available to measure and adjust the loudness
1888 level using the LUFS. In Debian, I am aware of a library named
1889 &lt;a href=&quot;https://tracker.debian.org/pkg/libebur128&quot;&gt;libebur128&lt;/a&gt;
1890 able to measure the loudness and since yesterday morning a new binary
1891 named &lt;a href=&quot;http://bs1770gain.sourceforge.net&quot;&gt;bs1770gain&lt;/a&gt;
1892 capable of both measuring and adjusting was uploaded and is waiting
1893 for NEW processing. I plan to maintain the latter in Debian under the
1894 &lt;a href=&quot;https://qa.debian.org/developer.php?email=pkg-multimedia-maintainers%40lists.alioth.debian.org&quot;&gt;Debian
1895 multimedia&lt;/a&gt; umbrella.&lt;/p&gt;
1896
1897 &lt;p&gt;The free software based TV channel I am involved in,
1898 &lt;a href=&quot;http://www.frikanalen.no/&quot;&gt;Frikanalen&lt;/a&gt;, plan to follow the
1899 R128 recommondation ourself as soon as we can adjust the software to
1900 do so, and the bs1770gain tool seem like a good fit for that part of
1901 the puzzle to measure loudness on new video uploaded to Frikanalen.
1902 Personally, I plan to use bs1770gain to adjust the loudness of videos
1903 I upload to Frikanalen on behalf of &lt;a href=&quot;http://www.nuug.no/&quot;&gt;the
1904 NUUG member organisation&lt;/a&gt;. The program seem to be able to measure
1905 the LUFS value of any media file handled by ffmpeg, but I&#39;ve only
1906 successfully adjusted the LUFS value of WAV files. I suspect it
1907 should be able to adjust it for all the formats handled by ffmpeg.&lt;/p&gt;
1908 </description>
1909 </item>
1910
1911 <item>
1912 <title>Norwegian citizens now required by law to give their fingerprint to the police</title>
1913 <link>http://people.skolelinux.org/pere/blog/Norwegian_citizens_now_required_by_law_to_give_their_fingerprint_to_the_police.html</link>
1914 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Norwegian_citizens_now_required_by_law_to_give_their_fingerprint_to_the_police.html</guid>
1915 <pubDate>Sun, 10 May 2015 16:00:00 +0200</pubDate>
1916 <description>&lt;p&gt;5 days ago, the Norwegian Parliament decided, unanimously, that all
1917 citizens of Norway, no matter if they are suspected of something
1918 criminal or not, are
1919 &lt;a href=&quot;https://www.holderdeord.no/votes/1430838871e&quot;&gt;required to
1920 give fingerprints to the police&lt;/a&gt; (vote details from Holder de
1921 ord). The law make it sound like it will be optional, but in a few
1922 years there will be no option any more. The ID will be required to
1923 vote, to get a bank account, a bank card, to change address on the
1924 post office, to receive an electronic ID or to get a drivers license
1925 and many other tasks required to function in Norway. The banks plan
1926 to stop providing their own ID on the bank cards when this new
1927 national ID is introduced, and the national road authorities plan to
1928 change the drivers license to no longer be usable as identity cards.
1929 In effect, to function as a citizen in Norway a national ID card will
1930 be required, and to get it one need to provide the fingerprints to
1931 the police.&lt;/p&gt;
1932
1933 &lt;p&gt;In addition to handing the fingerprint to the police (which
1934 promised to not make a copy of the fingerprint image at that point in
1935 time, but say nothing about doing it later), a picture of the
1936 fingerprint will be stored on the RFID chip, along with a picture of
1937 the face and other information about the person. Some of the
1938 information will be encrypted, but the encryption will be the same
1939 system as currently used in the passports. The codes to decrypt will
1940 be available to a lot of government offices and their suppliers around
1941 the globe, but for those that do not know anyone in those circles it
1942 is good to know that
1943 &lt;a href=&quot;http://www.theguardian.com/technology/2006/nov/17/news.homeaffairs&quot;&gt;the
1944 encryption is already broken&lt;/a&gt;. And they
1945 &lt;a href=&quot;http://www.networkworld.com/article/2215057/wireless/bad-guys-could-read-rfid-passports-at-217-feet--maybe-a-lot-more.html&quot;&gt;can
1946 be read from 70 meters away&lt;/a&gt;. This can be mitigated a bit by
1947 keeping it in a Faraday cage (metal box or metal wire container), but
1948 one will be required to take it out of there often enough to expose
1949 ones private and personal information to a lot of people that have no
1950 business getting access to that information.&lt;/p&gt;
1951
1952 &lt;p&gt;The new Norwegian national IDs are a vehicle for identity theft,
1953 and I feel sorry for us all having politicians accepting such invasion
1954 of privacy without any objections. So are the Norwegian passports,
1955 but it has been possible to function in Norway without those so far.
1956 That option is going away with the passing of the new law. In this, I
1957 envy the Germans, because for them it is optional how much biometric
1958 information is stored in their national ID.&lt;/p&gt;
1959
1960 &lt;p&gt;And if forced collection of fingerprints was not bad enough, the
1961 information collected in the national ID card register can be handed
1962 over to foreign intelligence services and police authorities, &quot;when
1963 extradition is not considered disproportionate&quot;.&lt;/p&gt;
1964
1965 &lt;p&gt;Update 2015-05-12: For those unable to believe that the Parliament
1966 really could make such decision, I wrote
1967 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Blir_det_virkelig_krav_om_fingeravtrykk_i_nasjonale_ID_kort_.html&quot;&gt;a
1968 summary of the sources I have&lt;/a&gt; for concluding the way I do
1969 (Norwegian Only, as the sources are all in Norwegian).&lt;/p&gt;
1970 </description>
1971 </item>
1972
1973 <item>
1974 <title>What would it cost to store all phone calls in Norway?</title>
1975 <link>http://people.skolelinux.org/pere/blog/What_would_it_cost_to_store_all_phone_calls_in_Norway_.html</link>
1976 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/What_would_it_cost_to_store_all_phone_calls_in_Norway_.html</guid>
1977 <pubDate>Fri, 1 May 2015 19:30:00 +0200</pubDate>
1978 <description>&lt;p&gt;Many years ago, a friend of mine calculated how much it would cost
1979 to store the sound of all phone calls in Norway, and came up with the
1980 cost of around 20 million NOK (2.4 mill EUR) for all the calls in a
1981 year. I got curious and wondered what the same calculation would look
1982 like today. To do so one need an idea of how much data storage is
1983 needed for each minute of sound, how many minutes all the calls in
1984 Norway sums up to, and the cost of data storage.&lt;/p&gt;
1985
1986 &lt;p&gt;The 2005 numbers are from
1987 &lt;a href=&quot;http://www.digi.no/analyser/2005/10/04/vi-prater-stadig-mindre-i-roret&quot;&gt;digi.no&lt;/a&gt;,
1988 the 2012 numbers are from
1989 &lt;a href=&quot;http://www.nkom.no/aktuelt/nyheter/fortsatt-vekst-i-det-norske-ekommarkedet&quot;&gt;a
1990 NKOM report&lt;/a&gt;, and I got the 2013 numbers after asking NKOM via
1991 email. I was told the numbers for 2014 will be presented May 20th,
1992 and decided not to wait for those, as I doubt they will be very
1993 different from the numbers from 2013.&lt;/p&gt;
1994
1995 &lt;p&gt;The amount of data storage per minute sound depend on the wanted
1996 quality, and for phone calls it is generally believed that 8 Kbit/s is
1997 enough. See for example a
1998 &lt;a href=&quot;http://www.cisco.com/c/en/us/support/docs/voice/voice-quality/7934-bwidth-consume.html#topic1&quot;&gt;summary
1999 on voice quality from Cisco&lt;/a&gt; for some alternatives. 8 Kbit/s is 60
2000 Kbytes/min, and this can be multiplied with the number of call minutes
2001 to get the storage requirements.&lt;/p&gt;
2002
2003 &lt;p&gt;Storage prices varies a lot, depending on speed, backup strategies,
2004 availability requirements etc. But a simple way to calculate can be
2005 to use the price of a TiB-disk (around 1000 NOK / 120 EUR) and double
2006 it to take space, power and redundancy into account. It could be much
2007 higher with high speed and good redundancy requirements.&lt;/p&gt;
2008
2009 &lt;p&gt;But back to the question, What would it cost to store all phone
2010 calls in Norway? Not much. Here is a small table showing the
2011 estimated cost, which is within the budget constraint of most medium
2012 and large organisations:&lt;/p&gt;
2013
2014 &lt;table border=&quot;1&quot;&gt;
2015 &lt;tr&gt;&lt;th&gt;Year&lt;/th&gt;&lt;th&gt;Call minutes&lt;/th&gt;&lt;th&gt;Size&lt;/th&gt;&lt;th&gt;Price in NOK / EUR&lt;/th&gt;&lt;/tr&gt;
2016 &lt;tr&gt;&lt;td&gt;2005&lt;/td&gt;&lt;td align=&quot;right&quot;&gt;24 000 000 000&lt;/td&gt;&lt;td align=&quot;right&quot;&gt;1.3 PiB&lt;/td&gt;&lt;td align=&quot;right&quot;&gt;3 mill / 358 000&lt;/td&gt;&lt;/tr&gt;
2017 &lt;tr&gt;&lt;td&gt;2012&lt;/td&gt;&lt;td align=&quot;right&quot;&gt;18 000 000 000&lt;/td&gt;&lt;td align=&quot;right&quot;&gt;1.0 PiB&lt;/td&gt;&lt;td align=&quot;right&quot;&gt;2.2 mill / 262 000&lt;/td&gt;&lt;/tr&gt;
2018 &lt;tr&gt;&lt;td&gt;2013&lt;/td&gt;&lt;td align=&quot;right&quot;&gt;17 000 000 000&lt;/td&gt;&lt;td align=&quot;right&quot;&gt;950 TiB&lt;/td&gt;&lt;td align=&quot;right&quot;&gt;2.1 mill / 250 000&lt;/td&gt;&lt;/tr&gt;
2019 &lt;/table&gt;
2020
2021 &lt;p&gt;This is the cost of buying the storage. Maintenance need to be
2022 taken into account too, but calculating that is left as an exercise
2023 for the reader. But it is obvious to me from those numbers that
2024 recording the sound of all phone calls in Norway is not going to be
2025 stopped because it is too expensive. I wonder if someone already is
2026 collecting the data?&lt;/p&gt;
2027 </description>
2028 </item>
2029
2030 <item>
2031 <title>First Jessie based Debian Edu beta release</title>
2032 <link>http://people.skolelinux.org/pere/blog/First_Jessie_based_Debian_Edu_beta_release.html</link>
2033 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_Jessie_based_Debian_Edu_beta_release.html</guid>
2034 <pubDate>Sun, 26 Apr 2015 14:10:00 +0200</pubDate>
2035 <description>&lt;p&gt;I am happy to report that the Debian Edu team sent out
2036 &lt;a href=&quot;https://lists.debian.org/debian-edu-announce/2015/04/msg00000.html&quot;&gt;this
2037 announcement today&lt;/a&gt;:&lt;/p&gt;
2038
2039 &lt;pre&gt;
2040 the Debian Edu / Skolelinux project is pleased to announce the first
2041 *beta* release of Debian Edu &quot;Jessie&quot; 8.0+edu0~b1, which for the first
2042 time is composed entirely of packages from the current Debian stable
2043 release, Debian 8 &quot;Jessie&quot;.
2044
2045 (As most reading this will know, Debian &quot;Jessie&quot; hasn&#39;t actually been
2046 released by now. The release is still in progress but should finish
2047 later today ;)
2048
2049 We expect to make a final release of Debian Edu &quot;Jessie&quot; in the coming
2050 weeks, timed with the first point release of Debian Jessie. Upgrades
2051 from this beta release of Debian Edu Jessie to the final release will
2052 be possible and encouraged!
2053
2054 Please report feedback to debian-edu@lists.debian.org and/or submit
2055 bugs: http://wiki.debian.org/DebianEdu/HowTo/ReportBugs
2056
2057 Debian Edu - sometimes also known as &quot;Skolelinux&quot; - is a complete
2058 operating system for schools, universities and other
2059 organisations. Through its pre- prepared installation profiles
2060 administrators can install servers, workstations and laptops which
2061 will work in harmony on the school network. With Debian Edu, the
2062 teachers themselves or their technical support staff can roll out a
2063 complete multi-user, multi-machine study environment within hours or
2064 days.
2065
2066 Debian Edu is already in use at several hundred schools all over the
2067 world, particularly in Germany, Spain and Norway. Installations come
2068 with hundreds of applications pre-installed, plus the whole Debian
2069 archive of thousands of compatible packages within easy reach.
2070
2071 For those who want to give Debian Edu Jessie a try, download and
2072 installation instructions are available, including detailed
2073 instructions in the manual explaining the first steps, such as setting
2074 up a network or adding users. Please note that the password for the
2075 user your prompted for during installation must have a length of at
2076 least 5 characters!
2077
2078 == Where to download ==
2079
2080 A multi-architecture CD / usbstick image (649 MiB) for network booting
2081 can be downloaded at the following locations:
2082
2083 http://ftp.skolelinux.org/skolelinux-cd/debian-edu-8.0+edu0~b1-CD.iso
2084 rsync -avzP ftp.skolelinux.org::skolelinux-cd/debian-edu-8.0+edu0~b1-CD.iso .
2085
2086 The SHA1SUM of this image is: 54a524d16246cddd8d2cfd6ea52f2dd78c47ee0a
2087
2088 Alternatively an extended DVD / usbstick image (4.9 GiB) is also
2089 available, with more software included (saving additional download
2090 time):
2091
2092 http://ftp.skolelinux.org/skolelinux-cd/debian-edu-8.0+edu0~b1-USB.iso
2093 rsync -avzP ftp.skolelinux.org::skolelinux-cd/debian-edu-8.0+edu0~b1-USB.iso
2094
2095 The SHA1SUM of this image is: fb1f1504a490c077a48653898f9d6a461cb3c636
2096
2097 Sources are available from the Debian archive, see
2098 http://ftp.debian.org/debian-cd/8.0.0/source/ for some download
2099 options.
2100
2101 == Debian Edu Jessie manual in seven languages ==
2102
2103 Please see https://wiki.debian.org/DebianEdu/Documentation/Jessie/ for
2104 the English version of the Debian Edu jessie manual.
2105
2106 This manual has been fully translated to German, French, Italian,
2107 Danish, Dutch and Norwegian Bokmål. A partly translated version exists
2108 for Spanish. See http://maintainer.skolelinux.org/debian-edu-doc/ for
2109 online version of the translated manual.
2110
2111 More information about Debian 8 &quot;Jessie&quot; itself is provided in the
2112 release notes and the installation manual:
2113 - http://www.debian.org/releases/jessie/releasenotes
2114 - http://www.debian.org/releases/jessie/installmanual
2115
2116
2117 == Errata / known problems ==
2118
2119 It takes up to 15 minutes for a changed hostname to be updated via
2120 DHCP (#780461).
2121
2122 The hostname script fails to update LTSP server hostname (#783087).
2123
2124 Workaround: run update-hostname-from-ip on the client to update the
2125 hostname immediately.
2126
2127 Check https://wiki.debian.org/DebianEdu/Status/Jessie for a possibly
2128 more current and complete list.
2129
2130 == Some more details about Debian Edu 8.0+edu0~b1 Codename Jessie released 2015-04-25 ==
2131
2132 === Software updates ===
2133
2134 Everything which is new in Debian 8 Jessie, e.g.:
2135
2136 * Linux kernel 3.16.7-ctk9; for the i386 architecture, support for
2137 i486 processors has been dropped; oldest supported ones: i586 (like
2138 Intel Pentium and AMD K5).
2139
2140 * Desktop environments KDE Plasma Workspaces 4.11.13, GNOME 3.14,
2141 Xfce 4.12, LXDE 0.5.6
2142 * new optional desktop environment: MATE 1.8
2143 * KDE Plasma Workspaces is installed by default; to choose one of
2144 the others see the manual.
2145 * the browsers Iceweasel 31 ESR and Chromium 41
2146 * LibreOffice 4.3.3
2147 * GOsa 2.7.4
2148 * LTSP 5.5.4
2149 * CUPS print system 1.7.5
2150 * new boot framework: systemd
2151 * Educational toolbox GCompris 14.12
2152 * Music creator Rosegarden 14.02
2153 * Image editor Gimp 2.8.14
2154 * Virtual stargazer Stellarium 0.13.1
2155 * golearn 0.9
2156 * tuxpaint 0.9.22
2157 * New version of debian-installer from Debian Jessie.
2158 * Debian Jessie includes about 43000 packages available for installation.
2159 * More information about Debian 8 Jessie is provided in its release
2160 notes and the installation manual, see the link above.
2161
2162 === Installation changes ===
2163
2164 Installations done via PXE now also install firmware automatically
2165 for the hardware present.
2166
2167 === Fixed bugs ===
2168
2169 A number of bugs have been fixed in this release; the most noticeable
2170 from a user perspective:
2171
2172 * Inserting incorrect DNS information in Gosa will no longer break
2173 DNS completely, but instead stop DNS updates until the incorrect
2174 information is corrected (710362)
2175
2176 * shutdown-at-night now shuts the system down if gdm3 is used (775608).
2177
2178 === Sugar desktop removed ===
2179
2180 As the Sugar desktop was removed from Debian Jessie, it is also not
2181 available in Debian Edu jessie.
2182
2183
2184 == About Debian Edu / Skolelinux ==
2185
2186 Debian Edu, also known as Skolelinux, is a Linux distribution based on
2187 Debian providing an out-of-the box environment of a completely
2188 configured school network. Directly after installation a school server
2189 running all services needed for a school network is set up just
2190 waiting for users and machines being added via GOsa², a comfortable
2191 Web-UI. A netbooting environment is prepared using PXE, so after
2192 initial installation of the main server from CD or USB stick all other
2193 machines can be installed via the network. The provided school server
2194 provides LDAP database and Kerberos authentication service,
2195 centralized home directories, DHCP server, web proxy and many other
2196 services. The desktop contains more than 60 educational software
2197 packages and more are available from the Debian archive, and schools
2198 can choose between KDE, GNOME, LXDE, Xfce and MATE desktop
2199 environment.
2200
2201 == About Debian ==
2202
2203 The Debian Project was founded in 1993 by Ian Murdock to be a truly
2204 free community project. Since then the project has grown to be one of
2205 the largest and most influential open source projects. Thousands of
2206 volunteers from all over the world work together to create and
2207 maintain Debian software. Available in 70 languages, and supporting a
2208 huge range of computer types, Debian calls itself the universal
2209 operating system.
2210
2211 == Thanks ==
2212
2213 Thanks to everyone making Debian and Debian Edu / Skolelinux happen!
2214 You rock.
2215 &lt;/pre&gt;
2216 </description>
2217 </item>
2218
2219 <item>
2220 <title>Debian Edu interview: Shirish Agarwal</title>
2221 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Shirish_Agarwal.html</link>
2222 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Shirish_Agarwal.html</guid>
2223 <pubDate>Wed, 15 Apr 2015 09:20:00 +0200</pubDate>
2224 <description>&lt;p&gt;It was a surprise to me to learn that project to create a complete
2225 computer system for schools I&#39;ve involved in,
2226 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;, was
2227 being used in India. But apparently it is, and I managed to get an
2228 interview with one of the friends of the project there, Shirish
2229 Agarwal.&lt;/p&gt;
2230
2231 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
2232
2233 &lt;p&gt;My name is Shirish Agarwal. Based out of the educational and
2234 historical city of Pune, from the western state of Maharashtra, India.
2235 My bread comes from giving training, giving policy tips,
2236 installations on free software to mom and pop shops in different
2237 fields from Desktop publishing to retail shops as well as work with
2238 few software start-ups as well.&lt;/p&gt;
2239
2240 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
2241 project?&lt;/strong&gt;&lt;/p&gt;
2242
2243 &lt;p&gt;It started innocently enough. I have been using Debian for a few
2244 years and in one local minidebconf / debutsav I was asked if there was
2245 anything for schools or education. I had worked / played with free
2246 educational softwares such as Gcompris and Stellarium for my many
2247 nieces and nephews so researched and found Debian Edu or Skolelinux as
2248 it was known then. Since then I have started using the various
2249 education meta-packages provided by the project.&lt;/p&gt;
2250
2251 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
2252 Edu?&lt;/strong&gt;&lt;/p&gt;
2253
2254 &lt;p&gt;It&#39;s closest I have seen where a package full of educational
2255 software are packed, which are free and open (both literally and
2256 figuratively). Even if I take the simplest software which is
2257 gcompris, the number of activities therein are amazing. Another one of
2258 the softwares that I have liked for a long time is stellarium. Even
2259 pysycache is cool except for couple of issues I encountered
2260 &lt;a href=&quot;https://bugs.debian.org/781841&quot;&gt;#781841&lt;/a&gt; and
2261 &lt;a href=&quot;https://bugs.debian.org/781842&quot;&gt;#781842&lt;/a&gt;.&lt;/p&gt;
2262
2263 &lt;p&gt;I prefer software installed on the system over web based solutions,
2264 as a web site can disappear any time but the software on disk has the
2265 possibility of a larger life span. Of course with both it&#39;s more a
2266 question if it has enough users who make it fun or sustainable or both
2267 for the developer per-se.&lt;/p&gt;
2268
2269 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
2270 Edu?&lt;/strong&gt;&lt;/p&gt;
2271
2272 &lt;p&gt;I do see that the Debian Edu team seems to be short-handed and I
2273 think more efforts should be made to make it popular and ask and take
2274 help from people and the larger community wherever possible.&lt;/p&gt;
2275
2276 &lt;p&gt;I don&#39;t see any disadvantage to use Skolelinux apart from the fact
2277 that most apps. are generic which is good or bad how you see it.
2278 However, saying that I do acknowledge the fact that the canvas is
2279 pretty big and there are lot of interesting ideas that could be done
2280 but for reasons not known not done or if done I don&#39;t know about them.
2281 Let me share some of the ideas (these are more upstream based but
2282 still) I have had for a long time :&lt;/p&gt;
2283
2284 &lt;p&gt;1. Classical maths question of two trains in opposing directions
2285 each running @x kmph/mph at y distance, when they will meet and how
2286 far would each travel and similar questions like these.
2287
2288 &lt;p&gt;The computer is a fantastic system where questions like these can
2289 be drawn, animated and the methodology and answers teased out in
2290 interactive manner. While sites such as the
2291 &lt;a href=&quot;http://mathforum.org/dr.math/faq/faq.two.trains.html&quot;&gt;Ask
2292 Dr. Math FAQ on The Two Trains problem&lt;/a&gt; (as an example or point of
2293 inspiration) can be used there is lot more that can be done. I dunno
2294 if there is a free software which does something like this. The idea
2295 being a blend of objects + animation + interaction which does
2296 this. The whole interaction could be gamified with points or sounds or
2297 colourful celebration whenever the user gets even part of the question
2298 or/and methodology right. That would help reinforce good behaviour.
2299 This understanding could be used to share/showcase everything from how
2300 the first wheel came to be, to evolution to how astronomy started,
2301 psychics and everything in-between.&lt;/p&gt;
2302
2303 &lt;p&gt;One specific idea in the train part was having the Linux mascot on
2304 one train and the BSD or GNU mascot on the other train and they
2305 meeting somewhere in-between. Characters from blender movies could
2306 also be used.&lt;/p&gt;
2307
2308 &lt;p&gt;2. Loads of crossword-puzzles with reference to subjects: We have
2309 enormous data sets in Wikipedia and Wikitionary. I don&#39;t think it
2310 should be a big job to design crossword puzzles. Using categories and
2311 sub-categories it should be doable to have Q&amp;A single word answers
2312 from the existing data-sets. What would make it easy or hard could be
2313 the length of the word + existence of many or few vowels depending on
2314 the user&#39;s input.&lt;/p&gt;
2315
2316 &lt;p&gt;3. Jigsaw puzzles - We already have a great software called
2317 palapeli with number of slicers making it pretty interesting. What
2318 needs to be done is to download large number of public domain and
2319 copyleft images, tease and use IPTC tags to categorise them into
2320 nature, history etc. and let it loose. This could turn to be really
2321 huge collection of images. One source could be taken from
2322 commons.wikimedia.org, others could be huge collection of royalty-free
2323 stock photos. Potential is immense.&lt;/p&gt;
2324
2325 &lt;p&gt;Apart from this, free software suffers in two directions, we lag
2326 both in development (of using new features per-se) and maintenance a
2327 lot. This is more so in educational software as these applications
2328 need to be timely and the opportunity cost of missing deadlines is
2329 immense. If we are able to solve issues of funding for development and
2330 maintenance of such software I don&#39;t see any big difficulties. I know
2331 of few start-ups in and around India who would love to develop and
2332 maintain such software if funding issues could be solved.&lt;/p&gt;
2333
2334 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
2335
2336 &lt;p&gt;That would be huge list. Some of the softwares are obviously apt,
2337 aptitude, debdelta, leafpad, the shell of course (zsh nowadays),
2338 quassel for IRC. In games I use shisen-sho while card-games are evenly
2339 between kpat and Aiselriot. In desktops it&#39;s a tie between
2340 gnome-flashback and mate.&lt;/p&gt;
2341
2342 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
2343 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
2344
2345 &lt;p&gt;I think it should first start with using specific FOSS apps. in
2346 whatever environment they are. If it&#39;s MS-Windows or Mac so be it.
2347 Once they are habitual with the apps. and there is buy-in from the
2348 school management then it could be installed anywhere. Most of the
2349 people now understand the concept of a repository because of the
2350 various online stores so it isn&#39;t hard to convince on that front.&lt;/p&gt;
2351
2352 &lt;p&gt;What is harder is having enough people with technical skills and
2353 passion to service them. If you get buy-in from one or two teachers
2354 then ideas like above could also be asked to be done as a project as
2355 well.&lt;/p&gt;
2356
2357 &lt;p&gt;I think where we fall short more than anything is in marketing. For
2358 instance, Debian has this whole range of fonts in its archive but
2359 there isn&#39;t even a page where all those different fonts in the La
2360 Ipsum format could be tried out for newcomers.&lt;/p&gt;
2361
2362 &lt;p&gt;One of the issues faced constantly in installations is with updates
2363 and upgrades. People have this myth that each update and upgrade
2364 means the user interface will / has to change. I have seen this
2365 innumerable times. That perhaps is one of the reasons which browsers
2366 like Iceweasel / Firefox change user interfaces so much, not because
2367 it might be needed or be functional but because people believe that
2368 changed user interfaces are better. This, can easily be pointed with
2369 the user interfaces changed with almost every MS-Windows and Mac OS
2370 releases.&lt;/p&gt;
2371
2372 &lt;p&gt;The problems with Debian Edu for deployment are many. The biggest
2373 is the huge gap between what is taught in schools and what Debian Edu
2374 is aimed at.
2375
2376 &lt;p&gt;Me and my friends did teach on week-ends in a government school for
2377 around 2 years, and
2378 &lt;a href=&quot;https://flossexperiences.wordpress.com/2012/10/08/sharings/&quot;&gt;gathered
2379 some experience&lt;/a&gt; there. Some of the things we learnt/discovered
2380 there was :&lt;/p&gt;
2381
2382 &lt;ol&gt;
2383
2384 &lt;li&gt;Most of the teachers are very territorial about their subjects
2385 and they do not want you to teach anything out of the
2386 portion/syllabus given.&lt;/li&gt;
2387
2388 &lt;li&gt;They want any activity on the system in accordance to whatever
2389 is in the syllabus.&lt;/li&gt;
2390
2391 &lt;li&gt;There are huge barriers both with the English language and at
2392 times with objects or whatever. An example, let&#39;s say in gcompris
2393 you have objects falling down and you have to name them and let&#39;s
2394 say the falling object is a hat or a fedora hat, this would not be
2395 as recognizable as say a
2396 &lt;a href=&quot;https://en.wikipedia.org/wiki/Puneri_Pagadi&quot;&gt;Puneri
2397 Pagdi&lt;/a&gt; so there is need to inject local objects, words wherever
2398 possible. Especially for word-games there are so many hindi words
2399 which have become part of english vocabulary (for instance in
2400 parley), those could be made into a hinglish collection or
2401 something but that is something for upstream to do.&lt;/li&gt;
2402
2403 &lt;/ol&gt;
2404 </description>
2405 </item>
2406
2407 <item>
2408 <title>I&#39;m going to the Open Source Developers&#39; Conference Nordic 2015!</title>
2409 <link>http://people.skolelinux.org/pere/blog/I_m_going_to_the_Open_Source_Developers__Conference_Nordic_2015_.html</link>
2410 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/I_m_going_to_the_Open_Source_Developers__Conference_Nordic_2015_.html</guid>
2411 <pubDate>Tue, 7 Apr 2015 10:30:00 +0200</pubDate>
2412 <description>&lt;p&gt;I am happy to let you all know that I&#39;m going to the &lt;a
2413 href=&quot;http://act.osdc.no/osdc2015no/&quot;&gt;Open Source Developers&#39;
2414 Conference Nordic 2015&lt;/a&gt;!&lt;/p&gt;
2415
2416 &lt;p&gt;It take place Friday 8th to Sunday 10th of May in Oslo next to
2417 where I work, and I finally got around to submitting
2418 &lt;a href=&quot;http://act.osdc.no/osdc2015no/talk/6192&quot;&gt;a talk proposal for
2419 it&lt;/a&gt; (dead link for most people until the talk is accepted). As
2420 part of my involvement with the
2421 &lt;a href=&quot;http://www.nuug.no/&quot;&gt;Norwegian Unix User Group member
2422 association&lt;/a&gt; I have been slightly involved in the planning of this
2423 conference for a while now, with a focus on organising a Civic Hacking
2424 Hackathon with our friends
2425 over at &lt;a href=&quot;http://www.mysociety.org/&quot;&gt;mySociety&lt;/a&gt; and
2426 &lt;a href=&quot;http://www.holderdeord.no/&quot;&gt;Holder de ord&lt;/a&gt;. This part is
2427 named the &#39;My Society&#39; track in the program. There is still space for
2428 more talks and participants. I hope to see you there.&lt;/p&gt;
2429
2430 &lt;p&gt;Check out &lt;a href=&quot;http://act.osdc.no/osdc2015no/talks&quot;&gt;the talks
2431 submitted and accepted so far&lt;/a&gt;.&lt;/p&gt;
2432 </description>
2433 </item>
2434
2435 <item>
2436 <title>Proof reading the Norwegian translation of Free Culture by Lessig</title>
2437 <link>http://people.skolelinux.org/pere/blog/Proof_reading_the_Norwegian_translation_of_Free_Culture_by_Lessig.html</link>
2438 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Proof_reading_the_Norwegian_translation_of_Free_Culture_by_Lessig.html</guid>
2439 <pubDate>Sat, 4 Apr 2015 09:30:00 +0200</pubDate>
2440 <description>&lt;p&gt;During eastern I had some time to continue working on the Norwegian
2441 &lt;a href=&quot;http://www.docbook.org/&quot;&gt;docbook&lt;/a&gt; version of the 2004 book
2442 &lt;a href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; by Lawrence Lessig.
2443 At the moment I am proof reading the finished text, looking for typos,
2444 inconsistent wordings and sentences that do not flow as they should.
2445 I&#39;m more than two thirds done with the text, and welcome others to
2446 check the text up to chapter 13. The current status is available on the
2447 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;
2448 project pages. You can also check out the
2449 &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;,
2450 &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;
2451 and HTML version available in the
2452 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig/tree/master/archive&quot;&gt;archive
2453 directory&lt;/a&gt;.&lt;/p&gt;
2454
2455 &lt;p&gt;Please report typos, bugs and improvements to the github project if
2456 you find any.&lt;/p&gt;
2457 </description>
2458 </item>
2459
2460 <item>
2461 <title>Frikanalen, Norwegian TV channel for technical topics</title>
2462 <link>http://people.skolelinux.org/pere/blog/Frikanalen__Norwegian_TV_channel_for_technical_topics.html</link>
2463 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Frikanalen__Norwegian_TV_channel_for_technical_topics.html</guid>
2464 <pubDate>Mon, 9 Mar 2015 11:10:00 +0100</pubDate>
2465 <description>&lt;p&gt;The &lt;a href=&quot;http://www.nuug.no/&quot;&gt;Norwegian Unix User Group&lt;/a&gt;,
2466 where I am a member, and where people interested in free software,
2467 open standards and UNIX like operating systems like Linux and the BSDs
2468 come together, record our monthly technical presentations on video.
2469 The purpose is to document the talks and spread them to a wider
2470 audience. For this, the the Norwegian nationwide open channel
2471 &lt;a href=&quot;http://www.frikanalen.no/&quot;&gt;Frikanalen&lt;/a&gt; is a useful venue.
2472 Since a few days ago, when I figured out the
2473 &lt;a href=&quot;http://beta.frikanalen.no/api/&quot;&gt;REST API&lt;/a&gt; to program the
2474 &lt;a href=&quot;http://beta.frikanalen.tv/guide/&quot;&gt;channel time schedule&lt;/a&gt;,
2475 the channel has been filled with NUUG talks, related recordings and
2476 some Creative Commons licensed TED talks (from archive.org). I fill
2477 all &quot;leftover bits&quot; on the channel with content from NUUG, which at
2478 the moment is almost 17 of 24 hours every day.&lt;/p&gt;
2479
2480 &lt;p&gt;The list of NUUG videos
2481 &lt;a href=&quot;http://beta.frikanalen.tv/organization/82&quot;&gt;uploaded so far&lt;/a&gt;
2482 include things like a
2483 &lt;a href=&quot;http://beta.frikanalen.tv/video/625090&quot;&gt;one hour talk by John
2484 Perry Barlow when he visited Oslo&lt;/a&gt;, a presentation of
2485 &lt;a href=&quot;http://beta.frikanalen.tv/video/624275&quot;&gt;Haiku, the BeOS
2486 re-implementation&lt;/a&gt;, the
2487 &lt;a href=&quot;http://beta.frikanalen.tv/video/624493&quot;&gt;history of FiksGataMi,
2488 the Norwegian version of FixMyStreet&lt;/a&gt;, the good old
2489 &lt;a href=&quot;http://beta.frikanalen.tv/video/623566&quot;&gt;Warriors of the net
2490 video&lt;/A&gt; and many others.&lt;/p&gt;
2491
2492 &lt;p&gt;We have a large backlog of NUUG talks not yet uploaded to
2493 Frikanalen, and plan to upload every useful bit to the channel to
2494 spread the word there. I also hope to find useful recordings from the
2495 Chaos Computer Club and Debian conferences and spread them on the
2496 channel as well. But this require locating the videos and their meta
2497 information (title, description, license, etc), and preparing the
2498 recordings for broadcast, and I have not yet had the spare time to
2499 focus on this. Perhaps you want to help. Please join us on IRC,
2500 &lt;a href=&quot;irc://irc.freenode.net/%23nuug&quot;&gt;#nuug on irc.freenode.net&lt;/a&gt;
2501 if you want to help make this happen.&lt;/p&gt;
2502
2503 &lt;p&gt;But as I said, already the channel is already almost exclusively
2504 filled with technical topics, and if you want to learn something new
2505 today, check out the &lt;a href=&quot;http://www.frikanalen.tv/se&quot;&gt;Ogg Theora
2506 web stream&lt;/a&gt; or use one of the other ways to get access to the
2507 channel. Unfortunately the Ogg Theora recoding for distribution still
2508 do not properly sync the video and sound. It is generated by recoding
2509 a internal MPEG transport stream with MPEG4 coded video (ie H.264) to
2510 Ogg Theora / Vorbis, and we have not been able to find a way that
2511 produces acceptable quality. Help needed, please get in touch if you
2512 know how to fix it using free software.&lt;/p&gt;
2513 </description>
2514 </item>
2515
2516 <item>
2517 <title>The Citizenfour documentary on the Snowden confirmations to Norway</title>
2518 <link>http://people.skolelinux.org/pere/blog/The_Citizenfour_documentary_on_the_Snowden_confirmations_to_Norway.html</link>
2519 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_Citizenfour_documentary_on_the_Snowden_confirmations_to_Norway.html</guid>
2520 <pubDate>Sat, 28 Feb 2015 22:10:00 +0100</pubDate>
2521 <description>&lt;p&gt;Today I was happy to learn that the documentary
2522 &lt;a href=&quot;https://citizenfourfilm.com/&quot;&gt;Citizenfour&lt;/a&gt; by
2523 &lt;a href=&quot;https://en.wikipedia.org/wiki/Laura_Poitras&quot;&gt;Laura Poitras&lt;/a&gt;
2524 finally will show up in Norway. According to the magazine
2525 &lt;a href=&quot;http://montages.no/&quot;&gt;Montages&lt;/a&gt;, a deal has finally been
2526 made for
2527 &lt;a href=&quot;http://montages.no/nyheter/snowden-dokumentaren-citizenfour-far-norsk-kinodistribusjon/&quot;&gt;Cinema
2528 distribution in Norway&lt;/a&gt; and the movie will have its premiere soon.
2529 This is great news. As part of my involvement with
2530 &lt;a href=&quot;http://www.nuug.no/&quot;&gt;the Norwegian Unix User Group&lt;/a&gt;, me and
2531 a friend have
2532 &lt;a href=&quot;http://www.nuug.no/news/Dokumentar_om_Snowdenbekreftelsene_til_Norge_.shtml&quot;&gt;tried
2533 to get the movie to Norway&lt;/a&gt; ourselves, but obviously
2534 &lt;a href=&quot;http://www.nuug.no/news/Dokumentar_om_Snowdenbekreftelsene_endelig_til_Norge_.shtml&quot;&gt;we
2535 were too late&lt;/a&gt; and Tor Fosse beat us to it. I am happy he did, as
2536 the movie will make its way to the public and we do not have to make
2537 it happen ourselves.
2538 &lt;a href=&quot;https://www.youtube.com/watch?v=XiGwAvd5mvM&quot;&gt;The trailer&lt;/a&gt;
2539 can be seen on youtube, if you are curious what kind of film this
2540 is.&lt;/p&gt;
2541
2542 &lt;p&gt;The whistle blower Edward Snowden really deserve political asylum
2543 here in Norway, but I am afraid he would not be safe.&lt;/p&gt;
2544 </description>
2545 </item>
2546
2547 <item>
2548 <title>The Norwegian open channel Frikanalen - 24x7 on the Internet</title>
2549 <link>http://people.skolelinux.org/pere/blog/The_Norwegian_open_channel_Frikanalen___24x7_on_the_Internet.html</link>
2550 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_Norwegian_open_channel_Frikanalen___24x7_on_the_Internet.html</guid>
2551 <pubDate>Wed, 25 Feb 2015 09:10:00 +0100</pubDate>
2552 <description>&lt;p&gt;The Norwegian nationwide open channel
2553 &lt;a href=&quot;http://www.frikanalen.no/&quot;&gt;Frikanalen&lt;/a&gt; is still going
2554 strong. It allow everyone to send the video they want on national
2555 television. It is a TV station administrated completely using a web
2556 browser, running only &lt;ahref=&quot;https://github.com/Frikanalen&quot;&gt;Free
2557 Software&lt;/a&gt;, providing &lt;ahref=&quot;http://beta.frikanalen.tv/api&quot;&gt;a REST
2558 api&lt;/a&gt; for administrators and members, and with distribution on the
2559 national DVB-T distribution network RiksTV. But only between 12:00
2560 and 17:30 Norwegian time. This has finally changed, after many years
2561 with limited distribution. A few weeks ago, we set up a Ogg Theora
2562 stream via icecast to allow everyone with Internet access to check out
2563 the channel the rest of the day. This is presented on
2564 &lt;a href=&quot;http://www.frikanalen.tv/se&quot;&gt;the Frikanalen web site now&lt;/a&gt;. And
2565 since a few days ago, the channel is also available
2566 via &lt;a href=&quot;https://www.uninett.no/iptv-tilgang&quot;&gt;multicast on
2567 UNINETT&lt;/a&gt;, available for those using IPTV TVs and set-top boxes in
2568 the Norwegian National Research and Education network.&lt;/p&gt;
2569
2570 &lt;p&gt;If you want to see what is on the channel, point your media player
2571 to one of these sources. The first should work with most players and
2572 browsers, while as far as I know, the multicast UDP stream only work
2573 with VLC.&lt;/p&gt;
2574
2575 &lt;ul&gt;
2576 &lt;li&gt;&lt;a href=&quot;http://video.nuug.no/frikanalen.ogv&quot;&gt;http://video.nuug.no/frikanalen.ogv&lt;/a&gt;&lt;/li&gt;
2577 &lt;li&gt;udp://@224.17.43.129:1234&lt;/li&gt;
2578 &lt;/ul&gt;
2579
2580 &lt;p&gt;The Ogg Theora / icecast stream is not working well, as the video
2581 and audio is slightly out of sync. We have not been able to figure
2582 out how to fix it. It is generated by recoding a internal MPEG
2583 transport stream with MPEG4 coded video (ie H.264) to Ogg Theora /
2584 Vorbis, and the result is less then stellar. If you have ideas how to
2585 fix it, please let us know on frikanalen (at) nuug.no. We currently
2586 use this with ffmpeg2theora 0.29:&lt;/p&gt;
2587
2588 &lt;blockquote&gt;&lt;pre&gt;
2589 ./ffmpeg2theora.linux &amp;lt;OBE_gemini_URL.ts&amp;gt; -F 25 -x 720 -y 405 \
2590 --deinterlace --inputfps 25 -c 1 -H 48000 --keyint 8 --buf-delay 100 \
2591 --nosync -V 700 -o - | oggfwd video.nuug.no 8000 &amp;lt;pw&amp;gt; /frikanalen.ogv
2592 &lt;/pre&gt;&lt;/blockquote&gt;
2593
2594 &lt;p&gt;If you get the multicast UDP stream working, please let me know, as
2595 I am curious how far the multicast stream reach. It do not make it to
2596 my home network, nor any other commercially available network in
2597 Norway that I am aware of.&lt;/p&gt;
2598 </description>
2599 </item>
2600
2601 <item>
2602 <title>Nude body scanner now present on Norwegian airport</title>
2603 <link>http://people.skolelinux.org/pere/blog/Nude_body_scanner_now_present_on_Norwegian_airport.html</link>
2604 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Nude_body_scanner_now_present_on_Norwegian_airport.html</guid>
2605 <pubDate>Tue, 10 Feb 2015 15:20:00 +0100</pubDate>
2606 <description>&lt;p&gt;Aftenposten, one of the largest newspapers in Norway, today report
2607 that
2608 &lt;a href=&quot;http://www.aftenposten.no/reise/Slik-skannes-kroppen-din-i-fremtidens-sikkerhetskontroll-490666_1.snd&quot;&gt;three
2609 of the nude body scanners now is put to use at Gardermoen&lt;/a&gt;, the
2610 main airport in Norway. This way the travelers can have their body
2611 photographed without cloths when visiting Norway. Of course this
2612 horrible news is presented with a positive spin, stating that &quot;now
2613 travelers can move past the security check point faster and more
2614 efficiently&quot;, but fail to mention that the machines in question take
2615 pictures of their nude bodies and store them internally in the
2616 computer, while only presenting sketch figure of the body to the
2617 public. The article is written in a way that leave the impression
2618 that the new machines do not take these nude pictures and only create
2619 the sketch figures. In reality the same nude pictures are still
2620 taken, but not presented to everyone. They are still available for
2621 the owners of the system and the people doing maintenance of the
2622 scanners, as long as they are taken and stored.&lt;/p&gt;
2623
2624 &lt;p&gt;Wikipedia have a more on
2625 &lt;a href=&quot;https://en.wikipedia.org/wiki/Full_body_scanner&quot;&gt;Full body
2626 scanners&lt;/a&gt;, including example images and a summary of the
2627 controversy about these scanners.&lt;/p&gt;
2628
2629 &lt;p&gt;Personally I will decline to use these machines, as I believe strip
2630 searches of my body is a very intrusive attack on my privacy, and not
2631 something everyone should have to accept to travel.&lt;/p&gt;
2632 </description>
2633 </item>
2634
2635 <item>
2636 <title>Nagios module to check if the Frikanalen video stream is working</title>
2637 <link>http://people.skolelinux.org/pere/blog/Nagios_module_to_check_if_the_Frikanalen_video_stream_is_working.html</link>
2638 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Nagios_module_to_check_if_the_Frikanalen_video_stream_is_working.html</guid>
2639 <pubDate>Sun, 8 Feb 2015 13:00:00 +0100</pubDate>
2640 <description>&lt;p&gt;When running a TV station with both broadcast and web stream
2641 distribution, it is useful to know that the stream is working. As I
2642 am involved in the Norwegian open channel
2643 &lt;a href=&quot;http://www.frikanalen.no/&quot;&gt;Frikanalen&lt;/a&gt; as part of my
2644 activity in the &lt;a href=&quot;http://www.nuug.no/&quot;&gt;NUUG member
2645 organisation&lt;/a&gt;, I wrote a script to use mplayer to connect to a
2646 video stream, pick two images 35 seconds apart and compare them. If
2647 the images are missing or identical, something is probably wrong with
2648 the stream and an alarm should be triggered. The script is written as
2649 a Nagios plugin, allowing us to use Nagios to run the check regularly
2650 and sound the alarm when something is wrong. It is able to detect
2651 both a hanging and a broken video stream.&lt;/p&gt;
2652
2653 &lt;p&gt;I just uploaded the code for the script into the
2654 &lt;a href=&quot;https://github.com/Frikanalen/frikanalen/blob/master/nagios-plugin/check_video_stream_images&quot;&gt;Frikanalen
2655 git repository&lt;/a&gt; on github. If you run a TV station with web
2656 streaming, perhaps you can find it useful too.&lt;/p&gt;
2657
2658 &lt;p&gt;Last year, the Frikanalen public TV station transformed into using
2659 only Linux based free software to administrate, schedule and
2660 distribute the TV content. The
2661 &lt;a href=&quot;https://github.com/Frikanalen&quot;&gt;source code for the entire TV
2662 station&lt;/a&gt; is available from the Github project page. Everyone can
2663 use it to send their content on national TV, and we provide both a web
2664 GUI and &lt;a href=&quot;http://beta.frikanalen.tv/api/&quot;&gt;a web API&lt;/a&gt; to
2665 &lt;a href=&quot;http://beta.frikanalen.tv/login/?next=/members/video/&quot;&gt;add&lt;/a&gt;
2666 and &lt;a href=&quot;http://beta.frikanalen.tv/members/plan/&quot;&gt;schedule
2667 content&lt;/a&gt;. And thanks to last weeks developer gathering and
2668 following activity, we now have the schedule
2669 &lt;a href=&quot;http://beta.frikanalen.tv/xmltv/2015/01/01&quot;&gt;available as
2670 XMLTV&lt;/a&gt; too. Still a lot of work left to do, especially with the
2671 process to add videos and with the scheduling, so your contribution is
2672 most welcome. Perhaps you want to set up your own TV station?&lt;/p&gt;
2673
2674 &lt;p&gt;Update 2015-02-25: Got a tip from Uninett about their
2675 &lt;a href=&quot;https://scm.uninett.no/maalepaaler/qstream/&quot;&gt;qstream
2676 monitoring system&lt;/a&gt;, which gather connection time, jitter, packet
2677 loss and burst bandwidth usage. It look useful to check if UDP
2678 streams are working as they should.&lt;/p&gt;
2679 </description>
2680 </item>
2681
2682 <item>
2683 <title>Norwegian Bokmål subtitles for the FSF video User Liberation</title>
2684 <link>http://people.skolelinux.org/pere/blog/Norwegian_Bokm_l_subtitles_for_the_FSF_video_User_Liberation.html</link>
2685 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Norwegian_Bokm_l_subtitles_for_the_FSF_video_User_Liberation.html</guid>
2686 <pubDate>Mon, 12 Jan 2015 21:00:00 +0100</pubDate>
2687 <description>&lt;p&gt;A few days ago, the &lt;a href=&quot;https://www.fsf.org/&quot;&gt;Free Software
2688 Foundation&lt;/a&gt; announced a new video
2689 &lt;a href=&quot;https://www.fsf.org/blogs/community/user-liberation-watch-and-share-our-new-video&quot;&gt;explaining
2690 Free software&lt;/a&gt; in simple terms. The video named User Liberation is
2691 3 minutes long, and I recommend showing it to everyone you know as a
2692 way to explain what Free Software is all about. Unfortunately several
2693 of the people I know do not understand English and Spanish, so it did
2694 not make sense to show it to them.&lt;/p&gt;
2695
2696 &lt;p&gt;But today I was told that
2697 &lt;a href=&quot;https://www.fsf.org/blogs/community/user-liberation-watch-and-share-our-new-video&quot;&gt;English
2698 subtitles were available&lt;/a&gt; and set out to provide Norwegian Bokmål
2699 subtitles based on these. The result has been sent to FSF and made
2700 available in
2701 &lt;a href=&quot;https://github.com/petterreinholdtsen/fsf-video-user-liberation-subtitles&quot;&gt;a
2702 git repository&lt;/a&gt; provided by Github. Please let me know if you find
2703 errors or have improvements to the subtitles.&lt;/p&gt;
2704
2705 &lt;p&gt;Update 2015-02-03: Since I publised this post, FSF created a
2706 Libreplanet
2707 &lt;a href=&quot;http://libreplanet.org/wiki/Group:FSF/User_Liberation_Video_Translation&quot;&gt;project
2708 to track subtitles&lt;/A&gt; for the video.&lt;/p&gt;
2709 </description>
2710 </item>
2711
2712 <item>
2713 <title>Updated version of the Norwegian web service FiksGataMi</title>
2714 <link>http://people.skolelinux.org/pere/blog/Updated_version_of_the_Norwegian_web_service_FiksGataMi.html</link>
2715 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Updated_version_of_the_Norwegian_web_service_FiksGataMi.html</guid>
2716 <pubDate>Tue, 30 Dec 2014 17:55:00 +0100</pubDate>
2717 <description>&lt;p&gt;I am very happy that we in the
2718 &lt;a href=&quot;http://www.nuug.no/&quot;&gt;Norwegian Unix User group (NUUG)&lt;/a&gt;,
2719 spearheaded by Marius Halden from NUUG and Matthew Somerville from
2720 &lt;a href=&quot;http://www.mysociety.org/&quot;&gt;mySociety&lt;/a&gt;, finally managed to
2721 upgrade the code base for the Norwegian version of
2722 &lt;a href=&quot;http://fixmystreet.org/&quot;&gt;FixMyStreet&lt;/a&gt;. This
2723 was the first major update since 2011. The refurbished
2724 &lt;a href=&quot;http://www.fiksgatami.no/&quot;&gt;FiksGataMi&lt;/a&gt; is already live, and
2725 seem to hold up the pressure. The
2726 &lt;a href=&quot;http://www.nuug.no/news/Pressemelding__FiksGataMi_i_oppdatert_og_mobilvennlig_klesdrakt.shtml&quot;&gt;press
2727 release and announcement&lt;/a&gt; went out this morning.&lt;/p&gt;
2728
2729 &lt;p&gt;FixMyStreet is a web platform for allowing the citizens to easily
2730 report problems with public infrastructure to the responsible
2731 authorities. Think of it as a shared mail client with map support,
2732 allowing everyone to see what already was reported and comment on the
2733 reports in public.&lt;/p&gt;
2734 </description>
2735 </item>
2736
2737 <item>
2738 <title>Of course USA loses in cyber war - NSA and friends made sure it would happen</title>
2739 <link>http://people.skolelinux.org/pere/blog/Of_course_USA_loses_in_cyber_war___NSA_and_friends_made_sure_it_would_happen.html</link>
2740 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Of_course_USA_loses_in_cyber_war___NSA_and_friends_made_sure_it_would_happen.html</guid>
2741 <pubDate>Fri, 19 Dec 2014 13:10:00 +0100</pubDate>
2742 <description>&lt;p&gt;So, Sony caved in
2743 (&lt;a href=&quot;https://twitter.com/RobLowe/status/545338568512917504&quot;&gt;according
2744 to Rob Lowe&lt;/a&gt;) and demonstrated that America lost its first cyberwar
2745 (&lt;a href=&quot;https://twitter.com/newtgingrich/status/545339074975109122&quot;&gt;according
2746 to Newt Gingrich&lt;/a&gt;). It should not surprise anyone, after the
2747 whistle blower Edward Snowden documented that the government of USA
2748 and their allies for many years have done their best to make sure the
2749 technology used by its citizens is filled with security holes allowing
2750 the secret services to spy on its own population. No one in their
2751 right minds could believe that the ability to snoop on the people all
2752 over the globe could only be used by the personnel authorized to do so
2753 by the president of the United States of America. If the capabilities
2754 are there, they will be used by friend and foe alike, and now they are
2755 being used to bring Sony on its knees.&lt;/p&gt;
2756
2757 &lt;p&gt;I doubt it will a lesson learned, and expect USA to lose its next
2758 cyber war too, given how eager the western intelligence communities
2759 (and probably the non-western too, but it is less in the news) seem to
2760 be to continue its current dragnet surveillance practice.&lt;/p&gt;
2761
2762 &lt;p&gt;There is a reason why China and others are trying to move away from
2763 Windows to Linux and other alternatives, and it is not to avoid
2764 sending its hard earned dollars to Cayman Islands (or whatever
2765 &lt;a href=&quot;https://en.wikipedia.org/wiki/Tax_haven&quot;&gt;tax haven&lt;/a&gt;
2766 Microsoft is using these days to collect the majority of its
2767 income. :)&lt;/p&gt;
2768 </description>
2769 </item>
2770
2771 <item>
2772 <title>How to stay with sysvinit in Debian Jessie</title>
2773 <link>http://people.skolelinux.org/pere/blog/How_to_stay_with_sysvinit_in_Debian_Jessie.html</link>
2774 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_stay_with_sysvinit_in_Debian_Jessie.html</guid>
2775 <pubDate>Sat, 22 Nov 2014 01:00:00 +0100</pubDate>
2776 <description>&lt;p&gt;By now, it is well known that Debian Jessie will not be using
2777 sysvinit as its boot system by default. But how can one keep using
2778 sysvinit in Jessie? It is fairly easy, and here are a few recipes,
2779 courtesy of
2780 &lt;a href=&quot;http://www.vitavonni.de/blog/201410/2014102101-avoiding-systemd.html&quot;&gt;Erich
2781 Schubert&lt;/a&gt; and
2782 &lt;a href=&quot;http://smcv.pseudorandom.co.uk/2014/still_universal/&quot;&gt;Simon
2783 McVittie&lt;/a&gt;.
2784
2785 &lt;p&gt;If you already are using Wheezy and want to upgrade to Jessie and
2786 keep sysvinit as your boot system, create a file
2787 &lt;tt&gt;/etc/apt/preferences.d/use-sysvinit&lt;/tt&gt; with this content before
2788 you upgrade:&lt;/p&gt;
2789
2790 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
2791 Package: systemd-sysv
2792 Pin: release o=Debian
2793 Pin-Priority: -1
2794 &lt;/pre&gt;&lt;/blockquote&gt;&lt;p&gt;
2795
2796 &lt;p&gt;This file content will tell apt and aptitude to not consider
2797 installing systemd-sysv as part of any installation and upgrade
2798 solution when resolving dependencies, and thus tell it to avoid
2799 systemd as a default boot system. The end result should be that the
2800 upgraded system keep using sysvinit.&lt;/p&gt;
2801
2802 &lt;p&gt;If you are installing Jessie for the first time, there is no way to
2803 get sysvinit installed by default (debootstrap used by
2804 debian-installer have no option for this), but one can tell the
2805 installer to switch to sysvinit before the first boot. Either by
2806 using a kernel argument to the installer, or by adding a line to the
2807 preseed file used. First, the kernel command line argument:
2808
2809 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
2810 preseed/late_command=&quot;in-target apt-get install --purge -y sysvinit-core&quot;
2811 &lt;/pre&gt;&lt;/blockquote&gt;&lt;p&gt;
2812
2813 &lt;p&gt;Next, the line to use in a preseed file:&lt;/p&gt;
2814
2815 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
2816 d-i preseed/late_command string in-target apt-get install -y sysvinit-core
2817 &lt;/pre&gt;&lt;/blockquote&gt;&lt;p&gt;
2818
2819 &lt;p&gt;One can of course also do this after the first boot by installing
2820 the sysvinit-core package.&lt;/p&gt;
2821
2822 &lt;p&gt;I recommend only using sysvinit if you really need it, as the
2823 sysvinit boot sequence in Debian have several hardware specific bugs
2824 on Linux caused by the fact that it is unpredictable when hardware
2825 devices show up during boot. But on the other hand, the new default
2826 boot system still have a few rough edges I hope will be fixed before
2827 Jessie is released.&lt;/p&gt;
2828
2829 &lt;p&gt;Update 2014-11-26: Inspired by
2830 &lt;ahref=&quot;https://www.mirbsd.org/permalinks/wlog-10-tg_e20141125-tg.htm#e20141125-tg_wlog-10-tg&quot;&gt;a
2831 blog post by Torsten Glaser&lt;/a&gt;, added --purge to the preseed
2832 line.&lt;/p&gt;
2833 </description>
2834 </item>
2835
2836 <item>
2837 <title>A Debian package for SMTP via Tor (aka SMTorP) using exim4</title>
2838 <link>http://people.skolelinux.org/pere/blog/A_Debian_package_for_SMTP_via_Tor__aka_SMTorP__using_exim4.html</link>
2839 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_Debian_package_for_SMTP_via_Tor__aka_SMTorP__using_exim4.html</guid>
2840 <pubDate>Mon, 10 Nov 2014 13:40:00 +0100</pubDate>
2841 <description>&lt;p&gt;The right to communicate with your friends and family in private,
2842 without anyone snooping, is a right every citicen have in a liberal
2843 democracy. But this right is under serious attack these days.&lt;/p&gt;
2844
2845 &lt;p&gt;A while back it occurred to me that one way to make the dragnet
2846 surveillance conducted by NSA, GCHQ, FRA and others (and confirmed by
2847 the whisleblower Snowden) more expensive for Internet email,
2848 is to deliver all email using SMTP via Tor. Such SMTP option would be
2849 a nice addition to the FreedomBox project if we could send email
2850 between FreedomBox machines without leaking metadata about the emails
2851 to the people peeking on the wire. I
2852 &lt;a href=&quot;http://lists.alioth.debian.org/pipermail/freedombox-discuss/2014-October/006493.html&quot;&gt;proposed
2853 this on the FreedomBox project mailing list in October&lt;/a&gt; and got a
2854 lot of useful feedback and suggestions. It also became obvious to me
2855 that this was not a novel idea, as the same idea was tested and
2856 documented by Johannes Berg as early as 2006, and both
2857 &lt;a href=&quot;https://github.com/pagekite/Mailpile/wiki/SMTorP&quot;&gt;the
2858 Mailpile&lt;/a&gt; and &lt;a href=&quot;http://dee.su/cables&quot;&gt;the Cables&lt;/a&gt; systems
2859 propose a similar method / protocol to pass emails between users.&lt;/p&gt;
2860
2861 &lt;p&gt;To implement such system one need to set up a Tor hidden service
2862 providing the SMTP protocol on port 25, and use email addresses
2863 looking like username@hidden-service-name.onion. With such addresses
2864 the connections to port 25 on hidden-service-name.onion using Tor will
2865 go to the correct SMTP server. To do this, one need to configure the
2866 Tor daemon to provide the hidden service and the mail server to accept
2867 emails for this .onion domain. To learn more about Exim configuration
2868 in Debian and test the design provided by Johannes Berg in his FAQ, I
2869 set out yesterday to create a Debian package for making it trivial to
2870 set up such SMTP over Tor service based on Debian. Getting it to work
2871 were fairly easy, and
2872 &lt;a href=&quot;https://github.com/petterreinholdtsen/exim4-smtorp&quot;&gt;the
2873 source code for the Debian package&lt;/a&gt; is available from github. I
2874 plan to move it into Debian if further testing prove this to be a
2875 useful approach.&lt;/p&gt;
2876
2877 &lt;p&gt;If you want to test this, set up a blank Debian machine without any
2878 mail system installed (or run &lt;tt&gt;apt-get purge exim4-config&lt;/tt&gt; to
2879 get rid of exim4). Install tor, clone the git repository mentioned
2880 above, build the deb and install it on the machine. Next, run
2881 &lt;tt&gt;/usr/lib/exim4-smtorp/setup-exim-hidden-service&lt;/tt&gt; and follow
2882 the instructions to get the service up and running. Restart tor and
2883 exim when it is done, and test mail delivery using swaks like
2884 this:&lt;/p&gt;
2885
2886 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
2887 torsocks swaks --server dutlqrrmjhtfa3vp.onion \
2888 --to fbx@dutlqrrmjhtfa3vp.onion
2889 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
2890
2891 &lt;p&gt;This will test the SMTP delivery using tor. Replace the email
2892 address with your own address to test your server. :)&lt;/p&gt;
2893
2894 &lt;p&gt;The setup procedure is still to complex, and I hope it can be made
2895 easier and more automatic. Especially the tor setup need more work.
2896 Also, the package include a tor-smtp tool written in C, but its task
2897 should probably be rewritten in some script language to make the deb
2898 architecture independent. It would probably also make the code easier
2899 to review. The tor-smtp tool currently need to listen on a socket for
2900 exim to talk to it and is started using xinetd. It would be better if
2901 no daemon and no socket is needed. I suspect it is possible to get
2902 exim to run a command line tool for delivery instead of talking to a
2903 socket, and hope to figure out how in a future version of this
2904 system.&lt;/p&gt;
2905
2906 &lt;p&gt;Until I wipe my test machine, I can be reached using the
2907 &lt;tt&gt;fbx@dutlqrrmjhtfa3vp.onion&lt;/tt&gt; mail address, deliverable over
2908 SMTorP. :)&lt;/p&gt;
2909 </description>
2910 </item>
2911
2912 <item>
2913 <title>First Jessie based Debian Edu released (alpha0)</title>
2914 <link>http://people.skolelinux.org/pere/blog/First_Jessie_based_Debian_Edu_released__alpha0_.html</link>
2915 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_Jessie_based_Debian_Edu_released__alpha0_.html</guid>
2916 <pubDate>Mon, 27 Oct 2014 20:40:00 +0100</pubDate>
2917 <description>&lt;p&gt;I am happy to report that I on behalf of the Debian Edu team just
2918 sent out
2919 &lt;a href=&quot;https://lists.debian.org/debian-edu-announce/2014/10/msg00000.html&quot;&gt;this
2920 announcement&lt;/a&gt;:&lt;/p&gt;
2921
2922 &lt;pre&gt;
2923 The Debian Edu Team is pleased to announce the release of Debian Edu
2924 Jessie 8.0+edu0~alpha0
2925
2926 Debian Edu is a complete operating system for schools. Through its
2927 various installation profiles you can install servers, workstations
2928 and laptops which will work together on the school network. With
2929 Debian Edu, the teachers themselves or their technical support can
2930 roll out a complete multi-user multi-machine study environment within
2931 hours or a few days. Debian Edu comes with hundreds of applications
2932 pre-installed, but you can always add more packages from Debian.
2933
2934 For those who want to give Debian Edu Jessie a try, download and
2935 installation instructions are available, including detailed
2936 instructions in the manual[1] explaining the first steps, such as
2937 setting up a network or adding users. Please note that the password
2938 for the user your prompted for during installation must have a length
2939 of at least 5 characters!
2940
2941 [1] &amp;lt;URL: &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Documentation/Jessie&quot;&gt;https://wiki.debian.org/DebianEdu/Documentation/Jessie&lt;/a&gt; &amp;gt;
2942
2943 Would you like to give your school&#39;s computer a longer life? Are you
2944 tired of sneaker administration, running from computer to computer
2945 reinstalling the operating system? Would you like to administrate all
2946 the computers in your school using only a couple of hours every week?
2947 Check out Debian Edu Jessie!
2948
2949 Skolelinux is used by at least two hundred schools all over the world,
2950 mostly in Germany and Norway.
2951
2952 About Debian Edu and Skolelinux
2953 ===============================
2954
2955 Debian Edu, also known as Skolelinux[2], is a Linux distribution based
2956 on Debian providing an out-of-the box environment of a completely
2957 configured school network. Immediately after installation a school
2958 server running all services needed for a school network is set up just
2959 waiting for users and machines being added via GOsa², a comfortable
2960 Web-UI. A netbooting environment is prepared using PXE, so after
2961 initial installation of the main server from CD or USB stick all other
2962 machines can be installed via the network. The provided school server
2963 provides LDAP database and Kerberos authentication service,
2964 centralized home directories, DHCP server, web proxy and many other
2965 services. The desktop contains more than 60 educational software
2966 packages[3] and more are available from the Debian archive, and
2967 schools can choose between KDE, Gnome, LXDE, Xfce and MATE desktop
2968 environment.
2969
2970 [2] &amp;lt;URL: &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;http://www.skolelinux.org/&lt;/a&gt; &amp;gt;
2971 [3] &amp;lt;URL: &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&lt;/a&gt; &amp;gt;
2972
2973 Full release notes and manual
2974 =============================
2975
2976 Below the download URLs there is a list of some of the new features
2977 and bugfixes of Debian Edu 8.0+edu0~alpha0 Codename Jessie. The full
2978 list is part of the manual. (See the feature list in the manual[4] for
2979 the English version.) For some languages manual translations are
2980 available, see the manual translation overview[5].
2981
2982 [4] &amp;lt;URL: &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Documentation/Jessie/Features&quot;&gt;https://wiki.debian.org/DebianEdu/Documentation/Jessie/Features&lt;/a&gt; &amp;gt;
2983 [5] &amp;lt;URL: &lt;a href=&quot;http://maintainer.skolelinux.org/debian-edu-doc/&quot;&gt;http://maintainer.skolelinux.org/debian-edu-doc/&lt;/a&gt; &amp;gt;
2984
2985 Where to get it
2986 ---------------
2987
2988 To download the multiarch netinstall CD release (624 MiB) you can use
2989
2990 * &lt;a href=&quot;ftp://ftp.skolelinux.org/skolelinux-cd/debian-edu-8.0+edu0~alpha0-CD.iso&quot;&gt;ftp://ftp.skolelinux.org/skolelinux-cd/debian-edu-8.0+edu0~alpha0-CD.iso&lt;/a&gt;
2991 * &lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/debian-edu-8.0+edu0~alpha0-CD.iso&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/debian-edu-8.0+edu0~alpha0-CD.iso&lt;/a&gt;
2992 * rsync -avzP ftp.skolelinux.org::skolelinux-cd/debian-edu-8.0+edu0~alpha0-CD.iso .
2993
2994 The SHA1SUM of this image is: 361188818e036ce67280a572f757de82ebfeb095
2995
2996 New features for Debian Edu 8.0+edu0~alpha0 Codename Jessie released 2014-10-27
2997 ===============================================================================
2998
2999
3000 Installation changes
3001 --------------------
3002
3003 * PXE installation now installs firmware automatically for the hardware present.
3004
3005 Software updates
3006 ----------------
3007
3008 Everything which is new in Debian Jessie 8.0, eg:
3009
3010 * Linux kernel 3.16.x
3011 * Desktop environments KDE &quot;Plasma&quot; 4.11.12, GNOME 3.14, Xfce 4.10,
3012 LXDE 0.5.6 and MATE 1.8 (KDE &quot;Plasma&quot; is installed by default; to
3013 choose one of the others see manual.)
3014 * the browsers Iceweasel 31 ESR and Chromium 38
3015 * !LibreOffice 4.3.3
3016 * GOsa 2.7.4
3017 * LTSP 5.5.4
3018 * CUPS print system 1.7.5
3019 * new boot framework: systemd
3020 * Educational toolbox GCompris 14.07
3021 * Music creator Rosegarden 14.02
3022 * Image editor Gimp 2.8.14
3023 * Virtual stargazer Stellarium 0.13.0
3024 * golearn 0.9
3025 * tuxpaint 0.9.22
3026 * New version of debian-installer from Debian Jessie.
3027 * Debian Jessie includes about 42000 packages available for
3028 installation.
3029 * More information about Debian Jessie 8.0 is provided in the release
3030 notes[6] and the installation manual[7].
3031
3032 [6] &amp;lt;URL: &lt;a href=&quot;http://www.debian.org/releases/jessie/releasenotes&quot;&gt;http://www.debian.org/releases/jessie/releasenotes&lt;/a&gt; &amp;gt;
3033 [7] &amp;lt;URL: &lt;a href=&quot;http://www.debian.org/releases/jessie/installmanual&quot;&gt;http://www.debian.org/releases/jessie/installmanual&lt;/a&gt; &amp;gt;
3034
3035 Fixed bugs
3036 ----------
3037
3038 * Inserting incorrect DNS information in Gosa will no longer break
3039 DNS completely, but instead stop DNS updates until the incorrect
3040 information is corrected (Debian bug #710362)
3041 * and many others.
3042
3043 Documentation and translation updates
3044 -------------------------------------
3045
3046 * The Debian Edu Jessie Manual is fully translated to German, French,
3047 Italian, Danish and Dutch. Partly translated versions exist for
3048 Norwegian Bokmal and Spanish.
3049
3050 Other changes
3051 -------------
3052
3053 * Due to new Squid settings, powering off or rebooting the main
3054 server takes more time.
3055 * To manage printers localhost:631 has to be used, currently www:631
3056 doesn&#39;t work.
3057
3058 Regressions / known problems
3059 ----------------------------
3060
3061 * Installing LTSP chroot fails with a bug related to eatmydata about
3062 exim4-config failing to run its postinst (see Debian bug #765694
3063 and Debian bug #762103).
3064 * Munin collection is not properly configured on clients (Debian bug
3065 #764594). The fix is available in a newer version of munin-node.
3066 * PXE setup for Main Server and Thin Client Server setup does not
3067 work when installing on a machine without direct Internet access.
3068 Will be fixed when Debian bug #766960 is fixed in Jessie.
3069
3070 See the status page[8] for the complete list.
3071
3072 [8] &amp;lt;URL: &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Status/Jessie&quot;&gt;https://wiki.debian.org/DebianEdu/Status/Jessie&lt;/a&gt; &amp;gt;
3073
3074 How to report bugs
3075 ------------------
3076
3077 &amp;lt;URL: &lt;a href=&quot;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&quot;&gt;http://wiki.debian.org/DebianEdu/HowTo/ReportBugs&lt;/a&gt; &amp;gt;
3078
3079 About Debian
3080 ============
3081
3082 The Debian Project was founded in 1993 by Ian Murdock to be a truly
3083 free community project. Since then the project has grown to be one of
3084 the largest and most influential open source projects. Thousands of
3085 volunteers from all over the world work together to create and
3086 maintain Debian software. Available in 70 languages, and supporting a
3087 huge range of computer types, Debian calls itself the universal
3088 operating system.
3089
3090 Contact Information
3091 For further information, please visit the Debian web pages[9] or send
3092 mail to press@debian.org.
3093
3094 [9] &amp;lt;URL: &lt;a href=&quot;http://www.debian.org/&quot;&gt;http://www.debian.org/&lt;/a&gt; &amp;gt;
3095 &lt;/pre&gt;
3096 </description>
3097 </item>
3098
3099 <item>
3100 <title>I spent last weekend recording MakerCon Nordic</title>
3101 <link>http://people.skolelinux.org/pere/blog/I_spent_last_weekend_recording_MakerCon_Nordic.html</link>
3102 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/I_spent_last_weekend_recording_MakerCon_Nordic.html</guid>
3103 <pubDate>Thu, 23 Oct 2014 23:00:00 +0200</pubDate>
3104 <description>&lt;p&gt;I spent last weekend at &lt;a href=&quot;http://www.makercon.no/&quot;&gt;Makercon
3105 Nordic&lt;/a&gt;, a great conference and workshop for makers in Norway and
3106 the surrounding countries. I had volunteered on behalf of the
3107 Norwegian Unix Users Group (NUUG) to video record the talks, and we
3108 had a great and exhausting time recording the entire day, two days in
3109 a row. There were only two of us, Hans-Petter and me, and we used the
3110 regular video equipment for NUUG, with a
3111 &lt;a href=&quot;http://dvswitch.alioth.debian.org/wiki/&quot;&gt;dvswitch&lt;/a&gt;, a
3112 camera and a VGA to DV convert box, and mixed video and slides
3113 live.&lt;/p&gt;
3114
3115 &lt;p&gt;Hans-Petter did the post-processing, consisting of uploading the
3116 around 180 GiB of raw video to Youtube, and the result is
3117 &lt;a href=&quot;https://www.youtube.com/user/MakerConNordic/&quot;&gt;now becoming
3118 public&lt;/a&gt; on the MakerConNordic account. The videos have the license
3119 NUUG always use on our recordings, which is
3120 &lt;a href=&quot;http://creativecommons.org/licenses/by-sa/3.0/no/&quot;&gt;Creative
3121 Commons Navngivelse-Del på samme vilkår 3.0 Norge&lt;/a&gt;. Many great
3122 talks available. Check it out! :)&lt;/p&gt;
3123 </description>
3124 </item>
3125
3126 <item>
3127 <title>listadmin, the quick way to moderate mailman lists - nice free software</title>
3128 <link>http://people.skolelinux.org/pere/blog/listadmin__the_quick_way_to_moderate_mailman_lists___nice_free_software.html</link>
3129 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/listadmin__the_quick_way_to_moderate_mailman_lists___nice_free_software.html</guid>
3130 <pubDate>Wed, 22 Oct 2014 20:00:00 +0200</pubDate>
3131 <description>&lt;p&gt;If you ever had to moderate a mailman list, like the ones on
3132 alioth.debian.org, you know the web interface is fairly slow to
3133 operate. First you visit one web page, enter the moderation password
3134 and get a new page shown with a list of all the messages to moderate
3135 and various options for each email address. This take a while for
3136 every list you moderate, and you need to do it regularly to do a good
3137 job as a list moderator. But there is a quick alternative,
3138 &lt;a href=&quot;http://heim.ifi.uio.no/kjetilho/hacks/#listadmin&quot;&gt;the
3139 listadmin program&lt;/a&gt;. It allow you to check lists for new messages
3140 to moderate in a fraction of a second. Here is a test run on two
3141 lists I recently took over:&lt;/p&gt;
3142
3143 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
3144 % time listadmin xiph
3145 fetching data for pkg-xiph-commits@lists.alioth.debian.org ... nothing in queue
3146 fetching data for pkg-xiph-maint@lists.alioth.debian.org ... nothing in queue
3147
3148 real 0m1.709s
3149 user 0m0.232s
3150 sys 0m0.012s
3151 %
3152 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
3153
3154 &lt;p&gt;In 1.7 seconds I had checked two mailing lists and confirmed that
3155 there are no message in the moderation queue. Every morning I
3156 currently moderate 68 mailman lists, and it normally take around two
3157 minutes. When I took over the two pkg-xiph lists above a few days
3158 ago, there were 400 emails waiting in the moderator queue. It took me
3159 less than 15 minutes to process them all using the listadmin
3160 program.&lt;/p&gt;
3161
3162 &lt;p&gt;If you install
3163 &lt;a href=&quot;https://tracker.debian.org/pkg/listadmin&quot;&gt;the listadmin
3164 package&lt;/a&gt; from Debian and create a file &lt;tt&gt;~/.listadmin.ini&lt;/tt&gt;
3165 with content like this, the moderation task is a breeze:&lt;/p&gt;
3166
3167 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
3168 username username@example.org
3169 spamlevel 23
3170 default discard
3171 discard_if_reason &quot;Posting restricted to members only. Remove us from your mail list.&quot;
3172
3173 password secret
3174 adminurl https://{domain}/mailman/admindb/{list}
3175 mailman-list@lists.example.com
3176
3177 password hidden
3178 other-list@otherserver.example.org
3179 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
3180
3181 &lt;p&gt;There are other options to set as well. Check the manual page to
3182 learn the details.&lt;/p&gt;
3183
3184 &lt;p&gt;If you are forced to moderate lists on a mailman installation where
3185 the SSL certificate is self signed or not properly signed by a
3186 generally accepted signing authority, you can set a environment
3187 variable when calling listadmin to disable SSL verification:&lt;/p&gt;
3188
3189 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
3190 PERL_LWP_SSL_VERIFY_HOSTNAME=0 listadmin
3191 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
3192
3193 &lt;p&gt;If you want to moderate a subset of the lists you take care of, you
3194 can provide an argument to the listadmin script like I do in the
3195 initial screen dump (the xiph argument). Using an argument, only
3196 lists matching the argument string will be processed. This make it
3197 quick to accept messages if you notice the moderation request in your
3198 email.&lt;/p&gt;
3199
3200 &lt;p&gt;Without the listadmin program, I would never be the moderator of 68
3201 mailing lists, as I simply do not have time to spend on that if the
3202 process was any slower. The listadmin program have saved me hours of
3203 time I could spend elsewhere over the years. It truly is nice free
3204 software.&lt;/p&gt;
3205
3206 &lt;p&gt;As usual, if you use Bitcoin and want to show your support of my
3207 activities, please send Bitcoin donations to my address
3208 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&amp;label=PetterReinholdtsenBlog&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
3209
3210 &lt;p&gt;Update 2014-10-27: Added missing &#39;username&#39; statement in
3211 configuration example. Also, I&#39;ve been told that the
3212 PERL_LWP_SSL_VERIFY_HOSTNAME=0 setting do not work for everyone. Not
3213 sure why.&lt;/p&gt;
3214 </description>
3215 </item>
3216
3217 <item>
3218 <title>Debian Jessie, PXE and automatic firmware installation</title>
3219 <link>http://people.skolelinux.org/pere/blog/Debian_Jessie__PXE_and_automatic_firmware_installation.html</link>
3220 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Jessie__PXE_and_automatic_firmware_installation.html</guid>
3221 <pubDate>Fri, 17 Oct 2014 14:10:00 +0200</pubDate>
3222 <description>&lt;p&gt;When PXE installing laptops with Debian, I often run into the
3223 problem that the WiFi card require some firmware to work properly.
3224 And it has been a pain to fix this using preseeding in Debian.
3225 Normally something more is needed. But thanks to
3226 &lt;a href=&quot;https://packages.qa.debian.org/i/isenkram.html&quot;&gt;my isenkram
3227 package&lt;/a&gt; and its recent tasksel extension, it has now become easy
3228 to do this using simple preseeding.&lt;/p&gt;
3229
3230 &lt;p&gt;The isenkram-cli package provide tasksel tasks which will install
3231 firmware for the hardware found in the machine (actually, requested by
3232 the kernel modules for the hardware). (It can also install user space
3233 programs supporting the hardware detected, but that is not the focus
3234 of this story.)&lt;/p&gt;
3235
3236 &lt;p&gt;To get this working in the default installation, two preeseding
3237 values are needed. First, the isenkram-cli package must be installed
3238 into the target chroot (aka the hard drive) before tasksel is executed
3239 in the pkgsel step of the debian-installer system. This is done by
3240 preseeding the base-installer/includes debconf value to include the
3241 isenkram-cli package. The package name is next passed to debootstrap
3242 for installation. With the isenkram-cli package in place, tasksel
3243 will automatically use the isenkram tasks to detect hardware specific
3244 packages for the machine being installed and install them, because
3245 isenkram-cli contain tasksel tasks.&lt;/p&gt;
3246
3247 &lt;p&gt;Second, one need to enable the non-free APT repository, because
3248 most firmware unfortunately is non-free. This is done by preseeding
3249 the apt-mirror-setup step. This is unfortunate, but for a lot of
3250 hardware it is the only option in Debian.&lt;/p&gt;
3251
3252 &lt;p&gt;The end result is two lines needed in your preseeding file to get
3253 firmware installed automatically by the installer:&lt;/p&gt;
3254
3255 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
3256 base-installer base-installer/includes string isenkram-cli
3257 apt-mirror-setup apt-setup/non-free boolean true
3258 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
3259
3260 &lt;p&gt;The current version of isenkram-cli in testing/jessie will install
3261 both firmware and user space packages when using this method. It also
3262 do not work well, so use version 0.15 or later. Installing both
3263 firmware and user space packages might give you a bit more than you
3264 want, so I decided to split the tasksel task in two, one for firmware
3265 and one for user space programs. The firmware task is enabled by
3266 default, while the one for user space programs is not. This split is
3267 implemented in the package currently in unstable.&lt;/p&gt;
3268
3269 &lt;p&gt;If you decide to give this a go, please let me know (via email) how
3270 this recipe work for you. :)&lt;/p&gt;
3271
3272 &lt;p&gt;So, I bet you are wondering, how can this work. First and
3273 foremost, it work because tasksel is modular, and driven by whatever
3274 files it find in /usr/lib/tasksel/ and /usr/share/tasksel/. So the
3275 isenkram-cli package place two files for tasksel to find. First there
3276 is the task description file (/usr/share/tasksel/descs/isenkram.desc):&lt;/p&gt;
3277
3278 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
3279 Task: isenkram-packages
3280 Section: hardware
3281 Description: Hardware specific packages (autodetected by isenkram)
3282 Based on the detected hardware various hardware specific packages are
3283 proposed.
3284 Test-new-install: show show
3285 Relevance: 8
3286 Packages: for-current-hardware
3287
3288 Task: isenkram-firmware
3289 Section: hardware
3290 Description: Hardware specific firmware packages (autodetected by isenkram)
3291 Based on the detected hardware various hardware specific firmware
3292 packages are proposed.
3293 Test-new-install: mark show
3294 Relevance: 8
3295 Packages: for-current-hardware-firmware
3296 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
3297
3298 &lt;p&gt;The key parts are Test-new-install which indicate how the task
3299 should be handled and the Packages line referencing to a script in
3300 /usr/lib/tasksel/packages/. The scripts use other scripts to get a
3301 list of packages to install. The for-current-hardware-firmware script
3302 look like this to list relevant firmware for the machine:
3303
3304 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
3305 #!/bin/sh
3306 #
3307 PATH=/usr/sbin:$PATH
3308 export PATH
3309 isenkram-autoinstall-firmware -l
3310 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
3311
3312 &lt;p&gt;With those two pieces in place, the firmware is installed by
3313 tasksel during the normal d-i run. :)&lt;/p&gt;
3314
3315 &lt;p&gt;If you want to test what tasksel will install when isenkram-cli is
3316 installed, run &lt;tt&gt;DEBIAN_PRIORITY=critical tasksel --test
3317 --new-install&lt;/tt&gt; to get the list of packages that tasksel would
3318 install.&lt;/p&gt;
3319
3320 &lt;p&gt;&lt;a href=&quot;https://wiki.debian.org/DebianEdu/&quot;&gt;Debian Edu&lt;/a&gt; will be
3321 pilots in testing this feature, as isenkram is used there now to
3322 install firmware, replacing the earlier scripts.&lt;/p&gt;
3323 </description>
3324 </item>
3325
3326 <item>
3327 <title>Ubuntu used to show the bread prizes at ICA Storo</title>
3328 <link>http://people.skolelinux.org/pere/blog/Ubuntu_used_to_show_the_bread_prizes_at_ICA_Storo.html</link>
3329 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Ubuntu_used_to_show_the_bread_prizes_at_ICA_Storo.html</guid>
3330 <pubDate>Sat, 4 Oct 2014 15:20:00 +0200</pubDate>
3331 <description>&lt;p&gt;Today I came across an unexpected Ubuntu boot screen. Above the
3332 bread shelf on the ICA shop at Storo in Oslo, the grub menu of Ubuntu
3333 with Linux kernel 3.2.0-23 (ie probably version 12.04 LTS) was stuck
3334 on a screen normally showing the bread types and prizes:&lt;/p&gt;
3335
3336 &lt;p align=&quot;center&quot;&gt;&lt;img width=&quot;70%&quot; src=&quot;http://people.skolelinux.org/pere/blog/images/2014-10-04-ubuntu-ica-storo-crop.jpeg&quot;&gt;&lt;/p&gt;
3337
3338 &lt;p&gt;If it had booted as it was supposed to, I would never had known
3339 about this hidden Linux installation. It is interesting what
3340 &lt;a href=&quot;http://revealingerrors.com/&quot;&gt;errors can reveal&lt;/a&gt;.&lt;/p&gt;
3341 </description>
3342 </item>
3343
3344 <item>
3345 <title>New lsdvd release version 0.17 is ready</title>
3346 <link>http://people.skolelinux.org/pere/blog/New_lsdvd_release_version_0_17_is_ready.html</link>
3347 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/New_lsdvd_release_version_0_17_is_ready.html</guid>
3348 <pubDate>Sat, 4 Oct 2014 08:40:00 +0200</pubDate>
3349 <description>&lt;p&gt;The &lt;a href=&quot;https://sourceforge.net/p/lsdvd/&quot;&gt;lsdvd project&lt;/a&gt;
3350 got a new set of developers a few weeks ago, after the original
3351 developer decided to step down and pass the project to fresh blood.
3352 This project is now maintained by Petter Reinholdtsen and Steve
3353 Dibb.&lt;/p&gt;
3354
3355 &lt;p&gt;I just wrapped up
3356 &lt;a href=&quot;https://sourceforge.net/p/lsdvd/mailman/message/32896061/&quot;&gt;a
3357 new lsdvd release&lt;/a&gt;, available in git or from
3358 &lt;a href=&quot;https://sourceforge.net/projects/lsdvd/files/lsdvd/&quot;&gt;the
3359 download page&lt;/a&gt;. This is the changelog dated 2014-10-03 for version
3360 0.17.&lt;/p&gt;
3361
3362 &lt;ul&gt;
3363
3364 &lt;li&gt;Ignore &#39;phantom&#39; audio, subtitle tracks&lt;/li&gt;
3365 &lt;li&gt;Check for garbage in the program chains, which indicate that a track is
3366 non-existant, to work around additional copy protection&lt;/li&gt;
3367 &lt;li&gt;Fix displaying content type for audio tracks, subtitles&lt;/li&gt;
3368 &lt;li&gt;Fix pallete display of first entry&lt;/li&gt;
3369 &lt;li&gt;Fix include orders&lt;/li&gt;
3370 &lt;li&gt;Ignore read errors in titles that would not be displayed anyway&lt;/li&gt;
3371 &lt;li&gt;Fix the chapter count&lt;/li&gt;
3372 &lt;li&gt;Make sure the array size and the array limit used when initialising
3373 the palette size is the same.&lt;/li&gt;
3374 &lt;li&gt;Fix array printing.&lt;/li&gt;
3375 &lt;li&gt;Correct subsecond calculations.&lt;/li&gt;
3376 &lt;li&gt;Add sector information to the output format.&lt;/li&gt;
3377 &lt;li&gt;Clean up code to be closer to ANSI C and compile without warnings
3378 with more GCC compiler warnings.&lt;/li&gt;
3379
3380 &lt;/ul&gt;
3381
3382 &lt;p&gt;This change bring together patches for lsdvd in use in various
3383 Linux and Unix distributions, as well as patches submitted to the
3384 project the last nine years. Please check it out. :)&lt;/p&gt;
3385 </description>
3386 </item>
3387
3388 <item>
3389 <title>How to test Debian Edu Jessie despite some fatal problems with the installer</title>
3390 <link>http://people.skolelinux.org/pere/blog/How_to_test_Debian_Edu_Jessie_despite_some_fatal_problems_with_the_installer.html</link>
3391 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_test_Debian_Edu_Jessie_despite_some_fatal_problems_with_the_installer.html</guid>
3392 <pubDate>Fri, 26 Sep 2014 12:20:00 +0200</pubDate>
3393 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux
3394 project&lt;/a&gt; provide a Linux solution for schools, including a
3395 powerful desktop with education software, a central server providing
3396 web pages, user database, user home directories, central login and PXE
3397 boot of both clients without disk and the installation to install Debian
3398 Edu on machines with disk (and a few other services perhaps to small
3399 to mention here). We in the Debian Edu team are currently working on
3400 the Jessie based version, trying to get everything in shape before the
3401 freeze, to avoid having to maintain our own package repository in the
3402 future. The
3403 &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Status/Jessie&quot;&gt;current
3404 status&lt;/a&gt; can be seen on the Debian wiki, and there is still heaps of
3405 work left. Some fatal problems block testing, breaking the installer,
3406 but it is possible to work around these to get anyway. Here is a
3407 recipe on how to get the installation limping along.&lt;/p&gt;
3408
3409 &lt;p&gt;First, download the test ISO via
3410 &lt;a href=&quot;ftp://ftp.skolelinux.no/cd-edu-testing-nolocal-netinst/debian-edu-amd64-i386-NETINST-1.iso&quot;&gt;ftp&lt;/a&gt;,
3411 &lt;a href=&quot;http://ftp.skolelinux.no/cd-edu-testing-nolocal-netinst/debian-edu-amd64-i386-NETINST-1.iso&quot;&gt;http&lt;/a&gt;
3412 or rsync (use
3413 ftp.skolelinux.org::cd-edu-testing-nolocal-netinst/debian-edu-amd64-i386-NETINST-1.iso).
3414 The ISO build was broken on Tuesday, so we do not get a new ISO every
3415 12 hours or so, but thankfully the ISO we already got we are able to
3416 install with some tweaking.&lt;/p&gt;
3417
3418 &lt;p&gt;When you get to the Debian Edu profile question, go to tty2
3419 (use Alt-Ctrl-F2), run&lt;/p&gt;
3420
3421 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
3422 nano /usr/bin/edu-eatmydata-install
3423 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
3424
3425 &lt;p&gt;and add &#39;exit 0&#39; as the second line, disabling the eatmydata
3426 optimization. Return to the installation, select the profile you want
3427 and continue. Without this change, exim4-config will fail to install
3428 due to a known bug in eatmydata.&lt;/p&gt;
3429
3430 &lt;p&gt;When you get the grub question at the end, answer /dev/sda (or if
3431 this do not work, figure out what your correct value would be. All my
3432 test machines need /dev/sda, so I have no advice if it do not fit
3433 your need.&lt;/p&gt;
3434
3435 &lt;p&gt;If you installed a profile including a graphical desktop, log in as
3436 root after the initial boot from hard drive, and install the
3437 education-desktop-XXX metapackage. XXX can be kde, gnome, lxde, xfce
3438 or mate. If you want several desktop options, install more than one
3439 metapackage. Once this is done, reboot and you should have a working
3440 graphical login screen. This workaround should no longer be needed
3441 once the education-tasks package version 1.801 enter testing in two
3442 days.&lt;/p&gt;
3443
3444 &lt;p&gt;I believe the ISO build will start working on two days when the new
3445 tasksel package enter testing and Steve McIntyre get a chance to
3446 update the debian-cd git repository. The eatmydata, grub and desktop
3447 issues are already fixed in unstable and testing, and should show up
3448 on the ISO as soon as the ISO build start working again. Well the
3449 eatmydata optimization is really just disabled. The proper fix
3450 require an upload by the eatmydata maintainer applying the patch
3451 provided in bug &lt;a href=&quot;https://bugs.debian.org/702711&quot;&gt;#702711&lt;/a&gt;.
3452 The rest have proper fixes in unstable.&lt;/p&gt;
3453
3454 &lt;p&gt;I hope this get you going with the installation testing, as we are
3455 quickly running out of time trying to get our Jessie based
3456 installation ready before the distribution freeze in a month.&lt;/p&gt;
3457 </description>
3458 </item>
3459
3460 <item>
3461 <title>Suddenly I am the new upstream of the lsdvd command line tool</title>
3462 <link>http://people.skolelinux.org/pere/blog/Suddenly_I_am_the_new_upstream_of_the_lsdvd_command_line_tool.html</link>
3463 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Suddenly_I_am_the_new_upstream_of_the_lsdvd_command_line_tool.html</guid>
3464 <pubDate>Thu, 25 Sep 2014 11:20:00 +0200</pubDate>
3465 <description>&lt;p&gt;I use the &lt;a href=&quot;https://sourceforge.net/p/lsdvd/&quot;&gt;lsdvd tool&lt;/a&gt;
3466 to handle my fairly large DVD collection. It is a nice command line
3467 tool to get details about a DVD, like title, tracks, track length,
3468 etc, in XML, Perl or human readable format. But lsdvd have not seen
3469 any new development since 2006 and had a few irritating bugs affecting
3470 its use with some DVDs. Upstream seemed to be dead, and in January I
3471 sent a small probe asking for a version control repository for the
3472 project, without any reply. But I use it regularly and would like to
3473 get &lt;a href=&quot;https://packages.qa.debian.org/lsdvd&quot;&gt;an updated version
3474 into Debian&lt;/a&gt;. So two weeks ago I tried harder to get in touch with
3475 the project admin, and after getting a reply from him explaining that
3476 he was no longer interested in the project, I asked if I could take
3477 over. And yesterday, I became project admin.&lt;/p&gt;
3478
3479 &lt;p&gt;I&#39;ve been in touch with a Gentoo developer and the Debian
3480 maintainer interested in joining forces to maintain the upstream
3481 project, and I hope we can get a new release out fairly quickly,
3482 collecting the patches spread around on the internet into on place.
3483 I&#39;ve added the relevant Debian patches to the freshly created git
3484 repository, and expect the Gentoo patches to make it too. If you got
3485 a DVD collection and care about command line tools, check out
3486 &lt;a href=&quot;https://sourceforge.net/p/lsdvd/git/ci/master/tree/&quot;&gt;the git source&lt;/a&gt; and join
3487 &lt;a href=&quot;https://sourceforge.net/p/lsdvd/mailman/&quot;&gt;the project mailing
3488 list&lt;/a&gt;. :)&lt;/p&gt;
3489 </description>
3490 </item>
3491
3492 <item>
3493 <title>Speeding up the Debian installer using eatmydata and dpkg-divert</title>
3494 <link>http://people.skolelinux.org/pere/blog/Speeding_up_the_Debian_installer_using_eatmydata_and_dpkg_divert.html</link>
3495 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Speeding_up_the_Debian_installer_using_eatmydata_and_dpkg_divert.html</guid>
3496 <pubDate>Tue, 16 Sep 2014 14:00:00 +0200</pubDate>
3497 <description>&lt;p&gt;The &lt;a href=&quot;https://www.debian.org/&quot;&gt;Debian&lt;/a&gt; installer could be
3498 a lot quicker. When we install more than 2000 packages in
3499 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux / Debian Edu&lt;/a&gt; using
3500 tasksel in the installer, unpacking the binary packages take forever.
3501 A part of the slow I/O issue was discussed in
3502 &lt;a href=&quot;https://bugs.debian.org/613428&quot;&gt;bug #613428&lt;/a&gt; about too
3503 much file system sync-ing done by dpkg, which is the package
3504 responsible for unpacking the binary packages. Other parts (like code
3505 executed by postinst scripts) might also sync to disk during
3506 installation. All this sync-ing to disk do not really make sense to
3507 me. If the machine crash half-way through, I start over, I do not try
3508 to salvage the half installed system. So the failure sync-ing is
3509 supposed to protect against, hardware or system crash, is not really
3510 relevant while the installer is running.&lt;/p&gt;
3511
3512 &lt;p&gt;A few days ago, I thought of a way to get rid of all the file
3513 system sync()-ing in a fairly non-intrusive way, without the need to
3514 change the code in several packages. The idea is not new, but I have
3515 not heard anyone propose the approach using dpkg-divert before. It
3516 depend on the small and clever package
3517 &lt;a href=&quot;https://packages.qa.debian.org/eatmydata&quot;&gt;eatmydata&lt;/a&gt;, which
3518 uses LD_PRELOAD to replace the system functions for syncing data to
3519 disk with functions doing nothing, thus allowing programs to live
3520 dangerous while speeding up disk I/O significantly. Instead of
3521 modifying the implementation of dpkg, apt and tasksel (which are the
3522 packages responsible for selecting, fetching and installing packages),
3523 it occurred to me that we could just divert the programs away, replace
3524 them with a simple shell wrapper calling
3525 &quot;eatmydata&amp;nbsp;$program&amp;nbsp;$@&quot;, to get the same effect.
3526 Two days ago I decided to test the idea, and wrapped up a simple
3527 implementation for the Debian Edu udeb.&lt;/p&gt;
3528
3529 &lt;p&gt;The effect was stunning. In my first test it reduced the running
3530 time of the pkgsel step (installing tasks) from 64 to less than 44
3531 minutes (20 minutes shaved off the installation) on an old Dell
3532 Latitude D505 machine. I am not quite sure what the optimised time
3533 would have been, as I messed up the testing a bit, causing the debconf
3534 priority to get low enough for two questions to pop up during
3535 installation. As soon as I saw the questions I moved the installation
3536 along, but do not know how long the question were holding up the
3537 installation. I did some more measurements using Debian Edu Jessie,
3538 and got these results. The time measured is the time stamp in
3539 /var/log/syslog between the &quot;pkgsel: starting tasksel&quot; and the
3540 &quot;pkgsel: finishing up&quot; lines, if you want to do the same measurement
3541 yourself. In Debian Edu, the tasksel dialog do not show up, and the
3542 timing thus do not depend on how quickly the user handle the tasksel
3543 dialog.&lt;/p&gt;
3544
3545 &lt;p&gt;&lt;table&gt;
3546
3547 &lt;tr&gt;
3548 &lt;th&gt;Machine/setup&lt;/th&gt;
3549 &lt;th&gt;Original tasksel&lt;/th&gt;
3550 &lt;th&gt;Optimised tasksel&lt;/th&gt;
3551 &lt;th&gt;Reduction&lt;/th&gt;
3552 &lt;/tr&gt;
3553
3554 &lt;tr&gt;
3555 &lt;td&gt;Latitude D505 Main+LTSP LXDE&lt;/td&gt;
3556 &lt;td&gt;64 min (07:46-08:50)&lt;/td&gt;
3557 &lt;td&gt;&lt;44 min (11:27-12:11)&lt;/td&gt;
3558 &lt;td&gt;&gt;20 min 18%&lt;/td&gt;
3559 &lt;/tr&gt;
3560
3561 &lt;tr&gt;
3562 &lt;td&gt;Latitude D505 Roaming LXDE&lt;/td&gt;
3563 &lt;td&gt;57 min (08:48-09:45)&lt;/td&gt;
3564 &lt;td&gt;34 min (07:43-08:17)&lt;/td&gt;
3565 &lt;td&gt;23 min 40%&lt;/td&gt;
3566 &lt;/tr&gt;
3567
3568 &lt;tr&gt;
3569 &lt;td&gt;Latitude D505 Minimal&lt;/td&gt;
3570 &lt;td&gt;22 min (10:37-10:59)&lt;/td&gt;
3571 &lt;td&gt;11 min (11:16-11:27)&lt;/td&gt;
3572 &lt;td&gt;11 min 50%&lt;/td&gt;
3573 &lt;/tr&gt;
3574
3575 &lt;tr&gt;
3576 &lt;td&gt;Thinkpad X200 Minimal&lt;/td&gt;
3577 &lt;td&gt;6 min (08:19-08:25)&lt;/td&gt;
3578 &lt;td&gt;4 min (08:04-08:08)&lt;/td&gt;
3579 &lt;td&gt;2 min 33%&lt;/td&gt;
3580 &lt;/tr&gt;
3581
3582 &lt;tr&gt;
3583 &lt;td&gt;Thinkpad X200 Roaming KDE&lt;/td&gt;
3584 &lt;td&gt;19 min (09:21-09:40)&lt;/td&gt;
3585 &lt;td&gt;15 min (10:25-10:40)&lt;/td&gt;
3586 &lt;td&gt;4 min 21%&lt;/td&gt;
3587 &lt;/tr&gt;
3588
3589 &lt;/table&gt;&lt;/p&gt;
3590
3591 &lt;p&gt;The test is done using a netinst ISO on a USB stick, so some of the
3592 time is spent downloading packages. The connection to the Internet
3593 was 100Mbit/s during testing, so downloading should not be a
3594 significant factor in the measurement. Download typically took a few
3595 seconds to a few minutes, depending on the amount of packages being
3596 installed.&lt;/p&gt;
3597
3598 &lt;p&gt;The speedup is implemented by using two hooks in
3599 &lt;a href=&quot;https://www.debian.org/devel/debian-installer/&quot;&gt;Debian
3600 Installer&lt;/a&gt;, the pre-pkgsel.d hook to set up the diverts, and the
3601 finish-install.d hook to remove the divert at the end of the
3602 installation. I picked the pre-pkgsel.d hook instead of the
3603 post-base-installer.d hook because I test using an ISO without the
3604 eatmydata package included, and the post-base-installer.d hook in
3605 Debian Edu can only operate on packages included in the ISO. The
3606 negative effect of this is that I am unable to activate this
3607 optimization for the kernel installation step in d-i. If the code is
3608 moved to the post-base-installer.d hook, the speedup would be larger
3609 for the entire installation.&lt;/p&gt;
3610
3611 &lt;p&gt;I&#39;ve implemented this in the
3612 &lt;a href=&quot;https://packages.qa.debian.org/debian-edu-install&quot;&gt;debian-edu-install&lt;/a&gt;
3613 git repository, and plan to provide the optimization as part of the
3614 Debian Edu installation. If you want to test this yourself, you can
3615 create two files in the installer (or in an udeb). One shell script
3616 need do go into /usr/lib/pre-pkgsel.d/, with content like this:&lt;/p&gt;
3617
3618 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
3619 #!/bin/sh
3620 set -e
3621 . /usr/share/debconf/confmodule
3622 info() {
3623 logger -t my-pkgsel &quot;info: $*&quot;
3624 }
3625 error() {
3626 logger -t my-pkgsel &quot;error: $*&quot;
3627 }
3628 override_install() {
3629 apt-install eatmydata || true
3630 if [ -x /target/usr/bin/eatmydata ] ; then
3631 for bin in dpkg apt-get aptitude tasksel ; do
3632 file=/usr/bin/$bin
3633 # Test that the file exist and have not been diverted already.
3634 if [ -f /target$file ] ; then
3635 info &quot;diverting $file using eatmydata&quot;
3636 printf &quot;#!/bin/sh\neatmydata $bin.distrib \&quot;\$@\&quot;\n&quot; \
3637 &gt; /target$file.edu
3638 chmod 755 /target$file.edu
3639 in-target dpkg-divert --package debian-edu-config \
3640 --rename --quiet --add $file
3641 ln -sf ./$bin.edu /target$file
3642 else
3643 error &quot;unable to divert $file, as it is missing.&quot;
3644 fi
3645 done
3646 else
3647 error &quot;unable to find /usr/bin/eatmydata after installing the eatmydata pacage&quot;
3648 fi
3649 }
3650
3651 override_install
3652 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
3653
3654 &lt;p&gt;To clean up, another shell script should go into
3655 /usr/lib/finish-install.d/ with code like this:
3656
3657 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
3658 #! /bin/sh -e
3659 . /usr/share/debconf/confmodule
3660 error() {
3661 logger -t my-finish-install &quot;error: $@&quot;
3662 }
3663 remove_install_override() {
3664 for bin in dpkg apt-get aptitude tasksel ; do
3665 file=/usr/bin/$bin
3666 if [ -x /target$file.edu ] ; then
3667 rm /target$file
3668 in-target dpkg-divert --package debian-edu-config \
3669 --rename --quiet --remove $file
3670 rm /target$file.edu
3671 else
3672 error &quot;Missing divert for $file.&quot;
3673 fi
3674 done
3675 sync # Flush file buffers before continuing
3676 }
3677
3678 remove_install_override
3679 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
3680
3681 &lt;p&gt;In Debian Edu, I placed both code fragments in a separate script
3682 edu-eatmydata-install and call it from the pre-pkgsel.d and
3683 finish-install.d scripts.&lt;/p&gt;
3684
3685 &lt;p&gt;By now you might ask if this change should get into the normal
3686 Debian installer too? I suspect it should, but am not sure the
3687 current debian-installer coordinators find it useful enough. It also
3688 depend on the side effects of the change. I&#39;m not aware of any, but I
3689 guess we will see if the change is safe after some more testing.
3690 Perhaps there is some package in Debian depending on sync() and
3691 fsync() having effect? Perhaps it should go into its own udeb, to
3692 allow those of us wanting to enable it to do so without affecting
3693 everyone.&lt;/p&gt;
3694
3695 &lt;p&gt;Update 2014-09-24: Since a few days ago, enabling this optimization
3696 will break installation of all programs using gnutls because of
3697 &lt;a href=&quot;https://bugs.debian.org/702711&quot;&gt;bug #702711&lt;/a&gt;. An updated
3698 eatmydata package in Debian will solve it.&lt;/p&gt;
3699
3700 &lt;p&gt;Update 2014-10-17: The bug mentioned above is fixed in testing and
3701 the optimization work again. And I have discovered that the
3702 dpkg-divert trick is not really needed and implemented a slightly
3703 simpler approach as part of the debian-edu-install package. See
3704 tools/edu-eatmydata-install in the source package.&lt;/p&gt;
3705
3706 &lt;p&gt;Update 2014-11-11: Unfortunately, a new
3707 &lt;a href=&quot;http://bugs.debian.org/765738&quot;&gt;bug #765738&lt;/a&gt; in eatmydata only
3708 triggering on i386 made it into testing, and broke this installation
3709 optimization again. If &lt;a href=&quot;http://bugs.debian.org/768893&quot;&gt;unblock
3710 request 768893&lt;/a&gt; is accepted, it should be working again.&lt;/p&gt;
3711 </description>
3712 </item>
3713
3714 <item>
3715 <title>Good bye subkeys.pgp.net, welcome pool.sks-keyservers.net</title>
3716 <link>http://people.skolelinux.org/pere/blog/Good_bye_subkeys_pgp_net__welcome_pool_sks_keyservers_net.html</link>
3717 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Good_bye_subkeys_pgp_net__welcome_pool_sks_keyservers_net.html</guid>
3718 <pubDate>Wed, 10 Sep 2014 13:10:00 +0200</pubDate>
3719 <description>&lt;p&gt;Yesterday, I had the pleasure of attending a talk with the
3720 &lt;a href=&quot;http://www.nuug.no/&quot;&gt;Norwegian Unix User Group&lt;/a&gt; about
3721 &lt;a href=&quot;http://www.nuug.no/aktiviteter/20140909-sks-keyservers/&quot;&gt;the
3722 OpenPGP keyserver pool sks-keyservers.net&lt;/a&gt;, and was very happy to
3723 learn that there is a large set of publicly available key servers to
3724 use when looking for peoples public key. So far I have used
3725 subkeys.pgp.net, and some times wwwkeys.nl.pgp.net when the former
3726 were misbehaving, but those days are ended. The servers I have used
3727 up until yesterday have been slow and some times unavailable. I hope
3728 those problems are gone now.&lt;/p&gt;
3729
3730 &lt;p&gt;Behind the round robin DNS entry of the
3731 &lt;a href=&quot;https://sks-keyservers.net/&quot;&gt;sks-keyservers.net&lt;/a&gt; service
3732 there is a pool of more than 100 keyservers which are checked every
3733 day to ensure they are well connected and up to date. It must be
3734 better than what I have used so far. :)&lt;/p&gt;
3735
3736 &lt;p&gt;Yesterdays speaker told me that the service is the default
3737 keyserver provided by the default configuration in GnuPG, but this do
3738 not seem to be used in Debian. Perhaps it should?&lt;/p&gt;
3739
3740 &lt;p&gt;Anyway, I&#39;ve updated my ~/.gnupg/options file to now include this
3741 line:&lt;/p&gt;
3742
3743 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
3744 keyserver pool.sks-keyservers.net
3745 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
3746
3747 &lt;p&gt;With GnuPG version 2 one can also locate the keyserver using SRV
3748 entries in DNS. Just for fun, I did just that at work, so now every
3749 user of GnuPG at the University of Oslo should find a OpenGPG
3750 keyserver automatically should their need it:&lt;/p&gt;
3751
3752 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
3753 % host -t srv _pgpkey-http._tcp.uio.no
3754 _pgpkey-http._tcp.uio.no has SRV record 0 100 11371 pool.sks-keyservers.net.
3755 %
3756 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
3757
3758 &lt;p&gt;Now if only
3759 &lt;a href=&quot;http://ietfreport.isoc.org/idref/draft-shaw-openpgp-hkp/&quot;&gt;the
3760 HKP lookup protocol&lt;/a&gt; supported finding signature paths, I would be
3761 very happy. It can look up a given key or search for a user ID, but I
3762 normally do not want that, but to find a trust path from my key to
3763 another key. Given a user ID or key ID, I would like to find (and
3764 download) the keys representing a signature path from my key to the
3765 key in question, to be able to get a trust path between the two keys.
3766 This is as far as I can tell not possible today. Perhaps something
3767 for a future version of the protocol?&lt;/p&gt;
3768 </description>
3769 </item>
3770
3771 <item>
3772 <title>Do you need an agreement with MPEG-LA to publish and broadcast H.264 video in Norway?</title>
3773 <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>
3774 <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>
3775 <pubDate>Mon, 25 Aug 2014 22:10:00 +0200</pubDate>
3776 <description>&lt;p&gt;Two years later, I am still not sure if it is legal here in Norway
3777 to use or publish a video in H.264 or MPEG4 format edited by the
3778 commercially licensed video editors, without limiting the use to
3779 create &quot;personal&quot; or &quot;non-commercial&quot; videos or get a license
3780 agreement with &lt;a href=&quot;http://www.mpegla.com&quot;&gt;MPEG LA&lt;/a&gt;. If one
3781 want to publish and broadcast video in a non-personal or commercial
3782 setting, it might be that those tools can not be used, or that video
3783 format can not be used, without breaking their copyright license. I
3784 am not sure.
3785 &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
3786 then&lt;/a&gt;, I found that the copyright license terms for Adobe Premiere
3787 and Apple Final Cut Pro both specified that one could not use the
3788 program to produce anything else without a patent license from MPEG
3789 LA. The issue is not limited to those two products, though. Other
3790 much used products like those from Avid and Sorenson Media have terms
3791 of use are similar to those from Adobe and Apple. The complicating
3792 factor making me unsure if those terms have effect in Norway or not is
3793 that the patents in question are not valid in Norway, but copyright
3794 licenses are.&lt;/p&gt;
3795
3796 &lt;p&gt;These are the terms for Avid Artist Suite, according to their
3797 &lt;a href=&quot;http://www.avid.com/US/about-avid/legal-notices/legal-enduserlicense2&quot;&gt;published
3798 end user&lt;/a&gt;
3799 &lt;a href=&quot;http://www.avid.com/static/resources/common/documents/corporate/LICENSE.pdf&quot;&gt;license
3800 text&lt;/a&gt; (converted to lower case text for easier reading):&lt;/p&gt;
3801
3802 &lt;p&gt;&lt;blockquote&gt;
3803 &lt;p&gt;18.2. MPEG-4. MPEG-4 technology may be included with the
3804 software. MPEG LA, L.L.C. requires this notice: &lt;/p&gt;
3805
3806 &lt;p&gt;This product is licensed under the MPEG-4 visual patent portfolio
3807 license for the personal and non-commercial use of a consumer for (i)
3808 encoding video in compliance with the MPEG-4 visual standard (“MPEG-4
3809 video”) and/or (ii) decoding MPEG-4 video that was encoded by a
3810 consumer engaged in a personal and non-commercial activity and/or was
3811 obtained from a video provider licensed by MPEG LA to provide MPEG-4
3812 video. No license is granted or shall be implied for any other
3813 use. Additional information including that relating to promotional,
3814 internal and commercial uses and licensing may be obtained from MPEG
3815 LA, LLC. See http://www.mpegla.com. This product is licensed under
3816 the MPEG-4 systems patent portfolio license for encoding in compliance
3817 with the MPEG-4 systems standard, except that an additional license
3818 and payment of royalties are necessary for encoding in connection with
3819 (i) data stored or replicated in physical media which is paid for on a
3820 title by title basis and/or (ii) data which is paid for on a title by
3821 title basis and is transmitted to an end user for permanent storage
3822 and/or use, such additional license may be obtained from MPEG LA,
3823 LLC. See http://www.mpegla.com for additional details.&lt;/p&gt;
3824
3825 &lt;p&gt;18.3. H.264/AVC. H.264/AVC technology may be included with the
3826 software. MPEG LA, L.L.C. requires this notice:&lt;/p&gt;
3827
3828 &lt;p&gt;This product is licensed under the AVC patent portfolio license for
3829 the personal use of a consumer or other uses in which it does not
3830 receive remuneration to (i) encode video in compliance with the AVC
3831 standard (“AVC video”) and/or (ii) decode AVC video that was encoded
3832 by a consumer engaged in a personal activity and/or was obtained from
3833 a video provider licensed to provide AVC video. No license is granted
3834 or shall be implied for any other use. Additional information may be
3835 obtained from MPEG LA, L.L.C. See http://www.mpegla.com.&lt;/p&gt;
3836 &lt;/blockquote&gt;&lt;/p&gt;
3837
3838 &lt;p&gt;Note the requirement that the videos created can only be used for
3839 personal or non-commercial purposes.&lt;/p&gt;
3840
3841 &lt;p&gt;The Sorenson Media software have
3842 &lt;a href=&quot;http://www.sorensonmedia.com/terms/&quot;&gt;similar terms&lt;/a&gt;:&lt;/p&gt;
3843
3844 &lt;p&gt;&lt;blockquote&gt;
3845
3846 &lt;p&gt;With respect to a license from Sorenson pertaining to MPEG-4 Video
3847 Decoders and/or Encoders: Any such product is licensed under the
3848 MPEG-4 visual patent portfolio license for the personal and
3849 non-commercial use of a consumer for (i) encoding video in compliance
3850 with the MPEG-4 visual standard (“MPEG-4 video”) and/or (ii) decoding
3851 MPEG-4 video that was encoded by a consumer engaged in a personal and
3852 non-commercial activity and/or was obtained from a video provider
3853 licensed by MPEG LA to provide MPEG-4 video. No license is granted or
3854 shall be implied for any other use. Additional information including
3855 that relating to promotional, internal and commercial uses and
3856 licensing may be obtained from MPEG LA, LLC. See
3857 http://www.mpegla.com.&lt;/p&gt;
3858
3859 &lt;p&gt;With respect to a license from Sorenson pertaining to MPEG-4
3860 Consumer Recorded Data Encoder, MPEG-4 Systems Internet Data Encoder,
3861 MPEG-4 Mobile Data Encoder, and/or MPEG-4 Unique Use Encoder: Any such
3862 product is licensed under the MPEG-4 systems patent portfolio license
3863 for encoding in compliance with the MPEG-4 systems standard, except
3864 that an additional license and payment of royalties are necessary for
3865 encoding in connection with (i) data stored or replicated in physical
3866 media which is paid for on a title by title basis and/or (ii) data
3867 which is paid for on a title by title basis and is transmitted to an
3868 end user for permanent storage and/or use. Such additional license may
3869 be obtained from MPEG LA, LLC. See http://www.mpegla.com for
3870 additional details.&lt;/p&gt;
3871
3872 &lt;/blockquote&gt;&lt;/p&gt;
3873
3874 &lt;p&gt;Some free software like
3875 &lt;a href=&quot;https://handbrake.fr/&quot;&gt;Handbrake&lt;/A&gt; and
3876 &lt;a href=&quot;http://ffmpeg.org/&quot;&gt;FFMPEG&lt;/a&gt; uses GPL/LGPL licenses and do
3877 not have any such terms included, so for those, there is no
3878 requirement to limit the use to personal and non-commercial.&lt;/p&gt;
3879 </description>
3880 </item>
3881
3882 <item>
3883 <title>Debian Edu interview: Bernd Zeitzen</title>
3884 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Bernd_Zeitzen.html</link>
3885 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Bernd_Zeitzen.html</guid>
3886 <pubDate>Thu, 31 Jul 2014 08:30:00 +0200</pubDate>
3887 <description>&lt;p&gt;The complete and free “out of the box” software solution for
3888 schools, &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
3889 Skolelinux&lt;/a&gt;, is used quite a lot in Germany, and one of the people
3890 involved is Bernd Zeitzen, who show up on the project mailing lists
3891 from time to time with interesting questions and tips on how to adjust
3892 the setup. I managed to interview him this summer.&lt;/p&gt;
3893
3894 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
3895
3896 &lt;p&gt;My name is Bernd Zeitzen and I&#39;m married with Hedda, a self
3897 employed physiotherapist. My former profession is tool maker, but I
3898 haven&#39;t worked for 30 years in this job. 30 years ago I started to
3899 support my wife and become her officeworker and a few years later the
3900 administrator for a small computer network, today based on Ubuntu
3901 Server (Samba, OpenVPN). For her daily work she has to use Windows
3902 Desktops because the software she needs to organize her business only
3903 works with Windows . :-(&lt;/p&gt;
3904
3905 &lt;p&gt;In 1988 we started with one PC and DOS, then I learned to use
3906 Windows 98, 2000, XP, …, 8, Ubuntu, MacOSX. Today we are running a
3907 Linux server with 6 Windows clients and 10 persons (teacher of
3908 children with special needs, speech therapist, occupational therapist,
3909 psychologist and officeworkers) using our Samba shares via OpenVPN to
3910 work with the documentations of our patients.&lt;/p&gt;
3911
3912 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
3913 project?&lt;/strong&gt;&lt;/p&gt;
3914
3915 &lt;p&gt;Two years ago a friend of mine asked me, if I want to get a job in
3916 his school (&lt;a href=&quot;http://www.gymnasium-harsewinkel.de/&quot;&gt;Gymnasium
3917 Harsewinkel&lt;/a&gt;). They started with Skolelinux / Debian Edu and they
3918 were looking for people to give support to the teachers using the
3919 software and the network and teaching the pupils increasing their
3920 computer skills in optional lessons. I&#39;m spending 4-6 hours a week
3921 with this job.&lt;/p&gt;
3922
3923 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
3924 Edu?&lt;/strong&gt;&lt;/p&gt;
3925
3926 &lt;p&gt;The independence.&lt;/p&gt;
3927
3928 &lt;p&gt;First: Every person is allowed to use, share and develop the
3929 software. Even if you are poor, you are allowed to use the software
3930 included in Skolelinux/Debian Edu and all the other Free Software.&lt;/p&gt;
3931
3932 &lt;p&gt;Second: The software runs on old machines and this gives us the
3933 possibility to recycle computers, weeded out from offices. The
3934 servers and desktops are running for more than two years and they are
3935 working reliable. &lt;/p&gt;
3936
3937 &lt;p&gt;We have two servers (one tjener and one terminal server), 45
3938 workstations in three classrooms and seven laptops as a mobile
3939 solution for all classrooms. These machines are all booting from the
3940 terminal server. In the moment we are installing 30 laptops as mobile
3941 workstations. Then the pupils have the possibility to work with these
3942 machines in their classrooms. Internet access is realized by a WLAN
3943 router, connected to the schools network. This is all done without a
3944 dedicated system administrator or a computer science teacher.&lt;/p&gt;
3945
3946 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
3947 Edu?&lt;/strong&gt;&lt;/p&gt;
3948
3949 &lt;p&gt;Teachers and pupils are Windows users. &amp;lt;Irony on&amp;gt; And Linux
3950 isn&#39;t cool. It&#39;s software for freaks using the command line. &amp;lt;Irony
3951 off&amp;gt; They don&#39;t realize the stability of the system. &lt;/p&gt;
3952
3953 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
3954
3955 &lt;p&gt;Firefox, Thunderbird, LibreOffice, Ubuntu Server 12.04 (Samba,
3956 Apache, MySQL, Joomla!, … and Skolelinux / Debian Edu)&lt;/p&gt;
3957
3958 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
3959 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
3960
3961 &lt;p&gt;In Germany we have the situation: every school is free to decide
3962 which software they want to use. This decision is influenced by
3963 teachers who learned to use Windows and MS Office. They buy a PC with
3964 Windows preinstalled and an additional testing version of MS
3965 Office. They don&#39;t know about the possibility to use Free Software
3966 instead. Another problem are the publisher of school books. They
3967 develop their software, added to the school books, for Windows.&lt;/p&gt;
3968 </description>
3969 </item>
3970
3971 <item>
3972 <title>98.6 percent done with the Norwegian draft translation of Free Culture</title>
3973 <link>http://people.skolelinux.org/pere/blog/98_6_percent_done_with_the_Norwegian_draft_translation_of_Free_Culture.html</link>
3974 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/98_6_percent_done_with_the_Norwegian_draft_translation_of_Free_Culture.html</guid>
3975 <pubDate>Wed, 23 Jul 2014 22:40:00 +0200</pubDate>
3976 <description>&lt;p&gt;This summer I finally had time to continue working on the Norwegian
3977 &lt;a href=&quot;http://www.docbook.org/&quot;&gt;docbook&lt;/a&gt; version of the 2004 book
3978 &lt;a href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; by Lawrence Lessig,
3979 to get a Norwegian text explaining the problems with todays copyright
3980 law. Yesterday, I finally completed translated the book text. There
3981 are still some foot/end notes left to translate, the colophon page
3982 need to be rewritten, and a few words and phrases still need to be
3983 translated, but the Norwegian text is ready for the first proof
3984 reading. :) More spell checking is needed, and several illustrations
3985 need to be cleaned up. The work stopped up because I had to give
3986 priority to other projects the last year, and the progress graph of
3987 the translation show this very well:&lt;/p&gt;
3988
3989 &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;
3990
3991 &lt;p&gt;If you want to read the result, check out the
3992 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;
3993 project pages and the
3994 &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;,
3995 &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;
3996 and HTML version available in the
3997 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig/tree/master/archive&quot;&gt;archive
3998 directory&lt;/a&gt;.&lt;/p&gt;
3999
4000 &lt;p&gt;Please report typos, bugs and improvements to the github project if
4001 you find any.&lt;/p&gt;
4002 </description>
4003 </item>
4004
4005 <item>
4006 <title>From English wiki to translated PDF and epub via Docbook</title>
4007 <link>http://people.skolelinux.org/pere/blog/From_English_wiki_to_translated_PDF_and_epub_via_Docbook.html</link>
4008 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/From_English_wiki_to_translated_PDF_and_epub_via_Docbook.html</guid>
4009 <pubDate>Tue, 17 Jun 2014 11:30:00 +0200</pubDate>
4010 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux
4011 project&lt;/a&gt; provide an instruction manual for teachers, system
4012 administrators and other users that contain useful tips for setting up
4013 and maintaining a Debian Edu installation. This text is about how the
4014 text processing of this manual is handled in the project.&lt;/p&gt;
4015
4016 &lt;p&gt;One goal of the project is to provide information in the native
4017 language of its users, and for this we need to handle translations.
4018 But we also want to make sure each language contain the same
4019 information, so for this we need a good way to keep the translations
4020 in sync. And we want it to be easy for our users to improve the
4021 documentation, avoiding the need to learn special formats or tools to
4022 contribute, and the obvious way to do this is to make it possible to
4023 edit the documentation using a web browser. We also want it to be
4024 easy for translators to keep the translation up to date, and give them
4025 help in figuring out what need to be translated. Here is the list of
4026 tools and the process we have found trying to reach all these
4027 goals.&lt;/p&gt;
4028
4029 &lt;p&gt;We maintain the authoritative source of our manual in the
4030 &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Documentation/Wheezy/&quot;&gt;Debian
4031 wiki&lt;/a&gt;, as several wiki pages written in English. It consist of one
4032 front page with references to the different chapters, several pages
4033 for each chapter, and finally one &quot;collection page&quot; gluing all the
4034 chapters together into one large web page (aka
4035 &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Documentation/Wheezy/AllInOne&quot;&gt;the
4036 AllInOne page&lt;/a&gt;). The AllInOne page is the one used for further
4037 processing and translations. Thanks to the fact that the
4038 &lt;a href=&quot;http://moinmo.in/&quot;&gt;MoinMoin&lt;/a&gt; installation on
4039 wiki.debian.org support exporting pages in
4040 &lt;a href=&quot;http://www.docbook.org/&quot;&gt;the Docbook format&lt;/a&gt;, we can fetch
4041 the list of pages to export using the raw version of the AllInOne
4042 page, loop over each of them to generate a Docbook XML version of the
4043 manual. This process also download images and transform image
4044 references to use the locally downloaded images. The generated
4045 Docbook XML files are slightly broken, so some post-processing is done
4046 using the &lt;tt&gt;documentation/scripts/get_manual&lt;/tt&gt; program, and the
4047 result is a nice Docbook XML file (debian-edu-wheezy-manual.xml) and
4048 a handfull of images. The XML file can now be used to generate PDF, HTML
4049 and epub versions of the English manual. This is the basic step of
4050 our process, making PDF (using dblatex), HTML (using xsltproc) and
4051 epub (using dbtoepub) version from Docbook XML, and the resulting files
4052 are placed in the debian-edu-doc-en binary package.&lt;/p&gt;
4053
4054 &lt;p&gt;But English documentation is not enough for us. We want translated
4055 documentation too, and we want to make it easy for translators to
4056 track the English original. For this we use the
4057 &lt;a href=&quot;http://packages.qa.debian.org/p/poxml.html&quot;&gt;poxml&lt;/a&gt; package,
4058 which allow us to transform the English Docbook XML file into a
4059 translation file (a .pot file), usable with the normal gettext based
4060 translation tools used by those translating free software. The pot
4061 file is used to create and maintain translation files (several .po
4062 files), which the translations update with the native language
4063 translations of all titles, paragraphs and blocks of text in the
4064 original. The next step is combining the original English Docbook XML
4065 and the translation file (say debian-edu-wheezy-manual.nb.po), to
4066 create a translated Docbook XML file (in this case
4067 debian-edu-wheezy-manual.nb.xml). This translated (or partly
4068 translated, if the translation is not complete) Docbook XML file can
4069 then be used like the original to create a PDF, HTML and epub version
4070 of the documentation.&lt;/p&gt;
4071
4072 &lt;p&gt;The translators use different tools to edit the .po files. We
4073 recommend using
4074 &lt;a href=&quot;http://www.kde.org/applications/development/lokalize/&quot;&gt;lokalize&lt;/a&gt;,
4075 while some use emacs and vi, others can use web based editors like
4076 &lt;a href=&quot;http://pootle.translatehouse.org/&quot;&gt;Poodle&lt;/a&gt; or
4077 &lt;a href=&quot;https://www.transifex.com/&quot;&gt;Transifex&lt;/a&gt;. All we care about
4078 is where the .po file end up, in our git repository. Updated
4079 translations can either be committed directly to git, or submitted as
4080 &lt;a href=&quot;https://bugs.debian.org/src:debian-edu-doc&quot;&gt;bug reports
4081 against the debian-edu-doc package&lt;/a&gt;.&lt;/p&gt;
4082
4083 &lt;p&gt;One challenge is images, which both might need to be translated (if
4084 they show translated user applications), and are needed in different
4085 formats when creating PDF and HTML versions (epub is a HTML version in
4086 this regard). For this we transform the original PNG images to the
4087 needed density and format during build, and have a way to provide
4088 translated images by storing translated versions in
4089 images/$LANGUAGECODE/. I am a bit unsure about the details here. The
4090 package maintainers know more.&lt;/p&gt;
4091
4092 &lt;p&gt;If you wonder what the result look like, we provide
4093 &lt;a href=&quot;http://maintainer.skolelinux.org/debian-edu-doc/&quot;&gt;the content
4094 of the documentation packages on the web&lt;/a&gt;. See for example the
4095 &lt;a href=&quot;http://maintainer.skolelinux.org/debian-edu-doc/it/debian-edu-wheezy-manual.pdf&quot;&gt;Italian
4096 PDF version&lt;/a&gt; or the
4097 &lt;a href=&quot;http://maintainer.skolelinux.org/debian-edu-doc/de/debian-edu-wheezy-manual.html&quot;&gt;German
4098 HTML version&lt;/a&gt;. We do not yet build the epub version by default,
4099 but perhaps it will be done in the future.&lt;/p&gt;
4100
4101 &lt;p&gt;To learn more, check out
4102 &lt;a href=&quot;http://packages.qa.debian.org/d/debian-edu-doc.html&quot;&gt;the
4103 debian-edu-doc package&lt;/a&gt;,
4104 &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Documentation/Wheezy/&quot;&gt;the
4105 manual on the wiki&lt;/a&gt; and
4106 &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Documentation/Wheezy/Translations&quot;&gt;the
4107 translation instructions&lt;/a&gt; in the manual.&lt;/p&gt;
4108 </description>
4109 </item>
4110
4111 <item>
4112 <title>Free software car computer solution?</title>
4113 <link>http://people.skolelinux.org/pere/blog/Free_software_car_computer_solution_.html</link>
4114 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_software_car_computer_solution_.html</guid>
4115 <pubDate>Thu, 29 May 2014 18:45:00 +0200</pubDate>
4116 <description>&lt;p&gt;Dear lazyweb. I&#39;m planning to set up a small Raspberry Pi computer
4117 in my car, connected to
4118 &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
4119 small screen&lt;/a&gt; next to the rear mirror. I plan to hook it up with a
4120 GPS and a USB wifi card too. The idea is to get my own
4121 &quot;&lt;a href=&quot;http://en.wikipedia.org/wiki/Carputer&quot;&gt;Carputer&lt;/a&gt;&quot;. But I
4122 wonder if someone already created a good free software solution for
4123 such car computer.&lt;/p&gt;
4124
4125 &lt;p&gt;This is my current wish list for such system:&lt;/p&gt;
4126
4127 &lt;ul&gt;
4128
4129 &lt;li&gt;Work on Raspberry Pi.&lt;/li&gt;
4130
4131 &lt;li&gt;Show current speed limit based on location, and warn if going too
4132 fast (for example using color codes yellow and red on the screen,
4133 or make a sound). This could be done either using either data from
4134 &lt;a href=&quot;http://www.openstreetmap.org/&quot;&gt;Openstreetmap&lt;/a&gt; or OCR
4135 info gathered from a dashboard camera.&lt;/li&gt;
4136
4137 &lt;li&gt;Track automatic toll road passes and their cost, show total spent
4138 and make it possible to calculate toll costs for planned
4139 route.&lt;/li&gt;
4140
4141 &lt;li&gt;Collect GPX tracks for use with OpenStreetMap.&lt;/li&gt;
4142
4143 &lt;li&gt;Automatically detect and use any wireless connection to connect
4144 to home server. Try IP over DNS
4145 (&lt;a href=&quot;http://dev.kryo.se/iodine/&quot;&gt;iodine&lt;/a&gt;) or ICMP
4146 (&lt;a href=&quot;http://code.gerade.org/hans/&quot;&gt;Hans&lt;/a&gt;) if direct
4147 connection do not work.&lt;/li&gt;
4148
4149 &lt;li&gt;Set up mesh network to talk to other cars with the same system,
4150 or some standard car mesh protocol.&lt;/li&gt;
4151
4152 &lt;li&gt;Warn when approaching speed cameras and speed camera ranges
4153 (speed calculated between two cameras).&lt;/li&gt;
4154
4155 &lt;li&gt;Suport dashboard/front facing camera to discover speed limits and
4156 run OCR to track registration number of passing cars.&lt;/li&gt;
4157
4158 &lt;/ul&gt;
4159
4160 &lt;p&gt;If you know of any free software car computer system supporting
4161 some or all of these features, please let me know.&lt;/p&gt;
4162 </description>
4163 </item>
4164
4165 <item>
4166 <title>Half the Coverity issues in Gnash fixed in the next release</title>
4167 <link>http://people.skolelinux.org/pere/blog/Half_the_Coverity_issues_in_Gnash_fixed_in_the_next_release.html</link>
4168 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Half_the_Coverity_issues_in_Gnash_fixed_in_the_next_release.html</guid>
4169 <pubDate>Tue, 29 Apr 2014 14:20:00 +0200</pubDate>
4170 <description>&lt;p&gt;I&#39;ve been following &lt;a href=&quot;http://www.getgnash.org/&quot;&gt;the Gnash
4171 project&lt;/a&gt; for quite a while now. It is a free software
4172 implementation of Adobe Flash, both a standalone player and a browser
4173 plugin. Gnash implement support for the AVM1 format (and not the
4174 newer AVM2 format - see
4175 &lt;a href=&quot;http://lightspark.github.io/&quot;&gt;Lightspark&lt;/a&gt; for that one),
4176 allowing several flash based sites to work. Thanks to the friendly
4177 developers at Youtube, it also work with Youtube videos, because the
4178 Javascript code at Youtube detect Gnash and serve a AVM1 player to
4179 those users. :) Would be great if someone found time to implement AVM2
4180 support, but it has not happened yet. If you install both Lightspark
4181 and Gnash, Lightspark will invoke Gnash if it find a AVM1 flash file,
4182 so you can get both handled as free software. Unfortunately,
4183 Lightspark so far only implement a small subset of AVM2, and many
4184 sites do not work yet.&lt;/p&gt;
4185
4186 &lt;p&gt;A few months ago, I started looking at
4187 &lt;a href=&quot;http://scan.coverity.com/&quot;&gt;Coverity&lt;/a&gt;, the static source
4188 checker used to find heaps and heaps of bugs in free software (thanks
4189 to the donation of a scanning service to free software projects by the
4190 company developing this non-free code checker), and Gnash was one of
4191 the projects I decided to check out. Coverity is able to find lock
4192 errors, memory errors, dead code and more. A few days ago they even
4193 extended it to also be able to find the heartbleed bug in OpenSSL.
4194 There are heaps of checks being done on the instrumented code, and the
4195 amount of bogus warnings is quite low compared to the other static
4196 code checkers I have tested over the years.&lt;/p&gt;
4197
4198 &lt;p&gt;Since a few weeks ago, I&#39;ve been working with the other Gnash
4199 developers squashing bugs discovered by Coverity. I was quite happy
4200 today when I checked the current status and saw that of the 777 issues
4201 detected so far, 374 are marked as fixed. This make me confident that
4202 the next Gnash release will be more stable and more dependable than
4203 the previous one. Most of the reported issues were and are in the
4204 test suite, but it also found a few in the rest of the code.&lt;/p&gt;
4205
4206 &lt;p&gt;If you want to help out, you find us on
4207 &lt;a href=&quot;https://lists.gnu.org/mailman/listinfo/gnash-dev&quot;&gt;the
4208 gnash-dev mailing list&lt;/a&gt; and on
4209 &lt;a href=&quot;irc://irc.freenode.net/#gnash&quot;&gt;the #gnash channel on
4210 irc.freenode.net IRC server&lt;/a&gt;.&lt;/p&gt;
4211 </description>
4212 </item>
4213
4214 <item>
4215 <title>Install hardware dependent packages using tasksel (Isenkram 0.7)</title>
4216 <link>http://people.skolelinux.org/pere/blog/Install_hardware_dependent_packages_using_tasksel__Isenkram_0_7_.html</link>
4217 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Install_hardware_dependent_packages_using_tasksel__Isenkram_0_7_.html</guid>
4218 <pubDate>Wed, 23 Apr 2014 14:50:00 +0200</pubDate>
4219 <description>&lt;p&gt;It would be nice if it was easier in Debian to get all the hardware
4220 related packages relevant for the computer installed automatically.
4221 So I implemented one, using
4222 &lt;a href=&quot;http://packages.qa.debian.org/isenkram&quot;&gt;my Isenkram
4223 package&lt;/a&gt;. To use it, install the tasksel and isenkram packages and
4224 run tasksel as user root. You should be presented with a new option,
4225 &quot;Hardware specific packages (autodetected by isenkram)&quot;. When you
4226 select it, tasksel will install the packages isenkram claim is fit for
4227 the current hardware, hot pluggable or not.&lt;p&gt;
4228
4229 &lt;p&gt;The implementation is in two files, one is the tasksel menu entry
4230 description, and the other is the script used to extract the list of
4231 packages to install. The first part is in
4232 &lt;tt&gt;/usr/share/tasksel/descs/isenkram.desc&lt;/tt&gt; and look like
4233 this:&lt;/p&gt;
4234
4235 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
4236 Task: isenkram
4237 Section: hardware
4238 Description: Hardware specific packages (autodetected by isenkram)
4239 Based on the detected hardware various hardware specific packages are
4240 proposed.
4241 Test-new-install: mark show
4242 Relevance: 8
4243 Packages: for-current-hardware
4244 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
4245
4246 &lt;p&gt;The second part is in
4247 &lt;tt&gt;/usr/lib/tasksel/packages/for-current-hardware&lt;/tt&gt; and look like
4248 this:&lt;/p&gt;
4249
4250 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
4251 #!/bin/sh
4252 #
4253 (
4254 isenkram-lookup
4255 isenkram-autoinstall-firmware -l
4256 ) | sort -u
4257 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
4258
4259 &lt;p&gt;All in all, a very short and simple implementation making it
4260 trivial to install the hardware dependent package we all may want to
4261 have installed on our machines. I&#39;ve not been able to find a way to
4262 get tasksel to tell you exactly which packages it plan to install
4263 before doing the installation. So if you are curious or careful,
4264 check the output from the isenkram-* command line tools first.&lt;/p&gt;
4265
4266 &lt;p&gt;The information about which packages are handling which hardware is
4267 fetched either from the isenkram package itself in
4268 /usr/share/isenkram/, from git.debian.org or from the APT package
4269 database (using the Modaliases header). The APT package database
4270 parsing have caused a nasty resource leak in the isenkram daemon (bugs
4271 &lt;a href=&quot;http://bugs.debian.org/719837&quot;&gt;#719837&lt;/a&gt; and
4272 &lt;a href=&quot;http://bugs.debian.org/730704&quot;&gt;#730704&lt;/a&gt;). The cause is in
4273 the python-apt code (bug
4274 &lt;a href=&quot;http://bugs.debian.org/745487&quot;&gt;#745487&lt;/a&gt;), but using a
4275 workaround I was able to get rid of the file descriptor leak and
4276 reduce the memory leak from ~30 MiB per hardware detection down to
4277 around 2 MiB per hardware detection. It should make the desktop
4278 daemon a lot more useful. The fix is in version 0.7 uploaded to
4279 unstable today.&lt;/p&gt;
4280
4281 &lt;p&gt;I believe the current way of mapping hardware to packages in
4282 Isenkram is is a good draft, but in the future I expect isenkram to
4283 use the AppStream data source for this. A proposal for getting proper
4284 AppStream support into Debian is floating around as
4285 &lt;a href=&quot;https://wiki.debian.org/DEP-11&quot;&gt;DEP-11&lt;/a&gt;, and
4286 &lt;a href=&quot;https://wiki.debian.org/SummerOfCode2014/Projects#SummerOfCode2014.2FProjects.2FAppStreamDEP11Implementation.AppStream.2FDEP-11_for_the_Debian_Archive&quot;&gt;GSoC
4287 project&lt;/a&gt; will take place this summer to improve the situation. I
4288 look forward to seeing the result, and welcome patches for isenkram to
4289 start using the information when it is ready.&lt;/p&gt;
4290
4291 &lt;p&gt;If you want your package to map to some specific hardware, either
4292 add a &quot;Xb-Modaliases&quot; header to your control file like I did in
4293 &lt;a href=&quot;http://packages.qa.debian.org/pymissile&quot;&gt;the pymissile
4294 package&lt;/a&gt; or submit a bug report with the details to the isenkram
4295 package. See also
4296 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/tags/isenkram/&quot;&gt;all my
4297 blog posts tagged isenkram&lt;/a&gt; for details on the notation. I expect
4298 the information will be migrated to AppStream eventually, but for the
4299 moment I got no better place to store it.&lt;/p&gt;
4300 </description>
4301 </item>
4302
4303 <item>
4304 <title>FreedomBox milestone - all packages now in Debian Sid</title>
4305 <link>http://people.skolelinux.org/pere/blog/FreedomBox_milestone___all_packages_now_in_Debian_Sid.html</link>
4306 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/FreedomBox_milestone___all_packages_now_in_Debian_Sid.html</guid>
4307 <pubDate>Tue, 15 Apr 2014 22:10:00 +0200</pubDate>
4308 <description>&lt;p&gt;The &lt;a href=&quot;https://wiki.debian.org/FreedomBox&quot;&gt;Freedombox
4309 project&lt;/a&gt; is working on providing the software and hardware to make
4310 it easy for non-technical people to host their data and communication
4311 at home, and being able to communicate with their friends and family
4312 encrypted and away from prying eyes. It is still going strong, and
4313 today a major mile stone was reached.&lt;/p&gt;
4314
4315 &lt;p&gt;Today, the last of the packages currently used by the project to
4316 created the system images were accepted into Debian Unstable. It was
4317 the freedombox-setup package, which is used to configure the images
4318 during build and on the first boot. Now all one need to get going is
4319 the build code from the freedom-maker git repository and packages from
4320 Debian. And once the freedombox-setup package enter testing, we can
4321 build everything directly from Debian. :)&lt;/p&gt;
4322
4323 &lt;p&gt;Some key packages used by Freedombox are
4324 &lt;a href=&quot;http://packages.qa.debian.org/freedombox-setup&quot;&gt;freedombox-setup&lt;/a&gt;,
4325 &lt;a href=&quot;http://packages.qa.debian.org/plinth&quot;&gt;plinth&lt;/a&gt;,
4326 &lt;a href=&quot;http://packages.qa.debian.org/pagekite&quot;&gt;pagekite&lt;/a&gt;,
4327 &lt;a href=&quot;http://packages.qa.debian.org/tor&quot;&gt;tor&lt;/a&gt;,
4328 &lt;a href=&quot;http://packages.qa.debian.org/privoxy&quot;&gt;privoxy&lt;/a&gt;,
4329 &lt;a href=&quot;http://packages.qa.debian.org/owncloud&quot;&gt;owncloud&lt;/a&gt; and
4330 &lt;a href=&quot;http://packages.qa.debian.org/dnsmasq&quot;&gt;dnsmasq&lt;/a&gt;. There
4331 are plans to integrate more packages into the setup. User
4332 documentation is maintained on the Debian wiki. Please
4333 &lt;a href=&quot;https://wiki.debian.org/FreedomBox/Manual/Jessie&quot;&gt;check out
4334 the manual&lt;/a&gt; and help us improve it.&lt;/p&gt;
4335
4336 &lt;p&gt;To test for yourself and create boot images with the FreedomBox
4337 setup, run this on a Debian machine using a user with sudo rights to
4338 become root:&lt;/p&gt;
4339
4340 &lt;p&gt;&lt;pre&gt;
4341 sudo apt-get install git vmdebootstrap mercurial python-docutils \
4342 mktorrent extlinux virtualbox qemu-user-static binfmt-support \
4343 u-boot-tools
4344 git clone http://anonscm.debian.org/git/freedombox/freedom-maker.git \
4345 freedom-maker
4346 make -C freedom-maker dreamplug-image raspberry-image virtualbox-image
4347 &lt;/pre&gt;&lt;/p&gt;
4348
4349 &lt;p&gt;Root access is needed to run debootstrap and mount loopback
4350 devices. See the README in the freedom-maker git repo for more
4351 details on the build. If you do not want all three images, trim the
4352 make line. Note that the virtualbox-image target is not really
4353 virtualbox specific. It create a x86 image usable in kvm, qemu,
4354 vmware and any other x86 virtual machine environment. You might need
4355 the version of vmdebootstrap in Jessie to get the build working, as it
4356 include fixes for a race condition with kpartx.&lt;/p&gt;
4357
4358 &lt;p&gt;If you instead want to install using a Debian CD and the preseed
4359 method, boot a Debian Wheezy ISO and use this boot argument to load
4360 the preseed values:&lt;/p&gt;
4361
4362 &lt;p&gt;&lt;pre&gt;
4363 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;
4364 &lt;/pre&gt;&lt;/p&gt;
4365
4366 &lt;p&gt;I have not tested it myself the last few weeks, so I do not know if
4367 it still work.&lt;/p&gt;
4368
4369 &lt;p&gt;If you wonder how to help, one task you could look at is using
4370 systemd as the boot system. It will become the default for Linux in
4371 Jessie, so we need to make sure it is usable on the Freedombox. I did
4372 a simple test a few weeks ago, and noticed dnsmasq failed to start
4373 during boot when using systemd. I suspect there are other problems
4374 too. :) To detect problems, there is a test suite included, which can
4375 be run from the plinth web interface.&lt;/p&gt;
4376
4377 &lt;p&gt;Give it a go and let us know how it goes on the mailing list, and help
4378 us get the new release published. :) Please join us on
4379 &lt;a href=&quot;irc://irc.debian.org:6667/%23freedombox&quot;&gt;IRC (#freedombox on
4380 irc.debian.org)&lt;/a&gt; and
4381 &lt;a href=&quot;http://lists.alioth.debian.org/mailman/listinfo/freedombox-discuss&quot;&gt;the
4382 mailing list&lt;/a&gt; if you want to help make this vision come true.&lt;/p&gt;
4383 </description>
4384 </item>
4385
4386 <item>
4387 <title>S3QL, a locally mounted cloud file system - nice free software</title>
4388 <link>http://people.skolelinux.org/pere/blog/S3QL__a_locally_mounted_cloud_file_system___nice_free_software.html</link>
4389 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/S3QL__a_locally_mounted_cloud_file_system___nice_free_software.html</guid>
4390 <pubDate>Wed, 9 Apr 2014 11:30:00 +0200</pubDate>
4391 <description>&lt;p&gt;For a while now, I have been looking for a sensible offsite backup
4392 solution for use at home. My requirements are simple, it must be
4393 cheap and locally encrypted (in other words, I keep the encryption
4394 keys, the storage provider do not have access to my private files).
4395 One idea me and my friends had many years ago, before the cloud
4396 storage providers showed up, was to use Google mail as storage,
4397 writing a Linux block device storing blocks as emails in the mail
4398 service provided by Google, and thus get heaps of free space. On top
4399 of this one can add encryption, RAID and volume management to have
4400 lots of (fairly slow, I admit that) cheap and encrypted storage. But
4401 I never found time to implement such system. But the last few weeks I
4402 have looked at a system called
4403 &lt;a href=&quot;https://bitbucket.org/nikratio/s3ql/&quot;&gt;S3QL&lt;/a&gt;, a locally
4404 mounted network backed file system with the features I need.&lt;/p&gt;
4405
4406 &lt;p&gt;S3QL is a fuse file system with a local cache and cloud storage,
4407 handling several different storage providers, any with Amazon S3,
4408 Google Drive or OpenStack API. There are heaps of such storage
4409 providers. S3QL can also use a local directory as storage, which
4410 combined with sshfs allow for file storage on any ssh server. S3QL
4411 include support for encryption, compression, de-duplication, snapshots
4412 and immutable file systems, allowing me to mount the remote storage as
4413 a local mount point, look at and use the files as if they were local,
4414 while the content is stored in the cloud as well. This allow me to
4415 have a backup that should survive fire. The file system can not be
4416 shared between several machines at the same time, as only one can
4417 mount it at the time, but any machine with the encryption key and
4418 access to the storage service can mount it if it is unmounted.&lt;/p&gt;
4419
4420 &lt;p&gt;It is simple to use. I&#39;m using it on Debian Wheezy, where the
4421 package is included already. So to get started, run &lt;tt&gt;apt-get
4422 install s3ql&lt;/tt&gt;. Next, pick a storage provider. I ended up picking
4423 Greenqloud, after reading their nice recipe on
4424 &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
4425 to use S3QL with their Amazon S3 service&lt;/a&gt;, because I trust the laws
4426 in Iceland more than those in USA when it come to keeping my personal
4427 data safe and private, and thus would rather spend money on a company
4428 in Iceland. Another nice recipe is available from the article
4429 &lt;a href=&quot;http://www.admin-magazine.com/HPC/Articles/HPC-Cloud-Storage&quot;&gt;S3QL
4430 Filesystem for HPC Storage&lt;/a&gt; by Jeff Layton in the HPC section of
4431 Admin magazine. When the provider is picked, figure out how to get
4432 the API key needed to connect to the storage API. With Greencloud,
4433 the key did not show up until I had added payment details to my
4434 account.&lt;/p&gt;
4435
4436 &lt;p&gt;Armed with the API access details, it is time to create the file
4437 system. First, create a new bucket in the cloud. This bucket is the
4438 file system storage area. I picked a bucket name reflecting the
4439 machine that was going to store data there, but any name will do.
4440 I&#39;ll refer to it as &lt;tt&gt;bucket-name&lt;/tt&gt; below. In addition, one need
4441 the API login and password, and a locally created password. Store it
4442 all in ~root/.s3ql/authinfo2 like this:
4443
4444 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
4445 [s3c]
4446 storage-url: s3c://s.greenqloud.com:443/bucket-name
4447 backend-login: API-login
4448 backend-password: API-password
4449 fs-passphrase: local-password
4450 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
4451
4452 &lt;p&gt;I create my local passphrase using &lt;tt&gt;pwget 50&lt;/tt&gt; or similar,
4453 but any sensible way to create a fairly random password should do it.
4454 Armed with these details, it is now time to run mkfs, entering the API
4455 details and password to create it:&lt;/p&gt;
4456
4457 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
4458 # mkdir -m 700 /var/lib/s3ql-cache
4459 # mkfs.s3ql --cachedir /var/lib/s3ql-cache --authfile /root/.s3ql/authinfo2 \
4460 --ssl s3c://s.greenqloud.com:443/bucket-name
4461 Enter backend login:
4462 Enter backend password:
4463 Before using S3QL, make sure to read the user&#39;s guide, especially
4464 the &#39;Important Rules to Avoid Loosing Data&#39; section.
4465 Enter encryption password:
4466 Confirm encryption password:
4467 Generating random encryption key...
4468 Creating metadata tables...
4469 Dumping metadata...
4470 ..objects..
4471 ..blocks..
4472 ..inodes..
4473 ..inode_blocks..
4474 ..symlink_targets..
4475 ..names..
4476 ..contents..
4477 ..ext_attributes..
4478 Compressing and uploading metadata...
4479 Wrote 0.00 MB of compressed metadata.
4480 # &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
4481
4482 &lt;p&gt;The next step is mounting the file system to make the storage available.
4483
4484 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
4485 # mount.s3ql --cachedir /var/lib/s3ql-cache --authfile /root/.s3ql/authinfo2 \
4486 --ssl --allow-root s3c://s.greenqloud.com:443/bucket-name /s3ql
4487 Using 4 upload threads.
4488 Downloading and decompressing metadata...
4489 Reading metadata...
4490 ..objects..
4491 ..blocks..
4492 ..inodes..
4493 ..inode_blocks..
4494 ..symlink_targets..
4495 ..names..
4496 ..contents..
4497 ..ext_attributes..
4498 Mounting filesystem...
4499 # df -h /s3ql
4500 Filesystem Size Used Avail Use% Mounted on
4501 s3c://s.greenqloud.com:443/bucket-name 1.0T 0 1.0T 0% /s3ql
4502 #
4503 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
4504
4505 &lt;p&gt;The file system is now ready for use. I use rsync to store my
4506 backups in it, and as the metadata used by rsync is downloaded at
4507 mount time, no network traffic (and storage cost) is triggered by
4508 running rsync. To unmount, one should not use the normal umount
4509 command, as this will not flush the cache to the cloud storage, but
4510 instead running the umount.s3ql command like this:
4511
4512 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
4513 # umount.s3ql /s3ql
4514 #
4515 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
4516
4517 &lt;p&gt;There is a fsck command available to check the file system and
4518 correct any problems detected. This can be used if the local server
4519 crashes while the file system is mounted, to reset the &quot;already
4520 mounted&quot; flag. This is what it look like when processing a working
4521 file system:&lt;/p&gt;
4522
4523 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
4524 # fsck.s3ql --force --ssl s3c://s.greenqloud.com:443/bucket-name
4525 Using cached metadata.
4526 File system seems clean, checking anyway.
4527 Checking DB integrity...
4528 Creating temporary extra indices...
4529 Checking lost+found...
4530 Checking cached objects...
4531 Checking names (refcounts)...
4532 Checking contents (names)...
4533 Checking contents (inodes)...
4534 Checking contents (parent inodes)...
4535 Checking objects (reference counts)...
4536 Checking objects (backend)...
4537 ..processed 5000 objects so far..
4538 ..processed 10000 objects so far..
4539 ..processed 15000 objects so far..
4540 Checking objects (sizes)...
4541 Checking blocks (referenced objects)...
4542 Checking blocks (refcounts)...
4543 Checking inode-block mapping (blocks)...
4544 Checking inode-block mapping (inodes)...
4545 Checking inodes (refcounts)...
4546 Checking inodes (sizes)...
4547 Checking extended attributes (names)...
4548 Checking extended attributes (inodes)...
4549 Checking symlinks (inodes)...
4550 Checking directory reachability...
4551 Checking unix conventions...
4552 Checking referential integrity...
4553 Dropping temporary indices...
4554 Backing up old metadata...
4555 Dumping metadata...
4556 ..objects..
4557 ..blocks..
4558 ..inodes..
4559 ..inode_blocks..
4560 ..symlink_targets..
4561 ..names..
4562 ..contents..
4563 ..ext_attributes..
4564 Compressing and uploading metadata...
4565 Wrote 0.89 MB of compressed metadata.
4566 #
4567 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
4568
4569 &lt;p&gt;Thanks to the cache, working on files that fit in the cache is very
4570 quick, about the same speed as local file access. Uploading large
4571 amount of data is to me limited by the bandwidth out of and into my
4572 house. Uploading 685 MiB with a 100 MiB cache gave me 305 kiB/s,
4573 which is very close to my upload speed, and downloading the same
4574 Debian installation ISO gave me 610 kiB/s, close to my download speed.
4575 Both were measured using &lt;tt&gt;dd&lt;/tt&gt;. So for me, the bottleneck is my
4576 network, not the file system code. I do not know what a good cache
4577 size would be, but suspect that the cache should e larger than your
4578 working set.&lt;/p&gt;
4579
4580 &lt;p&gt;I mentioned that only one machine can mount the file system at the
4581 time. If another machine try, it is told that the file system is
4582 busy:&lt;/p&gt;
4583
4584 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
4585 # mount.s3ql --cachedir /var/lib/s3ql-cache --authfile /root/.s3ql/authinfo2 \
4586 --ssl --allow-root s3c://s.greenqloud.com:443/bucket-name /s3ql
4587 Using 8 upload threads.
4588 Backend reports that fs is still mounted elsewhere, aborting.
4589 #
4590 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
4591
4592 &lt;p&gt;The file content is uploaded when the cache is full, while the
4593 metadata is uploaded once every 24 hour by default. To ensure the
4594 file system content is flushed to the cloud, one can either umount the
4595 file system, or ask S3QL to flush the cache and metadata using
4596 s3qlctrl:
4597
4598 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
4599 # s3qlctrl upload-meta /s3ql
4600 # s3qlctrl flushcache /s3ql
4601 #
4602 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
4603
4604 &lt;p&gt;If you are curious about how much space your data uses in the
4605 cloud, and how much compression and deduplication cut down on the
4606 storage usage, you can use s3qlstat on the mounted file system to get
4607 a report:&lt;/p&gt;
4608
4609 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
4610 # s3qlstat /s3ql
4611 Directory entries: 9141
4612 Inodes: 9143
4613 Data blocks: 8851
4614 Total data size: 22049.38 MB
4615 After de-duplication: 21955.46 MB (99.57% of total)
4616 After compression: 21877.28 MB (99.22% of total, 99.64% of de-duplicated)
4617 Database size: 2.39 MB (uncompressed)
4618 (some values do not take into account not-yet-uploaded dirty blocks in cache)
4619 #
4620 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
4621
4622 &lt;p&gt;I mentioned earlier that there are several possible suppliers of
4623 storage. I did not try to locate them all, but am aware of at least
4624 &lt;a href=&quot;https://www.greenqloud.com/&quot;&gt;Greenqloud&lt;/a&gt;,
4625 &lt;a href=&quot;http://drive.google.com/&quot;&gt;Google Drive&lt;/a&gt;,
4626 &lt;a href=&quot;http://aws.amazon.com/s3/&quot;&gt;Amazon S3 web serivces&lt;/a&gt;,
4627 &lt;a href=&quot;http://www.rackspace.com/&quot;&gt;Rackspace&lt;/a&gt; and
4628 &lt;a href=&quot;http://crowncloud.net/&quot;&gt;Crowncloud&lt;/A&gt;. The latter even
4629 accept payment in Bitcoin. Pick one that suit your need. Some of
4630 them provide several GiB of free storage, but the prize models are
4631 quite different and you will have to figure out what suits you
4632 best.&lt;/p&gt;
4633
4634 &lt;p&gt;While researching this blog post, I had a look at research papers
4635 and posters discussing the S3QL file system. There are several, which
4636 told me that the file system is getting a critical check by the
4637 science community and increased my confidence in using it. One nice
4638 poster is titled
4639 &quot;&lt;a href=&quot;http://www.lanl.gov/orgs/adtsc/publications/science_highlights_2013/docs/pg68_69.pdf&quot;&gt;An
4640 Innovative Parallel Cloud Storage System using OpenStack’s SwiftObject
4641 Store and Transformative Parallel I/O Approach&lt;/a&gt;&quot; by Hsing-Bung
4642 Chen, Benjamin McClelland, David Sherrill, Alfred Torrez, Parks Fields
4643 and Pamela Smith. Please have a look.&lt;/p&gt;
4644
4645 &lt;p&gt;Given my problems with different file systems earlier, I decided to
4646 check out the mounted S3QL file system to see if it would be usable as
4647 a home directory (in other word, that it provided POSIX semantics when
4648 it come to locking and umask handling etc). Running
4649 &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
4650 test code to check file system semantics&lt;/a&gt;, I was happy to discover that
4651 no error was found. So the file system can be used for home
4652 directories, if one chooses to do so.&lt;/p&gt;
4653
4654 &lt;p&gt;If you do not want a locally file system, and want something that
4655 work without the Linux fuse file system, I would like to mention the
4656 &lt;a href=&quot;http://www.tarsnap.com/&quot;&gt;Tarsnap service&lt;/a&gt;, which also
4657 provide locally encrypted backup using a command line client. It have
4658 a nicer access control system, where one can split out read and write
4659 access, allowing some systems to write to the backup and others to
4660 only read from it.&lt;/p&gt;
4661
4662 &lt;p&gt;As usual, if you use Bitcoin and want to show your support of my
4663 activities, please send Bitcoin donations to my address
4664 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&amp;label=PetterReinholdtsenBlog&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
4665 </description>
4666 </item>
4667
4668 <item>
4669 <title>ReactOS Windows clone - nice free software</title>
4670 <link>http://people.skolelinux.org/pere/blog/ReactOS_Windows_clone___nice_free_software.html</link>
4671 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/ReactOS_Windows_clone___nice_free_software.html</guid>
4672 <pubDate>Tue, 1 Apr 2014 12:10:00 +0200</pubDate>
4673 <description>&lt;p&gt;Microsoft have announced that Windows XP reaches its end of life
4674 2014-04-08, in 7 days. But there are heaps of machines still running
4675 Windows XP, and depending on Windows XP to run their applications, and
4676 upgrading will be expensive, both when it comes to money and when it
4677 comes to the amount of effort needed to migrate from Windows XP to a
4678 new operating system. Some obvious options (buy new a Windows
4679 machine, buy a MacOSX machine, install Linux on the existing machine)
4680 are already well known and covered elsewhere. Most of them involve
4681 leaving the user applications installed on Windows XP behind and
4682 trying out replacements or updated versions. In this blog post I want
4683 to mention one strange bird that allow people to keep the hardware and
4684 the existing Windows XP applications and run them on a free software
4685 operating system that is Windows XP compatible.&lt;/p&gt;
4686
4687 &lt;p&gt;&lt;a href=&quot;http://www.reactos.org/&quot;&gt;ReactOS&lt;/a&gt; is a free software
4688 operating system (GNU GPL licensed) working on providing a operating
4689 system that is binary compatible with Windows, able to run windows
4690 programs directly and to use Windows drivers for hardware directly.
4691 The project goal is for Windows user to keep their existing machines,
4692 drivers and software, and gain the advantages from user a operating
4693 system without usage limitations caused by non-free licensing. It is
4694 a Windows clone running directly on the hardware, so quite different
4695 from the approach taken by &lt;a href=&quot;http://www.winehq.org/&quot;&gt;the Wine
4696 project&lt;/a&gt;, which make it possible to run Windows binaries on
4697 Linux.&lt;/p&gt;
4698
4699 &lt;p&gt;The ReactOS project share code with the Wine project, so most
4700 shared libraries available on Windows are already implemented already.
4701 There is also a software manager like the one we are used to on Linux,
4702 allowing the user to install free software applications with a simple
4703 click directly from the Internet. Check out the
4704 &lt;a href=&quot;http://www.reactos.org/screenshots&quot;&gt;screen shots on the
4705 project web site&lt;/a&gt; for an idea what it look like (it looks just like
4706 Windows before metro).&lt;/p&gt;
4707
4708 &lt;p&gt;I do not use ReactOS myself, preferring Linux and Unix like
4709 operating systems. I&#39;ve tested it, and it work fine in a virt-manager
4710 virtual machine. The browser, minesweeper, notepad etc is working
4711 fine as far as I can tell. Unfortunately, my main test application
4712 is the software included on a CD with the Lego Mindstorms NXT, which
4713 seem to install just fine from CD but fail to leave any binaries on
4714 the disk after the installation. So no luck with that test software.
4715 No idea why, but hope someone else figure out and fix the problem.
4716 I&#39;ve tried the ReactOS Live ISO on a physical machine, and it seemed
4717 to work just fine. If you like Windows and want to keep running your
4718 old Windows binaries, check it out by
4719 &lt;a href=&quot;http://www.reactos.org/download&quot;&gt;downloading&lt;/a&gt; the
4720 installation CD, the live CD or the preinstalled virtual machine
4721 image.&lt;/p&gt;
4722 </description>
4723 </item>
4724
4725 <item>
4726 <title>Debian Edu interview: Roger Marsal</title>
4727 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Roger_Marsal.html</link>
4728 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Roger_Marsal.html</guid>
4729 <pubDate>Sun, 30 Mar 2014 11:40:00 +0200</pubDate>
4730 <description>&lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;
4731 keep gaining new users. Some weeks ago, a person showed up on IRC,
4732 &lt;a href=&quot;irc://irc.debian.org/#debian-edu&quot;&gt;#debian-edu&lt;/a&gt;, with a
4733 wish to contribute, and I managed to get a interview with this great
4734 contributor Roger Marsal to learn more about his background.&lt;/p&gt;
4735
4736 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
4737
4738 &lt;p&gt;My name is Roger Marsal, I&#39;m 27 years old (1986 generation) and I
4739 live in Barcelona, Spain. I&#39;ve got a strong business background and I
4740 work as a patrimony manager and as a real estate agent. Additionally,
4741 I&#39;ve co-founded a British based tech company that is nowadays on the
4742 last development phase of a new social networking concept.&lt;/p&gt;
4743
4744 &lt;p&gt;I&#39;m a Linux enthusiast that started its journey with Ubuntu four years
4745 ago and have recently switched to Debian seeking rock solid stability
4746 and as a necessary step to gain expertise.&lt;/p&gt;
4747
4748 &lt;p&gt;In a nutshell, I spend my days working and learning as much as I
4749 can to face both my job, entrepreneur project and feed my Linux
4750 hunger.&lt;/p&gt;
4751
4752 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
4753 project?&lt;/strong&gt;&lt;/p&gt;
4754
4755 &lt;p&gt;I discovered the &lt;a href=&quot;http://www.ltsp.org/&quot;&gt;LTSP&lt;/a&gt; advantages
4756 with &quot;Ubuntu 12.04 alternate install&quot; and after a year of use I
4757 started looking for an alternative. Even though I highly value and
4758 respect the Ubuntu project, I thought it was necessary for me to
4759 change to a more robust and stable alternative. As far as I was using
4760 Debian on my personal laptop I thought it would be fine to install
4761 Debian and configure an LTSP server myself. Surprised, I discovered
4762 that the Debian project also supported a kind of Edubuntu equivalent,
4763 and after having some pain I obtained a Debian Edu network up and
4764 running. I just loved it.&lt;/p&gt;
4765
4766 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
4767 Edu?&lt;/strong&gt;&lt;/p&gt;
4768
4769 &lt;p&gt;I found a main advantage in that, once you know &quot;the tips and
4770 tricks&quot;, a new installation just works out of the box. It&#39;s the most
4771 complete alternative I&#39;ve found to create an LTSP network. All the
4772 other distributions seems to be made of plastic, Debian Edu seems to
4773 be made of steel.&lt;/p&gt;
4774
4775 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
4776 Edu?&lt;/strong&gt;&lt;/p&gt;
4777
4778 &lt;p&gt;I found two main disadvantages.&lt;/p&gt;
4779
4780 &lt;p&gt;I&#39;m not an expert but I&#39;ve got notions and I had to spent a considerable
4781 amount of time trying to bring up a standard network topology. I&#39;m quite
4782 stubborn and I just worked until I did but I&#39;m sure many people with few
4783 resources (not big schools, but academies for example) would have switched
4784 or dropped.&lt;/p&gt;
4785
4786 &lt;p&gt;It&#39;s amazing how such a complex system like Debian Edu has achieved
4787 this out-of-the-box state. Even though tweaking without breaking gets
4788 more difficult, as more factors have to be considered. This can
4789 discourage many people too.&lt;/p&gt;
4790
4791 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
4792
4793 &lt;p&gt;I use Debian, Firefox, Okular, Inkscape, LibreOffice and
4794 Virtualbox.&lt;/p&gt;
4795
4796
4797 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
4798 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
4799
4800 &lt;p&gt;I don&#39;t think there is a need for a particular strategy. The free
4801 attribute in both &quot;freedom&quot; and &quot;no price&quot; meanings is what will
4802 really bring free software to schools. In my experience I can think of
4803 the &lt;a href=&quot;http://www.r-project.org/&quot;&gt;&quot;R&quot; statistical language&lt;/a&gt;; a
4804 few years a ago was an extremely nerd tool for university people.
4805 Today it&#39;s being increasingly used to teach statistics at many
4806 different level of studies. I believe free and open software will
4807 increasingly gain popularity, but I&#39;m sure schools will be one of the
4808 first scenarios where this will happen.&lt;/p&gt;
4809 </description>
4810 </item>
4811
4812 <item>
4813 <title>Public Trusted Timestamping services for everyone</title>
4814 <link>http://people.skolelinux.org/pere/blog/Public_Trusted_Timestamping_services_for_everyone.html</link>
4815 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Public_Trusted_Timestamping_services_for_everyone.html</guid>
4816 <pubDate>Tue, 25 Mar 2014 12:50:00 +0100</pubDate>
4817 <description>&lt;p&gt;Did you ever need to store logs or other files in a way that would
4818 allow it to be used as evidence in court, and needed a way to
4819 demonstrate without reasonable doubt that the file had not been
4820 changed since it was created? Or, did you ever need to document that
4821 a given document was received at some point in time, like some
4822 archived document or the answer to an exam, and not changed after it
4823 was received? The problem in these settings is to remove the need to
4824 trust yourself and your computers, while still being able to prove
4825 that a file is the same as it was at some given time in the past.&lt;/p&gt;
4826
4827 &lt;p&gt;A solution to these problems is to have a trusted third party
4828 &quot;stamp&quot; the document and verify that at some given time the document
4829 looked a given way. Such
4830 &lt;a href=&quot;https://en.wikipedia.org/wiki/Notarius&quot;&gt;notarius&lt;/a&gt; service
4831 have been around for thousands of years, and its digital equivalent is
4832 called a
4833 &lt;a href=&quot;http://en.wikipedia.org/wiki/Trusted_timestamping&quot;&gt;trusted
4834 timestamping service&lt;/a&gt;. &lt;a href=&quot;http://www.ietf.org/&quot;&gt;The Internet
4835 Engineering Task Force&lt;/a&gt; standardised how such service could work a
4836 few years ago as &lt;a href=&quot;http://tools.ietf.org/html/rfc3161&quot;&gt;RFC
4837 3161&lt;/a&gt;. The mechanism is simple. Create a hash of the file in
4838 question, send it to a trusted third party which add a time stamp to
4839 the hash and sign the result with its private key, and send back the
4840 signed hash + timestamp. Both email, FTP and HTTP can be used to
4841 request such signature, depending on what is provided by the service
4842 used. Anyone with the document and the signature can then verify that
4843 the document matches the signature by creating their own hash and
4844 checking the signature using the trusted third party public key.
4845 There are several commercial services around providing such
4846 timestamping. A quick search for
4847 &quot;&lt;a href=&quot;https://duckduckgo.com/?q=rfc+3161+service&quot;&gt;rfc 3161
4848 service&lt;/a&gt;&quot; pointed me to at least
4849 &lt;a href=&quot;https://www.digistamp.com/technical/how-a-digital-time-stamp-works/&quot;&gt;DigiStamp&lt;/a&gt;,
4850 &lt;a href=&quot;http://www.quovadisglobal.co.uk/CertificateServices/SigningServices/TimeStamp.aspx&quot;&gt;Quo
4851 Vadis&lt;/a&gt;,
4852 &lt;a href=&quot;https://www.globalsign.com/timestamp-service/&quot;&gt;Global Sign&lt;/a&gt;
4853 and &lt;a href=&quot;http://www.globaltrustfinder.com/TSADefault.aspx&quot;&gt;Global
4854 Trust Finder&lt;/a&gt;. The system work as long as the private key of the
4855 trusted third party is not compromised.&lt;/p&gt;
4856
4857 &lt;p&gt;But as far as I can tell, there are very few public trusted
4858 timestamp services available for everyone. I&#39;ve been looking for one
4859 for a while now. But yesterday I found one over at
4860 &lt;a href=&quot;https://www.pki.dfn.de/zeitstempeldienst/&quot;&gt;Deutches
4861 Forschungsnetz&lt;/a&gt; mentioned in
4862 &lt;a href=&quot;http://www.d-mueller.de/blog/dealing-with-trusted-timestamps-in-php-rfc-3161/&quot;&gt;a
4863 blog by David Müller&lt;/a&gt;. I then found
4864 &lt;a href=&quot;http://www.rz.uni-greifswald.de/support/dfn-pki-zertifikate/zeitstempeldienst.html&quot;&gt;a
4865 good recipe on how to use the service&lt;/a&gt; over at the University of
4866 Greifswald.&lt;/p&gt;
4867
4868 &lt;p&gt;&lt;a href=&quot;http://www.openssl.org/&quot;&gt;The OpenSSL library&lt;/a&gt; contain
4869 both server and tools to use and set up your own signing service. See
4870 the ts(1SSL), tsget(1SSL) manual pages for more details. The
4871 following shell script demonstrate how to extract a signed timestamp
4872 for any file on the disk in a Debian environment:&lt;/p&gt;
4873
4874 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
4875 #!/bin/sh
4876 set -e
4877 url=&quot;http://zeitstempel.dfn.de&quot;
4878 caurl=&quot;https://pki.pca.dfn.de/global-services-ca/pub/cacert/chain.txt&quot;
4879 reqfile=$(mktemp -t tmp.XXXXXXXXXX.tsq)
4880 resfile=$(mktemp -t tmp.XXXXXXXXXX.tsr)
4881 cafile=chain.txt
4882 if [ ! -f $cafile ] ; then
4883 wget -O $cafile &quot;$caurl&quot;
4884 fi
4885 openssl ts -query -data &quot;$1&quot; -cert | tee &quot;$reqfile&quot; \
4886 | /usr/lib/ssl/misc/tsget -h &quot;$url&quot; -o &quot;$resfile&quot;
4887 openssl ts -reply -in &quot;$resfile&quot; -text 1&gt;&amp;2
4888 openssl ts -verify -data &quot;$1&quot; -in &quot;$resfile&quot; -CAfile &quot;$cafile&quot; 1&gt;&amp;2
4889 base64 &lt; &quot;$resfile&quot;
4890 rm &quot;$reqfile&quot; &quot;$resfile&quot;
4891 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
4892
4893 &lt;p&gt;The argument to the script is the file to timestamp, and the output
4894 is a base64 encoded version of the signature to STDOUT and details
4895 about the signature to STDERR. Note that due to
4896 &lt;a href=&quot;http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=742553&quot;&gt;a bug
4897 in the tsget script&lt;/a&gt;, you might need to modify the included script
4898 and remove the last line. Or just write your own HTTP uploader using
4899 curl. :) Now you too can prove and verify that files have not been
4900 changed.&lt;/p&gt;
4901
4902 &lt;p&gt;But the Internet need more public trusted timestamp services.
4903 Perhaps something for &lt;a href=&quot;http://www.uninett.no/&quot;&gt;Uninett&lt;/a&gt; or
4904 my work place the &lt;a href=&quot;http://www.uio.no/&quot;&gt;University of Oslo&lt;/a&gt;
4905 to set up?&lt;/p&gt;
4906 </description>
4907 </item>
4908
4909 <item>
4910 <title>Video DVD reader library / python-dvdvideo - nice free software</title>
4911 <link>http://people.skolelinux.org/pere/blog/Video_DVD_reader_library___python_dvdvideo___nice_free_software.html</link>
4912 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Video_DVD_reader_library___python_dvdvideo___nice_free_software.html</guid>
4913 <pubDate>Fri, 21 Mar 2014 15:25:00 +0100</pubDate>
4914 <description>&lt;p&gt;Keeping your DVD collection safe from scratches and curious
4915 children fingers while still having it available when you want to see a
4916 movie is not straight forward. My preferred method at the moment is
4917 to store a full copy of the ISO on a hard drive, and use VLC, Popcorn
4918 Hour or other useful players to view the resulting file. This way the
4919 subtitles and bonus material are still available and using the ISO is
4920 just like inserting the original DVD record in the DVD player.&lt;/p&gt;
4921
4922 &lt;p&gt;Earlier I used dd for taking security copies, but it do not handle
4923 DVDs giving read errors (which are quite a few of them). I&#39;ve also
4924 tried using
4925 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Ripping_problematic_DVDs_using_dvdbackup_and_genisoimage.html&quot;&gt;dvdbackup
4926 and genisoimage&lt;/a&gt;, but these days I use the marvellous python library
4927 and program
4928 &lt;a href=&quot;http://bblank.thinkmo.de/blog/new-software-python-dvdvideo&quot;&gt;python-dvdvideo&lt;/a&gt;
4929 written by Bastian Blank. It is
4930 &lt;a href=&quot;http://packages.qa.debian.org/p/python-dvdvideo.html&quot;&gt;in Debian
4931 already&lt;/a&gt; and the binary package name is python3-dvdvideo. Instead
4932 of trying to read every block from the DVD, it parses the file
4933 structure and figure out which block on the DVD is actually in used,
4934 and only read those blocks from the DVD. This work surprisingly well,
4935 and I have been able to almost backup my entire DVD collection using
4936 this method.&lt;/p&gt;
4937
4938 &lt;p&gt;So far, python-dvdvideo have failed on between 10 and
4939 20 DVDs, which is a small fraction of my collection. The most common
4940 problem is
4941 &lt;a href=&quot;https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=720831&quot;&gt;DVDs
4942 using UTF-16 instead of UTF-8 characters&lt;/a&gt;, which according to
4943 Bastian is against the DVD specification (and seem to cause some
4944 players to fail too). A rarer problem is what seem to be inconsistent
4945 DVD structures, as the python library
4946 &lt;a href=&quot;https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=723079&quot;&gt;claim
4947 there is a overlap between objects&lt;/a&gt;. An equally rare problem claim
4948 &lt;a href=&quot;https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=741878&quot;&gt;some
4949 value is out of range&lt;/a&gt;. No idea what is going on there. I wish I
4950 knew enough about the DVD format to fix these, to ensure my movie
4951 collection will stay with me in the future.&lt;/p&gt;
4952
4953 &lt;p&gt;So, if you need to keep your DVDs safe, back them up using
4954 python-dvdvideo. :)&lt;/p&gt;
4955 </description>
4956 </item>
4957
4958 <item>
4959 <title>Freedombox on Dreamplug, Raspberry Pi and virtual x86 machine</title>
4960 <link>http://people.skolelinux.org/pere/blog/Freedombox_on_Dreamplug__Raspberry_Pi_and_virtual_x86_machine.html</link>
4961 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Freedombox_on_Dreamplug__Raspberry_Pi_and_virtual_x86_machine.html</guid>
4962 <pubDate>Fri, 14 Mar 2014 11:00:00 +0100</pubDate>
4963 <description>&lt;p&gt;The &lt;a href=&quot;https://wiki.debian.org/FreedomBox&quot;&gt;Freedombox
4964 project&lt;/a&gt; is working on providing the software and hardware for
4965 making it easy for non-technical people to host their data and
4966 communication at home, and being able to communicate with their
4967 friends and family encrypted and away from prying eyes. It has been
4968 going on for a while, and is slowly progressing towards a new test
4969 release (0.2).&lt;/p&gt;
4970
4971 &lt;p&gt;And what day could be better than the Pi day to announce that the
4972 new version will provide &quot;hard drive&quot; / SD card / USB stick images for
4973 Dreamplug, Raspberry Pi and VirtualBox (or any other virtualization
4974 system), and can also be installed using a Debian installer preseed
4975 file. The Debian based Freedombox is now based on Debian Jessie,
4976 where most of the needed packages used are already present. Only one,
4977 the freedombox-setup package, is missing. To try to build your own
4978 boot image to test the current status, fetch the freedom-maker scripts
4979 and build using
4980 &lt;a href=&quot;http://packages.qa.debian.org/vmdebootstrap&quot;&gt;vmdebootstrap&lt;/a&gt;
4981 with a user with sudo access to become root:
4982
4983 &lt;pre&gt;
4984 git clone http://anonscm.debian.org/git/freedombox/freedom-maker.git \
4985 freedom-maker
4986 sudo apt-get install git vmdebootstrap mercurial python-docutils \
4987 mktorrent extlinux virtualbox qemu-user-static binfmt-support \
4988 u-boot-tools
4989 make -C freedom-maker dreamplug-image raspberry-image virtualbox-image
4990 &lt;/pre&gt;
4991
4992 &lt;p&gt;Root access is needed to run debootstrap and mount loopback
4993 devices. See the README for more details on the build. If you do not
4994 want all three images, trim the make line. But note that thanks to &lt;a
4995 href=&quot;https://bugs.debian.org/741407&quot;&gt;a race condition in
4996 vmdebootstrap&lt;/a&gt;, the build might fail without the patch to the
4997 kpartx call.&lt;/p&gt;
4998
4999 &lt;p&gt;If you instead want to install using a Debian CD and the preseed
5000 method, boot a Debian Wheezy ISO and use this boot argument to load
5001 the preseed values:&lt;/p&gt;
5002
5003 &lt;pre&gt;
5004 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;
5005 &lt;/pre&gt;
5006
5007 &lt;p&gt;But note that due to &lt;a href=&quot;https://bugs.debian.org/740673&quot;&gt;a
5008 recently introduced bug in apt in Jessie&lt;/a&gt;, the installer will
5009 currently hang while setting up APT sources. Killing the
5010 &#39;&lt;tt&gt;apt-cdrom ident&lt;/tt&gt;&#39; process when it hang a few times during the
5011 installation will get the installation going. This affect all
5012 installations in Jessie, and I expect it will be fixed soon.&lt;/p&gt;
5013
5014 &lt;p&gt;Give it a go and let us know how it goes on the mailing list, and help
5015 us get the new release published. :) Please join us on
5016 &lt;a href=&quot;irc://irc.debian.org:6667/%23freedombox&quot;&gt;IRC (#freedombox on
5017 irc.debian.org)&lt;/a&gt; and
5018 &lt;a href=&quot;http://lists.alioth.debian.org/mailman/listinfo/freedombox-discuss&quot;&gt;the
5019 mailing list&lt;/a&gt; if you want to help make this vision come true.&lt;/p&gt;
5020 </description>
5021 </item>
5022
5023 <item>
5024 <title>How to add extra storage servers in Debian Edu / Skolelinux</title>
5025 <link>http://people.skolelinux.org/pere/blog/How_to_add_extra_storage_servers_in_Debian_Edu___Skolelinux.html</link>
5026 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_add_extra_storage_servers_in_Debian_Edu___Skolelinux.html</guid>
5027 <pubDate>Wed, 12 Mar 2014 12:50:00 +0100</pubDate>
5028 <description>&lt;p&gt;On larger sites, it is useful to use a dedicated storage server for
5029 storing user home directories and data. The design for handling this
5030 in &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;, is
5031 to update the automount rules in LDAP and let the automount daemon on
5032 the clients take care of the rest. I was reminded about the need to
5033 document this better when one of the customers of
5034 &lt;a href=&quot;http://www.slxdrift.no/&quot;&gt;Skolelinux Drift AS&lt;/a&gt;, where I am
5035 on the board of directors, asked about how to do this. The steps to
5036 get this working are the following:&lt;/p&gt;
5037
5038 &lt;p&gt;&lt;ol&gt;
5039
5040 &lt;li&gt;Add new storage server in DNS. I use nas-server.intern as the
5041 example host here.&lt;/li&gt;
5042
5043 &lt;li&gt;Add automoun LDAP information about this server in LDAP, to allow
5044 all clients to automatically mount it on reqeust.&lt;/li&gt;
5045
5046 &lt;li&gt;Add the relevant entries in tjener.intern:/etc/fstab, because
5047 tjener.intern do not use automount to avoid mounting loops.&lt;/li&gt;
5048
5049 &lt;/ol&gt;&lt;/p&gt;
5050
5051 &lt;p&gt;DNS entries are added in GOsa², and not described here. Follow the
5052 &lt;a href=&quot;https://wiki.debian.org/DebianEdu/Documentation/Wheezy/GettingStarted&quot;&gt;instructions
5053 in the manual&lt;/a&gt; (Machine Management with GOsa² in section Getting
5054 started).&lt;/p&gt;
5055
5056 &lt;p&gt;Ensure that the NFS export points on the server are exported to the
5057 relevant subnets or machines:&lt;/p&gt;
5058
5059 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
5060 root@tjener:~# showmount -e nas-server
5061 Export list for nas-server:
5062 /storage 10.0.0.0/8
5063 root@tjener:~#
5064 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
5065
5066 &lt;p&gt;Here everything on the backbone network is granted access to the
5067 /storage export. With NFSv3 it is slightly better to limit it to
5068 netgroup membership or single IP addresses to have some limits on the
5069 NFS access.&lt;/p&gt;
5070
5071 &lt;p&gt;The next step is to update LDAP. This can not be done using GOsa²,
5072 because it lack a module for automount. Instead, use ldapvi and add
5073 the required LDAP objects using an editor.&lt;/p&gt;
5074
5075 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
5076 ldapvi --ldap-conf -ZD &#39;(cn=admin)&#39; -b ou=automount,dc=skole,dc=skolelinux,dc=no
5077 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
5078
5079 &lt;p&gt;When the editor show up, add the following LDAP objects at the
5080 bottom of the document. The &quot;/&amp;&quot; part in the last LDAP object is a
5081 wild card matching everything the nas-server exports, removing the
5082 need to list individual mount points in LDAP.&lt;/p&gt;
5083
5084 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
5085 add cn=nas-server,ou=auto.skole,ou=automount,dc=skole,dc=skolelinux,dc=no
5086 objectClass: automount
5087 cn: nas-server
5088 automountInformation: -fstype=autofs --timeout=60 ldap:ou=auto.nas-server,ou=automount,dc=skole,dc=skolelinux,dc=no
5089
5090 add ou=auto.nas-server,ou=automount,dc=skole,dc=skolelinux,dc=no
5091 objectClass: top
5092 objectClass: automountMap
5093 ou: auto.nas-server
5094
5095 add cn=/,ou=auto.nas-server,ou=automount,dc=skole,dc=skolelinux,dc=no
5096 objectClass: automount
5097 cn: /
5098 automountInformation: -fstype=nfs,tcp,rsize=32768,wsize=32768,rw,intr,hard,nodev,nosuid,noatime nas-server.intern:/&amp;
5099 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
5100
5101 &lt;p&gt;The last step to remember is to mount the relevant mount points in
5102 tjener.intern by adding them to /etc/fstab, creating the mount
5103 directories using mkdir and running &quot;mount -a&quot; to mount them.&lt;/p&gt;
5104
5105 &lt;p&gt;When this is done, your users should be able to access the files on
5106 the storage server directly by just visiting the
5107 /tjener/nas-server/storage/ directory using any application on any
5108 workstation, LTSP client or LTSP server.&lt;/p&gt;
5109 </description>
5110 </item>
5111
5112 <item>
5113 <title>New home and release 1.0 for netgroup and innetgr (aka ng-utils)</title>
5114 <link>http://people.skolelinux.org/pere/blog/New_home_and_release_1_0_for_netgroup_and_innetgr__aka_ng_utils_.html</link>
5115 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/New_home_and_release_1_0_for_netgroup_and_innetgr__aka_ng_utils_.html</guid>
5116 <pubDate>Sat, 22 Feb 2014 21:45:00 +0100</pubDate>
5117 <description>&lt;p&gt;Many years ago, I wrote a GPL licensed version of the netgroup and
5118 innetgr tools, because I needed them in
5119 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;. I called the project
5120 ng-utils, and it has served me well. I placed the project under the
5121 &lt;a href=&quot;http://www.hungry.com/&quot;&gt;Hungry Programmer&lt;/a&gt; umbrella, and it was maintained in our CVS
5122 repository. But many years ago, the CVS repository was dropped (lost,
5123 not migrated to new hardware, not sure), and the project have lacked a
5124 proper home since then.&lt;/p&gt;
5125
5126 &lt;p&gt;Last summer, I had a look at the package and made a new release
5127 fixing a irritating crash bug, but was unable to store the changes in
5128 a proper source control system. I applied for a project on
5129 &lt;a href=&quot;https://alioth.debian.org/&quot;&gt;Alioth&lt;/a&gt;, but did not have time
5130 to follow up on it. Until today. :)&lt;/p&gt;
5131
5132 &lt;p&gt;After many hours of cleaning and migration, the ng-utils project
5133 now have a new home, and a git repository with the highlight of the
5134 history of the project. I published all release tarballs and imported
5135 them into the git repository. As the project is really stable and not
5136 expected to gain new features any time soon, I decided to make a new
5137 release and call it 1.0. Visit the new project home on
5138 &lt;a href=&quot;https://alioth.debian.org/projects/ng-utils/&quot;&gt;https://alioth.debian.org/projects/ng-utils/&lt;/a&gt;
5139 if you want to check it out. The new version is also uploaded into
5140 &lt;a href=&quot;http://packages.qa.debian.org/n/ng-utils.html&quot;&gt;Debian Unstable&lt;/a&gt;.&lt;/p&gt;
5141 </description>
5142 </item>
5143
5144 <item>
5145 <title>Testing sysvinit from experimental in Debian Hurd</title>
5146 <link>http://people.skolelinux.org/pere/blog/Testing_sysvinit_from_experimental_in_Debian_Hurd.html</link>
5147 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Testing_sysvinit_from_experimental_in_Debian_Hurd.html</guid>
5148 <pubDate>Mon, 3 Feb 2014 13:40:00 +0100</pubDate>
5149 <description>&lt;p&gt;A few days ago I decided to try to help the Hurd people to get
5150 their changes into sysvinit, to allow them to use the normal sysvinit
5151 boot system instead of their old one. This follow up on the
5152 &lt;a href=&quot;https://teythoon.cryptobitch.de//categories/gsoc.html&quot;&gt;great
5153 Google Summer of Code work&lt;/a&gt; done last summer by Justus Winter to
5154 get Debian on Hurd working more like Debian on Linux. To get started,
5155 I downloaded a prebuilt hard disk image from
5156 &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;,
5157 and started it using virt-manager.&lt;/p&gt;
5158
5159 &lt;p&gt;The first think I had to do after logging in (root without any
5160 password) was to get the network operational. I followed
5161 &lt;a href=&quot;https://www.debian.org/ports/hurd/hurd-install&quot;&gt;the
5162 instructions on the Debian GNU/Hurd ports page&lt;/a&gt; and ran these
5163 commands as root to get the machine to accept a IP address from the
5164 kvm internal DHCP server:&lt;/p&gt;
5165
5166 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
5167 settrans -fgap /dev/netdde /hurd/netdde
5168 kill $(ps -ef|awk &#39;/[p]finet/ { print $2}&#39;)
5169 kill $(ps -ef|awk &#39;/[d]evnode/ { print $2}&#39;)
5170 dhclient /dev/eth0
5171 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
5172
5173 &lt;p&gt;After this, the machine had internet connectivity, and I could
5174 upgrade it and install the sysvinit packages from experimental and
5175 enable it as the default boot system in Hurd.&lt;/p&gt;
5176
5177 &lt;p&gt;But before I did that, I set a password on the root user, as ssh is
5178 running on the machine it for ssh login to work a password need to be
5179 set. Also, note that a bug somewhere in openssh on Hurd block
5180 compression from working. Remember to turn that off on the client
5181 side.&lt;/p&gt;
5182
5183 &lt;p&gt;Run these commands as root to upgrade and test the new sysvinit
5184 stuff:&lt;/p&gt;
5185
5186 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
5187 cat &gt; /etc/apt/sources.list.d/experimental.list &amp;lt;&amp;lt;EOF
5188 deb http://http.debian.net/debian/ experimental main
5189 EOF
5190 apt-get update
5191 apt-get dist-upgrade
5192 apt-get install -t experimental initscripts sysv-rc sysvinit \
5193 sysvinit-core sysvinit-utils
5194 update-alternatives --config runsystem
5195 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
5196
5197 &lt;p&gt;To reboot after switching boot system, you have to use
5198 &lt;tt&gt;reboot-hurd&lt;/tt&gt; instead of just &lt;tt&gt;reboot&lt;/tt&gt;, as there is not
5199 yet a sysvinit process able to receive the signals from the normal
5200 &#39;reboot&#39; command. After switching to sysvinit as the boot system,
5201 upgrading every package and rebooting, the network come up with DHCP
5202 after boot as it should, and the settrans/pkill hack mentioned at the
5203 start is no longer needed. But for some strange reason, there are no
5204 longer any login prompt in the virtual console, so I logged in using
5205 ssh instead.
5206
5207 &lt;p&gt;Note that there are some race conditions in Hurd making the boot
5208 fail some times. No idea what the cause is, but hope the Hurd porters
5209 figure it out. At least Justus said on IRC (#debian-hurd on
5210 irc.debian.org) that they are aware of the problem. A way to reduce
5211 the impact is to upgrade to the Hurd packages built by Justus by
5212 adding this repository to the machine:&lt;/p&gt;
5213
5214 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
5215 cat &gt; /etc/apt/sources.list.d/hurd-ci.list &amp;lt;&amp;lt;EOF
5216 deb http://darnassus.sceen.net/~teythoon/hurd-ci/ sid main
5217 EOF
5218 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
5219
5220 &lt;p&gt;At the moment the prebuilt virtual machine get some packages from
5221 http://ftp.debian-ports.org/debian, because some of the packages in
5222 unstable do not yet include the required patches that are lingering in
5223 BTS. This is the completely list of &quot;unofficial&quot; packages installed:&lt;/p&gt;
5224
5225 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
5226 # aptitude search &#39;?narrow(?version(CURRENT),?origin(Debian Ports))&#39;
5227 i emacs - GNU Emacs editor (metapackage)
5228 i gdb - GNU Debugger
5229 i hurd-recommended - Miscellaneous translators
5230 i isc-dhcp-client - ISC DHCP client
5231 i isc-dhcp-common - common files used by all the isc-dhcp* packages
5232 i libc-bin - Embedded GNU C Library: Binaries
5233 i libc-dev-bin - Embedded GNU C Library: Development binaries
5234 i libc0.3 - Embedded GNU C Library: Shared libraries
5235 i A libc0.3-dbg - Embedded GNU C Library: detached debugging symbols
5236 i libc0.3-dev - Embedded GNU C Library: Development Libraries and Hea
5237 i multiarch-support - Transitional package to ensure multiarch compatibilit
5238 i A x11-common - X Window System (X.Org) infrastructure
5239 i xorg - X.Org X Window System
5240 i A xserver-xorg - X.Org X server
5241 i A xserver-xorg-input-all - X.Org X server -- input driver metapackage
5242 #
5243 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
5244
5245 &lt;p&gt;All in all, testing hurd has been an interesting experience. :)
5246 X.org did not work out of the box and I never took the time to follow
5247 the porters instructions to fix it. This time I was interested in the
5248 command line stuff.&lt;p&gt;
5249 </description>
5250 </item>
5251
5252 <item>
5253 <title>A fist full of non-anonymous Bitcoins</title>
5254 <link>http://people.skolelinux.org/pere/blog/A_fist_full_of_non_anonymous_Bitcoins.html</link>
5255 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_fist_full_of_non_anonymous_Bitcoins.html</guid>
5256 <pubDate>Wed, 29 Jan 2014 14:10:00 +0100</pubDate>
5257 <description>&lt;p&gt;Bitcoin is a incredible use of peer to peer communication and
5258 encryption, allowing direct and immediate money transfer without any
5259 central control. It is sometimes claimed to be ideal for illegal
5260 activity, which I believe is quite a long way from the truth. At least
5261 I would not conduct illegal money transfers using a system where the
5262 details of every transaction are kept forever. This point is
5263 investigated in
5264 &lt;a href=&quot;https://www.usenix.org/publications/login&quot;&gt;USENIX ;login:&lt;/a&gt;
5265 from December 2013, in the article
5266 &quot;&lt;a href=&quot;https://www.usenix.org/system/files/login/articles/03_meiklejohn-online.pdf&quot;&gt;A
5267 Fistful of Bitcoins - Characterizing Payments Among Men with No
5268 Names&lt;/a&gt;&quot; by Sarah Meiklejohn, Marjori Pomarole,Grant Jordan, Kirill
5269 Levchenko, Damon McCoy, Geoffrey M. Voelker, and Stefan Savage. They
5270 analyse the transaction log in the Bitcoin system, using it to find
5271 addresses belong to individuals and organisations and follow the flow
5272 of money from both Bitcoin theft and trades on Silk Road to where the
5273 money end up. This is how they wrap up their article:&lt;/p&gt;
5274
5275 &lt;p&gt;&lt;blockquote&gt;
5276 &lt;p&gt;&quot;To demonstrate the usefulness of this type of analysis, we turned
5277 our attention to criminal activity. In the Bitcoin economy, criminal
5278 activity can appear in a number of forms, such as dealing drugs on
5279 Silk Road or simply stealing someone else’s bitcoins. We followed the
5280 flow of bitcoins out of Silk Road (in particular, from one notorious
5281 address) and from a number of highly publicized thefts to see whether
5282 we could track the bitcoins to known services. Although some of the
5283 thieves attempted to use sophisticated mixing techniques (or possibly
5284 mix services) to obscure the flow of bitcoins, for the most part
5285 tracking the bitcoins was quite straightforward, and we ultimately saw
5286 large quantities of bitcoins flow to a variety of exchanges directly
5287 from the point of theft (or the withdrawal from Silk Road).&lt;/p&gt;
5288
5289 &lt;p&gt;As acknowledged above, following stolen bitcoins to the point at
5290 which they are deposited into an exchange does not in itself identify
5291 the thief; however, it does enable further de-anonymization in the
5292 case in which certain agencies can determine (through, for example,
5293 subpoena power) the real-world owner of the account into which the
5294 stolen bitcoins were deposited. Because such exchanges seem to serve
5295 as chokepoints into and out of the Bitcoin economy (i.e., there are
5296 few alternative ways to cash out), we conclude that using Bitcoin for
5297 money laundering or other illicit purposes does not (at least at
5298 present) seem to be particularly attractive.&quot;&lt;/p&gt;
5299 &lt;/blockquote&gt;&lt;p&gt;
5300
5301 &lt;p&gt;These researches are not the first to analyse the Bitcoin
5302 transaction log. The 2011 paper
5303 &quot;&lt;a href=&quot;http://arxiv.org/abs/1107.4524&quot;&gt;An Analysis of Anonymity in
5304 the Bitcoin System&lt;/A&gt;&quot; by Fergal Reid and Martin Harrigan is
5305 summarized like this:&lt;/p&gt;
5306
5307 &lt;p&gt;&lt;blockquote&gt;
5308 &quot;Anonymity in Bitcoin, a peer-to-peer electronic currency system, is a
5309 complicated issue. Within the system, users are identified by
5310 public-keys only. An attacker wishing to de-anonymize its users will
5311 attempt to construct the one-to-many mapping between users and
5312 public-keys and associate information external to the system with the
5313 users. Bitcoin tries to prevent this attack by storing the mapping of
5314 a user to his or her public-keys on that user&#39;s node only and by
5315 allowing each user to generate as many public-keys as required. In
5316 this chapter we consider the topological structure of two networks
5317 derived from Bitcoin&#39;s public transaction history. We show that the
5318 two networks have a non-trivial topological structure, provide
5319 complementary views of the Bitcoin system and have implications for
5320 anonymity. We combine these structures with external information and
5321 techniques such as context discovery and flow analysis to investigate
5322 an alleged theft of Bitcoins, which, at the time of the theft, had a
5323 market value of approximately half a million U.S. dollars.&quot;
5324 &lt;/blockquote&gt;&lt;/p&gt;
5325
5326 &lt;p&gt;I hope these references can help kill the urban myth that Bitcoin
5327 is anonymous. It isn&#39;t really a good fit for illegal activites. Use
5328 cash if you need to stay anonymous, at least until regular DNA
5329 sampling of notes and coins become the norm. :)&lt;/p&gt;
5330
5331 &lt;p&gt;As usual, if you use Bitcoin and want to show your support of my
5332 activities, please send Bitcoin donations to my address
5333 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&amp;label=PetterReinholdtsenBlog&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
5334 </description>
5335 </item>
5336
5337 <item>
5338 <title>New chrpath release 0.16</title>
5339 <link>http://people.skolelinux.org/pere/blog/New_chrpath_release_0_16.html</link>
5340 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/New_chrpath_release_0_16.html</guid>
5341 <pubDate>Tue, 14 Jan 2014 11:00:00 +0100</pubDate>
5342 <description>&lt;p&gt;&lt;a href=&quot;http://www.coverity.com/&quot;&gt;Coverity&lt;/a&gt; is a nice tool to
5343 find problems in C, C++ and Java code using static source code
5344 analysis. It can detect a lot of different problems, and is very
5345 useful to find memory and locking bugs in the error handling part of
5346 the source. The company behind it provide
5347 &lt;a href=&quot;https://scan.coverity.com/&quot;&gt;check of free software projects as
5348 a community service&lt;/a&gt;, and many hundred free software projects are
5349 already checked. A few days ago I decided to have a closer look at
5350 the Coverity system, and discovered that the
5351 &lt;a href=&quot;http://www.gnu.org/software/gnash/&quot;&gt;gnash&lt;/a&gt; and
5352 &lt;a href=&quot;http://sourceforge.net/projects/ipmitool/&quot;&gt;ipmitool&lt;/a&gt;
5353 projects I am involved with was already registered. But these are
5354 fairly big, and I would also like to have a small and easy project to
5355 check, and decided to &lt;a href=&quot;http://scan.coverity.com/projects/1179&quot;&gt;request
5356 checking of the chrpath project&lt;/a&gt;. It was
5357 added to the checker and discovered seven potential defects. Six of
5358 these were real, mostly resource &quot;leak&quot; when the program detected an
5359 error. Nothing serious, as the resources would be released a fraction
5360 of a second later when the program exited because of the error, but it
5361 is nice to do it right in case the source of the program some time in
5362 the future end up in a library. Having fixed all defects and added
5363 &lt;a href=&quot;https://lists.alioth.debian.org/mailman/listinfo/chrpath-devel&quot;&gt;a
5364 mailing list for the chrpath developers&lt;/a&gt;, I decided it was time to
5365 publish a new release. These are the release notes:&lt;/p&gt;
5366
5367 &lt;p&gt;New in 0.16 released 2014-01-14:&lt;/p&gt;
5368
5369 &lt;ul&gt;
5370
5371 &lt;li&gt;Fixed all minor bugs discovered by Coverity.&lt;/li&gt;
5372 &lt;li&gt;Updated config.sub and config.guess from the GNU project.&lt;/li&gt;
5373 &lt;li&gt;Mention new project mailing list in the documentation.&lt;/li&gt;
5374
5375 &lt;/ul&gt;
5376
5377 &lt;p&gt;You can
5378 &lt;a href=&quot;https://alioth.debian.org/frs/?group_id=31052&quot;&gt;download the
5379 new version 0.16 from alioth&lt;/a&gt;. Please let us know via the Alioth
5380 project if something is wrong with the new release. The test suite
5381 did not discover any old errors, so if you find a new one, please also
5382 include a test suite check.&lt;/p&gt;
5383 </description>
5384 </item>
5385
5386 <item>
5387 <title>Debian Edu interview: Dominik George</title>
5388 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Dominik_George.html</link>
5389 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Dominik_George.html</guid>
5390 <pubDate>Wed, 25 Dec 2013 13:40:00 +0100</pubDate>
5391 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux
5392 project&lt;/a&gt; consist of both newcomers and old timers, and this time I
5393 was able to get an interview with a newcomer in the project who showed
5394 up on the IRC channel a few weeks ago to let us know about his
5395 successful installation of Debian Edu Wheezy in his School. Say hello
5396 to &lt;a href=&quot;https://www.ohloh.net/accounts/Natureshadow&quot;&gt;Dominik
5397 George&lt;/a&gt;.&lt;/p&gt;
5398
5399 &lt;!-- http://www.dominik-george.de/images/foto.jpg --&gt;
5400
5401 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
5402
5403 &lt;p&gt;I am a 23 year-old student from Germany who has spent half of his
5404 life with open source. In &quot;real life&quot;, I am, as already mentioned, a
5405 student in the fields of Computer Science, Electrical Engineering,
5406 Information Technologies and Anglistics. Due to my (only partially
5407 voluntary) huge engagement in the open source world, these things are
5408 a bit vacant right now however.&lt;/p&gt;
5409
5410 &lt;p&gt;I also have been working as a project teacher at a Gymasnium
5411 (public school) for various years now. I took up that work some time
5412 around 2005 when still attending that school myself and have continued
5413 it until today. I also had been running the (kind of very advanced)
5414 network of that school together with a team of very interested and
5415 talented students in the age of 11 to 15 years, who took the chance to
5416 learn a lot about open source and networking before I left the school
5417 to help building another school&#39;s informational education concept from
5418 scratch.&lt;/p&gt;
5419
5420 &lt;p&gt;That said, one might see me as a kind of &quot;glue&quot; between school kids
5421 and the elderly of teachers as well as between the open source
5422 ecosystem and the (even more complex) educational ecosystem.&lt;/p&gt;
5423
5424 &lt;p&gt;When I am not busy with open source or education, I like Geocaching
5425 and cycling.&lt;/p&gt;
5426
5427 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
5428 project?&lt;/strong&gt;&lt;/p&gt;
5429
5430 &lt;p&gt;I think that happened some time around 2009 when I first attended
5431 &lt;a href=&quot;http://www.froscon.org&quot;&gt;FrOSCon&lt;/a&gt; and visited the project
5432 booth. I think I wasn&#39;t too interested back then because I used to
5433 have an attitude of disliking software that does too much stuff on its
5434 own. Maybe I was too inexperienced to realise the upsides of an
5435 &quot;out-of-the-box&quot; solution ;).&lt;/p&gt;
5436
5437 &lt;p&gt;The first time I actively talked to Skolelinux people was at
5438 &lt;a href=&quot;http://www.openrheinruhr.de&quot;&gt;OpenRheinRuhr&lt;/a&gt; 2011 when the
5439 BiscuIT project, a home-grewn software used by my school for various
5440 really cool things from timetables and class contact lists to lunch
5441 ordering, student ID card printing and project elections first got to
5442 a stage where it could have been published. I asked the Skolelinux
5443 guys running the booth if the project were interested in it and gave a
5444 small demonstration, but there wasn&#39;t any real feedback and the guys
5445 seemed rather uninterested.&lt;/p&gt;
5446
5447 &lt;p&gt;After I left the school where I developed the software, it got
5448 mostly lost, but I am now reimplementing it for my new school. I have
5449 reusability and compatibility in mind, and I hop there will be a new
5450 basis for contributing it to the Skolelinux project ;)!&lt;/p&gt;
5451
5452 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
5453 Edu?&lt;/strong&gt;&lt;/p&gt;
5454
5455 &lt;p&gt;The most important advantage seems to be that it &quot;just
5456 works&quot;. After overcoming some minor (but still very annoying) glitches
5457 in the installer, I got a fully functional, working school network,
5458 without the month-long hassle I experienced when setting all that up
5459 from scratch in earlier years. And above that, it rocked - I didn&#39;t
5460 have any real hardware at hand, because the school was just founded
5461 and has no money whatsoever, so I installed a combined server (main
5462 server, terminal services and workstation) in a VM on my personal
5463 notebook, bridging the LTSP network interface to the ethernet port,
5464 and then PXE-booted the Windows notebooks that were lying around from
5465 it. I could use 8 clients without any performance issues, by using a
5466 tiny little VM on a tiny little notebook. I think that&#39;s enough to say
5467 that it rocks!&lt;/p&gt;
5468
5469 &lt;p&gt;Secondly, there are marketing reasons. Life&#39;s bad, and so no
5470 politician will ever permit a setup described as &quot;Debian, an universal
5471 operating system, with some really cool educational tools&quot; while they
5472 will be jsut fine with &quot;Skolelinux, a single-purpose solution for your
5473 school network&quot;, even if both turn out to be the very same thing (yes,
5474 this is unfair towards the Skolelinux project, and must not be taken
5475 too seriously - you get the idea, anyway).&lt;/p&gt;
5476
5477 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
5478 Edu?&lt;/strong&gt;&lt;/p&gt;
5479
5480 &lt;p&gt;I have not been involved with Skolelinux long enough to really
5481 answer this question in a fair way. Thus, please allow me to put it in
5482 other words: &quot;What do you expect from Skolelinux to keep liking it?&quot; I
5483 can list a few points about that:&lt;/p&gt;
5484
5485 &lt;ul&gt;
5486
5487 &lt;li&gt;always strive to get all things integrated into Debian upstream
5488 &lt;li&gt;be open to discussion about changes and the like, even with newcomers
5489 &lt;li&gt;be helpful at being helpful ;)
5490
5491 &lt;/ul&gt;
5492
5493 &lt;p&gt;I&#39;m really sorry I cannot say much more about that :(!&lt;/p&gt;
5494
5495 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
5496
5497 &lt;p&gt;First of all, all software I use is free and open. I have abandoned
5498 all non-free software (except for firmware on my darned phone) this
5499 year.&lt;/p&gt;
5500
5501 &lt;p&gt;I run Debian GNU/Linux on all PC systems I use. On that, I mostly
5502 run text tools. I use
5503 &lt;a href=&quot;https://www.mirbsd.org/mksh.htm&quot;&gt;mksh&lt;/a&gt; as shell,
5504 &lt;a href=&quot;https://www.mirbsd.org/jupp.htm&quot;&gt;jupp&lt;/a&gt; as very advanced
5505 text editor (I even got the developer to help me write a script/macro
5506 based full-featured student management software with the two),
5507 &lt;a href=&quot;http://mcabber.com/&quot;&gt;mcabber&lt;/a&gt; for XMPP and
5508 &lt;a href=&quot;http://www.irssi.org/&quot;&gt;irssi&lt;/a&gt; for IRC. For that overly
5509 coloured world called the WWW, I use
5510 &lt;a href=&quot;https://www.mozilla.org/en-US/firefox/new/&quot;&gt;Iceweasel
5511 (Firefox)&lt;/a&gt;. Oh, and &lt;a href=&quot;http://www.mutt.org/&quot;&gt;mutt&lt;/a&gt; for
5512 e-mail.&lt;/p&gt;
5513
5514 &lt;p&gt;However, while I am personally aware of the fact that text tools
5515 are more efficient and powerful than anything else, I also use (or at
5516 least operate) some tools that are suitable to bring open source to
5517 kids. One of these things is &lt;a href=&quot;http://jappix.org/&quot;&gt;Jappix&lt;/a&gt;,
5518 which I already introduced to some kids even before they got aware of
5519 Facebook, making them see for themselves that they do not need
5520 Facebook now ;).&lt;/p&gt;
5521
5522 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
5523 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
5524
5525 &lt;p&gt;Well, that&#39;s a two-sided thing. One side is what I believe, and one
5526 side is what I have experienced.&lt;/p&gt;
5527
5528 &lt;p&gt;I believe that the right strategy is showing them the benefits. But
5529 that won&#39;t work out as long as the acceptance of free alternatives
5530 grows globally. What I mean is that if all the kids are almost forced
5531 to use Windows, Facebook, Skype, you name it at home, they will not
5532 see why they would want to use alternatives at school. I have seen
5533 students take seat in front of a fully-functional, modern Debian
5534 desktop that could do anything their Windows at home could do, and
5535 they jsut refused to use it because &quot;Linux sucks&quot;. It is something
5536 that makes the council of our city spend around 600000 € to buy
5537 software - not including hardware, mind you - for operating school
5538 networks, and for installing a system that, as has been proved, does
5539 not work. For those of you readers who are good at maths, have you
5540 already found out how many lives could have been saved with that money
5541 if we had instead used it to bring education to parts of the world
5542 that need it? I have, and found it to be nothing less dramatic than
5543 plain criminal.&lt;/p&gt;
5544
5545 &lt;p&gt;That said, the only feasible way appears to be the bottom up
5546 method. We have to bring free software to kids and parents. I have
5547 founded an association named
5548 &lt;a href=&quot;https://www.teckids.org&quot;&gt;Teckids&lt;/a&gt; here in Germany that does
5549 just that. We organise several events for kids and adolescents in the
5550 area of free and open source software, for example the
5551 &lt;a href=&quot;http://kids.froscon.org&quot;&gt;FrogLabs&lt;/a&gt;, which share staff with
5552 Teckids and are the youth programme of
5553 &lt;a href=&quot;http://www.froscon.org&quot;&gt;the Free and Open Source Software
5554 Conference (FrOSCon)&lt;/a&gt;. We do a lot more than most other conferences
5555 - this year, we first offered the FrogLabs as a holiday camp for kids
5556 aged 10 to 16. It was a huge success, with approx. 30 kids taking part
5557 and learning with and about free software through a whole weekend. All
5558 of us had a lot of fun, and the results were really exciting.&lt;/p&gt;
5559
5560 &lt;p&gt;Apart from that, we are preparing a campaign that is supposed to bring
5561 the message of free alternatives to stuff kids use every day to them and
5562 their parents, e.g. the use of Jabber / Jappix instead of Facebook and
5563 Skype. To make that possible, we are planning to get together a team of
5564 clever kids who understand very well what their peers need and can bring
5565 it across to them. So we will have a peer-driven network of adolescents
5566 who teach each other and collect feedback from the community of minors.
5567 We then take that feedback and our own experience to work closely with
5568 open source projects, such as Skolelinux or Jappix, at improving their
5569 software in a way that makes it more and more attractive for the target
5570 group. At least I hope that we will have good cooperation with
5571 Skolelinux in the future ;)!&lt;/p&gt;
5572
5573 &lt;p&gt;So in conclusion, what I believe is that, if it weren&#39;t for the world
5574 being so bad, it should be very clear to the political decision makers
5575 that the only way to go nowadays is free software for various reasons,
5576 but I have learnt that the only way that seems to work is bottom up.&lt;/p&gt;
5577
5578 &lt;!--
5579
5580 &gt; * Who should be interviewed with this questions in the future?
5581
5582 That&#39;s probably the hardest question of them all, as I do not know the
5583 community. However, I would be willing to do the following:
5584
5585 &lt;li&gt;Run an interview with a German headteacher who is very open to
5586 free software, and also prefers it, but cannot really use it because
5587 of the decision makers above;
5588 &lt;li&gt;Run interviews with some kids, both with and without previous
5589 knowledge about free software
5590
5591 If that is wanted, just let me know ;).
5592
5593 --&gt;
5594 </description>
5595 </item>
5596
5597 <item>
5598 <title>Debian Edu interview: Klaus Knopper</title>
5599 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Klaus_Knopper.html</link>
5600 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Klaus_Knopper.html</guid>
5601 <pubDate>Fri, 6 Dec 2013 09:50:00 +0100</pubDate>
5602 <description>&lt;p&gt;It has been a while since I managed to publish the last interview,
5603 but the &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
5604 Skolelinux&lt;/a&gt; community is still going strong, and yesterday we even
5605 had a new school administrator show up on
5606 &lt;a href=&quot;irc://irc.debian.org/#debian-edu&quot;&gt;#debian-edu&lt;/a&gt; to share
5607 his success story with installing Debian Edu at their school. This
5608 time I have been able to get some helpful comments from the creator of
5609 Knoppix, Klaus Knopper, who was involved in a Skolelinux project in
5610 Germany a few years ago.&lt;/p&gt;
5611
5612 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
5613
5614 &lt;p&gt;I am Klaus Knopper. I have a master degree in electrical
5615 engineering, and is currently professor in information management at
5616 the university of applied sciences Kaiserslautern / Germany and
5617 freelance Open Source software developer and consultant.&lt;/p&gt;
5618
5619 &lt;p&gt;All of this is pretty much of the work I spend my days with. Apart
5620 from teaching, I&#39;m also conducting some more or less experimental
5621 projects like the &lt;a href=&quot;http://www.knoppix.org&quot;&gt;Knoppix GNU/Linux live
5622 system&lt;/a&gt; (Debian-based like Skolelinux),
5623 &lt;a href=&quot;http://www.knopper.net/knoppix-adriane/index-en.html&quot;&gt;ADRIANE&lt;/a&gt;
5624 (a blind-friendly talking desktop system) and
5625 &lt;a href=&quot;http://www.knopper.net/linbo/index-en.html&quot;&gt;LINBO&lt;/a&gt;
5626 (Linux-based network boot console, a fast remote install and repair
5627 system supporting various operating systems).&lt;/p&gt;
5628
5629 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
5630 project?&lt;/strong&gt;&lt;/p&gt;
5631
5632 &lt;p&gt;The credit for this have to go to Kurt Gramlich, who is the German
5633 coordinator for Skolelinux. We were looking for an all-in-one open
5634 source community-supported distribution for schools, and Kurt
5635 introduced us to Skolelinux for this purpose.&lt;/p&gt;
5636
5637 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
5638 Edu?&lt;/strong&gt;&lt;/p&gt;
5639
5640 &lt;ul&gt;
5641 &lt;li&gt;Quick installation,&lt;/li&gt;
5642 &lt;li&gt;works (almost) out of the box,&lt;/li&gt;
5643 &lt;li&gt;contains many useful software packages for teaching and learning,&lt;/li&gt;
5644 &lt;li&gt;is a purely community-based distro and not controlled by a
5645 single company,&lt;/li&gt;
5646 &lt;li&gt;has a large number of supporters and teachers who share their
5647 experience and problem solutions.&lt;/li&gt;
5648 &lt;/ul&gt;
5649
5650 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
5651 Edu?&lt;/strong&gt;&lt;/p&gt;
5652
5653 &lt;ul&gt;
5654 &lt;li&gt;Skolelinux is - as we had to learn - not easily upgradable to
5655 the next version. Opposed to its genuine Debian base, upgrading to
5656 a new version means a full new installation from scratch to get it
5657 working again reliably.
5658
5659 &lt;li&gt;Skolelinux is based on Debian/stable, and therefore always a
5660 little outdated in terms of program versions compared to Edubuntu or
5661 similar educational Linux distros, which rather use Debian/testing
5662 as their base.
5663
5664 &lt;li&gt;Skolelinux has some very self-opinionated and stubborn default
5665 configuration which in my opinion adds unnecessary complexity and is
5666 not always suitable for a schools needs, the preset network
5667 configuration is actually a core definition feature of Skolelinux
5668 and not easy to change, so schools sometimes have to change their
5669 network configuration to make it &quot;Skolelinux-compatible&quot;.
5670
5671 &lt;li&gt;Some proposed extensions, which were made available as
5672 contribution, like secure examination mode and lecture material
5673 distribution and collection, were not accepted into the mainline
5674 Skolelinux development and are now not easy to maintain in the
5675 future because of Skolelinux somewhat undeterministic update
5676 schemes.&lt;/li&gt;
5677
5678 &lt;li&gt;Skolelinux has only a very tiny number of base developers
5679 compared to Debian.&lt;/li&gt;
5680
5681 &lt;/ul&gt;
5682
5683 &lt;p&gt;For these reasons and experience from our project, I would now
5684 rather consider using plain Debian for schools next time, until
5685 Skolelinux is more closely integrated into Debian and becomes
5686 upgradeable without reinstallation.&lt;/p&gt;
5687
5688 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
5689
5690 &lt;p&gt;GNU/Linux with LXDE desktop, bash for interactive dialog and
5691 programming, texlive for documentation and correspondence,
5692 occasionally LibreOffice for document format conversion. Various
5693 programming languages for teaching.&lt;/p&gt;
5694
5695 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
5696 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
5697
5698 &lt;p&gt;Strong arguments are&lt;/p&gt;
5699
5700 &lt;ul&gt;
5701
5702 &lt;li&gt;Knowledge is free, and so should be methods and tools for
5703 teaching and learning.&lt;/li&gt;
5704
5705 &lt;li&gt;Students can learn with and use the same software at school, at
5706 home, and at their working place without running into license or
5707 conversion problems.&lt;/li&gt;
5708
5709 &lt;li&gt;Closed source or proprietary software hides knowledge rather
5710 than exposing it, and proprietary software vendors try to bind
5711 customers to certain products. But teachers need to teach
5712 science, not products.&lt;/li&gt;
5713
5714 &lt;li&gt;If you have everything you for daily work as open source, what
5715 would you need proprietary software for?&lt;/li&gt;
5716
5717 &lt;/ul&gt;
5718 </description>
5719 </item>
5720
5721 <item>
5722 <title>Dugnadsnett for alle, a wireless community network in Oslo, take shape</title>
5723 <link>http://people.skolelinux.org/pere/blog/Dugnadsnett_for_alle__a_wireless_community_network_in_Oslo__take_shape.html</link>
5724 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Dugnadsnett_for_alle__a_wireless_community_network_in_Oslo__take_shape.html</guid>
5725 <pubDate>Sat, 30 Nov 2013 10:10:00 +0100</pubDate>
5726 <description>&lt;p&gt;If you want the ability to electronically communicate directly with
5727 your neighbors and friends using a network controlled by your peers in
5728 stead of centrally controlled by a few corporations, or would like to
5729 experiment with interesting network technology, the
5730 &lt;a href=&quot;http://www.dugnadsnett.no/&quot;&gt;Dugnasnett for alle i Oslo&lt;/a&gt;
5731 might be project for you. 39 mesh nodes are currently being planned,
5732 in the freshly started initiative from NUUG and Hackeriet to create a
5733 wireless community network. The work is inspired by
5734 &lt;a href=&quot;http://freifunk.net/&quot;&gt;Freifunk&lt;/a&gt;,
5735 &lt;a href=&quot;http://www.awmn.net/&quot;&gt;Athens Wireless Metropolitan
5736 Network&lt;/a&gt;, &lt;a href=&quot;http://en.wikipedia.org/wiki/Roofnet&quot;&gt;Roofnet&lt;/a&gt;
5737 and other successful mesh networks around the globe. Two days ago we
5738 held a workshop to try to get people started on setting up their own
5739 mesh node, and there we decided to create a new mailing list
5740 &lt;a href=&quot;http://lists.nuug.no/mailman/listinfo/dugnadsnett&quot;&gt;dugnadsnett
5741 (at) nuug.no&lt;/a&gt; and IRC channel
5742 &lt;a href=&quot;irc://irc.freenode.net/#dugnadsnett.no&quot;&gt;#dugnadsnett.no&lt;/a&gt; to
5743 coordinate the work. See also the NUUG blog post
5744 &lt;a href=&quot;http://www.nuug.no/news/E_postliste_og_IRC_kanal_for_Dugnadsnett_for_alle_i_Oslo.shtml&quot;&gt;announcing
5745 the mailing list and IRC channel&lt;/a&gt;.&lt;/p&gt;
5746 </description>
5747 </item>
5748
5749 <item>
5750 <title>New chrpath release 0.15</title>
5751 <link>http://people.skolelinux.org/pere/blog/New_chrpath_release_0_15.html</link>
5752 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/New_chrpath_release_0_15.html</guid>
5753 <pubDate>Sun, 24 Nov 2013 09:30:00 +0100</pubDate>
5754 <description>&lt;p&gt;After many years break from the package and a vain hope that
5755 development would be continued by someone else, I finally pulled my
5756 acts together this morning and wrapped up a new release of chrpath,
5757 the command line tool to modify the rpath and runpath of already
5758 compiled ELF programs. The update was triggered by the persistence of
5759 Isha Vishnoi at IBM, which needed a new config.guess file to get
5760 support for the ppc64le architecture (powerpc 64-bit Little Endian) he
5761 is working on. I checked the
5762 &lt;a href=&quot;http://packages.qa.debian.org/chrpath&quot;&gt;Debian&lt;/a&gt;,
5763 &lt;a href=&quot;https://launchpad.net/ubuntu/+source/chrpath&quot;&gt;Ubuntu&lt;/a&gt; and
5764 &lt;a href=&quot;https://admin.fedoraproject.org/pkgdb/acls/name/chrpath&quot;&gt;Fedora&lt;/a&gt;
5765 packages for interesting patches (failed to find the source from
5766 OpenSUSE and Mandriva packages), and found quite a few nice fixes.
5767 These are the release notes:&lt;/p&gt;
5768
5769 &lt;p&gt;New in 0.15 released 2013-11-24:&lt;/p&gt;
5770
5771 &lt;ul&gt;
5772
5773 &lt;li&gt;Updated config.sub and config.guess from the GNU project to work
5774 with newer architectures. Thanks to isha vishnoi for the heads
5775 up.&lt;/li&gt;
5776
5777 &lt;li&gt;Updated README with current URLs.&lt;/li&gt;
5778
5779 &lt;li&gt;Added byteswap fix found in Ubuntu, credited Jeremy Kerr and
5780 Matthias Klose.&lt;/li&gt;
5781
5782 &lt;li&gt;Added missing help for -k|--keepgoing option, using patch by
5783 Petr Machata found in Fedora.&lt;/li&gt;
5784
5785 &lt;li&gt;Rewrite removal of RPATH/RUNPATH to make sure the entry in
5786 .dynamic is a NULL terminated string. Based on patch found in
5787 Fedora credited Axel Thimm and Christian Krause.&lt;/li&gt;
5788
5789 &lt;/ul&gt;
5790
5791 &lt;p&gt;You can
5792 &lt;a href=&quot;https://alioth.debian.org/frs/?group_id=31052&quot;&gt;download the
5793 new version 0.15 from alioth&lt;/a&gt;. Please let us know via the Alioth
5794 project if something is wrong with the new release. The test suite
5795 did not discover any old errors, so if you find a new one, please also
5796 include a testsuite check.&lt;/p&gt;
5797 </description>
5798 </item>
5799
5800 <item>
5801 <title>All drones should be radio marked with what they do and who they belong to</title>
5802 <link>http://people.skolelinux.org/pere/blog/All_drones_should_be_radio_marked_with_what_they_do_and_who_they_belong_to.html</link>
5803 <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>
5804 <pubDate>Thu, 21 Nov 2013 15:40:00 +0100</pubDate>
5805 <description>&lt;p&gt;Drones, flying robots, are getting more and more popular. The most
5806 know ones are the killer drones used by some government to murder
5807 people they do not like without giving them the chance of a fair
5808 trial, but the technology have many good uses too, from mapping and
5809 forest maintenance to photography and search and rescue. I am sure it
5810 is just a question of time before &quot;bad drones&quot; are in the hands of
5811 private enterprises and not only state criminals but petty criminals
5812 too. The drone technology is very useful and very dangerous. To have
5813 some control over the use of drones, I agree with Daniel Suarez in his
5814 TED talk
5815 &quot;&lt;a href=&quot;https://archive.org/details/DanielSuarez_2013G&quot;&gt;The kill
5816 decision shouldn&#39;t belong to a robot&lt;/a&gt;&quot;, where he suggested this
5817 little gem to keep the good while limiting the bad use of drones:&lt;/p&gt;
5818
5819 &lt;blockquote&gt;
5820
5821 &lt;p&gt;Each robot and drone should have a cryptographically signed
5822 I.D. burned in at the factory that can be used to track its movement
5823 through public spaces. We have license plates on cars, tail numbers on
5824 aircraft. This is no different. And every citizen should be able to
5825 download an app that shows the population of drones and autonomous
5826 vehicles moving through public spaces around them, both right now and
5827 historically. And civic leaders should deploy sensors and civic drones
5828 to detect rogue drones, and instead of sending killer drones of their
5829 own up to shoot them down, they should notify humans to their
5830 presence. And in certain very high-security areas, perhaps civic
5831 drones would snare them and drag them off to a bomb disposal facility.&lt;/p&gt;
5832
5833 &lt;p&gt;But notice, this is more an immune system than a weapons system. It
5834 would allow us to avail ourselves of the use of autonomous vehicles
5835 and drones while still preserving our open, civil society.&lt;/p&gt;
5836
5837 &lt;/blockquote&gt;
5838
5839 &lt;p&gt;The key is that &lt;em&gt;every citizen&lt;/em&gt; should be able to read the
5840 radio beacons sent from the drones in the area, to be able to check
5841 both the government and others use of drones. For such control to be
5842 effective, everyone must be able to do it. What should such beacon
5843 contain? At least formal owner, purpose, contact information and GPS
5844 location. Probably also the origin and target position of the current
5845 flight. And perhaps some registration number to be able to look up
5846 the drone in a central database tracking their movement. Robots
5847 should not have privacy. It is people who need privacy.&lt;/p&gt;
5848 </description>
5849 </item>
5850
5851 <item>
5852 <title>Lets make a wireless community network in Oslo!</title>
5853 <link>http://people.skolelinux.org/pere/blog/Lets_make_a_wireless_community_network_in_Oslo_.html</link>
5854 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lets_make_a_wireless_community_network_in_Oslo_.html</guid>
5855 <pubDate>Wed, 13 Nov 2013 21:00:00 +0100</pubDate>
5856 <description>&lt;p&gt;Today NUUG and Hackeriet announced
5857 &lt;a href=&quot;http://www.nuug.no/news/Bli_med___bygge_dugnadsnett_for_alle_i_Oslo.shtml&quot;&gt;our
5858 plans to join forces and create a wireless community network in
5859 Oslo&lt;/a&gt;. The workshop to help people get started will take place
5860 Thursday 2013-11-28, but we already are collecting the geolocation of
5861 people joining forces to make this happen. We have
5862 &lt;a href=&quot;https://github.com/petterreinholdtsen/meshfx-node/blob/master/oslo-nodes.geojson&quot;&gt;9
5863 locations plotted on the map&lt;/a&gt;, but we will need more before we have
5864 a connected mesh spread across Oslo. If this sound interesting to
5865 you, please join us at the workshop. If you are too impatient to wait
5866 15 days, please join us on the IRC channel
5867 &lt;a href=&quot;irc://irc.freenode.net/%23nuug&quot;&gt;#nuug on irc.freenode.net&lt;/a&gt;
5868 right away. :)&lt;/p&gt;
5869 </description>
5870 </item>
5871
5872 <item>
5873 <title>Running TP-Link MR3040 as a batman-adv mesh node using openwrt</title>
5874 <link>http://people.skolelinux.org/pere/blog/Running_TP_Link_MR3040_as_a_batman_adv_mesh_node_using_openwrt.html</link>
5875 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Running_TP_Link_MR3040_as_a_batman_adv_mesh_node_using_openwrt.html</guid>
5876 <pubDate>Sun, 10 Nov 2013 23:00:00 +0100</pubDate>
5877 <description>&lt;p&gt;Continuing my research into mesh networking, I was recommended to
5878 use TP-Link 3040 and 3600 access points as mesh nodes, and the pair I
5879 bought arrived on Friday. Here are my notes on how to set up the
5880 MR3040 as a mesh node using
5881 &lt;a href=&quot;http://www.openwrt.org/&quot;&gt;OpenWrt&lt;/a&gt;.&lt;/p&gt;
5882
5883 &lt;p&gt;I started by following the instructions on the OpenWRT wiki for
5884 &lt;a href=&quot;http://wiki.openwrt.org/toh/tp-link/tl-mr3040&quot;&gt;TL-MR3040&lt;/a&gt;,
5885 and downloaded
5886 &lt;a href=&quot;http://downloads.openwrt.org/snapshots/trunk/ar71xx/openwrt-ar71xx-generic-tl-mr3040-v2-squashfs-factory.bin&quot;&gt;the
5887 recommended firmware image&lt;/a&gt;
5888 (openwrt-ar71xx-generic-tl-mr3040-v2-squashfs-factory.bin) and
5889 uploaded it into the original web interface. The flashing went fine,
5890 and the machine was available via telnet on the ethernet port. After
5891 logging in and setting the root password, ssh was available and I
5892 could start to set it up as a batman-adv mesh node.&lt;/p&gt;
5893
5894 &lt;p&gt;I started off by reading the instructions from
5895 &lt;a href=&quot;http://wirelessafrica.meraka.org.za/wiki/index.php?title=Antoine&#39;s_Research&quot;&gt;Wireless
5896 Africa&lt;/a&gt;, which had quite a lot of useful information, but
5897 eventually I followed the recipe from the Open Mesh wiki for
5898 &lt;a href=&quot;http://www.open-mesh.org/projects/batman-adv/wiki/Batman-adv-openwrt-config&quot;&gt;using
5899 batman-adv on OpenWrt&lt;/a&gt;. A small snag was the fact that the
5900 &lt;tt&gt;opkg install kmod-batman-adv&lt;/tt&gt; command did not work as it
5901 should. The batman-adv kernel module would fail to load because its
5902 dependency crc16 was not already loaded. I
5903 &lt;a href=&quot;https://dev.openwrt.org/ticket/14452&quot;&gt;reported the bug&lt;/a&gt; to
5904 the openwrt project and hope it will be fixed soon. But the problem
5905 only seem to affect initial testing of batman-adv, as configuration
5906 seem to work when booting from scratch.&lt;/p&gt;
5907
5908 &lt;p&gt;The setup is done using files in /etc/config/. I did not bridge
5909 the Ethernet and mesh interfaces this time, to be able to hook up the
5910 box on my local network and log into it for configuration updates.
5911 The following files were changed and look like this after modifying
5912 them:&lt;/p&gt;
5913
5914 &lt;p&gt;&lt;tt&gt;/etc/config/network&lt;/tt&gt;&lt;/p&gt;
5915
5916 &lt;pre&gt;
5917
5918 config interface &#39;loopback&#39;
5919 option ifname &#39;lo&#39;
5920 option proto &#39;static&#39;
5921 option ipaddr &#39;127.0.0.1&#39;
5922 option netmask &#39;255.0.0.0&#39;
5923
5924 config globals &#39;globals&#39;
5925 option ula_prefix &#39;fdbf:4c12:3fed::/48&#39;
5926
5927 config interface &#39;lan&#39;
5928 option ifname &#39;eth0&#39;
5929 option type &#39;bridge&#39;
5930 option proto &#39;dhcp&#39;
5931 option ipaddr &#39;192.168.1.1&#39;
5932 option netmask &#39;255.255.255.0&#39;
5933 option hostname &#39;tl-mr3040&#39;
5934 option ip6assign &#39;60&#39;
5935
5936 config interface &#39;mesh&#39;
5937 option ifname &#39;adhoc0&#39;
5938 option mtu &#39;1528&#39;
5939 option proto &#39;batadv&#39;
5940 option mesh &#39;bat0&#39;
5941 &lt;/pre&gt;
5942
5943 &lt;p&gt;&lt;tt&gt;/etc/config/wireless&lt;/tt&gt;&lt;/p&gt;
5944 &lt;pre&gt;
5945
5946 config wifi-device &#39;radio0&#39;
5947 option type &#39;mac80211&#39;
5948 option channel &#39;11&#39;
5949 option hwmode &#39;11ng&#39;
5950 option path &#39;platform/ar933x_wmac&#39;
5951 option htmode &#39;HT20&#39;
5952 list ht_capab &#39;SHORT-GI-20&#39;
5953 list ht_capab &#39;SHORT-GI-40&#39;
5954 list ht_capab &#39;RX-STBC1&#39;
5955 list ht_capab &#39;DSSS_CCK-40&#39;
5956 option disabled &#39;0&#39;
5957
5958 config wifi-iface &#39;wmesh&#39;
5959 option device &#39;radio0&#39;
5960 option ifname &#39;adhoc0&#39;
5961 option network &#39;mesh&#39;
5962 option encryption &#39;none&#39;
5963 option mode &#39;adhoc&#39;
5964 option bssid &#39;02:BA:00:00:00:01&#39;
5965 option ssid &#39;meshfx@hackeriet&#39;
5966 &lt;/pre&gt;
5967 &lt;p&gt;&lt;tt&gt;/etc/config/batman-adv&lt;/tt&gt;&lt;/p&gt;
5968 &lt;pre&gt;
5969
5970 config &#39;mesh&#39; &#39;bat0&#39;
5971 option interfaces &#39;adhoc0&#39;
5972 option &#39;aggregated_ogms&#39;
5973 option &#39;ap_isolation&#39;
5974 option &#39;bonding&#39;
5975 option &#39;fragmentation&#39;
5976 option &#39;gw_bandwidth&#39;
5977 option &#39;gw_mode&#39;
5978 option &#39;gw_sel_class&#39;
5979 option &#39;log_level&#39;
5980 option &#39;orig_interval&#39;
5981 option &#39;vis_mode&#39;
5982 option &#39;bridge_loop_avoidance&#39;
5983 option &#39;distributed_arp_table&#39;
5984 option &#39;network_coding&#39;
5985 option &#39;hop_penalty&#39;
5986
5987 # yet another batX instance
5988 # config &#39;mesh&#39; &#39;bat5&#39;
5989 # option &#39;interfaces&#39; &#39;second_mesh&#39;
5990 &lt;/pre&gt;
5991
5992 &lt;p&gt;The mesh node is now operational. I have yet to test its range,
5993 but I hope it is good. I have not yet tested the TP-Link 3600 box
5994 still wrapped up in plastic.&lt;/p&gt;
5995 </description>
5996 </item>
5997
5998 <item>
5999 <title>Debian init.d boot script example for rsyslog</title>
6000 <link>http://people.skolelinux.org/pere/blog/Debian_init_d_boot_script_example_for_rsyslog.html</link>
6001 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_init_d_boot_script_example_for_rsyslog.html</guid>
6002 <pubDate>Sat, 2 Nov 2013 22:40:00 +0100</pubDate>
6003 <description>&lt;p&gt;If one of the points of switching to a new init system in Debian is
6004 &lt;a href=&quot;http://thomas.goirand.fr/blog/?p=147&quot;&gt;to get rid of huge
6005 init.d scripts&lt;/a&gt;, I doubt we need to switch away from sysvinit and
6006 init.d scripts at all. Here is an example init.d script, ie a rewrite
6007 of /etc/init.d/rsyslog:&lt;/p&gt;
6008
6009 &lt;p&gt;&lt;pre&gt;
6010 #!/lib/init/init-d-script
6011 ### BEGIN INIT INFO
6012 # Provides: rsyslog
6013 # Required-Start: $remote_fs $time
6014 # Required-Stop: umountnfs $time
6015 # X-Stop-After: sendsigs
6016 # Default-Start: 2 3 4 5
6017 # Default-Stop: 0 1 6
6018 # Short-Description: enhanced syslogd
6019 # Description: Rsyslog is an enhanced multi-threaded syslogd.
6020 # It is quite compatible to stock sysklogd and can be
6021 # used as a drop-in replacement.
6022 ### END INIT INFO
6023 DESC=&quot;enhanced syslogd&quot;
6024 DAEMON=/usr/sbin/rsyslogd
6025 &lt;/pre&gt;&lt;/p&gt;
6026
6027 &lt;p&gt;Pretty minimalistic to me... For the record, the original sysv-rc
6028 script was 137 lines, and the above is just 15 lines, most of it meta
6029 info/comments.&lt;/p&gt;
6030
6031 &lt;p&gt;How to do this, you ask? Well, one create a new script
6032 /lib/init/init-d-script looking something like this:
6033
6034 &lt;p&gt;&lt;pre&gt;
6035 #!/bin/sh
6036
6037 # Define LSB log_* functions.
6038 # Depend on lsb-base (&gt;= 3.2-14) to ensure that this file is present
6039 # and status_of_proc is working.
6040 . /lib/lsb/init-functions
6041
6042 #
6043 # Function that starts the daemon/service
6044
6045 #
6046 do_start()
6047 {
6048 # Return
6049 # 0 if daemon has been started
6050 # 1 if daemon was already running
6051 # 2 if daemon could not be started
6052 start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test &gt; /dev/null \
6053 || return 1
6054 start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \
6055 $DAEMON_ARGS \
6056 || return 2
6057 # Add code here, if necessary, that waits for the process to be ready
6058 # to handle requests from services started subsequently which depend
6059 # on this one. As a last resort, sleep for some time.
6060 }
6061
6062 #
6063 # Function that stops the daemon/service
6064 #
6065 do_stop()
6066 {
6067 # Return
6068 # 0 if daemon has been stopped
6069 # 1 if daemon was already stopped
6070 # 2 if daemon could not be stopped
6071 # other if a failure occurred
6072 start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --name $NAME
6073 RETVAL=&quot;$?&quot;
6074 [ &quot;$RETVAL&quot; = 2 ] &amp;&amp; return 2
6075 # Wait for children to finish too if this is a daemon that forks
6076 # and if the daemon is only ever run from this initscript.
6077 # If the above conditions are not satisfied then add some other code
6078 # that waits for the process to drop all resources that could be
6079 # needed by services started subsequently. A last resort is to
6080 # sleep for some time.
6081 start-stop-daemon --stop --quiet --oknodo --retry=0/30/KILL/5 --exec $DAEMON
6082 [ &quot;$?&quot; = 2 ] &amp;&amp; return 2
6083 # Many daemons don&#39;t delete their pidfiles when they exit.
6084 rm -f $PIDFILE
6085 return &quot;$RETVAL&quot;
6086 }
6087
6088 #
6089 # Function that sends a SIGHUP to the daemon/service
6090 #
6091 do_reload() {
6092 #
6093 # If the daemon can reload its configuration without
6094 # restarting (for example, when it is sent a SIGHUP),
6095 # then implement that here.
6096 #
6097 start-stop-daemon --stop --signal 1 --quiet --pidfile $PIDFILE --name $NAME
6098 return 0
6099 }
6100
6101 SCRIPTNAME=$1
6102 scriptbasename=&quot;$(basename $1)&quot;
6103 echo &quot;SN: $scriptbasename&quot;
6104 if [ &quot;$scriptbasename&quot; != &quot;init-d-library&quot; ] ; then
6105 script=&quot;$1&quot;
6106 shift
6107 . $script
6108 else
6109 exit 0
6110 fi
6111
6112 NAME=$(basename $DAEMON)
6113 PIDFILE=/var/run/$NAME.pid
6114
6115 # Exit if the package is not installed
6116 #[ -x &quot;$DAEMON&quot; ] || exit 0
6117
6118 # Read configuration variable file if it is present
6119 [ -r /etc/default/$NAME ] &amp;&amp; . /etc/default/$NAME
6120
6121 # Load the VERBOSE setting and other rcS variables
6122 . /lib/init/vars.sh
6123
6124 case &quot;$1&quot; in
6125 start)
6126 [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_daemon_msg &quot;Starting $DESC&quot; &quot;$NAME&quot;
6127 do_start
6128 case &quot;$?&quot; in
6129 0|1) [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_end_msg 0 ;;
6130 2) [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_end_msg 1 ;;
6131 esac
6132 ;;
6133 stop)
6134 [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_daemon_msg &quot;Stopping $DESC&quot; &quot;$NAME&quot;
6135 do_stop
6136 case &quot;$?&quot; in
6137 0|1) [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_end_msg 0 ;;
6138 2) [ &quot;$VERBOSE&quot; != no ] &amp;&amp; log_end_msg 1 ;;
6139 esac
6140 ;;
6141 status)
6142 status_of_proc &quot;$DAEMON&quot; &quot;$NAME&quot; &amp;&amp; exit 0 || exit $?
6143 ;;
6144 #reload|force-reload)
6145 #
6146 # If do_reload() is not implemented then leave this commented out
6147 # and leave &#39;force-reload&#39; as an alias for &#39;restart&#39;.
6148 #
6149 #log_daemon_msg &quot;Reloading $DESC&quot; &quot;$NAME&quot;
6150 #do_reload
6151 #log_end_msg $?
6152 #;;
6153 restart|force-reload)
6154 #
6155 # If the &quot;reload&quot; option is implemented then remove the
6156 # &#39;force-reload&#39; alias
6157 #
6158 log_daemon_msg &quot;Restarting $DESC&quot; &quot;$NAME&quot;
6159 do_stop
6160 case &quot;$?&quot; in
6161 0|1)
6162 do_start
6163 case &quot;$?&quot; in
6164 0) log_end_msg 0 ;;
6165 1) log_end_msg 1 ;; # Old process is still running
6166 *) log_end_msg 1 ;; # Failed to start
6167 esac
6168 ;;
6169 *)
6170 # Failed to stop
6171 log_end_msg 1
6172 ;;
6173 esac
6174 ;;
6175 *)
6176 echo &quot;Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}&quot; &gt;&amp;2
6177 exit 3
6178 ;;
6179 esac
6180
6181 :
6182 &lt;/pre&gt;&lt;/p&gt;
6183
6184 &lt;p&gt;It is based on /etc/init.d/skeleton, and could be improved quite a
6185 lot. I did not really polish the approach, so it might not always
6186 work out of the box, but you get the idea. I did not try very hard to
6187 optimize it nor make it more robust either.&lt;/p&gt;
6188
6189 &lt;p&gt;A better argument for switching init system in Debian than reducing
6190 the size of init scripts (which is a good thing to do anyway), is to
6191 get boot system that is able to handle the kernel events sensibly and
6192 robustly, and do not depend on the boot to run sequentially. The boot
6193 and the kernel have not behaved sequentially in years.&lt;/p&gt;
6194 </description>
6195 </item>
6196
6197 <item>
6198 <title>Browser plugin for SPICE (spice-xpi) uploaded to Debian</title>
6199 <link>http://people.skolelinux.org/pere/blog/Browser_plugin_for_SPICE__spice_xpi__uploaded_to_Debian.html</link>
6200 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Browser_plugin_for_SPICE__spice_xpi__uploaded_to_Debian.html</guid>
6201 <pubDate>Fri, 1 Nov 2013 11:00:00 +0100</pubDate>
6202 <description>&lt;p&gt;&lt;a href=&quot;http://www.spice-space.org/&quot;&gt;The SPICE protocol&lt;/a&gt; for
6203 remote display access is the preferred solution with oVirt and RedHat
6204 Enterprise Virtualization, and I was sad to discover the other day
6205 that the browser plugin needed to use these systems seamlessly was
6206 missing in Debian. The &lt;a href=&quot;http://bugs.debian.org/668284&quot;&gt;request
6207 for a package&lt;/a&gt; was from 2012-04-10 with no progress since
6208 2013-04-01, so I decided to wrap up a package based on the great work
6209 from Cajus Pollmeier and put it in a collab-maint maintained git
6210 repository to get a package I could use. I would very much like
6211 others to help me maintain the package (or just take over, I do not
6212 mind), but as no-one had volunteered so far, I just uploaded it to
6213 NEW. I hope it will be available in Debian in a few days.&lt;/p&gt;
6214
6215 &lt;p&gt;The source is now available from
6216 &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;
6217 </description>
6218 </item>
6219
6220 <item>
6221 <title>Teaching vmdebootstrap to create Raspberry Pi SD card images</title>
6222 <link>http://people.skolelinux.org/pere/blog/Teaching_vmdebootstrap_to_create_Raspberry_Pi_SD_card_images.html</link>
6223 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Teaching_vmdebootstrap_to_create_Raspberry_Pi_SD_card_images.html</guid>
6224 <pubDate>Sun, 27 Oct 2013 17:00:00 +0100</pubDate>
6225 <description>&lt;p&gt;The
6226 &lt;a href=&quot;http://packages.qa.debian.org/v/vmdebootstrap.html&quot;&gt;vmdebootstrap&lt;/a&gt;
6227 program is a a very nice system to create virtual machine images. It
6228 create a image file, add a partition table, mount it and run
6229 debootstrap in the mounted directory to create a Debian system on a
6230 stick. Yesterday, I decided to try to teach it how to make images for
6231 &lt;a href=&quot;https://wiki.debian.org/RaspberryPi&quot;&gt;Raspberry Pi&lt;/a&gt;, as part
6232 of a plan to simplify the build system for
6233 &lt;a href=&quot;https://wiki.debian.org/FreedomBox&quot;&gt;the FreedomBox
6234 project&lt;/a&gt;. The FreedomBox project already uses vmdebootstrap for
6235 the virtualbox images, but its current build system made multistrap
6236 based system for Dreamplug images, and it is lacking support for
6237 Raspberry Pi.&lt;/p&gt;
6238
6239 &lt;p&gt;Armed with the knowledge on how to build &quot;foreign&quot; (aka non-native
6240 architecture) chroots for Raspberry Pi, I dived into the vmdebootstrap
6241 code and adjusted it to be able to build armel images on my amd64
6242 Debian laptop. I ended up giving vmdebootstrap five new options,
6243 allowing me to replicate the image creation process I use to make
6244 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/A_Raspberry_Pi_based_batman_adv_Mesh_network_node.html&quot;&gt;Debian
6245 Jessie based mesh node images for the Raspberry Pi&lt;/a&gt;. First, the
6246 &lt;tt&gt;--foreign /path/to/binfm_handler&lt;/tt&gt; option tell vmdebootstrap to
6247 call debootstrap with --foreign and to copy the handler into the
6248 generated chroot before running the second stage. This allow
6249 vmdebootstrap to create armel images on an amd64 host. Next I added
6250 two new options &lt;tt&gt;--bootsize size&lt;/tt&gt; and &lt;tt&gt;--boottype
6251 fstype&lt;/tt&gt; to teach it to create a separate /boot/ partition with the
6252 given file system type, allowing me to create an image with a vfat
6253 partition for the /boot/ stuff. I also added a &lt;tt&gt;--variant
6254 variant&lt;/tt&gt; option to allow me to create smaller images without the
6255 Debian base system packages installed. Finally, I added an option
6256 &lt;tt&gt;--no-extlinux&lt;/tt&gt; to tell vmdebootstrap to not install extlinux
6257 as a boot loader. It is not needed on the Raspberry Pi and probably
6258 most other non-x86 architectures. The changes were accepted by the
6259 upstream author of vmdebootstrap yesterday and today, and is now
6260 available from
6261 &lt;a href=&quot;http://git.liw.fi/cgi-bin/cgit/cgit.cgi/vmdebootstrap/&quot;&gt;the
6262 upstream project page&lt;/a&gt;.&lt;/p&gt;
6263
6264 &lt;p&gt;To use it to build a Raspberry Pi image using Debian Jessie, first
6265 create a small script (the customize script) to add the non-free
6266 binary blob needed to boot the Raspberry Pi and the APT source
6267 list:&lt;/p&gt;
6268
6269 &lt;p&gt;&lt;pre&gt;
6270 #!/bin/sh
6271 set -e # Exit on first error
6272 rootdir=&quot;$1&quot;
6273 cd &quot;$rootdir&quot;
6274 cat &amp;lt;&amp;lt;EOF &gt; etc/apt/sources.list
6275 deb http://http.debian.net/debian/ jessie main contrib non-free
6276 EOF
6277 # Install non-free binary blob needed to boot Raspberry Pi. This
6278 # install a kernel somewhere too.
6279 wget https://raw.github.com/Hexxeh/rpi-update/master/rpi-update \
6280 -O $rootdir/usr/bin/rpi-update
6281 chmod a+x $rootdir/usr/bin/rpi-update
6282 mkdir -p $rootdir/lib/modules
6283 touch $rootdir/boot/start.elf
6284 chroot $rootdir rpi-update
6285 &lt;/pre&gt;&lt;/p&gt;
6286
6287 &lt;p&gt;Next, fetch the latest vmdebootstrap script and call it like this
6288 to build the image:&lt;/p&gt;
6289
6290 &lt;pre&gt;
6291 sudo ./vmdebootstrap \
6292 --variant minbase \
6293 --arch armel \
6294 --distribution jessie \
6295 --mirror http://http.debian.net/debian \
6296 --image test.img \
6297 --size 600M \
6298 --bootsize 64M \
6299 --boottype vfat \
6300 --log-level debug \
6301 --verbose \
6302 --no-kernel \
6303 --no-extlinux \
6304 --root-password raspberry \
6305 --hostname raspberrypi \
6306 --foreign /usr/bin/qemu-arm-static \
6307 --customize `pwd`/customize \
6308 --package netbase \
6309 --package git-core \
6310 --package binutils \
6311 --package ca-certificates \
6312 --package wget \
6313 --package kmod
6314 &lt;/pre&gt;&lt;/p&gt;
6315
6316 &lt;p&gt;The list of packages being installed are the ones needed by
6317 rpi-update to make the image bootable on the Raspberry Pi, with the
6318 exception of netbase, which is needed by debootstrap to find
6319 /etc/hosts with the minbase variant. I really wish there was a way to
6320 set up an Raspberry Pi using only packages in the Debian archive, but
6321 that is not possible as far as I know, because it boots from the GPU
6322 using a non-free binary blob.&lt;/p&gt;
6323
6324 &lt;p&gt;The build host need debootstrap, kpartx and qemu-user-static and
6325 probably a few others installed. I have not checked the complete
6326 build dependency list.&lt;/p&gt;
6327
6328 &lt;p&gt;The resulting image will not use the hardware floating point unit
6329 on the Raspberry PI, because the armel architecture in Debian is not
6330 optimized for that use. So the images created will be a bit slower
6331 than &lt;a href=&quot;http://www.raspbian.org/&quot;&gt;Raspbian&lt;/a&gt; based images.&lt;/p&gt;
6332 </description>
6333 </item>
6334
6335 <item>
6336 <title>A Raspberry Pi based batman-adv Mesh network node</title>
6337 <link>http://people.skolelinux.org/pere/blog/A_Raspberry_Pi_based_batman_adv_Mesh_network_node.html</link>
6338 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_Raspberry_Pi_based_batman_adv_Mesh_network_node.html</guid>
6339 <pubDate>Mon, 21 Oct 2013 11:40:00 +0200</pubDate>
6340 <description>&lt;p&gt;The last few days I have been experimenting with
6341 &lt;a href=&quot;http://www.open-mesh.org/projects/batman-adv/wiki&quot;&gt;the
6342 batman-adv mesh technology&lt;/a&gt;. I want to gain some experience to see
6343 if it will fit &lt;a href=&quot;https://wiki.debian.org/FreedomBox&quot;&gt;the
6344 Freedombox project&lt;/a&gt;, and together with my neighbors try to build a
6345 mesh network around the park where I live. Batman-adv is a layer 2
6346 mesh system (&quot;ethernet&quot; in other words), where the mesh network appear
6347 as if all the mesh clients are connected to the same switch.&lt;/p&gt;
6348
6349 &lt;p&gt;My hardware of choice was the Linksys WRT54GL routers I had lying
6350 around, but I&#39;ve been unable to get them working with batman-adv. So
6351 instead, I started playing with a
6352 &lt;a href=&quot;http://www.raspberrypi.org/&quot;&gt;Raspberry Pi&lt;/a&gt;, and tried to
6353 get it working as a mesh node. My idea is to use it to create a mesh
6354 node which function as a switch port, where everything connected to
6355 the Raspberry Pi ethernet plug is connected (bridged) to the mesh
6356 network. This allow me to hook a wifi base station like the Linksys
6357 WRT54GL to the mesh by plugging it into a Raspberry Pi, and allow
6358 non-mesh clients to hook up to the mesh. This in turn is useful for
6359 Android phones using &lt;a href=&quot;http://servalproject.org/&quot;&gt;the Serval
6360 Project&lt;/a&gt; voip client, allowing every one around the playground to
6361 phone and message each other for free. The reason is that Android
6362 phones do not see ad-hoc wifi networks (they are filtered away from
6363 the GUI view), and can not join the mesh without being rooted. But if
6364 they are connected using a normal wifi base station, they can talk to
6365 every client on the local network.&lt;/p&gt;
6366
6367 &lt;p&gt;To get this working, I&#39;ve created a debian package
6368 &lt;a href=&quot;https://github.com/petterreinholdtsen/meshfx-node&quot;&gt;meshfx-node&lt;/a&gt;
6369 and a script
6370 &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;
6371 to create the Raspberry Pi boot image. I&#39;m using Debian Jessie (and
6372 not Raspbian), to get more control over the packages available.
6373 Unfortunately a huge binary blob need to be inserted into the boot
6374 image to get it booting, but I&#39;ll ignore that for now. Also, as
6375 Debian lack support for the CPU features available in the Raspberry
6376 Pi, the system do not use the hardware floating point unit. I hope
6377 the routing performance isn&#39;t affected by the lack of hardware FPU
6378 support.&lt;/p&gt;
6379
6380 &lt;p&gt;To create an image, run the following with a sudo enabled user
6381 after inserting the target SD card into the build machine:&lt;/p&gt;
6382
6383 &lt;p&gt;&lt;pre&gt;
6384 % wget -O build-rpi-mesh-node \
6385 https://raw.github.com/petterreinholdtsen/meshfx-node/master/build-rpi-mesh-node
6386 % sudo bash -x ./build-rpi-mesh-node &gt; build.log 2&gt;&amp;1
6387 % dd if=/root/rpi/rpi_basic_jessie_$(date +%Y%m%d).img of=/dev/mmcblk0 bs=1M
6388 %
6389 &lt;/pre&gt;&lt;/p&gt;
6390
6391 &lt;p&gt;Booting with the resulting SD card on a Raspberry PI with a USB
6392 wifi card inserted should give you a mesh node. At least it does for
6393 me with a the wifi card I am using. The default mesh settings are the
6394 ones used by the Oslo mesh project at Hackeriet, as I mentioned in
6395 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Oslo_community_mesh_network___with_NUUG_and_Hackeriet_at_Hausmania.html&quot;&gt;an
6396 earlier blog post about this mesh testing&lt;/a&gt;.&lt;/p&gt;
6397
6398 &lt;p&gt;The mesh node was not horribly expensive either. I bought
6399 everything over the counter in shops nearby. If I had ordered online
6400 from the lowest bidder, the price should be significantly lower:&lt;/p&gt;
6401
6402 &lt;p&gt;&lt;table&gt;
6403
6404 &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;
6405 &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;
6406 &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;
6407 &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;
6408 &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;
6409 &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;
6410
6411 &lt;/table&gt;&lt;/p&gt;
6412
6413 &lt;p&gt;Now my mesh network at home consist of one laptop in the basement
6414 connected to my production network, one Raspberry Pi node on the 1th
6415 floor that can be seen by my neighbor across the park, and one
6416 play-node I use to develop the image building script. And some times
6417 I hook up my work horse laptop to the mesh to test it. I look forward
6418 to figuring out what kind of latency the batman-adv setup will give,
6419 and how much packet loss we will experience around the park. :)&lt;/p&gt;
6420 </description>
6421 </item>
6422
6423 <item>
6424 <title>Perl library to control the Spykee robot moved to github</title>
6425 <link>http://people.skolelinux.org/pere/blog/Perl_library_to_control_the_Spykee_robot_moved_to_github.html</link>
6426 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Perl_library_to_control_the_Spykee_robot_moved_to_github.html</guid>
6427 <pubDate>Sat, 19 Oct 2013 10:20:00 +0200</pubDate>
6428 <description>&lt;p&gt;Back in 2010, I created a Perl library to talk to
6429 &lt;a href=&quot;http://en.wikipedia.org/wiki/Spykee&quot;&gt;the Spykee robot&lt;/a&gt;
6430 (with two belts, wifi, USB and Linux) and made it available from my
6431 web page. Today I concluded that it should move to a site that is
6432 easier to use to cooperate with others, and moved it to github. If
6433 you got a Spykee robot, you might want to check out
6434 &lt;a href=&quot;https://github.com/petterreinholdtsen/libspykee-perl&quot;&gt;the
6435 libspykee-perl github repository&lt;/a&gt;.&lt;/p&gt;
6436 </description>
6437 </item>
6438
6439 <item>
6440 <title>Good causes: Debian Outreach Program for Women, EFF documenting the spying and Open access in Norway</title>
6441 <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>
6442 <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>
6443 <pubDate>Tue, 15 Oct 2013 21:30:00 +0200</pubDate>
6444 <description>&lt;p&gt;The last few days I came across a few good causes that should get
6445 wider attention. I recommend signing and donating to each one of
6446 these. :)&lt;/p&gt;
6447
6448 &lt;p&gt;Via &lt;a href=&quot;http://www.debian.org/News/weekly/2013/18/&quot;&gt;Debian
6449 Project News for 2013-10-14&lt;/a&gt; I came across the Outreach Program for
6450 Women program which is a Google Summer of Code like initiative to get
6451 more women involved in free software. One debian sponsor has offered
6452 to match &lt;a href=&quot;http://debian.ch/opw2013&quot;&gt;any donation done to Debian
6453 earmarked&lt;/a&gt; for this initiative. I donated a few minutes ago, and
6454 hope you will to. :)&lt;/p&gt;
6455
6456 &lt;p&gt;And the Electronic Frontier Foundation just announced plans to
6457 create &lt;a href=&quot;https://supporters.eff.org/donate/nsa-videos&quot;&gt;video
6458 documentaries about the excessive spying&lt;/a&gt; on every Internet user that
6459 take place these days, and their need to fund the work. I&#39;ve already
6460 donated. Are you next?&lt;/p&gt;
6461
6462 &lt;p&gt;For my Norwegian audience, the organisation Studentenes og
6463 Akademikernes Internasjonale Hjelpefond is collecting signatures for a
6464 statement under the heading
6465 &lt;a href=&quot;http://saih.no/Bloggers_United/&quot;&gt;Bloggers United for Open
6466 Access&lt;/a&gt; for those of us asking for more focus on open access in the
6467 Norwegian government. So far 499 signatures. I hope you will sign it
6468 too.&lt;/p&gt;
6469 </description>
6470 </item>
6471
6472 <item>
6473 <title>Oslo community mesh network - with NUUG and Hackeriet at Hausmania</title>
6474 <link>http://people.skolelinux.org/pere/blog/Oslo_community_mesh_network___with_NUUG_and_Hackeriet_at_Hausmania.html</link>
6475 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Oslo_community_mesh_network___with_NUUG_and_Hackeriet_at_Hausmania.html</guid>
6476 <pubDate>Fri, 11 Oct 2013 14:10:00 +0200</pubDate>
6477 <description>&lt;p&gt;Wireless mesh networks are self organising and self healing
6478 networks that can be used to connect computers across small and large
6479 areas, depending on the radio technology used. Normal wifi equipment
6480 can be used to create home made radio networks, and there are several
6481 successful examples like
6482 &lt;a href=&quot;http://www.freifunk.net/&quot;&gt;Freifunk&lt;/a&gt; and
6483 &lt;a href=&quot;http://www.awmn.net/&quot;&gt;Athens Wireless Metropolitan Network&lt;/a&gt;
6484 (see
6485 &lt;a href=&quot;http://en.wikipedia.org/wiki/List_of_wireless_community_networks_by_region#Greece&quot;&gt;wikipedia
6486 for a large list&lt;/a&gt;) around the globe. To give you an idea how it
6487 work, check out the nice overview of the Kiel Freifunk community which
6488 can be seen from their
6489 &lt;a href=&quot;http://freifunk.in-kiel.de/ffmap/nodes.html&quot;&gt;dynamically
6490 updated node graph and map&lt;/a&gt;, where one can see how the mesh nodes
6491 automatically handle routing and recover from nodes disappearing.
6492 There is also a small community mesh network group in Oslo, Norway,
6493 and that is the main topic of this blog post.&lt;/p&gt;
6494
6495 &lt;p&gt;I&#39;ve wanted to check out mesh networks for a while now, and hoped
6496 to do it as part of my involvement with the &lt;a
6497 href=&quot;http://www.nuug.no/&quot;&gt;NUUG member organisation&lt;/a&gt; community, and
6498 my recent involvement in
6499 &lt;a href=&quot;https://wiki.debian.org/FreedomBox&quot;&gt;the Freedombox project&lt;/a&gt;
6500 finally lead me to give mesh networks some priority, as I suspect a
6501 Freedombox should use mesh networks to connect neighbours and family
6502 when possible, given that most communication between people are
6503 between those nearby (as shown for example by research on Facebook
6504 communication patterns). It also allow people to communicate without
6505 any central hub to tap into for those that want to listen in on the
6506 private communication of citizens, which have become more and more
6507 important over the years.&lt;/p&gt;
6508
6509 &lt;p&gt;So far I have only been able to find one group of people in Oslo
6510 working on community mesh networks, over at the hack space
6511 &lt;a href=&quot;http://hackeriet.no/&quot;&gt;Hackeriet&lt;/a&gt; at Husmania. They seem to
6512 have started with some Freifunk based effort using OLSR, called
6513 &lt;a href=&quot;http://oslo.freifunk.net/index.php?title=Main_Page&quot;&gt;the Oslo
6514 Freifunk project&lt;/a&gt;, but that effort is now dead and the people
6515 behind it have moved on to a batman-adv based system called
6516 &lt;a href=&quot;http://meshfx.org/trac&quot;&gt;meshfx&lt;/a&gt;. Unfortunately the wiki
6517 site for the Oslo Freifunk project is no longer possible to update to
6518 reflect this fact, so the old project page can&#39;t be updated to point to
6519 the new project. A while back, the people at Hackeriet invited people
6520 from the Freifunk community to Oslo to talk about mesh networks. I
6521 came across this video where Hans Jørgen Lysglimt interview the
6522 speakers about this talk (from
6523 &lt;a href=&quot;https://www.youtube.com/watch?v=N2Kd7CLkhSY&quot;&gt;youtube&lt;/a&gt;):&lt;/p&gt;
6524
6525 &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;
6526
6527 &lt;p&gt;I mentioned OLSR and batman-adv, which are mesh routing protocols.
6528 There are heaps of different protocols, and I am still struggling to
6529 figure out which one would be &quot;best&quot; for some definitions of best, but
6530 given that the community mesh group in Oslo is so small, I believe it
6531 is best to hook up with the existing one instead of trying to create a
6532 completely different setup, and thus I have decided to focus on
6533 batman-adv for now. It sure help me to know that the very cool
6534 &lt;a href=&quot;http://www.servalproject.org/&quot;&gt;Serval project in Australia&lt;/a&gt;
6535 is using batman-adv as their meshing technology when it create a self
6536 organizing and self healing telephony system for disaster areas and
6537 less industrialized communities. Check out this cool video presenting
6538 that project (from
6539 &lt;a href=&quot;https://www.youtube.com/watch?v=30qNfzJCQOA&quot;&gt;youtube&lt;/a&gt;):&lt;/p&gt;
6540
6541 &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;
6542
6543 &lt;p&gt;According to the wikipedia page on
6544 &lt;a href=&quot;http://en.wikipedia.org/wiki/Wireless_mesh_network&quot;&gt;Wireless
6545 mesh network&lt;/a&gt; there are around 70 competing schemes for routing
6546 packets across mesh networks, and OLSR, B.A.T.M.A.N. and
6547 B.A.T.M.A.N. advanced are protocols used by several free software
6548 based community mesh networks.&lt;/p&gt;
6549
6550 &lt;p&gt;The batman-adv protocol is a bit special, as it provide layer 2
6551 (as in ethernet ) routing, allowing ipv4 and ipv6 to work on the same
6552 network. One way to think about it is that it provide a mesh based
6553 vlan you can bridge to or handle like any other vlan connected to your
6554 computer. The required drivers are already in the Linux kernel at
6555 least since Debian Wheezy, and it is fairly easy to set up. A
6556 &lt;a href=&quot;http://www.open-mesh.org/projects/batman-adv/wiki/Quick-start-guide&quot;&gt;good
6557 introduction&lt;/a&gt; is available from the Open Mesh project. These are
6558 the key settings needed to join the Oslo meshfx network:&lt;/p&gt;
6559
6560 &lt;p&gt;&lt;table&gt;
6561 &lt;tr&gt;&lt;th&gt;Setting&lt;/th&gt;&lt;th&gt;Value&lt;/th&gt;&lt;/tr&gt;
6562 &lt;tr&gt;&lt;td&gt;Protocol / kernel module&lt;/td&gt;&lt;td&gt;batman-adv&lt;/td&gt;&lt;/tr&gt;
6563 &lt;tr&gt;&lt;td&gt;ESSID&lt;/td&gt;&lt;td&gt;meshfx@hackeriet&lt;/td&gt;&lt;/tr&gt;
6564 &lt;td&gt;Channel / Frequency&lt;/td&gt;&lt;td&gt;11 / 2462&lt;/td&gt;&lt;/tr&gt;
6565 &lt;td&gt;Cell ID&lt;/td&gt;&lt;td&gt;02:BA:00:00:00:01&lt;/td&gt;
6566 &lt;/table&gt;&lt;/p&gt;
6567
6568 &lt;p&gt;The reason for setting ad-hoc wifi Cell ID is to work around bugs
6569 in firmware used in wifi card and wifi drivers. (See a nice post from
6570 VillageTelco about
6571 &quot;&lt;a href=&quot;http://tiebing.blogspot.no/2009/12/ad-hoc-cell-splitting-re-post-original.html&quot;&gt;Information
6572 about cell-id splitting, stuck beacons, and failed IBSS merges!&lt;/a&gt;
6573 for details.) When these settings are activated and you have some
6574 other mesh node nearby, your computer will be connected to the mesh
6575 network and can communicate with any mesh node that is connected to
6576 any of the nodes in your network of nodes. :)&lt;/p&gt;
6577
6578 &lt;p&gt;My initial plan was to reuse my old Linksys WRT54GL as a mesh node,
6579 but that seem to be very hard, as I have not been able to locate a
6580 firmware supporting batman-adv. If anyone know how to use that old
6581 wifi access point with batman-adv these days, please let me know.&lt;/p&gt;
6582
6583 &lt;p&gt;If you find this project interesting and want to join, please join
6584 us on IRC, either channel
6585 &lt;a href=&quot;irc://irc.freenode.net/#oslohackerspace&quot;&gt;#oslohackerspace&lt;/a&gt;
6586 or &lt;a href=&quot;irc://irc.freenode.net/#nuug&quot;&gt;#nuug&lt;/a&gt; on
6587 irc.freenode.net.&lt;/p&gt;
6588
6589 &lt;p&gt;While investigating mesh networks in Oslo, I came across an old
6590 research paper from the university of Stavanger and Telenor Research
6591 and Innovation called
6592 &lt;a href=&quot;http://folk.uio.no/paalee/publications/netrel-egeland-iswcs-2008.pdf&quot;&gt;The
6593 reliability of wireless backhaul mesh networks&lt;/a&gt; and elsewhere
6594 learned that Telenor have been experimenting with mesh networks at
6595 Grünerløkka in Oslo. So mesh networks are also interesting for
6596 commercial companies, even though Telenor discovered that it was hard
6597 to figure out a good business plan for mesh networking and as far as I
6598 know have closed down the experiment. Perhaps Telenor or others would
6599 be interested in a cooperation?&lt;/p&gt;
6600
6601 &lt;p&gt;&lt;strong&gt;Update 2013-10-12&lt;/strong&gt;: I was just
6602 &lt;a href=&quot;http://lists.alioth.debian.org/pipermail/freedombox-discuss/2013-October/005900.html&quot;&gt;told
6603 by the Serval project developers&lt;/a&gt; that they no longer use
6604 batman-adv (but are compatible with it), but their own crypto based
6605 mesh system.&lt;/p&gt;
6606 </description>
6607 </item>
6608
6609 <item>
6610 <title>Skolelinux / Debian Edu 7.1 install and overview video from Marcelo Salvador</title>
6611 <link>http://people.skolelinux.org/pere/blog/Skolelinux___Debian_Edu_7_1_install_and_overview_video_from_Marcelo_Salvador.html</link>
6612 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux___Debian_Edu_7_1_install_and_overview_video_from_Marcelo_Salvador.html</guid>
6613 <pubDate>Tue, 8 Oct 2013 17:10:00 +0200</pubDate>
6614 <description>&lt;p&gt;The other day I was pleased and surprised to discover that Marcelo
6615 Salvador had published a
6616 &lt;a href=&quot;https://www.youtube.com/watch?v=w-GgpdqgLFc&quot;&gt;video on
6617 Youtube&lt;/a&gt; showing how to install the standalone Debian Edu /
6618 Skolelinux profile. This is the profile intended for use at home or
6619 on laptops that should not be integrated into the provided network
6620 services (no central home directory, no Kerberos / LDAP directory etc,
6621 in other word a single user machine). The result is 11 minutes long,
6622 and show some user applications (seem to be rather randomly picked).
6623 Missed a few of my favorites like celestia, planets and chromium
6624 showing the &lt;a href=&quot;http://www.zygotebody.com/&quot;&gt;Zygote Body 3D model
6625 of the human body&lt;/a&gt;, but I guess he did not know about those or find
6626 other programs more interesting. :) And the video do not show the
6627 advantages I believe is one of the most valuable featuers in Debian
6628 Edu, its central school server making it possible to run hundreds of
6629 computers without hard drives by installing one central
6630 &lt;a href=&quot;http://www.ltsp.org/&quot;&gt;LTSP server&lt;/a&gt;.&lt;/p&gt;
6631
6632 &lt;p&gt;Anyway, check out the video, embedded below and linked to above:&lt;/p&gt;
6633
6634 &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;
6635
6636 &lt;p&gt;Are there other nice videos demonstrating Skolelinux? Please let
6637 me know. :)&lt;/p&gt;
6638 </description>
6639 </item>
6640
6641 <item>
6642 <title>Finally, Debian Edu Wheezy is released today!</title>
6643 <link>http://people.skolelinux.org/pere/blog/Finally__Debian_Edu_Wheezy_is_released_today_.html</link>
6644 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Finally__Debian_Edu_Wheezy_is_released_today_.html</guid>
6645 <pubDate>Sun, 29 Sep 2013 10:20:00 +0200</pubDate>
6646 <description>&lt;p&gt;A few hours ago, the announcement for the first stable release of
6647 Debian Edu Wheezy went out from the Debian publicity team. The
6648 complete announcement text can be found at
6649 &lt;a href=&quot;http://www.debian.org/News/2013/20130928&quot;&gt;the Debian News
6650 section&lt;/a&gt;, translated to several languages. Please check it out.&lt;/p&gt;
6651
6652 &lt;p&gt;There is one minor known problem that we will fix very soon. One
6653 can not install a amd64 Thin Client Server using PXE, as the /var/
6654 partition is too small. A workaround is to extend the partition (use
6655 lvresize + resize2fs in tty 2 while installing).&lt;/p&gt;
6656 </description>
6657 </item>
6658
6659 <item>
6660 <title>Videos about the Freedombox project - for inspiration and learning</title>
6661 <link>http://people.skolelinux.org/pere/blog/Videos_about_the_Freedombox_project___for_inspiration_and_learning.html</link>
6662 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Videos_about_the_Freedombox_project___for_inspiration_and_learning.html</guid>
6663 <pubDate>Fri, 27 Sep 2013 14:10:00 +0200</pubDate>
6664 <description>&lt;p&gt;The &lt;a href=&quot;http://www.freedomboxfoundation.org/&quot;&gt;Freedombox
6665 project&lt;/a&gt; have been going on for a while, and have presented the
6666 vision, ideas and solution several places. Here is a little
6667 collection of videos of talks and presentation of the project.&lt;/p&gt;
6668
6669 &lt;ul&gt;
6670
6671 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=ukvUz5taxvA&quot;&gt;FreedomBox -
6672 2,5 minute marketing film&lt;/a&gt; (Youtube)&lt;/li&gt;
6673
6674 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=SzW25QTVWsE&quot;&gt;Eben Moglen
6675 discusses the Freedombox on CBS news 2011&lt;/a&gt; (Youtube)&lt;/li&gt;
6676
6677 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=Ae8SZbxfE0g&quot;&gt;Eben Moglen -
6678 Freedom in the Cloud - Software Freedom, Privacy and and Security for
6679 Web 2.0 and Cloud computing at ISOC-NY Public Meeting 2010&lt;/a&gt;
6680 (Youtube)&lt;/li&gt;
6681
6682 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=vNaIji_3xBE&quot;&gt;Fosdem 2011
6683 Keynote by Eben Moglen presenting the Freedombox&lt;/a&gt; (Youtube)&lt;/li&gt;
6684
6685 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=9bDDUyJSQ9s&quot;&gt;Presentation of
6686 the Freedombox by James Vasile at Elevate in Gratz 2011&lt;/a&gt; (Youtube)&lt;/li&gt;
6687
6688 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=zQTmnk27g9s&quot;&gt; Freedombox -
6689 Discovery, Identity, and Trust by Nick Daly at Freedombox Hackfest New
6690 York City in 2012&lt;/a&gt; (Youtube)&lt;/li&gt;
6691
6692 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=tkbSB4Ba7Ck&quot;&gt;Introduction
6693 to the Freedombox at Freedombox Hackfest New York City in 2012&lt;/a&gt;
6694 (Youtube)&lt;/li&gt;
6695
6696 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=z-P2Jaeg0aQ&quot;&gt;Freedom, Out
6697 of the Box! by Bdale Garbee at linux.conf.au Ballarat, 2012&lt;/a&gt; (Youtube) &lt;/li&gt;
6698
6699 &lt;li&gt;&lt;a href=&quot;https://archive.fosdem.org/2013/schedule/event/freedombox/&quot;&gt;Freedombox
6700 1.0 by Eben Moglen and Bdale Garbee at Fosdem 2013&lt;/a&gt; (FOSDEM) &lt;/li&gt;
6701
6702 &lt;li&gt;&lt;a href=&quot;http://www.youtube.com/watch?v=e1LpYX2zVYg&quot;&gt;What is the
6703 FreedomBox today by Bdale Garbee at Debconf13 in Vaumarcus
6704 2013&lt;/a&gt; (Youtube)&lt;/li&gt;
6705
6706 &lt;/ul&gt;
6707
6708 &lt;p&gt;A larger list is available from
6709 &lt;a href=&quot;https://wiki.debian.org/FreedomBox/TalksAndPresentations&quot;&gt;the
6710 Freedombox Wiki&lt;/a&gt;.&lt;/p&gt;
6711
6712 &lt;p&gt;On other news, I am happy to report that Freedombox based on Debian
6713 Jessie is coming along quite well, and soon both Owncloud and using
6714 Tor should be available for testers of the Freedombox solution. :) In
6715 a few weeks I hope everything needed to test it is included in Debian.
6716 The withsqlite package is already in Debian, and the plinth package is
6717 pending in NEW. The third and vital part of that puzzle is the
6718 metapackage/setup framework, which is still pending an upload. Join
6719 us on &lt;a href=&quot;irc://irc.debian.org:6667/%23freedombox&quot;&gt;IRC
6720 (#freedombox on irc.debian.org)&lt;/a&gt; and
6721 &lt;a href=&quot;http://lists.alioth.debian.org/mailman/listinfo/freedombox-discuss&quot;&gt;the
6722 mailing list&lt;/a&gt; if you want to help make this vision come true.&lt;/p&gt;
6723 </description>
6724 </item>
6725
6726 <item>
6727 <title>Third and probably last beta release of Debian Edu Wheezy</title>
6728 <link>http://people.skolelinux.org/pere/blog/Third_and_probably_last_beta_release_of_Debian_Edu_Wheezy.html</link>
6729 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Third_and_probably_last_beta_release_of_Debian_Edu_Wheezy.html</guid>
6730 <pubDate>Mon, 16 Sep 2013 21:30:00 +0200</pubDate>
6731 <description>&lt;p&gt;The third wheezy based beta release of Debian Edu was wrapped up
6732 today. This is the release announcement from Holger Levsen:&lt;/p&gt;
6733
6734 &lt;blockquote&gt;
6735 &lt;p&gt;Hi,&lt;/p&gt;
6736
6737 &lt;p&gt;it is my pleasure to announce the third beta release (beta 2 for
6738 short) of &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
6739 Skolelinux&lt;/a&gt; based on Debian Wheezy!&lt;/p&gt;
6740
6741 &lt;p&gt;Please test these images extensivly, if no new problems are found
6742 we plan to do this final Debian Edu Wheezy release this coming
6743 weekend. We are not aware of any major problems or blockers in beta2,
6744 if you find something, please notify us immediately!&lt;/p&gt;
6745
6746 &lt;p&gt;(More about the remaining steps for the Edu Wheezy release in
6747 another mail to the edu list tonight or tomorrow...)&lt;/p&gt;
6748
6749 &lt;p&gt;Noteworthy changes and software updates for Debian Edu 7.1+edu0~b2
6750 compared to beta1:&lt;/p&gt;
6751
6752 &lt;ul&gt;
6753
6754 &lt;li&gt;The KDE proxy setup has been adjusted to use the provided wpad.dat. This
6755 also gets Chromium to use this proxy.&lt;/li&gt;
6756 &lt;li&gt;Install kdepim-groupware with KDE desktops to make sure korganizer
6757 understand ical/dav sources.&lt;/li&gt;
6758 &lt;li&gt;Increased default maximum size of /var/spool/squid and /skole/backup on the
6759 main server.&lt;/li&gt;
6760 &lt;li&gt;A source DVD image containing all source packages is now available as well.&lt;/li&gt;
6761 &lt;li&gt;Updates for chromium (29.0.1547.57-1~deb7u1), imagemagick
6762 (6.7.7.10-5+deb7u2), php5 (5.4.4-14+deb7u4), libmodplug
6763 (0.8.8.4-3+deb7u1+git20130828), tiff (4.0.2-6+deb7u2), linux-image
6764 (3.2.0-4-486_3.2.46-1+deb7u1).&lt;/li&gt;
6765
6766 &lt;/ul&gt;
6767
6768 &lt;p&gt;Where to get it:&lt;/p&gt;
6769
6770 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
6771
6772 &lt;ul&gt;
6773 &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;
6774 &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;
6775 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-CD.iso .&lt;/li&gt;
6776 &lt;/ul&gt;
6777
6778 &lt;p&gt;The SHA1SUM of this image is: 3a1c89f4666df80eebcd46c5bf5fedb866f9472f&lt;/p&gt;
6779
6780 &lt;p&gt;To download the multiarch USB stick ISO release you can use
6781 &lt;ul&gt;
6782 &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;
6783 &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;
6784 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b2-USB.iso .&lt;/li&gt;
6785 &lt;/ul&gt;
6786
6787 &lt;p&gt;The SHA1SUM of this image is: 702d1718548f401c74bfa6df9f032cc3ee16597e&lt;/p&gt;
6788
6789 &lt;p&gt;The Source DVD image has the filename
6790 debian-edu-7.1+edu0~b2-source-DVD.iso and the SHA1SUM
6791 089eed8b3f962db47aae1f6a9685e9bb2fa30ca5 and is available the same way
6792 as the other isos.&lt;/p&gt;
6793
6794 &lt;p&gt;How to report bugs&lt;/p&gt;
6795
6796 &lt;p&gt;For information how to report bugs please see
6797 &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;
6798
6799
6800 &lt;p&gt;About Debian Edu and Skolelinux&lt;/p&gt;
6801
6802 &lt;p&gt;Debian Edu, also known as Skolelinux, is a Linux distribution based
6803 on Debian providing an out-of-the box environment of a completely
6804 configured school network. Immediately after installation a school
6805 server running all services needed for a school network is set up just
6806 waiting for users and machines being added via GOsa², a comfortable
6807 Web-UI. A netbooting environment is prepared using PXE, so after
6808 initial installation of the main server from CD or USB stick all other
6809 machines can be installed via the network. The provided school server
6810 provides LDAP database and Kerberos authentication service,
6811 centralized home directories, DHCP server, web proxy and many other
6812 services. The desktop contains more than 60 educational software
6813 packages and more are available from the Debian archive, and schools
6814 can choose between KDE, Gnome, LXDE and Xfce desktop environment.&lt;/p&gt;
6815
6816 &lt;p&gt;This is the seventh test release based on Debian Wheezy. Basically
6817 this is an updated and slightly improved version compared to the
6818 Squeeze release.&lt;/p&gt;
6819
6820 &lt;p&gt;Notes for upgrades from Alpha Prereleases&lt;/p&gt;
6821
6822 &lt;p&gt;Alpha based installations should reinstall or downgrade the
6823 versions of gosa and libpam-mklocaluser to the ones used in this beta
6824 release. Both alpha and beta0 based installations should reinstall or
6825 deal with gosa.conf manually; there are two options: (1) Keep
6826 gosa.conf and edit this file as outlined on the mailing list. (2)
6827 Accept the new version of gosa.conf and replace both contained admin
6828 password placeholders with the password hashes found in the old one
6829 (backup copy!). In both cases all users need to change their password
6830 to make sure a password is set for CIFS access to their home
6831 directory.&lt;/p&gt;
6832
6833
6834 &lt;p&gt;cheers,
6835 &lt;br&gt; Holger&lt;/p&gt;
6836 &lt;/blockquote&gt;
6837 </description>
6838 </item>
6839
6840 <item>
6841 <title>Recipe to test the Freedombox project on amd64 or Raspberry Pi</title>
6842 <link>http://people.skolelinux.org/pere/blog/Recipe_to_test_the_Freedombox_project_on_amd64_or_Raspberry_Pi.html</link>
6843 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Recipe_to_test_the_Freedombox_project_on_amd64_or_Raspberry_Pi.html</guid>
6844 <pubDate>Tue, 10 Sep 2013 14:20:00 +0200</pubDate>
6845 <description>&lt;p&gt;I was introduced to the
6846 &lt;a href=&quot;http://www.freedomboxfoundation.org/&quot;&gt;Freedombox project&lt;/a&gt;
6847 in 2010, when Eben Moglen presented his vision about serving the need
6848 of non-technical people to keep their personal information private and
6849 within the legal protection of their own homes. The idea is to give
6850 people back the power over their network and machines, and return
6851 Internet back to its intended peer-to-peer architecture. Instead of
6852 depending on a central service, the Freedombox will give everyone
6853 control over their own basic infrastructure.&lt;/p&gt;
6854
6855 &lt;p&gt;I&#39;ve intended to join the effort since then, but other tasks have
6856 taken priority. But this summers nasty news about the misuse of trust
6857 and privilege exercised by the &quot;western&quot; intelligence gathering
6858 communities increased my eagerness to contribute to a point where I
6859 actually started working on the project a while back.&lt;/p&gt;
6860
6861 &lt;p&gt;The &lt;a href=&quot;https://alioth.debian.org/projects/freedombox/&quot;&gt;initial
6862 Debian initiative&lt;/a&gt; based on the vision from Eben Moglen, is to
6863 create a simple and cheap Debian based appliance that anyone can hook
6864 up in their home and get access to secure and private services and
6865 communication. The initial deployment platform have been the
6866 &lt;a href=&quot;http://www.globalscaletechnologies.com/t-dreamplugdetails.aspx&quot;&gt;Dreamplug&lt;/a&gt;,
6867 which is a piece of hardware I do not own. So to be able to test what
6868 the current Freedombox setup look like, I had to come up with a way to install
6869 it on some hardware I do have access to. I have rewritten the
6870 &lt;a href=&quot;https://github.com/NickDaly/freedom-maker&quot;&gt;freedom-maker&lt;/a&gt;
6871 image build framework to use .deb packages instead of only copying
6872 setup into the boot images, and thanks to this rewrite I am able to
6873 set up any machine supported by Debian Wheezy as a Freedombox, using
6874 the previously mentioned deb (and a few support debs for packages
6875 missing in Debian).&lt;/p&gt;
6876
6877 &lt;p&gt;The current Freedombox setup consist of a set of bootstrapping
6878 scripts
6879 (&lt;a href=&quot;https://github.com/petterreinholdtsen/freedombox-setup&quot;&gt;freedombox-setup&lt;/a&gt;),
6880 and a administrative web interface
6881 (&lt;a href=&quot;https://github.com/NickDaly/Plinth&quot;&gt;plinth&lt;/a&gt; + exmachina +
6882 withsqlite), as well as a privacy enhancing proxy based on
6883 &lt;a href=&quot;http://packages.qa.debian.org/privoxy&quot;&gt;privoxy&lt;/a&gt;
6884 (freedombox-privoxy). There is also a web/javascript based XMPP
6885 client (&lt;a href=&quot;http://packages.qa.debian.org/jwchat&quot;&gt;jwchat&lt;/a&gt;)
6886 trying (unsuccessfully so far) to talk to the XMPP server
6887 (&lt;a href=&quot;http://packages.qa.debian.org/ejabberd&quot;&gt;ejabberd&lt;/a&gt;). The
6888 web interface is pluggable, and the goal is to use it to enable OpenID
6889 services, mesh network connectivity, use of TOR, etc, etc. Not much of
6890 this is really working yet, see
6891 &lt;a href=&quot;https://github.com/NickDaly/freedombox-todos/blob/master/TODO&quot;&gt;the
6892 project TODO&lt;/a&gt; for links to GIT repositories. Most of the code is
6893 on github at the moment. The HTTP proxy is operational out of the
6894 box, and the admin web interface can be used to add/remove plinth
6895 users. I&#39;ve not been able to do anything else with it so far, but
6896 know there are several branches spread around github and other places
6897 with lots of half baked features.&lt;/p&gt;
6898
6899 &lt;p&gt;Anyway, if you want to have a look at the current state, the
6900 following recipes should work to give you a test machine to poke
6901 at.&lt;/p&gt;
6902
6903 &lt;p&gt;&lt;strong&gt;Debian Wheezy amd64&lt;/strong&gt;&lt;/p&gt;
6904
6905 &lt;ol&gt;
6906
6907 &lt;li&gt;Fetch normal Debian Wheezy installation ISO.&lt;/li&gt;
6908 &lt;li&gt;Boot from it, either as CD or USB stick.&lt;/li&gt;
6909 &lt;li&gt;&lt;p&gt;Press [tab] on the boot prompt and add this as a boot argument
6910 to the Debian installer:&lt;p&gt;
6911 &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;
6912
6913 &lt;li&gt;Answer the few language/region/password questions and pick disk to
6914 install on.&lt;/li&gt;
6915
6916 &lt;li&gt;When the installation is finished and the machine have rebooted a
6917 few times, your Freedombox is ready for testing.&lt;/li&gt;
6918
6919 &lt;/ol&gt;
6920
6921 &lt;p&gt;&lt;strong&gt;Raspberry Pi Raspbian&lt;/strong&gt;&lt;/p&gt;
6922
6923 &lt;ol&gt;
6924
6925 &lt;li&gt;Fetch a Raspbian SD card image, create SD card.&lt;/li&gt;
6926 &lt;li&gt;Boot from SD card, extend file system to fill the card completely.&lt;/li&gt;
6927 &lt;li&gt;&lt;p&gt;Log in and add this to /etc/sources.list:&lt;/p&gt;
6928 &lt;pre&gt;
6929 deb &lt;a href=&quot;http://www.reinholdtsen.name/freedombox/&quot;&gt;http://www.reinholdtsen.name/freedombox&lt;/a&gt; wheezy main
6930 &lt;/pre&gt;&lt;/li&gt;
6931 &lt;li&gt;&lt;p&gt;Run this as root:&lt;/p&gt;
6932 &lt;pre&gt;
6933 wget -O - http://www.reinholdtsen.name/freedombox/BE1A583D.asc | \
6934 apt-key add -
6935 apt-get update
6936 apt-get install freedombox-setup
6937 /usr/lib/freedombox/setup
6938 &lt;/pre&gt;&lt;/li&gt;
6939 &lt;li&gt;Reboot into your freshly created Freedombox.&lt;/li&gt;
6940
6941 &lt;/ol&gt;
6942
6943 &lt;p&gt;You can test it on other architectures too, but because the
6944 freedombox-privoxy package is binary, it will only work as intended on
6945 the architectures where I have had time to build the binary and put it
6946 in my APT repository. But do not let this stop you. It is only a
6947 short &quot;&lt;tt&gt;apt-get source -b freedombox-privoxy&lt;/tt&gt;&quot; away. :)&lt;/p&gt;
6948
6949 &lt;p&gt;Note that by default Freedombox is a DHCP server on the
6950 192.168.1.0/24 subnet, so if this is your subnet be careful and turn
6951 off the DHCP server by running &quot;&lt;tt&gt;update-rc.d isc-dhcp-server
6952 disable&lt;/tt&gt;&quot; as root.&lt;/p&gt;
6953
6954 &lt;p&gt;Please let me know if this works for you, or if you have any
6955 problems. We gather on the IRC channel
6956 &lt;a href=&quot;irc://irc.debian.org:6667/%23freedombox&quot;&gt;#freedombox&lt;/a&gt; on
6957 irc.debian.org and the
6958 &lt;a href=&quot;http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/freedombox-discuss&quot;&gt;project
6959 mailing list&lt;/a&gt;.&lt;/p&gt;
6960
6961 &lt;p&gt;Once you get your freedombox operational, you can visit
6962 &lt;tt&gt;http://your-host-name:8001/&lt;/tt&gt; to see the state of the plint
6963 welcome screen (dead end - do not be surprised if you are unable to
6964 get past it), and next visit &lt;tt&gt;http://your-host-name:8001/help/&lt;/tt&gt;
6965 to look at the rest of plinth. The default user is &#39;admin&#39; and the
6966 default password is &#39;secret&#39;.&lt;/p&gt;
6967 </description>
6968 </item>
6969
6970 <item>
6971 <title>Second beta release (beta 1) of Debian Edu/Skolelinux based on Debian Wheezy</title>
6972 <link>http://people.skolelinux.org/pere/blog/Second_beta_release__beta_1__of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</link>
6973 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Second_beta_release__beta_1__of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</guid>
6974 <pubDate>Thu, 22 Aug 2013 09:30:00 +0200</pubDate>
6975 <description>&lt;p&gt;The second wheezy based beta release of Debian Edu was wrapped up
6976 today, slightly delayed because of some bugs in the initial Windows
6977 integration fixes . This is the release announcement:&lt;/p&gt;
6978
6979 &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;
6980
6981 &lt;p&gt;These are the release notes for Debian Edu / Skolelinux
6982 7.1+edu0~b1, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
6983
6984 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
6985
6986 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
6987 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
6988 out-of-the box environment of a completely configured school
6989 network. Immediately after installation a school server running all
6990 services needed for a school network is set up just waiting for users
6991 and machines being added via GOsa², a comfortable Web-UI. A netbooting
6992 environment is prepared using PXE, so after initial installation of
6993 the main server from CD or USB stick all other machines can be
6994 installed via the network. The provided school server provides LDAP
6995 database and Kerberos authentication service, centralized home
6996 directories, DHCP server, web proxy and many other services. The
6997 desktop contains
6998 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;more
6999 than 60 educational software packages&lt;/a&gt; and more are available from
7000 the Debian archive, and schools can choose between KDE, Gnome, LXDE
7001 and Xfce desktop environment.&lt;/p&gt;
7002
7003 &lt;p&gt;This is the sixth test release based on Debian Wheezy. Basically this
7004 is an updated and slightly improved version compared to the Squeeze
7005 release.&lt;/p&gt;
7006
7007 &lt;p&gt;ALERT: Alpha based installations should reinstall or downgrade the
7008 versions of gosa and libpam-mklocaluser to the ones used in this beta
7009 release. Both alpha and beta0 based installations should reinstall or
7010 deal with gosa.conf manually; there are two options: (1) Keep
7011 gosa.conf and edit this file as outlined
7012 &lt;a href=&quot;http://lists.debian.org/debian-edu/2013/08/msg00127.html&quot;&gt;on
7013 the mailing list&lt;/a&gt;. (2) Accept the new version of gosa.conf and
7014 replace both contained admin password placeholders with the password
7015 hashes found in the old one (backup copy!). In both cases every user
7016 need to change their their password to make sure a password is set for
7017 CIFS access to their home directory.&lt;/p&gt;
7018
7019 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
7020
7021 &lt;ul&gt;
7022
7023 &lt;li&gt;Added ssh askpass packages to default installation, to ensure ssh
7024 work also without a attached tty.&lt;/li&gt;
7025 &lt;li&gt;Add the command-not-found package to the default installation to
7026 make it easier to figure out where to find missing command line
7027 tools. Please note, that the command &#39;update-command-not-found&#39;
7028 has to be run as root to actually make it useful (internet access
7029 required).&lt;/li&gt;
7030
7031 &lt;/ul&gt;
7032
7033 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
7034
7035 &lt;ul&gt;
7036
7037 &lt;li&gt;Adjusted the USB stick ISO image build to include every tool
7038 needed for desktop=xfce installations.&lt;/li&gt;
7039 &lt;li&gt;Adjust thin-client-server task to work when installing from USB
7040 stick ISO image.&lt;/li&gt;
7041 &lt;li&gt;Made new grub artwork (changed png from indexed to RGB format).&lt;/li&gt;
7042 &lt;li&gt;Minor cleanup in the CUPS setup.&lt;/li&gt;
7043 &lt;li&gt;Make sure that bootstrapping of the Samba domain really happens
7044 during installation of the main server and adjust SID handling to
7045 cope with this.&lt;/li&gt;
7046 &lt;li&gt;Make Samba passwords changeable (again) via GOsa².&lt;/li&gt;
7047 &lt;li&gt;Fix generation of LM and NT password hashes via GOsa² to avoid
7048 empty password hashes.&lt;/li&gt;
7049 &lt;li&gt;Adapted Samba machine domain joining to latest change in the
7050 smbldap-tools Perl package, fixing bugs blocking Windows machines
7051 from joining the Samba domain.&lt;/li&gt;
7052
7053 &lt;/ul&gt;
7054
7055 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
7056
7057 &lt;ul&gt;
7058
7059 &lt;li&gt;KDE fails to understand the wpad.dat file provided, causing it to
7060 not use the http proxy as it should.&lt;/li&gt;
7061 &lt;li&gt;Chromium also fails to use the proxy when using the KDE desktop
7062 (using the KDE configuration).&lt;/li&gt;
7063
7064 &lt;/ul&gt;
7065
7066 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
7067
7068 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
7069
7070 &lt;ul&gt;
7071
7072 &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;
7073
7074 &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;
7075
7076 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-CD.iso .&lt;/li&gt;
7077
7078 &lt;/ul&gt;
7079
7080 &lt;p&gt;The MD5SUM of this image is: 1e357f80b55e703523f2254adde6d78b
7081 &lt;br&gt;The SHA1SUM of this image is: 7157f9be5fd27c7694d713c6ecfed61c3edda3b2&lt;/p&gt;
7082
7083 &lt;p&gt;To download the multiarch USB stick ISO release you can use&lt;/p&gt;
7084
7085 &lt;ul&gt;
7086
7087 &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;
7088 &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;
7089 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b1-USB.iso .&lt;/li&gt;
7090
7091 &lt;/ul&gt;
7092
7093 &lt;p&gt;The MD5SUM of this image is: 7a8408ead59cf7e3cef25afb6e91590b
7094 &lt;br&gt;The SHA1SUM of this image is: f1817c031f02790d5edb3bfa0dcf8451088ad119&lt;/p&gt;
7095
7096
7097 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
7098
7099 &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;
7100 </description>
7101 </item>
7102
7103 <item>
7104 <title>Intel 180 SSD disk with Lenovo firmware can not use Intel firmware</title>
7105 <link>http://people.skolelinux.org/pere/blog/Intel_180_SSD_disk_with_Lenovo_firmware_can_not_use_Intel_firmware.html</link>
7106 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Intel_180_SSD_disk_with_Lenovo_firmware_can_not_use_Intel_firmware.html</guid>
7107 <pubDate>Sun, 18 Aug 2013 14:00:00 +0200</pubDate>
7108 <description>&lt;p&gt;Earlier, I reported about
7109 &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
7110 problems using an Intel SSD 520 Series 180 GB disk&lt;/a&gt;. Friday I was
7111 told by IBM that the original disk should be thrown away. And as
7112 there no longer was a problem if I bricked the firmware, I decided
7113 today to try to install Intel firmware to replace the Lenovo firmware
7114 currently on the disk.&lt;/p&gt;
7115
7116 &lt;p&gt;I searched the Intel site for firmware, and found
7117 &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;
7118 (aka Intel SATA Solid-State Drive Firmware Update Tool) which
7119 according to the site should contain the latest firmware for SSD
7120 disks. I inserted the broken disk in one of my spare laptops and
7121 booted the ISO from a USB stick. The disk was recognized, but the
7122 program claimed the newest firmware already were installed and refused
7123 to insert any Intel firmware. So no change, and the disk is still
7124 unable to handle write load. :( I guess the only way to get them
7125 working would be if Lenovo releases new firmware. No idea how likely
7126 that is. Anyway, just blogging about this test for completeness. I
7127 got a working Samsung disk, and see no point in spending more time on
7128 the broken disks.&lt;/p&gt;
7129 </description>
7130 </item>
7131
7132 <item>
7133 <title>90 percent done with the Norwegian draft translation of Free Culture</title>
7134 <link>http://people.skolelinux.org/pere/blog/90_percent_done_with_the_Norwegian_draft_translation_of_Free_Culture.html</link>
7135 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/90_percent_done_with_the_Norwegian_draft_translation_of_Free_Culture.html</guid>
7136 <pubDate>Fri, 2 Aug 2013 10:40:00 +0200</pubDate>
7137 <description>&lt;p&gt;It has been a while since my last update. Since last summer, I
7138 have worked on a Norwegian
7139 &lt;a href=&quot;http://www.docbook.org/&quot;&gt;docbook&lt;/a&gt; version of the 2004 book
7140 &lt;a href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; by Lawrence Lessig,
7141 to get a Norwegian text explaining the problems with the copyright
7142 law. Yesterday, I finally broken the 90% mark, when counting the
7143 number of strings to translate. Due to real life constraints, I have
7144 not had time to work on it since March, but when the summer broke out,
7145 I found time to work on it again. Still lots of work left, but the
7146 first draft is nearing completion. I created a graph to show the
7147 progress of the translation:&lt;/p&gt;
7148
7149 &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;
7150
7151 &lt;p&gt;When the first draft is done, the translated text need to be
7152 proof read, and the remaining formatting problems with images and SVG
7153 drawings need to be fixed. There are probably also some index entries
7154 missing that need to be added. This can be done by comparing the
7155 index entries listed in the SiSU version of the book, or comparing the
7156 English docbook version with the paper version. Last, the colophon
7157 page with ISBN numbers etc need to be wrapped up before the release is
7158 done. I should also figure out how to get correct Norwegian sorting
7159 of the index pages. All docbook tools I have tried so far (xmlto,
7160 docbook-xsl, dblatex) get the order of symbols and the special
7161 Norwegian letters ÆØÅ wrong.&lt;/p&gt;
7162
7163 &lt;p&gt;There is still need for translators and people with docbook
7164 knowledge, to be able to get a good looking book (I still struggle
7165 with dblatex, xmlto and docbook-xsl) as well as to do the draft
7166 translation and proof reading. And I would like the figures to be
7167 redrawn as SVGs to make it easy to translate them. Any SVG master
7168 around? There are also some legal terms that are unfamiliar to me.
7169 If you want to help, please get in touch with me, and check out the
7170 project files currently available from
7171 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;.&lt;/p&gt;
7172
7173 &lt;p&gt;If you are curious what the translated book currently look like,
7174 the updated
7175 &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;
7176 and
7177 &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;
7178 are published on github. The HTML version is published as well, but
7179 github hand it out with MIME type text/plain, confusing browsers, so I
7180 saw no point in linking to that version.&lt;/p&gt;
7181 </description>
7182 </item>
7183
7184 <item>
7185 <title>First beta release of Debian Edu/Skolelinux based on Debian Wheezy</title>
7186 <link>http://people.skolelinux.org/pere/blog/First_beta_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</link>
7187 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_beta_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</guid>
7188 <pubDate>Sat, 27 Jul 2013 20:30:00 +0200</pubDate>
7189 <description>&lt;p&gt;The first wheezy based beta release of Debian Edu was wrapped up
7190 today. This is the release announcement:&lt;/p&gt;
7191
7192 &lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.1+edu0~b0 released
7193 2013-07-27&lt;/strong&gt;&lt;/p&gt;
7194
7195 &lt;p&gt;These are the release notes for for Debian Edu / Skolelinux
7196 7.1+edu0~b0, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
7197
7198 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
7199
7200 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
7201 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
7202 out-of-the box environment of a completely configured school
7203 network. Immediately after installation a school server running all
7204 services needed for a school network is set up just waiting for users
7205 and machines being added via GOsa², a comfortable Web-UI. A netbooting
7206 environment is prepared using PXE, so after initial installation of
7207 the main server from CD, DVD or USB stick all other machines can be
7208 installed via the network. The provided school server provides LDAP
7209 database and Kerberos authentication service, centralized home
7210 directories, DHCP server, web proxy and many other services. The
7211 desktop contains
7212 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;more
7213 than 60 educational software packages&lt;/a&gt; and more are available from
7214 the Debian archive, and schools can choose between KDE, Gnome, LXDE
7215 and Xfce desktop environment.&lt;/p&gt;
7216
7217 &lt;p&gt;This is the fifth test release based on Debian Wheezy. Basically
7218 this is an updated and slightly improved version compared to the
7219 Squeeze release.&lt;/p&gt;
7220
7221 &lt;p&gt;ALERT: Alpha based installations should reinstall or downgrade the
7222 versions of gosa and libpam-mklocaluser to the ones used in this beta
7223 release.&lt;/p&gt;
7224
7225 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
7226
7227 &lt;ul&gt;
7228
7229 &lt;li&gt;Switched roaming workstation profiles from wicd to network-manager
7230 for network configuration, as wicd didn&#39;t work any more.&lt;/li&gt;
7231 &lt;li&gt;Changed version numbers of patched gosa and libpam-mklocaluser
7232 packages to make sure our locally patched versions will be replaced
7233 by the official packages when they are released from Debian. Those
7234 installing alpha version need to reinstall or manually downgrade gosa
7235 and libpam-mklocaluser.&lt;/li&gt;
7236 &lt;li&gt;Added bluetooth tools to the default desktop (bluedevil, blueman).&lt;/li&gt;
7237 &lt;li&gt;Added tools for sharing the desktop on KDE (krdc, krfb).&lt;/li&gt;
7238 &lt;li&gt;Added valgrind to the default installation for easier debugging of
7239 crash bugs.&lt;/li&gt;
7240
7241 &lt;/ul&gt;
7242
7243 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
7244
7245 &lt;ul&gt;
7246
7247 &lt;li&gt;Fixed artwork package to work with gnome, no longer break
7248 desktop=gnome installations.&lt;/li&gt;
7249 &lt;li&gt;Adjusted installer to now work when forced to use a proxy with the
7250 netinst CD.&lt;/li&gt;
7251 &lt;li&gt;Fixed code detecting and setting/loading hardware specific
7252 setup/firmware to work more robust out of the box.&lt;/li&gt;
7253 &lt;li&gt;Adjusted Kerberos setup to detect realm and server settings at
7254 install time instead of dynamically at run time. This avoid a crash
7255 with krb5-auth-dialog on diskless workstations without a DNS name.&lt;/li&gt;
7256 &lt;li&gt;Worked around misfeature in network-manager not calling the dhclient
7257 exit hooks, causing automatic proxy configuration and automatic host
7258 name setting at run time to work again.&lt;/li&gt;
7259 &lt;li&gt;Fixed feature setting the default Iceweasel start page from URL
7260 fetched from LDAP, to allow schools to set the global default by
7261 updating the dc=skole,dc=skolelinux,dc=no LDAP object.&lt;/li&gt;
7262 &lt;li&gt;Changed default host name on all networked machines to be unique
7263 (generated from MAC or reverse DNS) after boot.&lt;/li&gt;
7264 &lt;li&gt;Adjusted partition sizes to make sure they are big enough.&lt;/li&gt;
7265
7266 &lt;/ul&gt;
7267
7268 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
7269
7270 &lt;ul&gt;
7271
7272 &lt;li&gt;Grub is missing the new artwork.&lt;/li&gt;
7273 &lt;li&gt;KDE fail to understand the wpad.dat file provided, causing it to
7274 not use the http proxy as it should.&lt;/li&gt;
7275 &lt;li&gt;Chromium also fail to use the proxy.&lt;/li&gt;
7276
7277 &lt;/ul&gt;
7278
7279 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
7280
7281 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
7282
7283 &lt;ul&gt;
7284
7285 &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;
7286
7287 &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;
7288
7289 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-CD.iso .&lt;/li&gt;
7290
7291 &lt;/ul&gt;
7292
7293 &lt;p&gt;The MD5SUM of this image is: 55d5de9765b6dccd5d9ec33cf1a07109
7294 &lt;br&gt;The SHA1SUM of this image is: 996a1d9517740e4d627d100de2d12b23dd545a3f&lt;/p&gt;
7295
7296 &lt;p&gt;To download the multiarch USB stick ISO release you can use&lt;/p&gt;
7297
7298 &lt;ul&gt;
7299
7300 &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;
7301 &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;
7302 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~b0-USB.iso .&lt;/li&gt;
7303
7304 &lt;/ul&gt;
7305
7306 &lt;p&gt;The MD5SUM of this image is: d8f0818c51a78d357de794066f289f69
7307 &lt;br&gt;The SHA1SUM of this image is: 49185ca354e8d0543240423746924f76a6cee733&lt;/p&gt;
7308
7309
7310 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
7311
7312 &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;
7313 </description>
7314 </item>
7315
7316 <item>
7317 <title>How to fix a Thinkpad X230 with a broken 180 GB SSD disk</title>
7318 <link>http://people.skolelinux.org/pere/blog/How_to_fix_a_Thinkpad_X230_with_a_broken_180_GB_SSD_disk.html</link>
7319 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_fix_a_Thinkpad_X230_with_a_broken_180_GB_SSD_disk.html</guid>
7320 <pubDate>Wed, 17 Jul 2013 23:50:00 +0200</pubDate>
7321 <description>&lt;p&gt;Today I switched to
7322 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html&quot;&gt;my
7323 new laptop&lt;/a&gt;. I&#39;ve previously written about the problems I had with
7324 my new Thinkpad X230, which was delivered with an
7325 &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
7326 GB Intel SSD disk with Lenovo firmware&lt;/a&gt; that did not handle
7327 sustained writes. My hardware supplier have been very forthcoming in
7328 trying to find a solution, and after first trying with another
7329 identical 180 GB disks they decided to send me a 256 GB Samsung SSD
7330 disk instead to fix it once and for all. The Samsung disk survived
7331 the installation of Debian with encrypted disks (filling the disk with
7332 random data during installation killed the first two), and I thus
7333 decided to trust it with my data. I have installed it as a Debian Edu
7334 Wheezy roaming workstation hooked up with my Debian Edu Squeeze main
7335 server at home using Kerberos and LDAP, and will use it as my work
7336 station from now on.&lt;/p&gt;
7337
7338 &lt;p&gt;As this is a solid state disk with no moving parts, I believe the
7339 Debian Wheezy default installation need to be tuned a bit to increase
7340 performance and increase life time of the disk. The Linux kernel and
7341 user space applications do not yet adjust automatically to such
7342 environment. To make it easier for my self, I created a draft Debian
7343 package &lt;tt&gt;ssd-setup&lt;/tt&gt; to handle this tuning. The
7344 &lt;a href=&quot;http://anonscm.debian.org/gitweb/?p=collab-maint/ssd-setup.git&quot;&gt;source
7345 for the ssd-setup package&lt;/a&gt; is available from collab-maint, and it
7346 is set up to adjust the setup of the machine by just installing the
7347 package. If there is any non-SSD disk in the machine, the package
7348 will refuse to install, as I did not try to write any logic to sort
7349 file systems in SSD and non-SSD file systems.&lt;/p&gt;
7350
7351 &lt;p&gt;I consider the package a draft, as I am a bit unsure how to best
7352 set up Debian Wheezy with an SSD. It is adjusted to my use case,
7353 where I set up the machine with one large encrypted partition (in
7354 addition to /boot), put LVM on top of this and set up partitions on
7355 top of this again. See the README file in the package source for the
7356 references I used to pick the settings. At the moment these
7357 parameters are tuned:&lt;/p&gt;
7358
7359 &lt;ul&gt;
7360
7361 &lt;li&gt;Set up cryptsetup to pass TRIM commands to the physical disk
7362 (adding discard to /etc/crypttab)&lt;/li&gt;
7363
7364 &lt;li&gt;Set up LVM to pass on TRIM commands to the underlying device (in
7365 this case a cryptsetup partition) by changing issue_discards from
7366 0 to 1 in /etc/lvm/lvm.conf.&lt;/li&gt;
7367
7368 &lt;li&gt;Set relatime as a file system option for ext3 and ext4 file
7369 systems.&lt;/li&gt;
7370
7371 &lt;li&gt;Tell swap to use TRIM commands by adding &#39;discard&#39; to
7372 /etc/fstab.&lt;/li&gt;
7373
7374 &lt;li&gt;Change I/O scheduler from cfq to deadline using a udev rule.&lt;/li&gt;
7375
7376 &lt;li&gt;Run fstrim on every ext3 and ext4 file system every night (from
7377 cron.daily).&lt;/li&gt;
7378
7379 &lt;li&gt;Adjust sysctl values vm.swappiness to 1 and vm.vfs_cache_pressure
7380 to 50 to reduce the kernel eagerness to swap out processes.&lt;/li&gt;
7381
7382 &lt;/ul&gt;
7383
7384 &lt;p&gt;During installation, I cancelled the part where the installer fill
7385 the disk with random data, as this would kill the SSD performance for
7386 little gain. My goal with the encrypted file system is to ensure
7387 those stealing my laptop end up with a brick and not a working
7388 computer. I have no hope in keeping the really resourceful people
7389 from getting the data on the disk (see
7390 &lt;a href=&quot;http://xkcd.com/538/&quot;&gt;XKCD #538&lt;/a&gt; for an explanation why).
7391 Thus I concluded that adding the discard option to crypttab is the
7392 right thing to do.&lt;/p&gt;
7393
7394 &lt;p&gt;I considered using the noop I/O scheduler, as several recommended
7395 it for SSD, but others recommended deadline and a benchmark I found
7396 indicated that deadline might be better for interactive use.&lt;/p&gt;
7397
7398 &lt;p&gt;I also considered using the &#39;discard&#39; file system option for ext3
7399 and ext4, but read that it would give a performance hit ever time a
7400 file is removed, and thought it best to that that slowdown once a day
7401 instead of during my work.&lt;/p&gt;
7402
7403 &lt;p&gt;My package do not set up tmpfs on /var/run, /var/lock and /tmp, as
7404 this is already done by Debian Edu.&lt;/p&gt;
7405
7406 &lt;p&gt;I have not yet started on the user space tuning. I expect
7407 iceweasel need some tuning, and perhaps other applications too, but
7408 have not yet had time to investigate those parts.&lt;/p&gt;
7409
7410 &lt;p&gt;The package should work on Ubuntu too, but I have not yet tested it
7411 there.&lt;/p&gt;
7412
7413 &lt;p&gt;As for the answer to the question in the title of this blog post,
7414 as far as I know, the only solution I know about is to replace the
7415 disk. It might be possible to flash it with Intel firmware instead of
7416 the Lenovo firmware. But I have not tried and did not want to do so
7417 without approval from Lenovo as I wanted to keep the warranty on the
7418 disk until a solution was found and they wanted the broken disks
7419 back.&lt;/p&gt;
7420 </description>
7421 </item>
7422
7423 <item>
7424 <title>Intel SSD 520 Series 180 GB with Lenovo firmware still lock up from sustained writes</title>
7425 <link>http://people.skolelinux.org/pere/blog/Intel_SSD_520_Series_180_GB_with_Lenovo_firmware_still_lock_up_from_sustained_writes.html</link>
7426 <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>
7427 <pubDate>Wed, 10 Jul 2013 13:30:00 +0200</pubDate>
7428 <description>&lt;p&gt;A few days ago, I wrote about
7429 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html&quot;&gt;the
7430 problems I experienced with my new X230 and its SSD disk&lt;/a&gt;, which
7431 was dying during installation because it is unable to cope with
7432 sustained write. My supplier is in contact with
7433 &lt;a href=&quot;http://www.lenovo.com/&quot;&gt;Lenovo&lt;/a&gt;, and they wanted to send a
7434 replacement disk to try to fix the problem. They decided to send an
7435 identical model, so my hopes for a permanent fix was slim.&lt;/p&gt;
7436
7437 &lt;p&gt;Anyway, today I got the replacement disk and tried to install
7438 Debian Edu Wheezy with encrypted disk on it. The new disk have the
7439 same firmware version as the original. This time my hope raised
7440 slightly as the installation progressed, as the original disk used to
7441 die after 4-7% of the disk was written to, while this time it kept
7442 going past 10%, 20%, 40% and even past 50%. But around 60%, the disk
7443 died again and I was back on square one. I still do not have a new
7444 laptop with a disk I can trust. I can not live with a disk that might
7445 lock up when I download a new
7446 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; ISO or
7447 other large files. I look forward to hearing from my supplier with
7448 the next proposal from Lenovo.&lt;/p&gt;
7449
7450 &lt;p&gt;The original disk is marked Intel SSD 520 Series 180 GB,
7451 11S0C38722Z1ZNME35X1TR, ISN: CVCV321407HB180EGN, SA: G57560302, FW:
7452 LF1i, 29MAY2013, PBA: G39779-300, LBA 351,651,888, LI P/N: 0C38722,
7453 Pb-free 2LI, LC P/N: 16-200366, WWN: 55CD2E40002756C4, Model:
7454 SSDSC2BW180A3L 2.5&quot; 6Gb/s SATA SSD 180G 5V 1A, ASM P/N 0C38732, FRU
7455 P/N 45N8295, P0C38732.&lt;/p&gt;
7456
7457 &lt;p&gt;The replacement disk is marked Intel SSD 520 Series 180 GB,
7458 11S0C38722Z1ZNDE34N0L0, ISN: CVCV315306RK180EGN, SA: G57560-302, FW:
7459 LF1i, 22APR2013, PBA: G39779-300, LBA 351,651,888, LI P/N: 0C38722,
7460 Pb-free 2LI, LC P/N: 16-200366, WWN: 55CD2E40000AB69E, Model:
7461 SSDSC2BW180A3L 2.5&quot; 6Gb/s SATA SSD 180G 5V 1A, ASM P/N 0C38732, FRU
7462 P/N 45N8295, P0C38732.&lt;/p&gt;
7463
7464 &lt;p&gt;The only difference is in the first number (serial number?), ISN,
7465 SA, date and WNPP values. Mentioning all the details here in case
7466 someone is able to use the information to find a way to identify the
7467 failing disk among working ones (if any such working disk actually
7468 exist).&lt;/p&gt;
7469 </description>
7470 </item>
7471
7472 <item>
7473 <title>July 13th: Debian/Ubuntu BSP and Skolelinux/Debian Edu developer gathering in Oslo</title>
7474 <link>http://people.skolelinux.org/pere/blog/July_13th__Debian_Ubuntu_BSP_and_Skolelinux_Debian_Edu_developer_gathering_in_Oslo.html</link>
7475 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/July_13th__Debian_Ubuntu_BSP_and_Skolelinux_Debian_Edu_developer_gathering_in_Oslo.html</guid>
7476 <pubDate>Tue, 9 Jul 2013 10:40:00 +0200</pubDate>
7477 <description>&lt;p&gt;The upcoming Saturday, 2013-07-13, we are organising a combined
7478 Debian Edu developer gathering and Debian and Ubuntu bug squashing
7479 party in Oslo. It is organised by &lt;a href=&quot;http://www.nuug.no/&quot;&gt;the
7480 member assosiation NUUG&lt;/a&gt; and
7481 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;the Debian Edu / Skolelinux
7482 project&lt;/a&gt; together with &lt;a href=&quot;http://bitraf.no/&quot;&gt;the hack space
7483 Bitraf&lt;/a&gt;.&lt;/p&gt;
7484
7485 &lt;p&gt;It starts 10:00 and continue until late evening. Everyone is
7486 welcome, and there is no fee to participate. There is on the other
7487 hand limited space, and only room for 30 people. Please put your name
7488 on &lt;a href=&quot;http://wiki.debian.org/BSP/2013/07/13/no/Oslo&quot;&gt;the event
7489 wiki page&lt;/a&gt; if you plan to join us.&lt;/p&gt;
7490 </description>
7491 </item>
7492
7493 <item>
7494 <title>The Thinkpad is dead, long live the Thinkpad X230?</title>
7495 <link>http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html</link>
7496 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html</guid>
7497 <pubDate>Fri, 5 Jul 2013 08:30:00 +0200</pubDate>
7498 <description>&lt;p&gt;Half a year ago, I reported that I had to find a
7499 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Thank_you_Thinkpad_X41__for_your_long_and_trustworthy_service.html&quot;&gt;replacement
7500 for my trusty old Thinkpad X41&lt;/a&gt;. Unfortunately I did not have much
7501 time to spend on it, and it took a while to find a model I believe
7502 will do the job, but two days ago the replacement finally arrived. I
7503 ended up picking a
7504 &lt;a href=&quot;http://www.linlap.com/lenovo_thinkpad_x230&quot;&gt;Thinkpad X230&lt;/a&gt;
7505 with SSD disk (NZDAJMN). I first test installed Debian Edu Wheezy as
7506 a roaming workstation, and it seemed to work flawlessly. But my
7507 second installation with encrypted disk was not as successful. More
7508 on that below.&lt;/p&gt;
7509
7510 &lt;p&gt;I had a hard time trying to track down a good laptop, as my most
7511 important requirements (robust and with a good keyboard) are never
7512 listed in the feature list. But I did get good help from the search
7513 feature at &lt;a href=&quot;http://www.prisjakt.no/&quot;&gt;Prisjakt&lt;/a&gt;, which
7514 allowed me to limit the list of interesting laptops based on my other
7515 requirements. A bit surprising that SSD disk are not disks according
7516 to that search interface, so I had to drop specifying the number of
7517 disks from my search parameters. I also asked around among friends to
7518 get their impression on keyboards and robustness.&lt;/p&gt;
7519
7520 &lt;p&gt;So the new laptop arrived, and it is quite a lot wider than the
7521 X41. I am not quite convinced about the keyboard, as it is
7522 significantly wider than my old keyboard, and I have to stretch my
7523 hand a lot more to reach the edges. But the key response is fairly
7524 good and the individual key shape is fairly easy to handle, so I hope
7525 I will get used to it. My old X40 was starting to fail, and I really
7526 needed a new laptop now. :)&lt;/p&gt;
7527
7528 &lt;p&gt;Turning off the touch pad was simple. All it took was a quick
7529 visit to the BIOS during boot it disable it.&lt;/p&gt;
7530
7531 &lt;p&gt;But there is a fatal problem with the laptop. The 180 GB SSD disk
7532 lock up during load. And this happen when installing Debian Wheezy
7533 with encrypted disk, while the disk is being filled with random data.
7534 I also tested to install Ubuntu Raring, and it happen there too if I
7535 reenable the code to fill the disk with random data (it is disabled by
7536 default in Ubuntu). And the bug with is already known. It was
7537 reported to Debian as &lt;a href=&quot;http://bugs.debian.org/691427&quot;&gt;BTS
7538 report #691427 2012-10-25&lt;/a&gt; (journal commit I/O error on brand-new
7539 Thinkpad T430s ext4 on lvm on SSD). It is also reported to the Linux
7540 kernel developers as
7541 &lt;a href=&quot;https://bugzilla.kernel.org/show_bug.cgi?id=51861&quot;&gt;Kernel bugzilla
7542 report #51861 2012-12-20&lt;/a&gt; (Intel SSD 520 stops working under load
7543 (SSDSC2BW180A3L in Lenovo ThinkPad T430s)). It is also reported on the
7544 Lenovo forums, both for
7545 &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
7546 2012-11-10&lt;/a&gt; and for
7547 &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
7548 03-20-2013&lt;/a&gt;. The problem do not only affect installation. The
7549 reports state that the disk lock up during use if many writes are done
7550 on the disk, so it is much no use to work around the installation
7551 problem and end up with a computer that can lock up at any moment.
7552 There is even a
7553 &lt;a href=&quot;https://git.efficios.com/?p=test-ssd.git&quot;&gt;small C program
7554 available&lt;/a&gt; that will lock up the hard drive after running a few
7555 minutes by writing to a file.&lt;/p&gt;
7556
7557 &lt;p&gt;I&#39;ve contacted my supplier and asked how to handle this, and after
7558 contacting PCHELP Norway (request 01D1FDP) which handle support
7559 requests for Lenovo, his first suggestion was to upgrade the disk
7560 firmware. Unfortunately there is no newer firmware available from
7561 Lenovo, as my disk already have the most recent one (version LF1i). I
7562 hope to hear more from him today and hope the problem can be
7563 fixed. :)&lt;/p&gt;
7564 </description>
7565 </item>
7566
7567 <item>
7568 <title>The Thinkpad is dead, long live the Thinkpad X230</title>
7569 <link>http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230.html</link>
7570 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230.html</guid>
7571 <pubDate>Thu, 4 Jul 2013 09:20:00 +0200</pubDate>
7572 <description>&lt;p&gt;Half a year ago, I reported that I had to find a replacement for my
7573 trusty old Thinkpad X41. Unfortunately I did not have much time to
7574 spend on it, but today the replacement finally arrived. I ended up
7575 picking a &lt;a href=&quot;http://www.linlap.com/lenovo_thinkpad_x230&quot;&gt;Thinkpad
7576 X230&lt;/a&gt; with SSD disk (NZDAJMN). I first test installed Debian Edu
7577 Wheezy as a roaming workstation, and it worked flawlessly. As I write
7578 this, it is installing what I hope will be a more final installation,
7579 with a encrypted hard drive to ensure any dope head stealing it end up
7580 with an expencive door stop.&lt;/p&gt;
7581
7582 &lt;p&gt;I had a hard time trying to track down a good laptop, as my most
7583 important requirements (robust and with a good keyboard) are never
7584 listed in the feature list. But I did get good help from the search
7585 feature at &lt;ahref=&quot;http://www.prisjakt.no/&quot;&gt;Prisjakt&lt;/a&gt;, which
7586 allowed me to limit the list of interesting laptops based on my other
7587 requirements. A bit surprising that SSD disk are not disks, so I had
7588 to drop number of disks from my search parameters.&lt;/p&gt;
7589
7590 &lt;p&gt;I am not quite convinced about the keyboard, as it is significantly
7591 wider than my old keyboard, and I have to stretch my hand a lot more
7592 to reach the edges. But the key response is fairly good and the
7593 individual key shape is fairly easy to handle, so I hope I will get
7594 used to it. My old X40 was starting to fail, and I really needed a
7595 new laptop now. :)&lt;/p&gt;
7596
7597 &lt;p&gt;I look forward to figuring out how to turn off the touch pad.&lt;/p&gt;
7598 </description>
7599 </item>
7600
7601 <item>
7602 <title>Fourth alpha release of Debian Edu/Skolelinux based on Debian Wheezy</title>
7603 <link>http://people.skolelinux.org/pere/blog/Fourth_alpha_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</link>
7604 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Fourth_alpha_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html</guid>
7605 <pubDate>Wed, 3 Jul 2013 14:00:00 +0200</pubDate>
7606 <description>&lt;p&gt;The fourth wheezy based alpha release of Debian Edu was wrapped up
7607 today. This is the release announcement:&lt;/p&gt;
7608
7609 &lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.1+edu0~alpha3 released
7610 2013-07-03&lt;/strong&gt;&lt;/p&gt;
7611
7612 &lt;p&gt;These are the release notes for for Debian Edu / Skolelinux
7613 7.1+edu0~alpha3, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
7614
7615 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
7616
7617 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
7618 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
7619 out-of-the box environment of a completely configured school
7620 network. Immediately after installation a school server running all
7621 services needed for a school network is set up just waiting for users
7622 and machines being added via GOsa², a comfortable Web-UI. A netbooting
7623 environment is prepared using PXE, so after initial installation of
7624 the main server from CD, DVD or USB stick all other machines can be
7625 installed via the network. The provided school server provides LDAP
7626 database and Kerberos authentication service, centralized home
7627 directories, DHCP server, web proxy and many other services. The
7628 desktop contains
7629 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;more
7630 than 60 educational software packages&lt;/a&gt; and more are available from
7631 the Debian archive, and schools can choose between KDE, Gnome, LXDE
7632 and Xfce desktop environment.&lt;/p&gt;
7633
7634 &lt;p&gt;This is the fourth test release based on Debian Wheezy. Basically
7635 this is an updated and slightly improved version compared to the
7636 Squeeze release.&lt;/p&gt;
7637
7638 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
7639 &lt;ul&gt;
7640 &lt;li&gt;Dropped ispell dictionaries from our default installation.&lt;/li&gt;
7641 &lt;li&gt;Dropped menu-xdg from the KDE desktop option, to drop the Debian
7642 submenu. It was not included with Gnome, LXDE or Xfce, so this
7643 brings KDE in line with the others.&lt;/li&gt;
7644 &lt;li&gt;Dropped xdrawchem, xjig and xsok from our default installation as
7645 they don&#39;t have a desktop menu entry and thus won&#39;t show up in the
7646 menu now that menu-xdg was removed.&lt;/li&gt;
7647 &lt;li&gt;Removed the killer system to kill left behind processes on
7648 multi-user machines, as it was no longer able to understand when a
7649 X display was in use and killed the processes of the active users
7650 too.&lt;/li&gt;
7651 &lt;li&gt;Dropped the golearn (from goplay) package as the debtags in wheezy
7652 are too few to make the package useful.&lt;/li&gt;
7653 &lt;/ul&gt;
7654 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
7655 &lt;ul&gt;
7656 &lt;li&gt;Updated artwork matching http://wiki.debian.org/DebianArt/Themes/Joy
7657 &lt;li&gt;Multi-arch i386/amd64 USB stick ISO available.&lt;/li&gt;
7658 &lt;li&gt;Got rid of ispell/wordlist related debconf questions that showed
7659 up for some language options.&lt;/li&gt;
7660 &lt;li&gt;Switched to using http.debian.net as APT source by default.&lt;/li&gt;
7661 &lt;li&gt;Fixed proxy configuration on Main Server installations.&lt;/li&gt;
7662 &lt;li&gt;Changed LTSP setup to ask dpkg to use force-unsafe-io the same way
7663 d-i is doing it.&lt;/li&gt;
7664 &lt;li&gt;Made sure root and user passwords were not left behind in the
7665 debconf database after installation on Main Server installations.&lt;/li&gt;
7666 &lt;li&gt;Made Roaming Workstation dynamic setup more robust and added draft
7667 script setup-ad-client to hook a Roaming Workstation up to a
7668 Active Directory server instead of a Debian Edu Main Server.&lt;/li&gt;
7669 &lt;li&gt;Update system to install needed firmware packages during
7670 installation, to work properly in Wheezy.&lt;/li&gt;
7671 &lt;li&gt;Update system to handle hardware quirks (debian-edu-hwsetup).&lt;/li&gt;
7672 &lt;li&gt;Corrected PXE installation setup to properly pass selected desktop
7673 and keymap settings to PXE installation clients.&lt;/li&gt;
7674 &lt;li&gt;LTSP diskless workstations use sshfs by default, allowing them to
7675 work without adding them to DNS and NIS netgroups for NFS access.&lt;/li&gt;
7676 &lt;/ul&gt;
7677 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
7678 &lt;ul&gt;
7679 &lt;li&gt;No mass import of user account data in GOsa (ldif or csv)
7680 available yet (698840).&lt;/li&gt;
7681 &lt;li&gt;Artwork not enabled for all desktops.&lt;/li&gt;
7682 &lt;/ul&gt;
7683 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
7684
7685 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
7686 &lt;ul&gt;
7687 &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;
7688 &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;
7689 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso .&lt;/li&gt;
7690 &lt;/ul&gt;
7691
7692 &lt;p&gt;The MD5SUM of this image is: 2b161a99d2a848c376d8d04e3854e30c
7693 &lt;br&gt;The SHA1SUM of this image is: 498922e9c508c0a7ee9dbe1dfe5bf830d779c3c8&lt;/p&gt;
7694
7695 &lt;p&gt;To download the multiarch USB stick ISO release you can use&lt;/p&gt;
7696 &lt;ul&gt;
7697 &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;
7698 &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;
7699 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso .&lt;/li&gt;
7700 &lt;/ul&gt;
7701
7702 &lt;p&gt;The MD5SUM of this image is: 25e808e403a4c15dbef1d13c37d572ac
7703 &lt;br&gt;The SHA1SUM of this image is: 15ecfc93eb6b4f453b7eb0bc04b6a279262d9721&lt;/p&gt;
7704
7705 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
7706
7707 &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;
7708 </description>
7709 </item>
7710
7711 <item>
7712 <title>Automatically locate and install required firmware packages on Debian (Isenkram 0.4)</title>
7713 <link>http://people.skolelinux.org/pere/blog/Automatically_locate_and_install_required_firmware_packages_on_Debian__Isenkram_0_4_.html</link>
7714 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatically_locate_and_install_required_firmware_packages_on_Debian__Isenkram_0_4_.html</guid>
7715 <pubDate>Tue, 25 Jun 2013 11:50:00 +0200</pubDate>
7716 <description>&lt;p&gt;It annoys me when the computer fail to do automatically what it is
7717 perfectly capable of, and I have to do it manually to get things
7718 working. One such task is to find out what firmware packages are
7719 needed to get the hardware on my computer working. Most often this
7720 affect the wifi card, but some times it even affect the RAID
7721 controller or the ethernet card. Today I pushed version 0.4 of the
7722 &lt;a href=&quot;http://packages.qa.debian.org/isenkram&quot;&gt;Isenkram package&lt;/a&gt;
7723 including a new script isenkram-autoinstall-firmware handling the
7724 process of asking all the loaded kernel modules what firmware files
7725 they want, find debian packages providing these files and install the
7726 debian packages. Here is a test run on my laptop:&lt;/p&gt;
7727
7728 &lt;p&gt;&lt;pre&gt;
7729 # isenkram-autoinstall-firmware
7730 info: kernel drivers requested extra firmware: ipw2200-bss.fw ipw2200-ibss.fw ipw2200-sniffer.fw
7731 info: fetching http://http.debian.net/debian/dists/squeeze/Contents-i386.gz
7732 info: locating packages with the requested firmware files
7733 info: Updating APT sources after adding non-free APT source
7734 info: trying to install firmware-ipw2x00
7735 firmware-ipw2x00
7736 firmware-ipw2x00
7737 Preconfiguring packages ...
7738 Selecting previously deselected package firmware-ipw2x00.
7739 (Reading database ... 259727 files and directories currently installed.)
7740 Unpacking firmware-ipw2x00 (from .../firmware-ipw2x00_0.28+squeeze1_all.deb) ...
7741 Setting up firmware-ipw2x00 (0.28+squeeze1) ...
7742 #
7743 &lt;/pre&gt;&lt;/p&gt;
7744
7745 &lt;p&gt;When all the requested firmware is present, a simple message is
7746 printed instead:&lt;/p&gt;
7747
7748 &lt;p&gt;&lt;pre&gt;
7749 # isenkram-autoinstall-firmware
7750 info: did not find any firmware files requested by loaded kernel modules. exiting
7751 #
7752 &lt;/pre&gt;&lt;/p&gt;
7753
7754 &lt;p&gt;It could use some polish, but it is already working well and saving
7755 me some time when setting up new machines. :)&lt;/p&gt;
7756
7757 &lt;p&gt;So, how does it work? It look at the set of currently loaded
7758 kernel modules, and look up each one of them using modinfo, to find
7759 the firmware files listed in the module meta-information. Next, it
7760 download the Contents file from a nearby APT mirror, and search for
7761 the firmware files in this file to locate the package with the
7762 requested firmware file. If the package is in the non-free section, a
7763 non-free APT source is added and the package is installed using
7764 &lt;tt&gt;apt-get install&lt;/tt&gt;. The end result is a slightly better working
7765 machine.&lt;/p&gt;
7766
7767 &lt;p&gt;I hope someone find time to implement a more polished version of
7768 this script as part of the hw-detect debian-installer module, to
7769 finally fix &lt;a href=&quot;http://bugs.debian.org/655507&quot;&gt;BTS report
7770 #655507&lt;/a&gt;. There really is no need to insert USB sticks with
7771 firmware during a PXE install when the packages already are available
7772 from the nearby Debian mirror.&lt;/p&gt;
7773 </description>
7774 </item>
7775
7776 <item>
7777 <title>The value of a good distro wide test suite...</title>
7778 <link>http://people.skolelinux.org/pere/blog/The_value_of_a_good_distro_wide_test_suite___.html</link>
7779 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_value_of_a_good_distro_wide_test_suite___.html</guid>
7780 <pubDate>Sat, 22 Jun 2013 07:00:00 +0200</pubDate>
7781 <description>&lt;p&gt;In the &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
7782 Skolelinux&lt;/a&gt; project, we include a post-installation test suite,
7783 which check that services are running, working, and return the
7784 expected results. It runs automatically just after the first boot on
7785 test installations (using test ISOs), but not on production
7786 installations (using non-test ISOs). It test that the LDAP service is
7787 operating, Kerberos is responding, DNS is replying, file systems are
7788 online resizable, etc, etc. And it check that the PXE service is
7789 configured, which is the topic of this post.&lt;/p&gt;
7790
7791 &lt;p&gt;The last week I&#39;ve fixed the DVD and USB stick ISOs for our Debian
7792 Edu Wheezy release. These ISOs are supposed to be able to install a
7793 complete system without any Internet connection, but for that to
7794 happen all the needed packages need to be on them. Thanks to our test
7795 suite, I discovered that we had forgotten to adjust our PXE setup to
7796 cope with the new names and paths used by the netboot d-i packages.
7797 When Internet connectivity was available, the installer fall back to
7798 using wget to fetch d-i boot images, but when offline it require
7799 working packages to get it working. And the packages changed name
7800 from debian-installer-6.0-netboot-$arch to
7801 debian-installer-7.0-netboot-$arch, we no longer pulled in the
7802 packages during installation. Without our test suite, I suspect we
7803 would never have discovered this before release. Now it is fixed
7804 right after we got the ISOs operational.&lt;/p&gt;
7805
7806 &lt;p&gt;Another by-product of the test suite is that we can ask system
7807 administrators with problems getting Debian Edu to work, to run the
7808 test suite using &lt;tt&gt;/usr/sbin/debian-edu-test-install&lt;/tt&gt; and see if
7809 any errors are detected. This usually pinpoint the subsystem causing
7810 the problem.&lt;/p&gt;
7811
7812 &lt;p&gt;If you want to help us help kids learn how to share and create,
7813 please join us on
7814 &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;#debian-edu on
7815 irc.debian.org&lt;/a&gt; and the
7816 &lt;a href=&quot;http://lists.debian.org/debian-edu/&quot;&gt;debian-edu@&lt;/a&gt; mailing
7817 list.&lt;/p&gt;
7818 </description>
7819 </item>
7820
7821 <item>
7822 <title>Debian Edu interview: Victor Nițu</title>
7823 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Victor_Ni_u.html</link>
7824 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Victor_Ni_u.html</guid>
7825 <pubDate>Mon, 17 Jun 2013 10:50:00 +0200</pubDate>
7826 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and
7827 Skolelinux&lt;/a&gt; distribution have users and contributors all around the
7828 globe. And a while back, an enterprising young man showed up on
7829 &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;our IRC channel
7830 #debian-edu&lt;/a&gt; and started asking questions about how Debian Edu
7831 worked. We answered as good as we could, and even convinced him to
7832 help us with translations. And today I managed to get an interview
7833 with him, to learn more about him.&lt;/p&gt;
7834
7835 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
7836
7837 &lt;p&gt;I&#39;m a 25 year old free software enthusiast, living in Romania,
7838 which is also my country of origin. Back in 2009, at a New Year&#39;s Eve
7839 party, I had a very nice &lt;strike&gt;beer&lt;/strike&gt; discussion with a
7840 friend, when we realized we have no organised Debian community in our
7841 country. A few days later, we put together the infrastructure for such
7842 community and even gathered a nice Debian-ish crowd. Since then, I
7843 began my quest as a free software hacker and activist and I am
7844 constantly trying to cover as much ground as possible on that
7845 field.&lt;/p&gt;
7846
7847 &lt;p&gt;A few years ago I founded a small web development company, which
7848 provided me the flexible schedule I needed so much for my
7849 activities. For the last 13 months, I have been the Technical Director
7850 of &lt;a href=&quot;http://ceata.org/&quot;&gt;Fundația Ceata&lt;/a&gt;, which is a free
7851 software activist organisation endorsed by the FSF and the FSFE, and
7852 the only one we have in our country.&lt;/p&gt;
7853
7854 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
7855 project?&lt;/strong&gt;&lt;/p&gt;
7856
7857 &lt;p&gt;The idea of participating in the Debian Edu project was a surprise
7858 even to me, since I never used it before I began getting involved in
7859 it. This year I had a great opportunity to deliver a talk on
7860 educational software, and I knew immediately where to look. It was a
7861 love at first sight, since I was previously involved with some of the
7862 technologies the project incorporates, and I rapidly found a lot of
7863 ways to contribute.&lt;/p&gt;
7864
7865 &lt;p&gt;My first contributions consisted in translating the installer and
7866 configuration dialogs, then I found some bugs to squash (I still
7867 haven&#39;t fixed them yet though), and I even got my eyes on some other
7868 areas where I can prove myself helpful. Since the appetite for free
7869 software in my country is pretty low, I&#39;ll be happy to be the first
7870 one around here advocating for the project&#39;s adoption in educational
7871 environments, and maybe even get my hands dirty in creating a flavour
7872 for our own needs. I am not used to make very advanced plannings, so
7873 from now on, time will tell what I&#39;ll be doing next, but I think I
7874 have a pretty consistent starting point.&lt;/p&gt;
7875
7876 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
7877 Edu?&lt;/strong&gt;&lt;/p&gt;
7878
7879 &lt;p&gt;Not a long time ago, I was in the position of configuring and
7880 maintaining a LDAP server on some Debian derivative, and I must say it
7881 took me a while. A long time ago, I was maintaining a bigger
7882 Samba-powered infrastructure, and I must say I spent quite a lot of
7883 time on it. I have similar stories about many of the services included
7884 with Skolelinux, and the main advantage I see about it is the
7885 out-of-the box availability of them, making it quite competitive when
7886 it comes to managing a school&#39;s network, for example.&lt;/p&gt;
7887
7888 &lt;p&gt;Of course, there is more to say about Skolelinux than the
7889 availability of the software included, its flexibility in various
7890 scenarios is something I can&#39;t wait to experiment &quot;into the wild&quot; (I
7891 only played with virtual machines so far). And I am sure there is a
7892 lot more I haven&#39;t discovered yet about it, being so new within the
7893 project.&lt;/p&gt;
7894
7895 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
7896 Edu?&lt;/strong&gt;&lt;/p&gt;
7897
7898 &lt;p&gt;As usual, when it comes to Debian Blends, I see as the biggest
7899 disadvantage the lack of a numerous team dedicated to the
7900 project. Every day I see the same names in the changelogs, and I have
7901 a constantly fear of the bus factor in this story. I&#39;d like to see
7902 Debian Edu advertised more as an entry point into the Debian
7903 ecosystem, especially amongst newcomers and students. IMHO there are a
7904 lot low-hanging fruits in terms of bug squashing, and enough
7905 opportunities to get the feeling of the Debian Project&#39;s dynamics. Not
7906 to mention it&#39;s a very fun blend to work on!&lt;/p&gt;
7907
7908 &lt;p&gt;Derived from the previous statement, is the delay in catching up
7909 with the main Debian release and documentation. This is common though
7910 to all blends and derivatives, but it&#39;s an issue we can all work
7911 on.&lt;/p&gt;
7912
7913 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
7914
7915 &lt;p&gt;I can hardly imagine myself spending a day without Vim, since my
7916 daily routine covers writing code and hacking configuration files. I
7917 am a fan of the Awesome window manager (but I also like the
7918 Enlightenment project a lot!),
7919 &lt;a href=&quot;http://www.claws-mail.org/‎&quot;&gt;Claws Mail&lt;/a&gt; due to its ease of
7920 use and very configurable behaviour. Recently I fell in love with
7921 &lt;a href=&quot;https://launchpad.net/redshift&quot;&gt;Redshift&lt;/a&gt;, which helps me
7922 get through the night without headaches. Of course, there is much more
7923 stuff in this bag, but I&#39;ll need a blog on my own for doing this!&lt;/p&gt;
7924
7925 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
7926 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
7927
7928 &lt;p&gt;Well, on this field, I cannot do much more than experiment right
7929 now. So, being far from having a recipe for success, I can only assume
7930 that:&lt;/p&gt;
7931
7932 &lt;ul&gt;
7933
7934 &lt;li&gt;schools would like to get rid of proprietary software&lt;/li&gt;
7935
7936 &lt;li&gt;students will love the openness of the system, and will want to
7937 experiment with it - maybe we need to harvest the native curiosity
7938 of teenagers more?&lt;/li&gt;
7939
7940 &lt;li&gt;there is no &quot;right one&quot; when it comes to strategies, but it would
7941 be useful to have some success stories published somewhere, so
7942 other can get some inspiration from them (I know I&#39;d promote
7943 them!)&lt;/li&gt;
7944
7945 &lt;li&gt;more active promotion - talks, conferences, even small school
7946 lectures can do magical things if they encounter at least one
7947 person interested. Who knows who that person might be? ;-)&lt;/li&gt;
7948
7949 &lt;/ul&gt;
7950
7951 &lt;p&gt;I also see some problems in getting Skolelinux into schools; for
7952 example, in our country we have a great deal of corruption issues, so
7953 it might be hard(er) to fight against proprietary solutions. Also,
7954 people who relied on commercial software for all their lives, would be
7955 very hard to convert against their will.&lt;/p&gt;
7956 </description>
7957 </item>
7958
7959 <item>
7960 <title>Debian Edu interview: Jonathan Carter</title>
7961 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Jonathan_Carter.html</link>
7962 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Jonathan_Carter.html</guid>
7963 <pubDate>Wed, 12 Jun 2013 09:50:00 +0200</pubDate>
7964 <description>&lt;p&gt;There is a certain cross-over between the
7965 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux
7966 project&lt;/a&gt; and &lt;a href=&quot;http://www.edubuntu.org/&quot;&gt;the Edubuntu
7967 project&lt;/a&gt;, and for example the LTSP packages in Debian are a joint
7968 effort between the projects. One person with a foot in both camps is
7969 Jonathan Carter, which I am now happy to present to you.&lt;/p&gt;
7970
7971 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
7972
7973 &lt;p&gt;I&#39;m a South-African free software geek who lives in Cape Town. My
7974 days vary quite a bit since I&#39;m involved in too many things. As I&#39;m
7975 getting older I&#39;m learning how to focus a bit more :)&lt;/p&gt;
7976
7977 &lt;p&gt;I&#39;m also an Edubuntu contributor and I love when there are
7978 opportunities for the Edubuntu and Debian Edu projects to benefit from
7979 each other.&lt;/p&gt;
7980
7981 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
7982 project?&lt;/strong&gt;&lt;/p&gt;
7983
7984 &lt;p&gt;I&#39;ve been somewhat familiar with the project before, but I think my
7985 first direct exposure to the project was when I met Petter
7986 [Reinholdtsen] and Knut [Yrvin] at the Edubuntu summit in 2005 in
7987 London. They provided great feedback that helped the bootstrapping of
7988 Edubuntu. Back then Edubuntu (and even Ubuntu) was still very new and
7989 it was great getting input from people who have been around longer. I
7990 was also still very excitable and said yes to everything and to this
7991 day I have a big todo list backlog that I&#39;m catching up with. I think
7992 over the years the relationship between Edubuntu and Debian-Edu has
7993 been gradually improving, although I think there&#39;s a lot that we could
7994 still improve on in terms of working together on packages. I&#39;m sure
7995 we&#39;ll get there one day.&lt;/p&gt;
7996
7997 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
7998 Edu?&lt;/strong&gt;&lt;/p&gt;
7999
8000 &lt;p&gt;Debian itself already has so many advantages. I could go on about
8001 it for pages, but in essence I love that it&#39;s a very honest project
8002 that puts its users first with no hidden agendas and also produces
8003 very high quality work.&lt;/p&gt;
8004
8005 &lt;p&gt;I think the advantage of Debian Edu is that it makes many common
8006 set-up tasks simpler so that administrators can get up and running
8007 with a lot less effort and frustration. At the same time I think it
8008 helps to standardise installations in schools so that it&#39;s easier for
8009 community members and commercial suppliers to support.&lt;/p&gt;
8010
8011 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
8012 Edu?&lt;/strong&gt;&lt;/p&gt;
8013
8014 &lt;p&gt;I had to re-type this one a few times because I&#39;m trying to
8015 separate &quot;disadvantages&quot; from &quot;areas that need improvement&quot; (which is
8016 what I originally rambled on about)&lt;/p&gt;
8017
8018 &lt;p&gt;The biggest disadvantage I can think of is lack of manpower. The
8019 project could do so much more if there were more good contributors. I
8020 think some of the problems are external too. Free software and free
8021 content in education is a no-brainer but it takes some time to catch
8022 on. When you&#39;ve been working with the same proprietary eco-system for
8023 years and have gotten used to it, it can be hard to adjust to some
8024 concepts in the free software world. It would be nice if there were
8025 more Debian Edu consultants across the world. I&#39;d love to be one
8026 myself but I&#39;m already so over-committed that it&#39;s just not possible
8027 currently.&lt;/p&gt;
8028
8029 &lt;p&gt;I think the best short-term solution to that large-scale problem is
8030 for schools to be pro-active and share their experiences and grow
8031 their skills in-house. I&#39;m often saddened to see how much money
8032 educational institutions spend on 3rd party solutions that they don&#39;t
8033 have access to after the service has ended and they could&#39;ve gotten so
8034 much more value otherwise by being more self-sustainable and
8035 autonomous.&lt;/p&gt;
8036
8037 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
8038
8039 &lt;p&gt;My main laptop dual-boots between Debian and Windows 7. I was
8040 Windows free for years but started dual-booting again last year for
8041 some games which help me focus and relax (Starcraft II in
8042 particular). Gaming support on Linux is improving in leaps and bounds
8043 so I suppose I&#39;ll soon be able to regain that disk space :)&lt;/p&gt;
8044
8045 &lt;p&gt;Besides that I rely on Icedove, Chromium, Terminator, Byobu, irssi,
8046 git, Tomboy, KVM, VLC and LibreOffice. Recently I&#39;ve been torn on
8047 which desktop environment I like and I&#39;m taking some refuge in Xfce
8048 while I figure that out. I like tools that keep things simple. I enjoy
8049 Python and shell scripting. I went to an Arduino workshop recently and
8050 it was awesome seeing how easy and simple the IDE software was to get
8051 up and running in Debian compared to the users running Windows and OS
8052 X.&lt;/p&gt;
8053
8054 &lt;p&gt;I also use mc which some people frown upon slightly. I got used to
8055 using Norton Commander in the early 90&#39;s and it stuck (I think the
8056 people who sneer at it is just jealous that they don&#39;t know how to use
8057 it :p)
8058
8059 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
8060 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
8061
8062 &lt;p&gt;I think trying to force it is unproductive. I also think that in
8063 many cases it&#39;s appropriate for schools to use non-free systems and I
8064 don&#39;t think that there&#39;s any particular moral or ethical problem with
8065 that.&lt;/p&gt;
8066
8067 &lt;p&gt;I do think though that free software can already solve so so many
8068 problems in educational institutions and it&#39;s just a shame not taking
8069 advantage of that.&lt;/p&gt;
8070
8071 &lt;p&gt;I also think that some curricula need serious review. For example,
8072 some areas of the world rely heavily on very specific versions of MS
8073 Office, teaching students to parrot menu items instead of learning the
8074 general concepts. I think that&#39;s very unproductive because firstly, MS
8075 Office&#39;s interface changes drastically every few years and on top of
8076 that it also locks in a generation to a product that might not be the
8077 best solution for them.&lt;/p&gt;
8078
8079 &lt;p&gt;To answer your question, I believe that the right strategy is to
8080 educate and inform, giving someone the information they require to
8081 make a decision that would work for them.&lt;/p&gt;
8082 </description>
8083 </item>
8084
8085 <item>
8086 <title>Fixing the Linux black screen of death on machines with Intel HD video</title>
8087 <link>http://people.skolelinux.org/pere/blog/Fixing_the_Linux_black_screen_of_death_on_machines_with_Intel_HD_video.html</link>
8088 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Fixing_the_Linux_black_screen_of_death_on_machines_with_Intel_HD_video.html</guid>
8089 <pubDate>Tue, 11 Jun 2013 11:00:00 +0200</pubDate>
8090 <description>&lt;p&gt;When installing RedHat, Fedora, Debian and Ubuntu on some machines,
8091 the screen just turn black when Linux boot, either during installation
8092 or on first boot from the hard disk. I&#39;ve seen it once in a while the
8093 last few years, but only recently understood the cause. I&#39;ve seen it
8094 on HP laptops, and on my latest acquaintance the Packard Bell laptop.
8095 The reason seem to be in the wiring of some laptops. The system to
8096 control the screen background light is inverted, so when Linux try to
8097 turn the brightness fully on, it end up turning it off instead. I do
8098 not know which Linux drivers are affected, but this post is about the
8099 i915 driver used by the
8100 &lt;a href=&quot;http://www.linlap.com/packard_bell_easynote_lv&quot;&gt;Packard Bell
8101 EasyNote LV&lt;/a&gt;, Thinkpad X40 and many other laptops.&lt;/p&gt;
8102
8103 &lt;p&gt;The problem can be worked around two ways. Either by adding
8104 i915.invert_brightness=1 as a kernel option, or by adding a file in
8105 /etc/modprobe.d/ to tell modprobe to add the invert_brightness=1
8106 option when it load the i915 kernel module. On Debian and Ubuntu, it
8107 can be done by running these commands as root:&lt;/p&gt;
8108
8109 &lt;pre&gt;
8110 echo options i915 invert_brightness=1 | tee /etc/modprobe.d/i915.conf
8111 update-initramfs -u -k all
8112 &lt;/pre&gt;
8113
8114 &lt;p&gt;Since March 2012 there is
8115 &lt;a href=&quot;http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=4dca20efb1a9c2efefc28ad2867e5d6c3f5e1955&quot;&gt;a
8116 mechanism in the Linux kernel&lt;/a&gt; to tell the i915 driver which
8117 hardware have this problem, and get the driver to invert the
8118 brightness setting automatically. To use it, one need to add a row in
8119 &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
8120 intel_quirks array&lt;/a&gt; in the driver source
8121 &lt;tt&gt;drivers/gpu/drm/i915/intel_display.c&lt;/tt&gt; (look for &quot;&lt;tt&gt;static
8122 struct intel_quirk intel_quirks&lt;/tt&gt;&quot;), specifying the PCI device
8123 number (vendor number 8086 is assumed) and subdevice vendor and device
8124 number.&lt;/p&gt;
8125
8126 &lt;p&gt;My Packard Bell EasyNote LV got this output from &lt;tt&gt;lspci
8127 -vvnn&lt;/tt&gt; for the video card in question:&lt;/p&gt;
8128
8129 &lt;p&gt;&lt;pre&gt;
8130 00:02.0 VGA compatible controller [0300]: Intel Corporation \
8131 3rd Gen Core processor Graphics Controller [8086:0156] \
8132 (rev 09) (prog-if 00 [VGA controller])
8133 Subsystem: Acer Incorporated [ALI] Device [1025:0688]
8134 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- \
8135 ParErr- Stepping- SE RR- FastB2B- DisINTx+
8136 Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast &gt;TAbort- \
8137 &lt;TAbort- &lt;MAbort-&gt;SERR- &lt;PERR- INTx-
8138 Latency: 0
8139 Interrupt: pin A routed to IRQ 42
8140 Region 0: Memory at c2000000 (64-bit, non-prefetchable) [size=4M]
8141 Region 2: Memory at b0000000 (64-bit, prefetchable) [size=256M]
8142 Region 4: I/O ports at 4000 [size=64]
8143 Expansion ROM at &lt;unassigned&gt; [disabled]
8144 Capabilities: &lt;access denied&gt;
8145 Kernel driver in use: i915
8146 &lt;/pre&gt;&lt;/p&gt;
8147
8148 &lt;p&gt;The resulting intel_quirks entry would then look like this:&lt;/p&gt;
8149
8150 &lt;p&gt;&lt;pre&gt;
8151 struct intel_quirk intel_quirks[] = {
8152 ...
8153 /* Packard Bell EasyNote LV11HC needs invert brightness quirk */
8154 { 0x0156, 0x1025, 0x0688, quirk_invert_brightness },
8155 ...
8156 }
8157 &lt;/pre&gt;&lt;/p&gt;
8158
8159 &lt;p&gt;According to the kernel module instructions (as seen using
8160 &lt;tt&gt;modinfo i915&lt;/tt&gt;), information about hardware needing the
8161 invert_brightness flag should be sent to the
8162 &lt;a href=&quot;http://lists.freedesktop.org/mailman/listinfo/dri-devel&quot;&gt;dri-devel
8163 (at) lists.freedesktop.org&lt;/a&gt; mailing list to reach the kernel
8164 developers. But my email about the laptop sent 2013-06-03 have not
8165 yet shown up in
8166 &lt;a href=&quot;http://lists.freedesktop.org/archives/dri-devel/2013-June/thread.html&quot;&gt;the
8167 web archive for the mailing list&lt;/a&gt;, so I suspect they do not accept
8168 emails from non-subscribers. Because of this, I sent my patch also to
8169 the Debian bug tracking system instead as
8170 &lt;a href=&quot;http://bugs.debian.org/710938&quot;&gt;BTS report #710938&lt;/a&gt;, to make
8171 sure the patch is not lost.&lt;/p&gt;
8172
8173 &lt;p&gt;Unfortunately, it is not enough to fix the kernel to get Laptops
8174 with this problem working properly with Linux. If you use Gnome, your
8175 worries should be over at this point. But if you use KDE, there is
8176 something in KDE ignoring the invert_brightness setting and turning on
8177 the screen during login. I&#39;ve reported it to Debian as
8178 &lt;a href=&quot;http://bugs.debian.org/711237&quot;&gt;BTS report #711237&lt;/a&gt;, and
8179 have no idea yet how to figure out exactly what subsystem is doing
8180 this. Perhaps you can help? Perhaps you know what the Gnome
8181 developers did to handle this, and this can give a clue to the KDE
8182 developers? Or you know where in KDE the screen brightness is changed
8183 during login? If so, please update the BTS report (or get in touch if
8184 you do not know how to update BTS).&lt;/p&gt;
8185
8186 &lt;p&gt;Update 2013-07-19: The correct fix for this machine seem to be
8187 acpi_backlight=vendor, to disable ACPI backlight support completely,
8188 as the ACPI information on the machine is trash and it is better to
8189 leave it to the intel video driver to control the screen
8190 backlight.&lt;/p&gt;
8191 </description>
8192 </item>
8193
8194 <item>
8195 <title>Third alpha release of Debian Edu / Skolelinux based on Debian Wheezy</title>
8196 <link>http://people.skolelinux.org/pere/blog/Third_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</link>
8197 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Third_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</guid>
8198 <pubDate>Mon, 10 Jun 2013 22:50:00 +0200</pubDate>
8199 <description>&lt;p&gt;The third wheezy based alpha release of Debian Edu was wrapped up
8200 today. This is the release announcement:&lt;/p&gt;
8201
8202 &lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.0.0 alpha2 released
8203 2013-06-10&lt;/strong&gt;&lt;/p&gt;
8204
8205 &lt;p&gt;This is the release notes for for Debian Edu / Skolelinux 7.0.0 edu
8206 alpha2, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
8207
8208 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
8209
8210 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
8211 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
8212 out-of-the box environment of a completely configured school
8213 network. Immediately after installation a school server running all
8214 services needed for a school network is set up just waiting for users
8215 and machines being added via GOsa², a comfortable Web-UI. A netbooting
8216 environment is prepared using PXE, so after initial installation of
8217 the main server from CD, DVD or USB stick all other machines can be
8218 installed via the network. The provided school server provides LDAP
8219 database and Kerberos authentication service, centralized home
8220 directories, DHCP server, web proxy and many other services. The
8221 desktop contains
8222 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html&quot;&gt;more
8223 than 60 educational software packages&lt;/a&gt; and more are available from
8224 the Debian archive, and schools can choose between KDE, Gnome, LXDE
8225 and Xfce desktop environment.&lt;/p&gt;
8226
8227 &lt;p&gt;This is the third test release based on Debian Wheezy. Basically
8228 this is an updated and slightly improved version compared to the
8229 Squeeze release.&lt;/p&gt;
8230
8231 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
8232
8233 &lt;ul&gt;
8234
8235 &lt;li&gt;Iceweasel was updated from 10 to 17. (DSA 2699-1)
8236 &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).
8237 &lt;li&gt;Switched xrdp on thin client servers to use tightvncserver instead of xvnc4.
8238 &lt;li&gt;Now install software oscilloscope xoscope by default.
8239 &lt;li&gt;Now install music tools gtick, lingot and pianobooster by default.
8240
8241 &lt;/ul&gt;
8242
8243 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
8244
8245 &lt;ul&gt;
8246
8247 &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.
8248 &lt;li&gt;Updated translation of the installation.
8249 &lt;li&gt;New Romanian translation.
8250 &lt;li&gt;Fix security problem causing root and first user password to no longer show up in /var/cache/debconf/templates.dat.
8251 &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).
8252 &lt;li&gt;Made roaming workstation setup more robust in non-Debian Edu environments.
8253 &lt;li&gt;New script debian-edu-bless to transform a Debian installation to a Debian Edu profile.
8254 &lt;li&gt;Adjust Iceweasel setup to improve performance when $HOME is on NFS.
8255 &lt;li&gt;More testsuite tests.
8256 &lt;li&gt;Make automatic proxy configuration more robust.
8257 &lt;li&gt;Adjust GOsa² GUI configuration.
8258
8259 &lt;li&gt;Update thin client and diskless workstation setup to work with
8260 LTSP in Wheezy.&lt;/li&gt;
8261
8262 &lt;li&gt;Diskless workstations now run out of the box -- no need to set
8263 them up with GOsa².&lt;/li&gt;
8264
8265 &lt;li&gt;Update IMAP server setup. &lt;/li&gt;
8266
8267 &lt;li&gt;Fix login into Skolelinux Backup Tool (Closed in
8268 slbackup-php/0.4.4-1: #700257: slbackup-php: Fails to submit correctly
8269 entered password). &lt;/li&gt;
8270
8271 &lt;/ul&gt;
8272
8273 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
8274
8275 &lt;ul&gt;
8276
8277 &lt;li&gt;DVD binary and source images are not yet ready.&lt;/li&gt;
8278
8279 &lt;li&gt;No mass import of user account data in GOsa (ldif or csv)
8280 available yet (Open in gosa/2.7.4-4: #698840: gosa-plugin-ldapmanager:
8281 missing import feature).&lt;/li&gt;
8282
8283 &lt;li&gt;Missing artwork for the KDE desktop (and probably a few others). &lt;/li&gt;
8284
8285 &lt;li&gt;KDE Debian submenu lacks icons (Closed: #502192: menu-xdg: invents
8286 own icon names instead of using existing). This will remain
8287 unfixed.&lt;/li&gt;
8288
8289 &lt;/ul&gt;
8290
8291 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
8292
8293 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
8294
8295 &lt;ul&gt;
8296
8297 &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;
8298
8299 &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;
8300
8301 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.0+edu0~a2-CD.iso .&lt;/li&gt;
8302
8303 &lt;/ul&gt;
8304
8305 &lt;p&gt;The MD5SUM of this image is: 27bbcace407743382f3c42c08dbe8178
8306 &lt;br&gt;The SHA1SUM of this image is: e35f7d7908566cd3075375b3721fa10ee420d419&lt;/p&gt;
8307
8308 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
8309
8310 &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;
8311 </description>
8312 </item>
8313
8314 <item>
8315 <title>Is there a PHP expert in the building? Debian Edu need help!</title>
8316 <link>http://people.skolelinux.org/pere/blog/Is_there_a_PHP_expert_in_the_building___Debian_Edu_need_help_.html</link>
8317 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Is_there_a_PHP_expert_in_the_building___Debian_Edu_need_help_.html</guid>
8318 <pubDate>Wed, 5 Jun 2013 17:50:00 +0200</pubDate>
8319 <description>&lt;p&gt;Here is a call for help from the Debian Edu / Skolelinux project.
8320 We have two problems blocking the release of the Wheezy version we
8321 hope to get released soon. The two problems require some with PHP
8322 skills, and we seem to lack anyone with both time and PHP skills in
8323 the project:
8324
8325 &lt;ol&gt;
8326
8327 &lt;li&gt;It is impossible to log into the slbackup web interface
8328 (slbackup-php) using the root user and password. This is
8329 &lt;a href=&quot;http://bugs.debian.org/700257&quot;&gt;BTS report #700257&lt;/a&gt;.
8330 This used to work, but stopped working some time since Squeeze.
8331 Perhaps some obsolete PHP feature was used?&lt;/li&gt;
8332
8333 &lt;li&gt;It is not possible to &quot;mass import&quot; user lists in Gosa, neither
8334 using ldif nor using CSV files. The feature was disabled after a
8335 major rewrite of Gosa, and need to be ported to the new system.
8336 This is &lt;a href=&quot;http://bugs.debian.org/698840&quot;&gt;BTS report
8337 #698840&lt;/a&gt;.&lt;/li&gt;
8338
8339 &lt;/ol&gt;
8340
8341 &lt;p&gt;If you can help us, please join us on IRC
8342 (&lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;#debian-edu on
8343 irc.debian.org&lt;/a&gt;) and provide patches via the BTS.&lt;/p&gt;
8344 </description>
8345 </item>
8346
8347 <item>
8348 <title>Debian Edu interview: Cédric Boutillier</title>
8349 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__C_dric_Boutillier.html</link>
8350 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__C_dric_Boutillier.html</guid>
8351 <pubDate>Tue, 4 Jun 2013 10:30:00 +0200</pubDate>
8352 <description>&lt;p&gt;It has been a while since my last English
8353 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
8354 interview last November. But the developers and translators are still
8355 pulling along to get the Wheezy based release out the door, and this
8356 time I managed to get an interview from one of the French translators
8357 in the project, Cédric Boutillier.&lt;/p&gt;
8358
8359 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
8360
8361 &lt;p&gt;I am 34 year old. I live near Paris, France. I am an assistant
8362 professor in probability theory. I spend my daytime teaching
8363 mathematics at the university and doing fundamental research in
8364 probability in connexion with combinatorics and statistical physics.&lt;/p&gt;
8365
8366 &lt;p&gt;I have been involved in the Debian project for a couple of years
8367 and became Debian Developer a few months ago. I am working on Ruby
8368 packaging, publicity and translation.&lt;/p&gt;
8369
8370 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
8371 project?&lt;/strong&gt;&lt;/p&gt;
8372
8373 &lt;p&gt;I came to the Debian Edu project after a call for translation of
8374 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Manuals&quot;&gt;the
8375 Debian Edu manual&lt;/a&gt; for the release of Debian Edu Squeeze. Since
8376 then, I have been working on updating the French translation of the
8377 manual.
8378
8379 &lt;p&gt;I had the opportunity to make an installation of Debian Edu in a
8380 virtual machine when I was preparing localised version of some screen
8381 shots for the manual. I was amazed to see it worked out of the box and
8382 how comprehensive the list of software installed by default was.&lt;/p&gt;
8383
8384 &lt;p&gt;What amazed me was the complete network infrastructure directly
8385 ready to use, which can and the nice administration interface provided
8386 by &lt;a href=&quot;https://oss.gonicus.de/labs/gosa/&quot;&gt;GOsa²&lt;/a&gt;. What pleased
8387 me also was the fact that among the software installed by default,
8388 there were many &quot;traditional&quot; educative software to learn languages,
8389 to count, to program... but also software to develop creativity and
8390 artistic skills with music (&lt;a href=&quot;http://ardour.org/&quot;&gt;Ardour&lt;/a&gt;,
8391 &lt;a href=&quot;http://audacity.sourceforge.net/&quot;&gt;Audacity&lt;/a&gt;) and
8392 movies/animation (I was especially thinking of
8393 &lt;a href=&quot;http://linuxstopmotion.sourceforge.net/&quot;&gt;Stopmotion&lt;/a&gt;).&lt;/p&gt;
8394
8395 &lt;p&gt;I am following the development of Debian Edu and am hanging out on
8396 &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;#debian-edu&lt;/a&gt;.
8397 Unfortunately, I don&#39;t much time to get more involved in this
8398 beautiful project.&lt;/p&gt;
8399
8400 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
8401 Edu?&lt;/strong&gt;&lt;/p&gt;
8402
8403 &lt;p&gt;For me, the main advantages of Skolelinux/Debian Edu are its
8404 community of experts and its precise documentation, as well as the
8405 fact that it provides a solution ready to use.&lt;/p&gt;
8406
8407 &lt;p&gt;I would add also the fact that it is based on the rock solid Debian
8408 distribution, which ensures stability and provides a huge collection
8409 of educational free software.&lt;/p&gt;
8410
8411 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
8412 Edu?&lt;/strong&gt;&lt;/p&gt;
8413
8414 &lt;p&gt;Maybe the lack of manpower to do lobbying on the
8415 project. Sometimes, people who need to take decisions concerning IT do
8416 not have all the elements to evaluate properly free software
8417 solutions. The fact that support by a company may be difficult to find
8418 is probably a problem if the school does not have IT personnel.&lt;/p&gt;
8419
8420 &lt;p&gt;One can find support from a company by looking at
8421 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Help/ProfessionalHelp&quot;&gt;the
8422 wiki dokumentation&lt;/a&gt;, where some countries already have a number of
8423 companies providing support for Debian Edu, like Germany or
8424 Norway. This list is easy to find readily from the manual. However,
8425 for other countries, like France, the list is empty. I guess that
8426 consultants proposing support for Debian would be able to provide some
8427 support for Debian Edu as well.&lt;/p&gt;
8428
8429 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
8430
8431 &lt;p&gt;I am using the KDE Plasma Desktop. But the pieces of software I use
8432 most runs in a terminal: Mutt and OfflineIMAP for emails, latex for
8433 scientific documents, mpd for music. VIM is my editor of choice. I am
8434 also using the mathematical software
8435 &lt;a href=&quot;http://www.scilab.org/en/scilab/about‎&quot;&gt;Scilab&lt;/a&gt; and
8436 &lt;a href=&quot;http://www.sagemath.org/index.html‎&quot;&gt;Sage&lt;/a&gt; (built from
8437 source as not completely packaged for Debian, yet).
8438
8439 &lt;p&gt;&lt;strong&gt;Do you have any suggestions for teachers interested in
8440 using the free software in Debian to teach mathematics and
8441 statistics?&lt;/strong&gt;&lt;/p&gt;
8442
8443 &lt;p&gt;I do not have any &quot;nice&quot; recommendations for statistics. At our
8444 university, we use both &lt;a href=&quot;http://www.r-project.org/‎&quot;&gt;R&lt;/a&gt; and
8445 Scilab to teach statistics and probabilistic simulations. For
8446 geometry, there are nice programs:&lt;/p&gt;
8447
8448 &lt;ul&gt;
8449
8450 &lt;li&gt;&lt;a href=&quot;http://www.drgeo.eu/&quot;&gt;drgeo&lt;/a&gt; and
8451 &lt;a href=&quot;http://edu.kde.org/applications/all/kig‎&quot;&gt;kig&lt;/a&gt; to do
8452 constructions in planar geometry
8453
8454 &lt;li&gt;&lt;a href=&quot;http://www.geom.uiuc.edu/software/download/kali.html&quot;&gt;kali&lt;/a&gt;
8455 to discover symmetry groups (the so-called wallpapers and frieze
8456 groups), although the interface looks a bit old.&lt;/li&gt;
8457
8458 &lt;/ul&gt;
8459
8460 &lt;p&gt;I like also
8461 &lt;a href=&quot;http://edu.kde.org/applications/all/cantor&quot;&gt;cantor&lt;/a&gt;, which
8462 provides a uniform interface to SciLab, Sage,
8463 &lt;a href=&quot;http://directory.fsf.org/wiki/Octave‎&quot;&gt;Octave&lt;/a&gt;, etc...&lt;/p&gt;
8464
8465 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
8466 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
8467
8468 &lt;p&gt;My suggestions would be to&lt;/p&gt;
8469
8470 &lt;ul&gt;
8471
8472 &lt;li&gt;advertise the reduction of costs when free software is used.&lt;/li&gt;
8473
8474 &lt;li&gt;communicate about the quality of free software projects, using
8475 well known examples like Firefox, ThunderBird and
8476 OpenOffice.org/LibreOffice.&lt;/li&gt;
8477
8478 &lt;li&gt;advertise the living and strong community around the project.&lt;/li&gt;
8479
8480 &lt;li&gt;show that it is not more difficult to use than any other
8481 system.&lt;/li&gt;
8482
8483 &lt;/ul&gt;
8484 </description>
8485 </item>
8486
8487 <item>
8488 <title>Educational applications included in Debian Edu / Skolelinux (the screenshot collection :-)</title>
8489 <link>http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html</link>
8490 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html</guid>
8491 <pubDate>Sat, 1 Jun 2013 23:50:00 +0200</pubDate>
8492 <description>&lt;p&gt;Included in &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
8493 Skolelinux&lt;/a&gt;, there are quite a lot of educational software.
8494 Created to help teachers teach, and pupils learn. We have tried to
8495 tag them all using debtags use::learning and role::program, and using
8496 the debtags I was happy to be able to create a collage of the
8497 educational software packages installed by default, sorted by the
8498 debtag field. Here it is. Click on a image to learn more about the
8499 program.&lt;/p&gt;
8500
8501 &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;
8502
8503 &lt;p&gt;&lt;strong&gt;field::arts&lt;/strong&gt;&lt;/p&gt;
8504 &lt;p&gt;
8505 &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;
8506 &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;
8507 &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;
8508 &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;
8509 &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;
8510 &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;
8511 &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;
8512 &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;
8513 &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;
8514 &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;
8515 &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;
8516 &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;
8517 &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;
8518 &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;
8519 &lt;/p&gt;
8520
8521 &lt;p&gt;&lt;strong&gt;field::astronomy&lt;/strong&gt;&lt;/p&gt;
8522 &lt;p&gt;
8523 &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;
8524 &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;
8525 &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;
8526 &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;
8527 &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;
8528 &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;
8529 &lt;/p&gt;
8530
8531 &lt;p&gt;&lt;strong&gt;field::biology:structural&lt;/strong&gt;&lt;/p&gt;
8532 &lt;p&gt;
8533 &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;
8534 &lt;/p&gt;
8535
8536 &lt;p&gt;&lt;strong&gt;field::chemistry&lt;/strong&gt;&lt;/p&gt;
8537 &lt;p&gt;
8538 &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;
8539 &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;
8540 &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;
8541 &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;
8542 &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;
8543 &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;
8544 &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;
8545 &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;
8546 &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;
8547 &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;
8548 &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;
8549 &lt;/p&gt;
8550
8551 &lt;p&gt;&lt;strong&gt;field::electronics&lt;/strong&gt;&lt;/p&gt;
8552 &lt;p&gt;
8553 &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;
8554 &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;
8555 &lt;/p&gt;
8556
8557 &lt;p&gt;&lt;strong&gt;field::geography&lt;/strong&gt;&lt;/p&gt;
8558 &lt;p&gt;
8559 &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;
8560 &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;
8561 &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;
8562 &lt;/p&gt;
8563
8564 &lt;p&gt;&lt;strong&gt;field::linguistics&lt;/strong&gt;&lt;/p&gt;
8565 &lt;p&gt;
8566 &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;
8567 &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;
8568 &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;
8569 &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;
8570 &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;
8571 &lt;/p&gt;
8572
8573 &lt;p&gt;&lt;strong&gt;field::mathematics&lt;/strong&gt;&lt;/p&gt;
8574 &lt;p&gt;
8575 &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;
8576 &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;
8577 &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;
8578 &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;
8579 &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;
8580 &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;
8581 &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;
8582 &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;
8583 &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;
8584 &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;
8585 &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;
8586 &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;
8587 &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;
8588 &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;
8589 &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;
8590 &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;
8591 &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;
8592 &lt;/p&gt;
8593
8594 &lt;p&gt;&lt;strong&gt;field::physics&lt;/strong&gt;&lt;/p&gt;
8595 &lt;p&gt;
8596 &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;
8597 &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;
8598 &lt;/p&gt;
8599
8600 &lt;p&gt;&lt;strong&gt;field::TODO&lt;/strong&gt;&lt;/p&gt;
8601 &lt;p&gt;
8602 &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;
8603 &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;
8604 &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;
8605 &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;
8606 &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;
8607 &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;
8608 &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;
8609 &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;
8610 &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;
8611 &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;
8612 &lt;/p&gt;
8613
8614 &lt;p&gt;In total, 61 applications. 3 of them lacked screen shots on
8615 &lt;a href=&quot;http://screenshot.debian.net&quot;&gt;screenshot.debian.net&lt;/a&gt;. If
8616 you know of some packages we should install by default, please let us
8617 know on &lt;a href=&quot;irc://irc.debian.org/%23debian-edu&quot;&gt;IRC, #debian-edu
8618 on irc.debian.org&lt;/a&gt;, or our
8619 &lt;a href=&quot;http://lists.debian.org/debian-edu/&quot;&gt;mailing list
8620 debian-edu@&lt;/a&gt;.&lt;/p&gt;
8621 </description>
8622 </item>
8623
8624 <item>
8625 <title>How to install Linux on a Packard Bell Easynote LV preinstalled with Windows 8</title>
8626 <link>http://people.skolelinux.org/pere/blog/How_to_install_Linux_on_a_Packard_Bell_Easynote_LV_preinstalled_with_Windows_8.html</link>
8627 <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>
8628 <pubDate>Mon, 27 May 2013 15:20:00 +0200</pubDate>
8629 <description>&lt;p&gt;Two days ago, I asked
8630 &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
8631 I could install Linux on a Packard Bell EasyNote LV computer
8632 preinstalled with Windows 8&lt;/a&gt;. I found a solution, but am horrified
8633 with the obstacles put in the way of Linux users on a laptop with UEFI
8634 and Windows 8.&lt;/p&gt;
8635
8636 &lt;p&gt;I never found out if the cause of my problems were the use of UEFI
8637 secure booting or fast boot. I suspect fast boot was the problem,
8638 causing the firmware to boot directly from HD without considering any
8639 key presses and alternative devices, but do not know UEFI settings
8640 enough to tell.&lt;/p&gt;
8641
8642 &lt;p&gt;There is no way to install Linux on the machine in question without
8643 opening the box and disconnecting the hard drive! This is as far as I
8644 can tell, the only way to get access to the firmware setup menu
8645 without accepting the Windows 8 license agreement. I am told (and
8646 found description on how to) that it is possible to configure the
8647 firmware setup once booted into Windows 8. But as I believe the terms
8648 of that agreement are completely unacceptable, accepting the license
8649 was never an alternative. I do not enter agreements I do not intend
8650 to follow.&lt;/p&gt;
8651
8652 &lt;p&gt;I feared I had to return the laptops and ask for a refund, and
8653 waste many hours on this, but luckily there was a way to get it to
8654 work. But I would not recommend it to anyone planning to run Linux on
8655 it, and I have become sceptical to Windows 8 certified laptops. Is
8656 this the way Linux will be forced out of the market place, by making
8657 it close to impossible for &quot;normal&quot; users to install Linux without
8658 accepting the Microsoft Windows license terms? Or at least not
8659 without risking to loose the warranty?&lt;/p&gt;
8660
8661 &lt;p&gt;I&#39;ve updated the
8662 &lt;a href=&quot;http://www.linlap.com/packard_bell_easynote_lv&quot;&gt;Linux Laptop
8663 wiki page for Packard Bell EasyNote LV&lt;/a&gt;, to ensure the next person
8664 do not have to struggle as much as I did to get Linux into the
8665 machine.&lt;/p&gt;
8666
8667 &lt;p&gt;Thanks to Bob Rosbag, Florian Weimer, Philipp Kern, Ben Hutching,
8668 Michael Tokarev and others for feedback and ideas.&lt;/p&gt;
8669 </description>
8670 </item>
8671
8672 <item>
8673 <title>How can I install Linux on a Packard Bell Easynote LV preinstalled with Windows 8?</title>
8674 <link>http://people.skolelinux.org/pere/blog/How_can_I_install_Linux_on_a_Packard_Bell_Easynote_LV_preinstalled_with_Windows_8_.html</link>
8675 <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>
8676 <pubDate>Sat, 25 May 2013 18:20:00 +0200</pubDate>
8677 <description>&lt;p&gt;I&#39;ve run into quite a problem the last few days. I bought three
8678 new laptops for my parents and a few others. I bought Packard Bell
8679 Easynote LV to run Kubuntu on and use as their home computer. But I
8680 am completely unable to figure out how to install Linux on it. The
8681 computer is preinstalled with Windows 8, and I suspect it uses UEFI
8682 instead of a BIOS to boot.&lt;/p&gt;
8683
8684 &lt;p&gt;The problem is that I am unable to get it to PXE boot, and unable
8685 to get it to boot the Linux installer from my USB stick. I have yet
8686 to try the DVD install, and still hope it will work. when I turn on
8687 the computer, there is no information on what buttons to press to get
8688 the normal boot menu. I expect to get some boot menu to select PXE or
8689 USB stick booting. When booting, it first ask for the language to
8690 use, then for some regional settings, and finally if I will accept the
8691 Windows 8 terms of use. As these terms are completely unacceptable to
8692 me, I have no other choice but to turn off the computer and try again
8693 to get it to boot the Linux installer.&lt;/p&gt;
8694
8695 &lt;p&gt;I have gathered my findings so far on a Linlap page about the
8696 &lt;a href=&quot;http://www.linlap.com/packard_bell_easynote_lv&quot;&gt;Packard Bell
8697 EasyNote LV&lt;/a&gt; model. If you have any idea how to get Linux
8698 installed on this machine, please get in touch or update that wiki
8699 page. If I can&#39;t find a way to install Linux, I will have to return
8700 the laptop to the seller and find another machine for my parents.&lt;/p&gt;
8701
8702 &lt;p&gt;I wonder, is this the way Linux will be forced out of the market
8703 using UEFI and &quot;secure boot&quot; by making it impossible to install Linux
8704 on new Laptops?&lt;/p&gt;
8705 </description>
8706 </item>
8707
8708 <item>
8709 <title>How to transform a Debian based system to a Debian Edu installation</title>
8710 <link>http://people.skolelinux.org/pere/blog/How_to_transform_a_Debian_based_system_to_a_Debian_Edu_installation.html</link>
8711 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_transform_a_Debian_based_system_to_a_Debian_Edu_installation.html</guid>
8712 <pubDate>Fri, 17 May 2013 11:50:00 +0200</pubDate>
8713 <description>&lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; is
8714 an operating system based on Debian intended for use in schools. It
8715 contain a turn-key solution for the computer network provided to
8716 pupils in the primary schools. It provide both the central server,
8717 network boot servers and desktop environments with heaps of
8718 educational software. The project was founded almost 12 years ago,
8719 2001-07-02. If you want to support the project, which is in need for
8720 cash to fund developer gatherings and other project related activity,
8721 &lt;a href=&quot;http://www.linuxiskolen.no/slxdebianlabs/donations.html&quot;&gt;please
8722 donate some money&lt;/a&gt;.
8723
8724 &lt;p&gt;A topic that come up again and again on the Debian Edu mailing
8725 lists and elsewhere, is the question on how to transform a Debian or
8726 Ubuntu installation into a Debian Edu installation. It isn&#39;t very
8727 hard, and last week I wrote a script to replicate the steps done by
8728 the Debian Edu installer.&lt;/p&gt;
8729
8730 &lt;p&gt;The script,
8731 &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;
8732 in the debian-edu-config package, will go through these six steps and
8733 transform an existing Debian Wheezy or Ubuntu (untested) installation
8734 into a Debian Edu Workstation:&lt;/p&gt;
8735
8736 &lt;ol&gt;
8737
8738 &lt;li&gt;Add skolelinux related APT sources.&lt;/li&gt;
8739 &lt;li&gt;Create /etc/debian-edu/config with the wanted configuration.&lt;/li&gt;
8740 &lt;li&gt;Install debian-edu-install to load preseeding values and pull in
8741 our configuration.&lt;/li&gt;
8742 &lt;li&gt;Preseed debconf database with profile setup in
8743 /etc/debian-edu/config, and run tasksel to install packages
8744 according to the profile specified in the config above,
8745 overriding some of the Debian automation machinery.&lt;/li&gt;
8746 &lt;li&gt;Run debian-edu-cfengine-D installation to configure everything
8747 that could not be done using preseeding.&lt;/li&gt;
8748 &lt;li&gt;Ask for a reboot to enable all the configuration changes.&lt;/li&gt;
8749
8750 &lt;/ol&gt;
8751
8752 &lt;p&gt;There are some steps in the Debian Edu installation that can not be
8753 replicated like this. Disk partitioning and LVM setup, for example.
8754 So this script just assume there is enough disk space to install all
8755 the needed packages.&lt;/p&gt;
8756
8757 &lt;p&gt;The script was created to help a Debian Edu student working on
8758 setting up &lt;a href=&quot;http://www.raspberrypi.org&quot;&gt;Raspberry Pi&lt;/a&gt; as a
8759 Debian Edu client, and using it he can take the existing
8760 &lt;a href=&quot;http://www.raspbian.org/FrontPage‎&quot;&gt;Raspbian&lt;/a&gt; installation and
8761 transform it into a fully functioning Debian Edu Workstation (or
8762 Roaming Workstation, or whatever :).&lt;/p&gt;
8763
8764 &lt;p&gt;The default setting in the script is to create a KDE Workstation.
8765 If a LXDE based Roaming workstation is wanted instead, modify the
8766 PROFILE and DESKTOP values at the top to look like this instead:&lt;/p&gt;
8767
8768 &lt;p&gt;&lt;pre&gt;
8769 PROFILE=&quot;Roaming-Workstation&quot;
8770 DESKTOP=&quot;lxde&quot;
8771 &lt;/pre&gt;&lt;/p&gt;
8772
8773 &lt;p&gt;The script could even become useful to set up Debian Edu servers in
8774 the cloud, by starting with a virtual Debian installation at some
8775 virtual hosting service and setting up all the services on first
8776 boot.&lt;/p&gt;
8777 </description>
8778 </item>
8779
8780 <item>
8781 <title>Second alpha release of Debian Edu / Skolelinux based on Debian Wheezy</title>
8782 <link>http://people.skolelinux.org/pere/blog/Second_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</link>
8783 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Second_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</guid>
8784 <pubDate>Tue, 14 May 2013 23:30:00 +0200</pubDate>
8785 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux
8786 project&lt;/a&gt; is making great progress and made its second Wheezy based
8787 release today. This is the release announcement:&lt;/p&gt;
8788
8789 &lt;p&gt;&lt;strong&gt;New features for Debian Edu 7.0.0 alpha1 released
8790 2013-05-14&lt;/strong&gt;&lt;/p&gt;
8791
8792 &lt;p&gt;This is the release notes for for Debian Edu / Skolelinux 7.0.0 edu
8793 alpha1, based on &lt;a href=&quot;http://www.debian.org&quot;&gt;Debian&lt;/a&gt; with
8794 codename &quot;Wheezy&quot;.&lt;/p&gt;
8795
8796 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
8797
8798 &lt;p&gt;Debian Edu, also known as Skolelinux, is a Linux distribution based
8799 on Debian providing an out-of-the box environment of a completely
8800 configured school network. Immediatly after installation a school
8801 server running all services needed for a school network is set up just
8802 waiting for users and machines being added via GOsa², a comfortable
8803 Web-UI. A netbooting environment is prepared using PXE, so after
8804 initial installation of the main server from CD, DVD or USB stick all
8805 other machines can be installed via the network.&lt;/p&gt;
8806
8807 &lt;p&gt;This is the first test release based on Wheezy (which currently is
8808 not released yet). Basically this is an updated and slightly improved
8809 version compared to the Squeeze release.&lt;/p&gt;
8810
8811 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
8812 &lt;ul&gt;
8813 &lt;li&gt;Install freemind (0.9.0) by default, and stop installing vym by
8814 default.&lt;/li&gt;
8815 &lt;li&gt;Install chromium (26.0.1410.43) by default.&lt;/li&gt;
8816 &lt;li&gt;Install goplay (0.5-1.1) to make golearn available by default.&lt;/li&gt;
8817 &lt;li&gt;Updated support for Japanese input methods, now based on
8818 ibus-anthy.&lt;/li&gt;
8819 &lt;/ul&gt;
8820
8821 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
8822 &lt;ul&gt;
8823
8824 &lt;li&gt;Switched default file system from ext3 to ext4 for speed and
8825 reliability improvements.&lt;/li&gt;
8826 &lt;li&gt;Got rid of unwanted winbind daemon and PAM setup activated because
8827 of &lt;a href=&quot;http://bugs.debian.org/706434&quot;&gt;706434&lt;/a&gt;.&lt;/li&gt;
8828 &lt;li&gt;Extended and improved the testsuite tests to detect more possible
8829 problems.&lt;/li&gt;
8830 &lt;li&gt;Corrected proxy handling to not set http_proxy to a bogus
8831 direct:// URL.&lt;/li&gt;
8832 &lt;li&gt;Corrected proxy setup for diskless workstations.&lt;/li&gt;
8833 &lt;li&gt;Corrected PXE setup to use our updated udebs during installation.&lt;/li&gt;
8834 &lt;li&gt;Made installation handling of low entropy level more robust.&lt;/li&gt;
8835 &lt;li&gt;Create larger partitions for Roaming workstations and Thin client
8836 servers, to make room for all the software installed.&lt;/li&gt;
8837 &lt;li&gt;Fix bug in Roaming workstation PAM setup, making it impossible to
8838 log in (&lt;a href=&quot;http://bugs.debian.org/706753&quot;&gt;706753&lt;/a&gt;).&lt;/li&gt;
8839 &lt;/ul&gt;
8840
8841 &lt;p&gt;&lt;strong&gt;Known issues&lt;/strong&gt;&lt;/p&gt;
8842 &lt;ul&gt;
8843
8844 &lt;li&gt;IP resolution for the local hostname give useless IPv6 address
8845 (&lt;a href=&quot;http://bugs.debian.org/705900&quot;&gt;705900&lt;/a&gt;). Only install
8846 libnss-myhostname on roaming workstations until it is fixed.&lt;/li&gt;
8847 &lt;li&gt;DVD images are not yet ready.&lt;/li&gt;
8848 &lt;li&gt;No mass import of user account data in GOsa (ldif or csv)
8849 available yet (&lt;a href=&quot;http://bugs.debian.org/698840&quot;&gt;698840&lt;/a&gt;).&lt;/li&gt;
8850 &lt;li&gt;Missing artwork for the KDE desktop (and probably a few others).&lt;/li&gt;
8851 &lt;li&gt;KDE Debian submenu lacks icons.&lt;/li&gt;
8852 &lt;li&gt;LXDE menu lacks entry for changing GOsa password
8853 (website). Installing gosa-desktop will be an option.&lt;/li&gt;
8854 &lt;li&gt;Backup configuration via web interface is impossible due to
8855 password submission problem
8856 (&lt;a href=&quot;http://bugs.debian.org/700257&quot;&gt;700257&lt;/a&gt;).&lt;/li&gt;
8857
8858 &lt;/ul&gt;
8859
8860 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
8861
8862 &lt;p&gt;To download the multiarch netinstall CD release you can use&lt;/p&gt;
8863 &lt;ul&gt;
8864
8865 &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;
8866 &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;
8867 &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;
8868
8869 &lt;/ul&gt;
8870
8871 &lt;p&gt;The MD5SUM of this image is: 685ed76c1aa8e44b12d3fde21faf450b&lt;/p&gt;
8872
8873 &lt;p&gt;The SHA1SUM of this image is: 6c874de157024da13e115bab29c068080a11ec4c&lt;/p&gt;
8874
8875 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
8876
8877 &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;
8878 </description>
8879 </item>
8880
8881 <item>
8882 <title>Debian, the Linux distribution of choice for LEGO designers?</title>
8883 <link>http://people.skolelinux.org/pere/blog/Debian__the_Linux_distribution_of_choice_for_LEGO_designers_.html</link>
8884 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian__the_Linux_distribution_of_choice_for_LEGO_designers_.html</guid>
8885 <pubDate>Sat, 11 May 2013 20:30:00 +0200</pubDate>
8886 <description>&lt;P&gt;In January,
8887 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/New_IRC_channel_for_LEGO_designers_using_Debian.html&quot;&gt;I
8888 announced a&lt;/a&gt; new &lt;a href=&quot;irc://irc.debian.org/%23debian-lego&quot;&gt;IRC
8889 channel #debian-lego&lt;/a&gt;, for those of us in the Debian and Linux
8890 community interested in &lt;a href=&quot;http://www.lego.com/&quot;&gt;LEGO&lt;/a&gt;, the
8891 marvellous construction system from Denmark. We also created
8892 &lt;a href=&quot;http://wiki.debian.org/LegoDesigners&quot;&gt;a wiki page&lt;/a&gt; to have
8893 a place to take notes and write down our plans and hopes. And several
8894 people showed up to help. I was very happy to see the effect of my
8895 call. Since the small start, we have a debtags tag
8896 &lt;a href=&quot;http://debtags.debian.net/search/bytag?wl=hardware::hobby:lego&quot;&gt;hardware::hobby:lego&lt;/a&gt;
8897 tag for LEGO related packages, and now count 10 packages related to
8898 LEGO and &lt;a href=&quot;http://mindstorms.lego.com/&quot;&gt;Mindstorms&lt;/a&gt;:&lt;/p&gt;
8899
8900 &lt;p&gt;&lt;table&gt;
8901 &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;
8902 &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;
8903 &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;
8904 &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;
8905 &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;
8906 &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;
8907 &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;
8908 &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;
8909 &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;
8910 &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;
8911 &lt;/table&gt;&lt;/p&gt;
8912
8913 &lt;p&gt;Some of these are available in Wheezy, and all but one are
8914 currently available in Jessie/testing. leocad is so far only
8915 available in experimental.&lt;/p&gt;
8916
8917 &lt;p&gt;If you care about LEGO in Debian, please join us on IRC and help
8918 adding the rest of the great free software tools available on Linux
8919 for LEGO designers.&lt;/p&gt;
8920 </description>
8921 </item>
8922
8923 <item>
8924 <title>Debian Wheezy is out - and Debian Edu / Skolelinux should soon follow! #newinwheezy</title>
8925 <link>http://people.skolelinux.org/pere/blog/Debian_Wheezy_is_out___and_Debian_Edu___Skolelinux_should_soon_follow___newinwheezy.html</link>
8926 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Wheezy_is_out___and_Debian_Edu___Skolelinux_should_soon_follow___newinwheezy.html</guid>
8927 <pubDate>Sun, 5 May 2013 07:40:00 +0200</pubDate>
8928 <description>&lt;p&gt;When I woke up this morning, I was very happy to see that the
8929 &lt;a href=&quot;http://www.debian.org/News/2013/20130504&quot;&gt;release announcement
8930 for Debian Wheezy&lt;/a&gt; was waiting in my mail box. This is a great
8931 Debian release, and I expect to move my machines at home over to it fairly
8932 soon.&lt;/p&gt;
8933
8934 &lt;p&gt;The new debian release contain heaps of new stuff, and one program
8935 in particular make me very happy to see included. The
8936 &lt;a href=&quot;http://scratch.mit.edu/&quot;&gt;Scratch&lt;/a&gt; program, made famous by
8937 the &lt;a href=&quot;http://www.code.org/&quot;&gt;Teach kids code&lt;/a&gt; movement, is
8938 included for the first time. Alongside similar programs like
8939 &lt;a href=&quot;http://edu.kde.org/kturtle/&quot;&gt;kturtle&lt;/a&gt; and
8940 &lt;a href=&quot;http://wiki.sugarlabs.org/go/Activities/Turtle_Art&quot;&gt;turtleart&lt;/a&gt;,
8941 it allow for visual programming where syntax errors can not happen,
8942 and a friendly programming environment for learning to control the
8943 computer. Scratch will also be included in the next release of Debian
8944 Edu.&lt;/a&gt;
8945
8946 &lt;p&gt;And now that Wheezy is wrapped up, we can wrap up the next Debian
8947 Edu/Skolelinux release too. The
8948 &lt;a href=&quot;http://lists.debian.org/debian-edu/2013/04/msg00132.html&quot;&gt;first
8949 alpha release&lt;/a&gt; went out last week, and the next should soon
8950 follow.&lt;p&gt;
8951 </description>
8952 </item>
8953
8954 <item>
8955 <title>First alpha release of Debian Edu / Skolelinux based on Debian Wheezy</title>
8956 <link>http://people.skolelinux.org/pere/blog/First_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</link>
8957 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html</guid>
8958 <pubDate>Fri, 26 Apr 2013 08:30:00 +0200</pubDate>
8959 <description>&lt;p&gt;The Debian Edu / Skolelinux project is still going strong and made
8960 its first Wheezy based release today. This is the release
8961 announcement:&lt;/p&gt;
8962
8963 &lt;p&gt;&lt;strong&gt;New features for Debian Edu ~7.0.0 alpha0 released
8964 2013-04-26&lt;/strong&gt;&lt;/p&gt;
8965
8966 &lt;p&gt;This is the release notes for for Debian Edu / Skolelinux ~7.0.0
8967 edu alpha0, based on Debian with codename &quot;Wheezy&quot;.&lt;/p&gt;
8968
8969 &lt;p&gt;&lt;strong&gt;About Debian Edu and Skolelinux&lt;/strong&gt;&lt;/p&gt;
8970
8971 &lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu, also known as
8972 Skolelinux&lt;/a&gt;, is a Linux distribution based on Debian providing an
8973 out-of-the box environment of a completely configured school
8974 network. Immediatly after installation a school server running all
8975 services needed for a school network is set up just waiting for users
8976 and machines being added via GOsa², a comfortable Web-UI. A netbooting
8977 environment is prepared using PXE, so after initial installation of
8978 the main server from CD, DVD or USB stick all other machines can be
8979 installed via the network.&lt;/p&gt;
8980
8981 &lt;p&gt;This is the first test release based on Wheezy (which currently is
8982 not released yet). Basically this is an updated and slightly improved
8983 version compared to the Squeeze release.&lt;/p&gt;
8984
8985 &lt;p&gt;&lt;strong&gt;Software updates&lt;/strong&gt;&lt;/p&gt;
8986
8987 &lt;ul&gt;
8988 &lt;li&gt;Everything which is new in Debian Wheezy, eg:
8989 &lt;ul&gt;
8990 &lt;li&gt;Linux kernel 3.2.x&lt;/li&gt;
8991 &lt;li&gt;Desktop environments KDE &quot;Plasma&quot; 4.8.4, GNOME 3.4, and LXDE 4
8992 (KDE is installed by default; to choose GNOME or LXDE: see
8993 manual.)&lt;/li&gt;
8994 &lt;li&gt;Web browser Iceweasel 10 ESR&lt;/li&gt;
8995 &lt;li&gt;LibreOffice 3.5.4&lt;/li&gt;
8996 &lt;li&gt;LTSP 5.4.2&lt;/li&gt;
8997 &lt;li&gt;GOsa 2.7.4&lt;/li&gt;
8998 &lt;li&gt;CUPS print system 1.5.3&lt;/li&gt;
8999 &lt;li&gt;Educational toolbox GCompris 12.01&lt;/li&gt;
9000 &lt;li&gt;Music creator Rosegarden 12.04&lt;/li&gt;
9001 &lt;li&gt;Image editor Gimp 2.8.2&lt;/li&gt;
9002 &lt;li&gt;Virtual universe Celestia 1.6.1&lt;/li&gt;
9003 &lt;li&gt;Virtual stargazer Stellarium 0.11.3&lt;/li&gt;
9004 &lt;li&gt;Scratch visual programming environment 1.4.0.6&lt;/li&gt;
9005 &lt;li&gt;New version of debian-installer from Debian Wheezy, see
9006 &lt;a href=&quot;http://www.debian.org/releases/wheezy/installmanual&quot;&gt;installation
9007 manual&lt;/a&gt; for more details.&lt;/li&gt;
9008 &lt;li&gt;Debian Wheezy includes about 37000 packages available for
9009 installation.&lt;/li&gt;
9010 &lt;li&gt;More information about Debian Wheezy 7.0 is provided in the
9011 &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;
9012 &lt;/ul&gt;&lt;/li&gt;
9013 &lt;/ul&gt;
9014
9015 &lt;p&gt;&lt;strong&gt;Documentation&lt;/strong&gt;&lt;/p&gt;
9016 &lt;ul&gt;
9017 &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
9018 German, French, Italian and Danish. Partly translated versions exist
9019 for Norwegian Bokmal and Spanish.&lt;/li&gt;
9020 &lt;/ul&gt;
9021
9022 &lt;p&gt;&lt;Strong&gt;LDAP related changes&lt;/strong&gt;&lt;/p&gt;
9023 &lt;ul&gt;
9024 &lt;li&gt;Slight changes to some objects and acls to have more types to
9025 choose from when adding systems in GOsa. Now systems can be of type
9026 server, workstation, printer, terminal or netdevice.&lt;/li&gt;
9027 &lt;/ul&gt;
9028
9029 &lt;p&gt;&lt;strong&gt;Other changes&lt;/strong&gt;&lt;/p&gt;
9030 &lt;ul&gt;
9031 &lt;li&gt;LTSP clients start as diskless workstation / thin client can be
9032 configured via command line argument -- or individually adding an
9033 entry in lts.conf or LDAP.&lt;li&gt;
9034 &lt;li&gt;GOsa gui: Now some options that seemed to be available, but are non
9035 functional, are greyed out (or are not clickable). Some tabs are
9036 completely hidden to the end user, others even to the GOsa admin.&lt;/li&gt;
9037 &lt;/ul&gt;
9038
9039 &lt;p&gt;&lt;strong&gt;Regressions&lt;/strong&gt;&lt;/p&gt;
9040 &lt;ul&gt;
9041 &lt;li&gt;No mass import of user account data in GOsa (ldif or csv) available
9042 yet.&lt;/li&gt;
9043 &lt;/ul&gt;
9044
9045 &lt;p&gt;&lt;strong&gt;No updated artwork&lt;/strong&gt;&lt;/p&gt;
9046
9047 &lt;ul&gt;
9048 &lt;li&gt;Updated artwork which is visible during installation, in the login
9049 screen and as desktop wallpaper is still missing or the same as we
9050 had for our Squeeze based release.&lt;/li&gt;
9051 &lt;/ul&gt;
9052
9053 &lt;p&gt;&lt;strong&gt;Where to get it&lt;/strong&gt;&lt;/p&gt;
9054
9055 To download the multiarch netinstall CD release you can use
9056 &lt;ul&gt;
9057 &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;
9058 &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;
9059 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/&lt;/li&gt;
9060 &lt;/ul&gt;
9061
9062 &lt;p&gt;The MD5SUM of this image is: c5e773ddafdaa4f48c409c682f598b6c&lt;/p&gt;
9063
9064 &lt;p&gt;The SHA1SUM of this image is: 25934fabb9b7d20235499a0a51f08ce6c54215f2&lt;/p&gt;
9065
9066 &lt;p&gt;&lt;strong&gt;How to report bugs&lt;/strong&gt;&lt;/p&gt;
9067
9068 &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;
9069 </description>
9070 </item>
9071
9072 <item>
9073 <title>First Debian Edu / Skolelinux developer gathering in 2013 take place in Trondheim</title>
9074 <link>http://people.skolelinux.org/pere/blog/First_Debian_Edu___Skolelinux_developer_gathering_in_2013_take_place_in_Trondheim.html</link>
9075 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_Debian_Edu___Skolelinux_developer_gathering_in_2013_take_place_in_Trondheim.html</guid>
9076 <pubDate>Tue, 16 Apr 2013 15:00:00 +0200</pubDate>
9077 <description>&lt;p&gt;This years first &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux /
9078 Debian Edu&lt;/a&gt; developer gathering take place the coming weekend in Trondheim.
9079 Details about the gathering can be found
9080 &lt;a href=&quot;http://www.friprogramvareiskolen.no/Gathering/2013-04-19-21-Trondheim&quot;&gt;on
9081 the FRiSK wiki&lt;/a&gt;. The dates are 19-21th of April 2013, and online
9082 participation for those unable to make it in person is very welcome,
9083 and I plan to participate online myself as I could not leave Oslo this
9084 weekend.&lt;/p&gt;
9085
9086 &lt;p&gt;The focus of the gathering is to work on the web pages and project
9087 infrastructure, and to continue the work on the Wheezy based Debian
9088 Edu release.&lt;/p&gt;
9089
9090 &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;
9091 </description>
9092 </item>
9093
9094 <item>
9095 <title>Isenkram 0.2 finally in the Debian archive</title>
9096 <link>http://people.skolelinux.org/pere/blog/Isenkram_0_2_finally_in_the_Debian_archive.html</link>
9097 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Isenkram_0_2_finally_in_the_Debian_archive.html</guid>
9098 <pubDate>Wed, 3 Apr 2013 23:40:00 +0200</pubDate>
9099 <description>&lt;p&gt;Today the &lt;a href=&quot;http://packages.qa.debian.org/isenkram&quot;&gt;Isenkram
9100 package&lt;/a&gt; finally made it into the archive, after lingering in NEW
9101 for many months. I uploaded it to the Debian experimental suite
9102 2013-01-27, and today it was accepted into the archive.&lt;/p&gt;
9103
9104 &lt;p&gt;Isenkram is a system for suggesting to users what packages to
9105 install to work with a pluggable hardware device. The suggestion pop
9106 up when the device is plugged in. For example if a Lego Mindstorm NXT
9107 is inserted, it will suggest to install the program needed to program
9108 the NXT controller. Give it a go, and report bugs and suggestions to
9109 BTS. :)&lt;/p&gt;
9110 </description>
9111 </item>
9112
9113 <item>
9114 <title>Change the font, save the world (and save some money in the process)</title>
9115 <link>http://people.skolelinux.org/pere/blog/Change_the_font__save_the_world__and_save_some_money_in_the_process_.html</link>
9116 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Change_the_font__save_the_world__and_save_some_money_in_the_process_.html</guid>
9117 <pubDate>Tue, 26 Mar 2013 15:10:00 +0100</pubDate>
9118 <description>&lt;p&gt;Would you like to help the environment and save money at the same
9119 time, without much sacrifice? A small step could be to change the
9120 font you use when printing.&lt;/p&gt;
9121
9122 &lt;p&gt;Three years ago,
9123 &lt;a href=&quot;http://arstechnica.com/business/2010/04/last-year-printer-comparison-website/&quot;&gt;Ars
9124 Technica&lt;/a&gt; reported how the University of Wisconsin-Green Bay
9125 changed their default front from
9126 &lt;a href=&quot;http://en.wikipedia.org/wiki/Arial&quot;&gt;Arial&lt;/a&gt; to
9127 &lt;a href=&quot;http://en.wikipedia.org/wiki/Century_Gothic&quot;&gt;Century
9128 Gothic&lt;/a&gt; to save money. The Century Gothic font uses 30% less toner
9129 than Arial to print the same text. In other word, you could cut your
9130 toner costs by 30% (or actually, increase your toner supply life time
9131 by more than 30%), by simply changing the default font used in your
9132 prints.&lt;/p&gt;
9133
9134 &lt;p&gt;But it is not quite obvious how much one will save by switching.
9135 The University of Wisconsin-Green Bay said it used $100,000 per year
9136 on ink and toner cartridges, according to
9137 &lt;a href=&quot;http://www.twincities.com/ci_14833097&quot;&gt;a report from
9138 TwinCities.com&lt;/a&gt;, and expected to save between $5,000 and $10,000
9139 per year by asking staff and students to use a different font. Not
9140 all PDFs and documents are created internally, and those from external
9141 sources will most likely still use a different font. Also, the
9142 Century Gothic font is slightly wider than Arial, and thus might use
9143 more sheets of paper to print the same text, so the total saving
9144 depend on the documents printed.&lt;/p&gt;
9145
9146 &lt;p&gt;But it is definitely something to consider, if you want to reduce
9147 the amount of trash, decrease the amount of toner used in the world,
9148 and save some money in the process.&lt;/p&gt;
9149
9150 &lt;p&gt;Update 2013-04-10: If you want to know how much ink/toner could be
9151 saved when switching between fonts, Inkfarm got a
9152 &lt;a href=&quot;http://www.inkfarm.com/What-the-Font&quot;&gt;service to calculate the
9153 difference between font pairs&lt;/a&gt;. They also
9154 &lt;a href=&quot;http://www.inkfarm.com/Recommended-Ink-Saving-Fonts---&quot;&gt;recommend
9155 which fonts to use&lt;/a&gt; to save ink. Check it out. :) While updating
9156 this blog post, I also came across a blog post from InkCloners,
9157 &lt;a href=&quot;http://inkcloners.com/blog/ink-cartridges/change-fonts-to-save-ink-costs/&quot;&gt;listing
9158 the fonts they recommend&lt;/a&gt;, with Centory Gothic at the top.&lt;/p&gt;
9159 </description>
9160 </item>
9161
9162 <item>
9163 <title>Typesetting a short story using docbook for PDF, HTML and EPUB</title>
9164 <link>http://people.skolelinux.org/pere/blog/Typesetting_a_short_story_using_docbook_for_PDF__HTML_and_EPUB.html</link>
9165 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Typesetting_a_short_story_using_docbook_for_PDF__HTML_and_EPUB.html</guid>
9166 <pubDate>Sun, 24 Mar 2013 17:30:00 +0100</pubDate>
9167 <description>&lt;p&gt;A few days ago, during a discussion in
9168 &lt;a href=&quot;http://www.efn.no/&quot;&gt;EFN&lt;/a&gt; about interesting books to read
9169 about copyright and the data retention directive, a suggestion to read
9170 the 1968 short story Kodémus by
9171 &lt;a href=&quot;http://web2.gyldendal.no/toraage/&quot;&gt;Tore Åge Bringsværd&lt;/a&gt;
9172 came up. The text was only available in old paper books, and thus not
9173 easily available for current and future generations. Some of the
9174 people participating in the discussion contacted the author, and
9175 reported back 2013-03-19 that the author was OK with releasing the
9176 short story using a &lt;a href=&quot;http://www.creativecommons.org/&quot;&gt;Creative
9177 Commons&lt;/a&gt; license. The text was quickly scanned and OCR-ed, and we
9178 were ready to start on the editing and typesetting.&lt;/p&gt;
9179
9180 &lt;p&gt;As I already had some experience formatting text in my project to
9181 provide a Norwegian version of the Free Culture book by Lawrence
9182 Lessig, I chipped in and set up a
9183 &lt;a href=&quot;http://www.docbook.org/&quot;&gt;DocBook&lt;/a&gt; processing framework to
9184 generate PDF, HTML and EPUB version of the short story. The tools to
9185 transform DocBook to different formats are already in my Linux
9186 distribution of choice, &lt;a href=&quot;http://www.debian.org/&quot;&gt;Debian&lt;/a&gt;, so
9187 all I had to do was to use the
9188 &lt;a href=&quot;http://dblatex.sourceforge.net/&quot;&gt;dblatex&lt;/a&gt;,
9189 &lt;a href=&quot;http://docbook.sourceforge.net/release/xsl/current/epub/README&quot;&gt;dbtoepub&lt;/a&gt;
9190 and &lt;a href=&quot;https://fedorahosted.org/xmlto/&quot;&gt;xmlto&lt;/a&gt; tools to do the
9191 conversion. After a few days, we decided to replace dblatex with
9192 xsltproc/fop (aka
9193 &lt;a href=&quot;http://wiki.docbook.org/DocBookXslStylesheets&quot;&gt;docbook-xsl&lt;/a&gt;),
9194 to get the copyright information to show up in the PDF and to get a
9195 nicer &amp;lt;variablelist&amp;gt; typesetting, but that is just a minor
9196 technical detail.&lt;/p&gt;
9197
9198 &lt;p&gt;There were a few challenges, of course. We want to typeset the
9199 short story to look like the original, and that require fairly good
9200 control over the layout. The original short story have three
9201 parts/scenes separated by a single horizontally centred star (*), and
9202 the paragraphs do not contain only flowing text, but dialogs and text
9203 that started on a new line in the middle of the paragraph.&lt;/p&gt;
9204
9205 &lt;p&gt;I initially solved the first challenge by using a paragraph with a
9206 single star in it, ie &amp;lt;para&amp;gt;*&amp;lt;/para&amp;gt;, but it made sure a
9207 placeholder indicated where the scene shifted. This did not look too
9208 good without the centring. The next approach was to create a new
9209 preprocessor directive &amp;lt;?newscene?&amp;gt;, mapping to &quot;&amp;lt;hr/&amp;gt;&quot;
9210 for HTML and &quot;&amp;lt;fo:block text-align=&quot;center&quot;&amp;gt;&amp;lt;fo:leader
9211 leader-pattern=&quot;rule&quot; rule-thickness=&quot;0.5pt&quot;/&amp;gt;&amp;lt;/fo:block&amp;gt;&quot;
9212 for FO/PDF output (did not try to implement this in dblatex, as we had
9213 switched at this time). The HTML XSL file looked like this:&lt;/p&gt;
9214
9215 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
9216 &amp;lt;?xml version=&#39;1.0&#39;?&amp;gt;
9217 &amp;lt;xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&#39;1.0&#39;&amp;gt;
9218 &amp;lt;xsl:template match=&quot;processing-instruction(&#39;newscene&#39;)&quot;&amp;gt;
9219 &amp;lt;hr/&amp;gt;
9220 &amp;lt;/xsl:template&amp;gt;
9221 &amp;lt;/xsl:stylesheet&amp;gt;
9222 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
9223
9224 &lt;p&gt;And the FO/PDF XSL file looked like this:&lt;/p&gt;
9225
9226 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
9227 &amp;lt;?xml version=&#39;1.0&#39;?&amp;gt;
9228 &amp;lt;xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&#39;1.0&#39;&amp;gt;
9229 &amp;lt;xsl:template match=&quot;processing-instruction(&#39;newscene&#39;)&quot;&amp;gt;
9230 &amp;lt;fo:block text-align=&quot;center&quot;&amp;gt;
9231 &amp;lt;fo:leader leader-pattern=&quot;rule&quot; rule-thickness=&quot;0.5pt&quot;/&amp;gt;
9232 &amp;lt;/fo:block&amp;gt;
9233 &amp;lt;/xsl:template&amp;gt;
9234 &amp;lt;/xsl:stylesheet&amp;gt;
9235 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
9236
9237 &lt;p&gt;Finally, I came across the &amp;lt;bridgehead&amp;gt; tag, which seem to be
9238 a good fit for the task at hand, and I replaced &amp;lt;?newscene?&amp;gt;
9239 with &amp;lt;bridgehead&amp;gt;*&amp;lt;/bridgehead&amp;gt;. It isn&#39;t centred, but we
9240 can fix it with some XSL rule if the current visual layout isn&#39;t
9241 enough.&lt;/p&gt;
9242
9243 &lt;p&gt;I did not find a good DocBook compliant way to solve the
9244 linebreak/paragraph challenge, so I ended up creating a new processor
9245 directive &amp;lt;?linebreak?&amp;gt;, mapping to &amp;lt;br/&amp;gt; in HTML, and
9246 &amp;lt;fo:block/&amp;gt; in FO/PDF. I suspect there are better ways to do
9247 this, and welcome ideas and patches on github. The HTML XSL file now
9248 look like this:&lt;/p&gt;
9249
9250 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
9251 &amp;lt;?xml version=&#39;1.0&#39;?&amp;gt;
9252 &amp;lt;xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&#39;1.0&#39;&amp;gt;
9253 &amp;lt;xsl:template match=&quot;processing-instruction(&#39;linebreak)&quot;&amp;gt;
9254 &amp;lt;br/&amp;gt;
9255 &amp;lt;/xsl:template&amp;gt;
9256 &amp;lt;/xsl:stylesheet&amp;gt;
9257 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
9258
9259 &lt;p&gt;And the FO/PDF XSL file looked like this:&lt;/p&gt;
9260
9261 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
9262 &amp;lt;?xml version=&#39;1.0&#39;?&amp;gt;
9263 &amp;lt;xsl:stylesheet xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot; version=&#39;1.0&#39;
9264 xmlns:fo=&quot;http://www.w3.org/1999/XSL/Format&quot;&amp;gt;
9265 &amp;lt;xsl:template match=&quot;processing-instruction(&#39;linebreak)&quot;&amp;gt;
9266 &amp;lt;fo:block/&amp;gt;
9267 &amp;lt;/xsl:template&amp;gt;
9268 &amp;lt;/xsl:stylesheet&amp;gt;
9269 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
9270
9271 &lt;p&gt;One unsolved challenge is our wish to expose different ISBN numbers
9272 per publication format, while keeping all of them in some conditional
9273 structure in the DocBook source. No idea how to do this, so we ended
9274 up listing all the ISBN numbers next to their format in the colophon
9275 page.&lt;/p&gt;
9276
9277 &lt;p&gt;If you want to check out the finished result, check out the
9278 &lt;a href=&quot;https://github.com/sickel/kodemus&quot;&gt;source repository at
9279 github&lt;/a&gt;
9280 (&lt;a href=&quot;https://github.com/EFN/kodemus&quot;&gt;future/new/official
9281 repository&lt;/a&gt;). We expect it to be ready and announced in a few
9282 days.&lt;/p&gt;
9283 </description>
9284 </item>
9285
9286 <item>
9287 <title>Skolelinux 6 got a video review from Pcwizz</title>
9288 <link>http://people.skolelinux.org/pere/blog/Skolelinux_6_got_a_video_review_from_Pcwizz.html</link>
9289 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux_6_got_a_video_review_from_Pcwizz.html</guid>
9290 <pubDate>Sun, 17 Mar 2013 10:30:00 +0100</pubDate>
9291 <description>&lt;p&gt;Via
9292 &lt;a href=&quot;https://twitter.com/pcwizz/status/313044373262716930&quot;&gt;twitter&lt;/a&gt;
9293 I just discovered that &lt;a href=&quot;http://pcwizz.net/&quot;&gt;Pcwizz&lt;/a&gt; have
9294 done a &lt;a href=&quot;http://www.youtube.com/watch?v=wPzTZ61Pcuc&quot;&gt;video
9295 review&lt;/a&gt; on Youtube of &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux
9296 / Debian Edu&lt;/a&gt; version 6. He installed the standalone profile and
9297 the video show a walk-through of of the menu content, demonstration of
9298 a few programs and his view of our distribution.&lt;/p&gt;
9299
9300 &lt;p&gt;There is also some really nice quotes (transcribed by me, might
9301 have heard wrong). While looking thought the Graphics menu:&lt;/p&gt;
9302
9303 &lt;blockquote&gt;
9304 &quot;Basically everything you ever need in a school environment.&quot;
9305 &lt;/blockquote&gt;
9306
9307 &lt;p&gt;And as a general evaluation of the entire distribution:&lt;/p&gt;
9308
9309 &lt;blockquote&gt;
9310 &quot;So, yeah, a bit bloated. It kept all the Debian stuff in there, just
9311 to keep it nice and GNU. So, I do not want to go on about it, but
9312 lets give it 7 out of 10. I am not going to use it. That is because
9313 I am not deploying a school network. There may be some mythical
9314 feature to help you deploy Skolelinux on a school network.&quot;
9315 &lt;/blockquote&gt;
9316
9317 &lt;p&gt;To bad he did not test the server profile, and discovered the PXE
9318 installation option. It make it possible to install only the main
9319 server from CD, and the rest of the machines via the net, and might be
9320 considered the mythical feature he talk about. :)&lt;/p&gt;
9321
9322 &lt;p&gt;While looking through the menus, there is also this funny comment
9323 about the part of the K menu generated from the Debian menu subsystem:
9324
9325 &lt;blockquote&gt;
9326 &quot;[The K menu] have a special Debian section for software that no-one
9327 is going to look at, because it contain lots of junky stuff that you
9328 actually don&#39;t need in the education distribution, but have just been
9329 included because it isn&#39;t stripped out for some reason.&quot;
9330 &lt;/blockquote&gt;
9331
9332 &lt;p&gt;I guess it is yet another argument for merging the Debian menu and
9333 Gnome/KDE desktop menu entries into
9334 &lt;a href=&quot;http://wiki.debian.org/Proposals/DebianMenuUsingDesktopEntries&quot;&gt;one
9335 consistent menu system&lt;/a&gt; instead of two incomplete and partly
9336 inconsistent menu systems.&lt;/p&gt;
9337
9338 &lt;p&gt;The entire video is available below for those accepting iframe
9339 embedding:&lt;/p&gt;
9340
9341 &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;
9342 </description>
9343 </item>
9344
9345 <item>
9346 <title>First Skolelinux / Debian Edu Squeeze update released</title>
9347 <link>http://people.skolelinux.org/pere/blog/First_Skolelinux___Debian_Edu_Squeeze_update_released.html</link>
9348 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_Skolelinux___Debian_Edu_Squeeze_update_released.html</guid>
9349 <pubDate>Fri, 8 Mar 2013 09:30:00 +0100</pubDate>
9350 <description>&lt;p&gt;Last Sunday, 2013-03-03,, Holger Levsen announced the first update
9351 of &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux / Debian Edu&lt;/a&gt;
9352 based on Debian Squeeze. This is the first update since
9353 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/03/msg00001.html&quot;&gt;the
9354 initial release 2012-03-11&lt;/a&gt;. This is the
9355 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2013/03/msg00000.html&quot;&gt;release
9356 announcement email from Holger&lt;/a&gt;:&lt;/p&gt;
9357
9358 &lt;blockquote&gt;&lt;p&gt;Hi,&lt;/p&gt;
9359
9360 &lt;p&gt;it&#39;s my pleasure to announce the immediate availability of Debian
9361 Edu 6.0.7+r1 (&quot;Debian Edu Squeeze&quot;).&lt;/p&gt;
9362
9363 &lt;p&gt;Debian Edu 6.0.7+r1 is an incremental update to Debian Edu
9364 6.0.4+r0, containing all the changes between Debian 6.0.4 and 6.0.7 as
9365 well Debian Edu specific bugfixes and enhancements. See below (in this
9366 mail) for the full list of (edu) changes. Please see
9367 &lt;a href=&quot;http://www.debian.org/News/2012/20120311&quot;&gt;http://www.debian.org/News/2012/20120311&lt;/a&gt;
9368 for more information on &quot;Debian Edu Squeeze&quot;.&lt;/p&gt;
9369
9370 &lt;p&gt;Images are available for download at
9371 &lt;a href=&quot;http://ftp.skolelinux.org/skolelinux-cd/&quot;&gt;http://ftp.skolelinux.org/skolelinux-cd/&lt;/a&gt;&lt;/p&gt;
9372
9373 &lt;p&gt;md5sums:
9374 &lt;br&gt;1fe79eb4f0f9ae1c58fc318e26cc1e2e debian-edu-6.0.7+r1-CD.iso
9375 &lt;br&gt;a6ddd924a8bd9a1b5ca122e8fe1c34ec debian-edu-6.0.7+r1-DVD.iso
9376 &lt;br&gt;ac6c72cd7925ccec51bfbf58e2a7c69c debian-edu-6.0.7+r1-source-DVD.iso&lt;/p&gt;
9377
9378 &lt;p&gt;sha1sums:
9379 &lt;br&gt;a4b58233b672a99c7df8dc24fb6de3327654a5c3 debian-edu-6.0.7+r1-CD.iso
9380 &lt;br&gt;9b524915e0ff2aa793f13d93123e5bd2bab2dbaa debian-edu-6.0.7+r1-DVD.iso
9381 &lt;br&gt;43997614893fc5e9e59ad6ce066b05d07fd836fa debian-edu-6.0.7+r1-source-DVD.iso&lt;/p&gt;
9382
9383 &lt;p&gt;These images are suitable for amd64+i386.&lt;/p&gt;
9384
9385 &lt;p&gt;Changes for Debian Edu 6.0.7+r1 Codename &quot;Squeeze&quot;, released
9386 2013-03-03:&lt;/p&gt;
9387
9388 &lt;ul&gt;
9389 &lt;li&gt;sitesummary was updated from 0.1.3 to 0.1.8
9390 &lt;ul&gt;
9391 &lt;li&gt;Make Nagios configuration more robust and efficient&lt;/li&gt;
9392 &lt;li&gt;Comply with 3.X kernel&lt;/li&gt;
9393 &lt;/ul&gt;&lt;/li&gt;
9394 &lt;li&gt;debian-edu-doc from 1.4~20120310~6.0.4+r0 to 1.4~20130228~6.0.7+r1
9395 &lt;ul&gt;
9396 &lt;li&gt;Minor updates from the wiki&lt;/li&gt;
9397 &lt;li&gt;Danish translation now complete&lt;/li&gt;
9398 &lt;/ul&gt;&lt;/li&gt;
9399 &lt;li&gt;debian-edu-config from 1.453 to 1.455
9400 &lt;ul&gt;
9401 &lt;li&gt;Fix /etc/hosts for LTSP diskless workstations. Closes: #699880&lt;/li&gt;
9402 &lt;li&gt;Make ltsp_local_mount script work for multiple devices.&lt;/li&gt;
9403 &lt;li&gt;Correct Kerberos user policy: don&#39;t expire password after 2 days.
9404 Closes: #664596&lt;/li&gt;
9405 &lt;li&gt;Handle &#39;#&#39; characters in the root or first users password.
9406 Closes: #664976&lt;/li&gt;
9407 &lt;li&gt;Fixes for gosa-sync:
9408 &lt;ul&gt;
9409 &lt;li&gt;Don&#39;t fail if password contains &quot;&lt;/li&gt;
9410 &lt;li&gt;Don&#39;t disclose new password string in syslog&lt;/li&gt;
9411 &lt;/ul&gt;&lt;/li&gt;
9412 &lt;li&gt;Fixes for gosa-create:
9413 &lt;ul&gt;
9414 &lt;li&gt;Invalidate libnss cache before applying changes&lt;/li&gt;
9415 &lt;li&gt;Multiple failures during mass user import into GOsa²&lt;/li&gt;
9416 &lt;li&gt;gosa-netgroups plugin: don&#39;t erase entries of attribute type
9417 &quot;memberNisNetgroup&quot;. Closes: #687256&lt;/li&gt;
9418 &lt;li&gt;First user now uses the same Kerberos policy as all other users&lt;/li&gt;
9419 &lt;/ul&gt;&lt;/li&gt;
9420 &lt;li&gt;Add Danish web page&lt;/li&gt;
9421 &lt;/ul&gt;
9422 &lt;li&gt;debian-edu-install from 1.528 to 1.530
9423 &lt;ul&gt;
9424 &lt;li&gt;Improve preseeding support and documentation&lt;/li&gt;
9425 &lt;/ul&gt;&lt;/li&gt;
9426 &lt;/ul&gt;
9427
9428 &lt;p&gt;End-user documentation in English is available at
9429 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze/&quot;&gt;http://wiki.debian.org/DebianEdu/Documentation/Squeeze/&lt;/a&gt;
9430 - translations to French, Italian, Danish and German are available in
9431 the debian-edu-doc package. (Other languages could use your help!)&lt;/p&gt;
9432
9433 &lt;p&gt;If you want to contribute to Debian Edu, please join our
9434 mailinglist
9435 &lt;a href=&quot;http://lists.debian.org/debian-edu/&quot;&gt;debian-edu@lists.debian.org&lt;/a&gt;!
9436 &lt;/p&gt;&lt;/blockquote&gt;
9437
9438 &lt;p&gt;I am very happy to see the fruits of a year of hard work. :)&lt;/p&gt;
9439 </description>
9440 </item>
9441
9442 <item>
9443 <title>Frikanalen - Complete TV station organised using the web</title>
9444 <link>http://people.skolelinux.org/pere/blog/Frikanalen___Complete_TV_station_organised_using_the_web.html</link>
9445 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Frikanalen___Complete_TV_station_organised_using_the_web.html</guid>
9446 <pubDate>Sun, 3 Mar 2013 07:15:00 +0100</pubDate>
9447 <description>&lt;p&gt;Do you want to set up your own TV station, schedule videos and
9448 broadcast them on the air? Using free software? With video on demand
9449 support using
9450 &lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;free and
9451 open standards&lt;/a&gt;? Included a web based video stream as well? And
9452 administrate it all in your web browser from anywhere in the world? A
9453 few years now the Norwegian public access TV-channel
9454 &lt;a href=&quot;http://www.frikanalen.no/&quot;&gt;Frikanalen&lt;/a&gt; have been building a
9455 system to do just this. The source code for the solution is licensed
9456 using the GNU LGPL, and
9457 &lt;a href=&quot;http://github.com/Frikanalen&quot;&gt;available from github&lt;/a&gt;.&lt;/p&gt;
9458
9459 &lt;p&gt;The idea is simple. You upload a video file over the web, and
9460 attach meta information to the file. You select a time slot in the
9461 program schedule, and when the time come it is played on the air and
9462 in the web stream. It is also made available in a video on demand
9463 solution for anyone to see it also outside its scheduled time. All
9464 you need to run a TV station - using your web browser.&lt;/p&gt;
9465
9466 &lt;p&gt;There are several parts to this web based solution. I&#39;ll mention
9467 the three most important ones. The first part is the database of
9468 videos and the schedule. This is written in Django and include a REST
9469 API. The current database is SQLite, but the plan is to migrate it to
9470 PostgreSQL. At the moment this system can be tested on
9471 &lt;a href=&quot;http://beta.frikanalen.tv/&quot;&gt;beta.frikanalen.tv&lt;/a&gt;. The
9472 second part is the video playout, taking the schedule information from
9473 the database and providing a video stream to broadcast. This is done
9474 using &lt;a href=&quot;http://www.casparcg.com/&quot;&gt;CasparCG from SVT&lt;/a&gt; and
9475 &lt;a href=&quot;http://www.mltframework.org/&quot;&gt;Media Lovin&#39; Toolkit&lt;/a&gt;. Video
9476 signal distribution is handled using
9477 &lt;a href=&quot;http://www.ob-encoder.com/&quot;&gt;Open Broadcast Encoder&lt;/a&gt;. The
9478 third part is the converter, handling the transformation of uploaded
9479 video files to a format useful for broadcasting, streaming and video
9480 on demand. It is still very much work in progress, so it is not yet
9481 decided what it will end up using. Note that the source of the latter
9482 two parts are not yet pushed to github. The lead author want to clean
9483 them up a bit more first.&lt;/p&gt;
9484
9485 &lt;p&gt;The development is coordinated on the
9486 &lt;a href=&quot;irc://irc.freenode.net/%23frikanalen&quot;&gt;#frikanalen IRC
9487 channel&lt;/a&gt; (irc.freenode.net), and discussed on
9488 &lt;a href=&quot;http://lists.nuug.no/mailman/listinfo/frikanalen&quot;&gt;the
9489 frikanalen mailing list&lt;/a&gt;. The lead developer is Benjamin Bruheim
9490 (phed on IRC). Anyone is welcome to participate in the
9491 development.&lt;/p&gt;
9492 </description>
9493 </item>
9494
9495 <item>
9496 <title>Dr. Richard Stallman, founder of Free Software Foundation, give a talk in Oslo March 1st 2013</title>
9497 <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>
9498 <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>
9499 <pubDate>Wed, 27 Feb 2013 20:20:00 +0100</pubDate>
9500 <description>&lt;p&gt;Dr. &lt;a href=&quot;http://www.stallman.org/&quot;&gt;Richard Stallman&lt;/a&gt;,
9501 founder of &lt;a href=&quot;http://www.fsf.org/&quot;&gt;Free Software Foundation&lt;/a&gt;,
9502 is giving &lt;a href=&quot;http://www.nuug.no/aktiviteter/20130301-rms/&quot;&gt;a
9503 talk in Oslo March 1st 2013 17:00 to 19:00&lt;/a&gt;. The event is public
9504 and organised by &lt;a href=&quot;&quot;&gt;Norwegian Unix Users Group (NUUG)&lt;/a&gt;
9505 (where I am the chair of the board) and
9506 &lt;a href=&quot;http://www.friprog.no/&quot;&gt;The Norwegian Open Source Competence
9507 Center&lt;/a&gt;. The title of the talk is «The Free Software Movement and
9508 GNU», with this description:
9509
9510 &lt;p&gt;&lt;blockquote&gt;
9511 The Free Software Movement campaigns for computer users&#39; freedom to
9512 cooperate and control their own computing. The Free Software Movement
9513 developed the GNU operating system, typically used together with the
9514 kernel Linux, specifically to make these freedoms possible.
9515 &lt;/blockquote&gt;&lt;/p&gt;
9516
9517 &lt;p&gt;The meeting is open for everyone. Due to space limitations, the
9518 doors opens for NUUG members at 16:15, and everyone else at 16:45. I
9519 am really curious how many will show up. See
9520 &lt;a href=&quot;http://www.nuug.no/aktiviteter/20130301-rms/&quot;&gt;the event
9521 page&lt;/a&gt; for the location details.&lt;/p&gt;
9522 </description>
9523 </item>
9524
9525 <item>
9526 <title>Frikart - Free Garmin maps for European countries based on OpenStreetmap</title>
9527 <link>http://people.skolelinux.org/pere/blog/Frikart___Free_Garmin_maps_for_European_countries_based_on_OpenStreetmap.html</link>
9528 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Frikart___Free_Garmin_maps_for_European_countries_based_on_OpenStreetmap.html</guid>
9529 <pubDate>Fri, 15 Feb 2013 09:30:00 +0100</pubDate>
9530 <description>&lt;p&gt;If you, like me, want an updated a map for your Garmin GPS, there is
9531 now a great source of free maps available from
9532 &lt;a href=&quot;http://www.frikart.no/garmin/index.html&quot;&gt;Frikart&lt;/a&gt;. To
9533 download a map, just click on the country you are interested in, and
9534 download the map type you want. There are 8 different maps available,
9535 using different colours and data selection. Pick one of Roadmap, Topo
9536 Summer, Topo Winter, Roadmap II, Topo Summer II, Topo Winter II,
9537 &quot;Trails - overlay map&quot; and &quot;Cross country - overlay map&quot; (see the web
9538 page for descriptions).&lt;/p&gt;
9539
9540 &lt;p&gt;The maps are updated weekly, so if you find something wrong in the
9541 map you can just edit the
9542 &lt;a href=&quot;http://www.openstreetmap.org/&quot;&gt;OpenStreetmap&lt;/a&gt; map source
9543 (anyone can contribute) and fetch a fixed map a week later. :)&lt;/p&gt;
9544 </description>
9545 </item>
9546
9547 <item>
9548 <title>&quot;Electronic&quot; paper invoices - using vCard in a QR code</title>
9549 <link>http://people.skolelinux.org/pere/blog/_Electronic__paper_invoices___using_vCard_in_a_QR_code.html</link>
9550 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/_Electronic__paper_invoices___using_vCard_in_a_QR_code.html</guid>
9551 <pubDate>Tue, 12 Feb 2013 10:30:00 +0100</pubDate>
9552 <description>&lt;p&gt;Here in Norway, electronic invoices are spreading, and the
9553 &lt;a href=&quot;http://www.anskaffelser.no/e-handel/faktura&quot;&gt;solution promoted
9554 by the Norwegian government&lt;/a&gt; require that invoices are sent through
9555 one of the approved facilitators, and it is not possible to send
9556 electronic invoices without an agreement with one of these
9557 facilitators. This seem like a needless limitation to be able to
9558 transfer invoice information between buyers and sellers. My preferred
9559 solution would be to just transfer the invoice information directly
9560 between seller and buyer, for example using SMTP, or some HTTP based
9561 protocol like REST or SOAP. But this might also be overkill, as the
9562 &quot;electronic&quot; information can be transferred using paper invoices too,
9563 using a simple bar code. My bar code encoding of choice would be QR
9564 codes, as this encoding can be read by any smart phone out there. The
9565 content of the code could be anything, but I would go with
9566 &lt;a href=&quot;http://en.wikipedia.org/wiki/VCard&quot;&gt;the vCard format&lt;/a&gt;, as
9567 it too is supported by a lot of computer equipment these days.&lt;/p&gt;
9568
9569 &lt;p&gt;The vCard format support extentions, and the invoice specific
9570 information can be included using such extentions. For example an
9571 invoice from SLX Debian Labs (picked because we
9572 &lt;a href=&quot;http://www.linuxiskolen.no/slxdebianlabs/donations.html&quot;&gt;ask
9573 for donations to the Debian Edu project&lt;/a&gt; and thus have bank account
9574 information publicly available) for NOK 1000.00 could have these extra
9575 fields:&lt;/p&gt;
9576
9577 &lt;p&gt;&lt;pre&gt;
9578 X-INVOICE-NUMBER:1
9579 X-INVOICE-AMOUNT:NOK1000.00
9580 X-INVOICE-KID:123412341234
9581 X-INVOICE-MSG:Donation to Debian Edu
9582 X-BANK-ACCOUNT-NUMBER:16040884339
9583 X-BANK-IBAN-NUMBER:NO8516040884339
9584 X-BANK-SWIFT-NUMBER:DNBANOKKXXX
9585 &lt;/pre&gt;&lt;/p&gt;
9586
9587 &lt;p&gt;The X-BANK-ACCOUNT-NUMBER field was proposed in a stackoverflow
9588 answer regarding
9589 &lt;a href=&quot;http://stackoverflow.com/questions/10045664/storing-bank-account-in-vcard-file&quot;&gt;how
9590 to put bank account information into a vCard&lt;/a&gt;. For payments in
9591 Norway, either X-INVOICE-KID (payment ID) or X-INVOICE-MSG could be
9592 used to pass on information to the seller when paying the invoice.&lt;/p&gt;
9593
9594 &lt;p&gt;The complete vCard could look like this:&lt;/p&gt;
9595
9596 &lt;p&gt;&lt;pre&gt;
9597 BEGIN:VCARD
9598 VERSION:2.1
9599 ORG:SLX Debian Labs Foundation
9600 ADR;WORK:;;Gunnar Schjelderups vei 29D;OSLO;;0485;Norway
9601 URL;WORK:http://www.linuxiskolen.no/slxdebianlabs/
9602 EMAIL;PREF;INTERNET:sdl-styret@rt.nuug.no
9603 REV:20130212T095000Z
9604 X-INVOICE-NUMBER:1
9605 X-INVOICE-AMOUNT:NOK1000.00
9606 X-INVOICE-MSG:Donation to Debian Edu
9607 X-BANK-ACCOUNT-NUMBER:16040884339
9608 X-BANK-IBAN-NUMBER:NO8516040884339
9609 X-BANK-SWIFT-NUMBER:DNBANOKKXXX
9610 END:VCARD
9611 &lt;/pre&gt;&lt;/p&gt;
9612
9613 &lt;p&gt;The resulting QR code created using
9614 &lt;a href=&quot;http://fukuchi.org/works/qrencode/&quot;&gt;qrencode&lt;/a&gt; would look
9615 like this, and should be readable (and thus checkable) by any smart
9616 phone, or for example the &lt;a href=&quot;http://zbar.sourceforge.net/&quot;&gt;zbar
9617 bar code reader&lt;/a&gt; and feed right into the approval and accounting
9618 system.&lt;/p&gt;
9619
9620 &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;
9621
9622 &lt;p&gt;The extension fields will most likely not show up in any normal
9623 vCard reader, so those parts would have to go directly into a system
9624 handling invoices. I am a bit unsure how vCards without name parts
9625 are handled, but a simple test indicate that this work just fine.&lt;/p&gt;
9626
9627 &lt;p&gt;&lt;strong&gt;Update 2013-02-12 11:30&lt;/strong&gt;: Added KID to the proposal
9628 based on feedback from Sturle Sunde.&lt;/p&gt;
9629 </description>
9630 </item>
9631
9632 <item>
9633 <title>Sleep until morning - home automation for the kids</title>
9634 <link>http://people.skolelinux.org/pere/blog/Sleep_until_morning___home_automation_for_the_kids.html</link>
9635 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Sleep_until_morning___home_automation_for_the_kids.html</guid>
9636 <pubDate>Sun, 10 Feb 2013 12:50:00 +0100</pubDate>
9637 <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;
9638
9639 &lt;p&gt;With kids in the house, one challenge is getting them to sleep
9640 during the night and wake up when it is morning. I mean, when I
9641 believe it is morning, and not two hours earlier. In our household we
9642 have decided that 07:00 is the turning point, but getting the kids to
9643 sleep until 07:00 is a small challenge every day. They have adapted
9644 quite well, and rarely wake up at 05:00 any more, but some times wake
9645 up at times like 05:50, 06:15, 06:30 or 06:45, and it is hard to put
9646 the awake one to bed again without disturbing and waking the rest.
9647 And I understand perfectly well that they fail to sleep until 07:00
9648 some times, as there is no way for them to know if it is before or
9649 after the magic moment without coming and asking us parents.&lt;/p&gt;
9650
9651 &lt;p&gt;But yesterday I came up with a method to solve this problem. It
9652 involve home automation. A few years ago I bought a
9653 &lt;a href=&quot;http://www.telldus.se/products/tellstick&quot;&gt;Tellstick&lt;/a&gt; and RF
9654 switches at the local &lt;a href=&quot;http://www.clasohlson.com/&quot;&gt;Clas
9655 Ohlson&lt;/a&gt; shop, allowing me to control lights and other electrical
9656 gadgets using my Linux server. When I moved from the old flat to a
9657 small house, I put away all this equipment as most of the lighting in
9658 the house was not using wall sockets and thus not easy to connect to
9659 the gadgets I had. But recently I bought a
9660 &lt;a href=&quot;http://www.telldus.se/products/tellstick_net&quot;&gt;Tellstick
9661 Net&lt;/a&gt; to be able to read sensor input as well as control power
9662 sockets. I want to control ovens in the basement to avoid the pipes
9663 to freeze, and monitor the humidity to detect flooding. The default
9664 setup for Tellstick Net is to be controlled by the vendor web service,
9665 which to me is a security problem, but it is also possible to build
9666 ones own
9667 &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
9668 with local access&lt;/A&gt; instead of being controlled by a Swedish
9669 company, thanks to the release of the GPL licensed firmware source
9670 code. I plan to get that running before I let it control anything
9671 important. But while working on this, one idea to make it easier for
9672 the kids came to me yesterday. We can set up a night light controlled
9673 by the computer, and turn it automatically on at 07:00. The kids can
9674 then check the light in the morning to know if they are supposed to
9675 get up or not. They joined me in setting everything up, and I
9676 repeated the concept several times before bed times to make sure they
9677 remembered to check the light before getting up in the morning.&lt;/p&gt;
9678
9679 &lt;p&gt;We tested it this morning, and all the kids stayed in bed until
9680 after 07:00, and every one of them commented on the fact that the
9681 &quot;morning light&quot; was turned on and signalled that the morning had
9682 arrived. So this look like a success, and I am excited to see how
9683 this develops the next few days. :) I really hope this can allow us
9684 all to sleep a bit longer in the morning.&lt;/p&gt;
9685
9686 &lt;p&gt;A nice advantage of this setup is that we can remote control when
9687 to tell the kids to get up. We do not have to wait until 07:00, and
9688 can also delay it if we want to.&lt;/p&gt;
9689 </description>
9690 </item>
9691
9692 <item>
9693 <title>Bitcoin GUI now available from Debian/unstable (and Ubuntu/raring)</title>
9694 <link>http://people.skolelinux.org/pere/blog/Bitcoin_GUI_now_available_from_Debian_unstable__and_Ubuntu_raring_.html</link>
9695 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Bitcoin_GUI_now_available_from_Debian_unstable__and_Ubuntu_raring_.html</guid>
9696 <pubDate>Sat, 2 Feb 2013 09:00:00 +0100</pubDate>
9697 <description>&lt;p&gt;My
9698 &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
9699 bitcoin related blog post&lt;/a&gt; mentioned that the new
9700 &lt;a href=&quot;http://packages.qa.debian.org/bitcoin&quot;&gt;bitcoin package&lt;/a&gt; for
9701 Debian was waiting in NEW. It was accepted by the Debian ftp-masters
9702 2013-01-19, and have been available in unstable since then. It was
9703 automatically copied to Ubuntu, and is available in their Raring
9704 version too.&lt;/p&gt;
9705
9706 &lt;p&gt;But there is a strange problem with the build that block this new
9707 version from being available on the i386 and kfreebsd-i386
9708 architectures. For some strange reason, the autobuilders in Debian
9709 for these architectures fail to run the test suite on these
9710 architectures (&lt;a href=&quot;http://bugs.debian.org/672524&quot;&gt;BTS #672524&lt;/a&gt;).
9711 We are so far unable to reproduce it when building it manually, and
9712 no-one have been able to propose a fix. If you got an idea what is
9713 failing, please let us know via the BTS.&lt;/p&gt;
9714
9715 &lt;p&gt;One feature that is annoying me with of the bitcoin client, because
9716 I often run low on disk space, is the fact that the client will exit
9717 if it run short on space (&lt;a href=&quot;http://bugs.debian.org/696715&quot;&gt;BTS
9718 #696715&lt;/a&gt;). So make sure you have enough disk space when you run
9719 it. :)&lt;/p&gt;
9720
9721 &lt;p&gt;As usual, if you use bitcoin and want to show your support of my
9722 activities, please send Bitcoin donations to my address
9723 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&amp;label=PetterReinholdtsenBlog&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
9724 </description>
9725 </item>
9726
9727 <item>
9728 <title>Welcome to the world, Isenkram!</title>
9729 <link>http://people.skolelinux.org/pere/blog/Welcome_to_the_world__Isenkram_.html</link>
9730 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Welcome_to_the_world__Isenkram_.html</guid>
9731 <pubDate>Tue, 22 Jan 2013 22:00:00 +0100</pubDate>
9732 <description>&lt;p&gt;Yesterday, I
9733 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/First_prototype_ready_making_hardware_easier_to_use_in_Debian.html&quot;&gt;asked
9734 for testers&lt;/a&gt; for my prototype for making Debian better at handling
9735 pluggable hardware devices, which I
9736 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Lets_make_hardware_dongles_easier_to_use_in_Debian.html&quot;&gt;set
9737 out to create&lt;/a&gt; earlier this month. Several valuable testers showed
9738 up, and caused me to really want to to open up the development to more
9739 people. But before I did this, I want to come up with a sensible name
9740 for this project. Today I finally decided on a new name, and I have
9741 renamed the project from hw-support-handler to this new name. In the
9742 process, I moved the source to git and made it available as a
9743 &lt;a href=&quot;http://anonscm.debian.org/gitweb/?p=collab-maint/isenkram.git&quot;&gt;collab-maint&lt;/a&gt;
9744 repository in Debian. The new name? It is &lt;strong&gt;Isenkram&lt;/strong&gt;.
9745 To fetch and build the latest version of the source, use&lt;/p&gt;
9746
9747 &lt;pre&gt;
9748 git clone http://anonscm.debian.org/git/collab-maint/isenkram.git
9749 cd isenkram &amp;&amp; git-buildpackage -us -uc
9750 &lt;/pre&gt;
9751
9752 &lt;p&gt;I have not yet adjusted all files to use the new name yet. If you
9753 want to hack on the source or improve the package, please go ahead.
9754 But please talk to me first on IRC or via email before you do major
9755 changes, to make sure we do not step on each others toes. :)&lt;/p&gt;
9756
9757 &lt;p&gt;If you wonder what &#39;isenkram&#39; is, it is a Norwegian word for iron
9758 stuff, typically meaning tools, nails, screws, etc. Typical hardware
9759 stuff, in other words. I&#39;ve been told it is the Norwegian variant of
9760 the German word eisenkram, for those that are familiar with that
9761 word.&lt;/p&gt;
9762
9763 &lt;p&gt;&lt;strong&gt;Update 2013-01-26&lt;/strong&gt;: Added -us -us to build
9764 instructions, to avoid confusing people with an error from the signing
9765 process.&lt;/p&gt;
9766
9767 &lt;p&gt;&lt;strong&gt;Update 2013-01-27&lt;/strong&gt;: Switch to HTTP URL for the git
9768 clone argument to avoid the need for authentication.&lt;/p&gt;
9769 </description>
9770 </item>
9771
9772 <item>
9773 <title>First prototype ready making hardware easier to use in Debian</title>
9774 <link>http://people.skolelinux.org/pere/blog/First_prototype_ready_making_hardware_easier_to_use_in_Debian.html</link>
9775 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_prototype_ready_making_hardware_easier_to_use_in_Debian.html</guid>
9776 <pubDate>Mon, 21 Jan 2013 12:00:00 +0100</pubDate>
9777 <description>&lt;p&gt;Early this month I set out to try to
9778 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Lets_make_hardware_dongles_easier_to_use_in_Debian.html&quot;&gt;improve
9779 the Debian support for pluggable hardware devices&lt;/a&gt;. Now my
9780 prototype is working, and it is ready for a larger audience. To test
9781 it, fetch the
9782 &lt;a href=&quot;http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/&quot;&gt;source
9783 from the Debian Edu subversion repository&lt;/a&gt;, build and install the
9784 package. You might have to log out and in again activate the
9785 autostart script.&lt;/p&gt;
9786
9787 &lt;p&gt;The design is simple:&lt;/p&gt;
9788
9789 &lt;ul&gt;
9790
9791 &lt;li&gt;Add desktop entry in /usr/share/autostart/ causing a program
9792 hw-support-handlerd to start when the user log in.&lt;/li&gt;
9793
9794 &lt;li&gt;This program listen for kernel events about new hardware (directly
9795 from the kernel like udev does), not using HAL dbus events as I
9796 initially did.&lt;/li&gt;
9797
9798 &lt;li&gt;When new hardware is inserted, look up the hardware modalias in
9799 the APT database, a database
9800 &lt;a href=&quot;http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/modaliases?view=markup&quot;&gt;available
9801 via HTTP&lt;/a&gt; and a database available as part of the package.&lt;/li&gt;
9802
9803 &lt;li&gt;If a package is mapped to the hardware in question, the package
9804 isn&#39;t installed yet and this is the first time the hardware was
9805 plugged in, show a desktop notification suggesting to install the
9806 package or packages.&lt;/li&gt;
9807
9808 &lt;li&gt;If the user click on the &#39;install package now&#39; button, ask
9809 aptdaemon via the PackageKit API to install the requrired package.&lt;/li&gt;
9810
9811 &lt;li&gt;aptdaemon ask for root password or sudo password, and install the
9812 package while showing progress information in a window.&lt;/li&gt;
9813
9814 &lt;/ul&gt;
9815
9816 &lt;p&gt;I still need to come up with a better name for the system. Here
9817 are some screen shots showing the prototype in action. First the
9818 notification, then the password request, and finally the request to
9819 approve all the dependencies. Sorry for the Norwegian Bokmål GUI.&lt;/p&gt;
9820
9821 &lt;p&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2013-01-21-hw-support-1-notification.png&quot;&gt;
9822 &lt;br&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2013-01-21-hw-support-2-password.png&quot;&gt;
9823 &lt;br&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2013-01-21-hw-support-3-dependencies.png&quot;&gt;
9824 &lt;br&gt;&lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/2013-01-21-hw-support-4-installing.png&quot;&gt;
9825 &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;
9826
9827 &lt;p&gt;The prototype still need to be improved with longer timeouts, but
9828 is already useful. The database of hardware to package mappings also
9829 need more work. It is currently compatible with the Ubuntu way of
9830 storing such information in the package control file, but could be
9831 changed to use other formats instead or in addition to the current
9832 method. I&#39;ve dropped the use of discover for this mapping, as the
9833 modalias approach is more flexible and easier to use on Linux as long
9834 as the Linux kernel expose its modalias strings directly.&lt;/p&gt;
9835
9836 &lt;p&gt;&lt;strong&gt;Update 2013-01-21 16:50&lt;/strong&gt;: Due to popular demand,
9837 here is the command required to check out and build the source: Use
9838 &#39;&lt;tt&gt;svn checkout
9839 svn://svn.debian.org/debian-edu/trunk/src/hw-support-handler/; cd
9840 hw-support-handler; debuild&lt;/tt&gt;&#39;. If you lack debuild, install the
9841 devscripts package.&lt;/p&gt;
9842
9843 &lt;p&gt;&lt;strong&gt;Update 2013-01-23 12:00&lt;/strong&gt;: The project is now
9844 renamed to Isenkram and the source moved from the Debian Edu
9845 subversion repository to a Debian collab-maint git repository. See
9846 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Welcome_to_the_world__Isenkram_.html&quot;&gt;build
9847 instructions&lt;/a&gt; for details.&lt;/p&gt;
9848 </description>
9849 </item>
9850
9851 <item>
9852 <title>Thank you Thinkpad X41, for your long and trustworthy service</title>
9853 <link>http://people.skolelinux.org/pere/blog/Thank_you_Thinkpad_X41__for_your_long_and_trustworthy_service.html</link>
9854 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Thank_you_Thinkpad_X41__for_your_long_and_trustworthy_service.html</guid>
9855 <pubDate>Sat, 19 Jan 2013 09:20:00 +0100</pubDate>
9856 <description>&lt;p&gt;This Christmas my trusty old laptop died. It died quietly and
9857 suddenly in bed. With a quiet whimper, it went completely quiet and
9858 black. The power button was no longer able to turn it on. It was a
9859 IBM Thinkpad X41, and the best laptop I ever had. Better than both
9860 Thinkpads X30, X31, X40, X60, X61 and X61S. Far better than the
9861 Compaq I had before that. Now I need to find a replacement. To keep
9862 going during Christmas, I moved the one year old SSD disk to my old
9863 X40 where it fitted (only one I had left that could use it), but it is
9864 not a durable solution.
9865
9866 &lt;p&gt;My laptop needs are fairly modest. This is my wishlist from when I
9867 got a new one more than 10 years ago. It still holds true.:)&lt;/p&gt;
9868
9869 &lt;ul&gt;
9870
9871 &lt;li&gt;Lightweight (around 1 kg) and small volume (preferably smaller
9872 than A4).&lt;/li&gt;
9873 &lt;li&gt;Robust, it will be in my backpack every day.&lt;/li&gt;
9874 &lt;li&gt;Three button mouse and a mouse pin instead of touch pad.&lt;/li&gt;
9875 &lt;li&gt;Long battery life time. Preferable a week.&lt;/li&gt;
9876 &lt;li&gt;Internal WIFI network card.&lt;/li&gt;
9877 &lt;li&gt;Internal Twisted Pair network card.&lt;/li&gt;
9878 &lt;li&gt;Some USB slots (2-3 is plenty)&lt;/li&gt;
9879 &lt;li&gt;Good keyboard - similar to the Thinkpad.&lt;/li&gt;
9880 &lt;li&gt;Video resolution at least 1024x768, with size around 12&quot; (A4 paper
9881 size).&lt;/li&gt;
9882 &lt;li&gt;Hardware supported by Debian Stable, ie the default kernel and
9883 X.org packages.&lt;/li&gt;
9884 &lt;li&gt;Quiet, preferably fan free (or at least not using the fan most of
9885 the time).
9886
9887 &lt;/ul&gt;
9888
9889 &lt;p&gt;You will notice that there are no RAM and CPU requirements in the
9890 list. The reason is simply that the specifications on laptops the
9891 last 10-15 years have been sufficient for my needs, and I have to look
9892 at other features to choose my laptop. But are there still made as
9893 robust laptops as my X41? The Thinkpad X60/X61 proved to be less
9894 robust, and Thinkpads seem to be heading in the wrong direction since
9895 Lenovo took over. But I&#39;ve been told that X220 and X1 Carbon might
9896 still be useful.&lt;/p&gt;
9897
9898 &lt;p&gt;Perhaps I should rethink my needs, and look for a pad with an
9899 external keyboard? I&#39;ll have to check the
9900 &lt;a href=&quot;http://www.linux-laptop.net/&quot;&gt;Linux Laptops site&lt;/a&gt; for
9901 well-supported laptops, or perhaps just buy one preinstalled from one
9902 of the vendors listed on the &lt;a href=&quot;http://linuxpreloaded.com/&quot;&gt;Linux
9903 Pre-loaded site&lt;/a&gt;.&lt;/p&gt;
9904 </description>
9905 </item>
9906
9907 <item>
9908 <title>How to find a browser plugin supporting a given MIME type</title>
9909 <link>http://people.skolelinux.org/pere/blog/How_to_find_a_browser_plugin_supporting_a_given_MIME_type.html</link>
9910 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_find_a_browser_plugin_supporting_a_given_MIME_type.html</guid>
9911 <pubDate>Fri, 18 Jan 2013 10:40:00 +0100</pubDate>
9912 <description>&lt;p&gt;Some times I try to figure out which Iceweasel browser plugin to
9913 install to get support for a given MIME type. Thanks to
9914 &lt;a href=&quot;https://wiki.ubuntu.com/MozillaTeam/Plugins&quot;&gt;specifications
9915 done by Ubuntu&lt;/a&gt; and Mozilla, it is possible to do this in Debian.
9916 Unfortunately, not very many packages provide the needed meta
9917 information, Anyway, here is a small script to look up all browser
9918 plugin packages announcing ther MIME support using this specification:&lt;/p&gt;
9919
9920 &lt;pre&gt;
9921 #!/usr/bin/python
9922 import sys
9923 import apt
9924 def pkgs_handling_mimetype(mimetype):
9925 cache = apt.Cache()
9926 cache.open(None)
9927 thepkgs = []
9928 for pkg in cache:
9929 version = pkg.candidate
9930 if version is None:
9931 version = pkg.installed
9932 if version is None:
9933 continue
9934 record = version.record
9935 if not record.has_key(&#39;Npp-MimeType&#39;):
9936 continue
9937 mime_types = record[&#39;Npp-MimeType&#39;].split(&#39;,&#39;)
9938 for t in mime_types:
9939 t = t.rstrip().strip()
9940 if t == mimetype:
9941 thepkgs.append(pkg.name)
9942 return thepkgs
9943 mimetype = &quot;audio/ogg&quot;
9944 if 1 &lt; len(sys.argv):
9945 mimetype = sys.argv[1]
9946 print &quot;Browser plugin packages supporting %s:&quot; % mimetype
9947 for pkg in pkgs_handling_mimetype(mimetype):
9948 print &quot; %s&quot; %pkg
9949 &lt;/pre&gt;
9950
9951 &lt;p&gt;It can be used like this to look up a given MIME type:&lt;/p&gt;
9952
9953 &lt;pre&gt;
9954 % ./apt-find-browserplug-for-mimetype
9955 Browser plugin packages supporting audio/ogg:
9956 gecko-mediaplayer
9957 % ./apt-find-browserplug-for-mimetype application/x-shockwave-flash
9958 Browser plugin packages supporting application/x-shockwave-flash:
9959 browser-plugin-gnash
9960 %
9961 &lt;/pre&gt;
9962
9963 &lt;p&gt;In Ubuntu this mechanism is combined with support in the browser
9964 itself to query for plugins and propose to install the needed
9965 packages. It would be great if Debian supported such feature too. Is
9966 anyone working on adding it?&lt;/p&gt;
9967
9968 &lt;p&gt;&lt;strong&gt;Update 2013-01-18 14:20&lt;/strong&gt;: The Debian BTS
9969 request for icweasel support for this feature is
9970 &lt;a href=&quot;http://bugs.debian.org/484010&quot;&gt;#484010&lt;/a&gt; from 2008 (and
9971 &lt;a href=&quot;http://bugs.debian.org/698426&quot;&gt;#698426&lt;/a&gt; from today). Lack
9972 of manpower and wish for a different design is the reason thus feature
9973 is not yet in iceweasel from Debian.&lt;/p&gt;
9974 </description>
9975 </item>
9976
9977 <item>
9978 <title>What is the most supported MIME type in Debian?</title>
9979 <link>http://people.skolelinux.org/pere/blog/What_is_the_most_supported_MIME_type_in_Debian_.html</link>
9980 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/What_is_the_most_supported_MIME_type_in_Debian_.html</guid>
9981 <pubDate>Wed, 16 Jan 2013 10:10:00 +0100</pubDate>
9982 <description>&lt;p&gt;The &lt;a href=&quot;http://wiki.debian.org/AppStreamDebianProposal&quot;&gt;DEP-11
9983 proposal to add AppStream information to the Debian archive&lt;/a&gt;, is a
9984 proposal to make it possible for a Desktop application to propose to
9985 the user some package to install to gain support for a given MIME
9986 type, font, library etc. that is currently missing. With such
9987 mechanism in place, it would be possible for the desktop to
9988 automatically propose and install leocad if some LDraw file is
9989 downloaded by the browser.&lt;/p&gt;
9990
9991 &lt;p&gt;To get some idea about the current content of the archive, I decided
9992 to write a simple program to extract all .desktop files from the
9993 Debian archive and look up the claimed MIME support there. The result
9994 can be found on the
9995 &lt;a href=&quot;http://ftp.skolelinux.org/pub/AppStreamTest&quot;&gt;Skolelinux FTP
9996 site&lt;/a&gt;. Using the collected information, it become possible to
9997 answer the question in the title. Here are the 20 most supported MIME
9998 types in Debian stable (Squeeze), testing (Wheezy) and unstable (Sid).
9999 The complete list is available from the link above.&lt;/p&gt;
10000
10001 &lt;p&gt;&lt;strong&gt;Debian Stable:&lt;/strong&gt;&lt;/p&gt;
10002
10003 &lt;pre&gt;
10004 count MIME type
10005 ----- -----------------------
10006 32 text/plain
10007 30 audio/mpeg
10008 29 image/png
10009 28 image/jpeg
10010 27 application/ogg
10011 26 audio/x-mp3
10012 25 image/tiff
10013 25 image/gif
10014 22 image/bmp
10015 22 audio/x-wav
10016 20 audio/x-flac
10017 19 audio/x-mpegurl
10018 18 video/x-ms-asf
10019 18 audio/x-musepack
10020 18 audio/x-mpeg
10021 18 application/x-ogg
10022 17 video/mpeg
10023 17 audio/x-scpls
10024 17 audio/ogg
10025 16 video/x-ms-wmv
10026 &lt;/pre&gt;
10027
10028 &lt;p&gt;&lt;strong&gt;Debian Testing:&lt;/strong&gt;&lt;/p&gt;
10029
10030 &lt;pre&gt;
10031 count MIME type
10032 ----- -----------------------
10033 33 text/plain
10034 32 image/png
10035 32 image/jpeg
10036 29 audio/mpeg
10037 27 image/gif
10038 26 image/tiff
10039 26 application/ogg
10040 25 audio/x-mp3
10041 22 image/bmp
10042 21 audio/x-wav
10043 19 audio/x-mpegurl
10044 19 audio/x-mpeg
10045 18 video/mpeg
10046 18 audio/x-scpls
10047 18 audio/x-flac
10048 18 application/x-ogg
10049 17 video/x-ms-asf
10050 17 text/html
10051 17 audio/x-musepack
10052 16 image/x-xbitmap
10053 &lt;/pre&gt;
10054
10055 &lt;p&gt;&lt;strong&gt;Debian Unstable:&lt;/strong&gt;&lt;/p&gt;
10056
10057 &lt;pre&gt;
10058 count MIME type
10059 ----- -----------------------
10060 31 text/plain
10061 31 image/png
10062 31 image/jpeg
10063 29 audio/mpeg
10064 28 application/ogg
10065 27 image/gif
10066 26 image/tiff
10067 26 audio/x-mp3
10068 23 audio/x-wav
10069 22 image/bmp
10070 21 audio/x-flac
10071 20 audio/x-mpegurl
10072 19 audio/x-mpeg
10073 18 video/x-ms-asf
10074 18 video/mpeg
10075 18 audio/x-scpls
10076 18 application/x-ogg
10077 17 audio/x-musepack
10078 16 video/x-ms-wmv
10079 16 video/x-msvideo
10080 &lt;/pre&gt;
10081
10082 &lt;p&gt;I am told that PackageKit can provide an API to access the kind of
10083 information mentioned in DEP-11. I have not yet had time to look at
10084 it, but hope the PackageKit people in Debian are on top of these
10085 issues.&lt;/p&gt;
10086
10087 &lt;p&gt;&lt;strong&gt;Update 2013-01-16 13:35&lt;/strong&gt;: Updated numbers after
10088 discovering a typo in my script.&lt;/p&gt;
10089 </description>
10090 </item>
10091
10092 <item>
10093 <title>Using modalias info to find packages handling my hardware</title>
10094 <link>http://people.skolelinux.org/pere/blog/Using_modalias_info_to_find_packages_handling_my_hardware.html</link>
10095 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Using_modalias_info_to_find_packages_handling_my_hardware.html</guid>
10096 <pubDate>Tue, 15 Jan 2013 08:00:00 +0100</pubDate>
10097 <description>&lt;p&gt;Yesterday, I wrote about the
10098 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Modalias_strings___a_practical_way_to_map__stuff__to_hardware.html&quot;&gt;modalias
10099 values provided by the Linux kernel&lt;/a&gt; following my hope for
10100 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Lets_make_hardware_dongles_easier_to_use_in_Debian.html&quot;&gt;better
10101 dongle support in Debian&lt;/a&gt;. Using this knowledge, I have tested how
10102 modalias values attached to package names can be used to map packages
10103 to hardware. This allow the system to look up and suggest relevant
10104 packages when I plug in some new hardware into my machine, and replace
10105 discover and discover-data as the database used to map hardware to
10106 packages.&lt;/p&gt;
10107
10108 &lt;p&gt;I create a modaliases file with entries like the following,
10109 containing package name, kernel module name (if relevant, otherwise
10110 the package name) and globs matching the relevant hardware
10111 modalias.&lt;/p&gt;
10112
10113 &lt;p&gt;&lt;blockquote&gt;
10114 Package: package-name
10115 &lt;br&gt;Modaliases: module(modaliasglob, modaliasglob, modaliasglob)&lt;/p&gt;
10116 &lt;/blockquote&gt;&lt;/p&gt;
10117
10118 &lt;p&gt;It is fairly trivial to write code to find the relevant packages
10119 for a given modalias value using this file.&lt;/p&gt;
10120
10121 &lt;p&gt;An entry like this would suggest the video and picture application
10122 cheese for many USB web cameras (interface bus class 0E01):&lt;/p&gt;
10123
10124 &lt;p&gt;&lt;blockquote&gt;
10125 Package: cheese
10126 &lt;br&gt;Modaliases: cheese(usb:v*p*d*dc*dsc*dp*ic0Eisc01ip*)&lt;/p&gt;
10127 &lt;/blockquote&gt;&lt;/p&gt;
10128
10129 &lt;p&gt;An entry like this would suggest the pcmciautils package when a
10130 CardBus bridge (bus class 0607) PCI device is present:&lt;/p&gt;
10131
10132 &lt;p&gt;&lt;blockquote&gt;
10133 Package: pcmciautils
10134 &lt;br&gt;Modaliases: pcmciautils(pci:v*d*sv*sd*bc06sc07i*)
10135 &lt;/blockquote&gt;&lt;/p&gt;
10136
10137 &lt;p&gt;An entry like this would suggest the package colorhug-client when
10138 plugging in a ColorHug with USB IDs 04D8:F8DA:&lt;/p&gt;
10139
10140 &lt;p&gt;&lt;blockquote&gt;
10141 Package: colorhug-client
10142 &lt;br&gt;Modaliases: colorhug-client(usb:v04D8pF8DAd*)&lt;/p&gt;
10143 &lt;/blockquote&gt;&lt;/p&gt;
10144
10145 &lt;p&gt;I believe the format is compatible with the format of the Packages
10146 file in the Debian archive. Ubuntu already uses their Packages file
10147 to store their mappings from packages to hardware.&lt;/p&gt;
10148
10149 &lt;p&gt;By adding a XB-Modaliases: header in debian/control, any .deb can
10150 announce the hardware it support in a way my prototype understand.
10151 This allow those publishing packages in an APT source outside the
10152 Debian archive as well as those backporting packages to make sure the
10153 hardware mapping are included in the package meta information. I&#39;ve
10154 tested such header in the pymissile package, and its modalias mapping
10155 is working as it should with my prototype. It even made it to Ubuntu
10156 Raring.&lt;/p&gt;
10157
10158 &lt;p&gt;To test if it was possible to look up supported hardware using only
10159 the shell tools available in the Debian installer, I wrote a shell
10160 implementation of the lookup code. The idea is to create files for
10161 each modalias and let the shell do the matching. Please check out and
10162 try the
10163 &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;
10164 shell script. It run without any extra dependencies and fetch the
10165 hardware mappings from the Debian archive and the subversion
10166 repository where I currently work on my prototype.&lt;/p&gt;
10167
10168 &lt;p&gt;When I use it on a machine with a yubikey inserted, it suggest to
10169 install yubikey-personalization:&lt;/p&gt;
10170
10171 &lt;p&gt;&lt;blockquote&gt;
10172 % ./hw-support-lookup
10173 &lt;br&gt;yubikey-personalization
10174 &lt;br&gt;%
10175 &lt;/blockquote&gt;&lt;/p&gt;
10176
10177 &lt;p&gt;When I run it on my Thinkpad X40 with a PCMCIA/CardBus slot, it
10178 propose to install the pcmciautils package:&lt;/p&gt;
10179
10180 &lt;p&gt;&lt;blockquote&gt;
10181 % ./hw-support-lookup
10182 &lt;br&gt;pcmciautils
10183 &lt;br&gt;%
10184 &lt;/blockquote&gt;&lt;/p&gt;
10185
10186 &lt;p&gt;If you know of any hardware-package mapping that should be added to
10187 &lt;a href=&quot;http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/modaliases?view=co&quot;&gt;my
10188 database&lt;/a&gt;, please tell me about it.&lt;/p&gt;
10189
10190 &lt;p&gt;It could be possible to generate several of the mappings between
10191 packages and hardware. One source would be to look at packages with
10192 kernel modules, ie packages with *.ko files in /lib/modules/, and
10193 extract their modalias information. Another would be to look at
10194 packages with udev rules, ie packages with files in
10195 /lib/udev/rules.d/, and extract their vendor/model information to
10196 generate a modalias matching rule. I have not tested any of these to
10197 see if it work.&lt;/p&gt;
10198
10199 &lt;p&gt;If you want to help implementing a system to let us propose what
10200 packages to install when new hardware is plugged into a Debian
10201 machine, please send me an email or talk to me on
10202 &lt;a href=&quot;irc://irc.debian.org/%23debian-devel&quot;&gt;#debian-devel&lt;/a&gt;.&lt;/p&gt;
10203 </description>
10204 </item>
10205
10206 <item>
10207 <title>Modalias strings - a practical way to map &quot;stuff&quot; to hardware</title>
10208 <link>http://people.skolelinux.org/pere/blog/Modalias_strings___a_practical_way_to_map__stuff__to_hardware.html</link>
10209 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Modalias_strings___a_practical_way_to_map__stuff__to_hardware.html</guid>
10210 <pubDate>Mon, 14 Jan 2013 11:20:00 +0100</pubDate>
10211 <description>&lt;p&gt;While looking into how to look up Debian packages based on hardware
10212 information, to find the packages that support a given piece of
10213 hardware, I refreshed my memory regarding modalias values, and decided
10214 to document the details. Here are my findings so far, also available
10215 in
10216 &lt;a href=&quot;http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/&quot;&gt;the
10217 Debian Edu subversion repository&lt;/a&gt;:
10218
10219 &lt;p&gt;&lt;strong&gt;Modalias decoded&lt;/strong&gt;&lt;/p&gt;
10220
10221 &lt;p&gt;This document try to explain what the different types of modalias
10222 values stands for. It is in part based on information from
10223 &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;,
10224 &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;,
10225 &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
10226 &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;.
10227
10228 &lt;p&gt;The modalias entries for a given Linux machine can be found using
10229 this shell script:&lt;/p&gt;
10230
10231 &lt;pre&gt;
10232 find /sys -name modalias -print0 | xargs -0 cat | sort -u
10233 &lt;/pre&gt;
10234
10235 &lt;p&gt;The supported modalias globs for a given kernel module can be found
10236 using modinfo:&lt;/p&gt;
10237
10238 &lt;pre&gt;
10239 % /sbin/modinfo psmouse | grep alias:
10240 alias: serio:ty05pr*id*ex*
10241 alias: serio:ty01pr*id*ex*
10242 %
10243 &lt;/pre&gt;
10244
10245 &lt;p&gt;&lt;strong&gt;PCI subtype&lt;/strong&gt;&lt;/p&gt;
10246
10247 &lt;p&gt;A typical PCI entry can look like this. This is an Intel Host
10248 Bridge memory controller:&lt;/p&gt;
10249
10250 &lt;p&gt;&lt;blockquote&gt;
10251 pci:v00008086d00002770sv00001028sd000001ADbc06sc00i00
10252 &lt;/blockquote&gt;&lt;/p&gt;
10253
10254 &lt;p&gt;This represent these values:&lt;/p&gt;
10255
10256 &lt;pre&gt;
10257 v 00008086 (vendor)
10258 d 00002770 (device)
10259 sv 00001028 (subvendor)
10260 sd 000001AD (subdevice)
10261 bc 06 (bus class)
10262 sc 00 (bus subclass)
10263 i 00 (interface)
10264 &lt;/pre&gt;
10265
10266 &lt;p&gt;The vendor/device values are the same values outputted from &#39;lspci
10267 -n&#39; as 8086:2770. The bus class/subclass is also shown by lspci as
10268 0600. The 0600 class is a host bridge. Other useful bus values are
10269 0300 (VGA compatible card) and 0200 (Ethernet controller).&lt;/p&gt;
10270
10271 &lt;p&gt;Not sure how to figure out the interface value, nor what it
10272 means.&lt;/p&gt;
10273
10274 &lt;p&gt;&lt;strong&gt;USB subtype&lt;/strong&gt;&lt;/p&gt;
10275
10276 &lt;p&gt;Some typical USB entries can look like this. This is an internal
10277 USB hub in a laptop:&lt;/p&gt;
10278
10279 &lt;p&gt;&lt;blockquote&gt;
10280 usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00
10281 &lt;/blockquote&gt;&lt;/p&gt;
10282
10283 &lt;p&gt;Here is the values included in this alias:&lt;/p&gt;
10284
10285 &lt;pre&gt;
10286 v 1D6B (device vendor)
10287 p 0001 (device product)
10288 d 0206 (bcddevice)
10289 dc 09 (device class)
10290 dsc 00 (device subclass)
10291 dp 00 (device protocol)
10292 ic 09 (interface class)
10293 isc 00 (interface subclass)
10294 ip 00 (interface protocol)
10295 &lt;/pre&gt;
10296
10297 &lt;p&gt;The 0900 device class/subclass means hub. Some times the relevant
10298 class is in the interface class section. For a simple USB web camera,
10299 these alias entries show up:&lt;/p&gt;
10300
10301 &lt;p&gt;&lt;blockquote&gt;
10302 usb:v0AC8p3420d5000dcEFdsc02dp01ic01isc01ip00
10303 &lt;br&gt;usb:v0AC8p3420d5000dcEFdsc02dp01ic01isc02ip00
10304 &lt;br&gt;usb:v0AC8p3420d5000dcEFdsc02dp01ic0Eisc01ip00
10305 &lt;br&gt;usb:v0AC8p3420d5000dcEFdsc02dp01ic0Eisc02ip00
10306 &lt;/blockquote&gt;&lt;/p&gt;
10307
10308 &lt;p&gt;Interface class 0E01 is video control, 0E02 is video streaming (aka
10309 camera), 0101 is audio control device and 0102 is audio streaming (aka
10310 microphone). Thus this is a camera with microphone included.&lt;/p&gt;
10311
10312 &lt;p&gt;&lt;strong&gt;ACPI subtype&lt;/strong&gt;&lt;/p&gt;
10313
10314 &lt;p&gt;The ACPI type is used for several non-PCI/USB stuff. This is an IR
10315 receiver in a Thinkpad X40:&lt;/p&gt;
10316
10317 &lt;p&gt;&lt;blockquote&gt;
10318 acpi:IBM0071:PNP0511:
10319 &lt;/blockquote&gt;&lt;/p&gt;
10320
10321 &lt;p&gt;The values between the colons are IDs.&lt;/p&gt;
10322
10323 &lt;p&gt;&lt;strong&gt;DMI subtype&lt;/strong&gt;&lt;/p&gt;
10324
10325 &lt;p&gt;The DMI table contain lots of information about the computer case
10326 and model. This is an entry for a IBM Thinkpad X40, fetched from
10327 /sys/devices/virtual/dmi/id/modalias:&lt;/p&gt;
10328
10329 &lt;p&gt;&lt;blockquote&gt;
10330 dmi:bvnIBM:bvr1UETB6WW(1.66):bd06/15/2005:svnIBM:pn2371H4G:pvrThinkPadX40:rvnIBM:rn2371H4G:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
10331 &lt;/blockquote&gt;&lt;/p&gt;
10332
10333 &lt;p&gt;The values present are&lt;/p&gt;
10334
10335 &lt;pre&gt;
10336 bvn IBM (BIOS vendor)
10337 bvr 1UETB6WW(1.66) (BIOS version)
10338 bd 06/15/2005 (BIOS date)
10339 svn IBM (system vendor)
10340 pn 2371H4G (product name)
10341 pvr ThinkPadX40 (product version)
10342 rvn IBM (board vendor)
10343 rn 2371H4G (board name)
10344 rvr NotAvailable (board version)
10345 cvn IBM (chassis vendor)
10346 ct 10 (chassis type)
10347 cvr NotAvailable (chassis version)
10348 &lt;/pre&gt;
10349
10350 &lt;p&gt;The chassis type 10 is Notebook. Other interesting values can be
10351 found in the dmidecode source:&lt;/p&gt;
10352
10353 &lt;pre&gt;
10354 3 Desktop
10355 4 Low Profile Desktop
10356 5 Pizza Box
10357 6 Mini Tower
10358 7 Tower
10359 8 Portable
10360 9 Laptop
10361 10 Notebook
10362 11 Hand Held
10363 12 Docking Station
10364 13 All In One
10365 14 Sub Notebook
10366 15 Space-saving
10367 16 Lunch Box
10368 17 Main Server Chassis
10369 18 Expansion Chassis
10370 19 Sub Chassis
10371 20 Bus Expansion Chassis
10372 21 Peripheral Chassis
10373 22 RAID Chassis
10374 23 Rack Mount Chassis
10375 24 Sealed-case PC
10376 25 Multi-system
10377 26 CompactPCI
10378 27 AdvancedTCA
10379 28 Blade
10380 29 Blade Enclosing
10381 &lt;/pre&gt;
10382
10383 &lt;p&gt;The chassis type values are not always accurately set in the DMI
10384 table. For example my home server is a tower, but the DMI modalias
10385 claim it is a desktop.&lt;/p&gt;
10386
10387 &lt;p&gt;&lt;strong&gt;SerIO subtype&lt;/strong&gt;&lt;/p&gt;
10388
10389 &lt;p&gt;This type is used for PS/2 mouse plugs. One example is from my
10390 test machine:&lt;/p&gt;
10391
10392 &lt;p&gt;&lt;blockquote&gt;
10393 serio:ty01pr00id00ex00
10394 &lt;/blockquote&gt;&lt;/p&gt;
10395
10396 &lt;p&gt;The values present are&lt;/p&gt;
10397
10398 &lt;pre&gt;
10399 ty 01 (type)
10400 pr 00 (prototype)
10401 id 00 (id)
10402 ex 00 (extra)
10403 &lt;/pre&gt;
10404
10405 &lt;p&gt;This type is supported by the psmouse driver. I am not sure what
10406 the valid values are.&lt;/p&gt;
10407
10408 &lt;p&gt;&lt;strong&gt;Other subtypes&lt;/strong&gt;&lt;/p&gt;
10409
10410 &lt;p&gt;There are heaps of other modalias subtypes according to
10411 file2alias.c. There is the rest of the list from that source: amba,
10412 ap, bcma, ccw, css, eisa, hid, i2c, ieee1394, input, ipack, isapnp,
10413 mdio, of, parisc, pcmcia, platform, scsi, sdio, spi, ssb, vio, virtio,
10414 vmbus, x86cpu and zorro. I did not spend time documenting all of
10415 these, as they do not seem relevant for my intended use with mapping
10416 hardware to packages when new stuff is inserted during run time.&lt;/p&gt;
10417
10418 &lt;p&gt;&lt;strong&gt;Looking up kernel modules using modalias values&lt;/strong&gt;&lt;/p&gt;
10419
10420 &lt;p&gt;To check which kernel modules provide support for a given modalias,
10421 one can use the following shell script:&lt;/p&gt;
10422
10423 &lt;pre&gt;
10424 for id in $(find /sys -name modalias -print0 | xargs -0 cat | sort -u); do \
10425 echo &quot;$id&quot; ; \
10426 /sbin/modprobe --show-depends &quot;$id&quot;|sed &#39;s/^/ /&#39; ; \
10427 done
10428 &lt;/pre&gt;
10429
10430 &lt;p&gt;The output can look like this (only the first few entries as the
10431 list is very long on my test machine):&lt;/p&gt;
10432
10433 &lt;pre&gt;
10434 acpi:ACPI0003:
10435 insmod /lib/modules/2.6.32-5-686/kernel/drivers/acpi/ac.ko
10436 acpi:device:
10437 FATAL: Module acpi:device: not found.
10438 acpi:IBM0068:
10439 insmod /lib/modules/2.6.32-5-686/kernel/drivers/char/nvram.ko
10440 insmod /lib/modules/2.6.32-5-686/kernel/drivers/leds/led-class.ko
10441 insmod /lib/modules/2.6.32-5-686/kernel/net/rfkill/rfkill.ko
10442 insmod /lib/modules/2.6.32-5-686/kernel/drivers/platform/x86/thinkpad_acpi.ko
10443 acpi:IBM0071:PNP0511:
10444 insmod /lib/modules/2.6.32-5-686/kernel/lib/crc-ccitt.ko
10445 insmod /lib/modules/2.6.32-5-686/kernel/net/irda/irda.ko
10446 insmod /lib/modules/2.6.32-5-686/kernel/drivers/net/irda/nsc-ircc.ko
10447 [...]
10448 &lt;/pre&gt;
10449
10450 &lt;p&gt;If you want to help implementing a system to let us propose what
10451 packages to install when new hardware is plugged into a Debian
10452 machine, please send me an email or talk to me on
10453 &lt;a href=&quot;irc://irc.debian.org/%23debian-devel&quot;&gt;#debian-devel&lt;/a&gt;.&lt;/p&gt;
10454
10455 &lt;p&gt;&lt;strong&gt;Update 2013-01-15:&lt;/strong&gt; Rewrite &quot;cat $(find ...)&quot; to
10456 &quot;find ... -print0 | xargs -0 cat&quot; to make sure it handle directories
10457 in /sys/ with space in them.&lt;/p&gt;
10458 </description>
10459 </item>
10460
10461 <item>
10462 <title>Moved the pymissile Debian packaging to collab-maint</title>
10463 <link>http://people.skolelinux.org/pere/blog/Moved_the_pymissile_Debian_packaging_to_collab_maint.html</link>
10464 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Moved_the_pymissile_Debian_packaging_to_collab_maint.html</guid>
10465 <pubDate>Thu, 10 Jan 2013 20:40:00 +0100</pubDate>
10466 <description>&lt;p&gt;As part of my investigation on how to improve the support in Debian
10467 for hardware dongles, I dug up my old Mark and Spencer USB Rocket
10468 Launcher and updated the Debian package
10469 &lt;a href=&quot;http://packages.qa.debian.org/pymissile&quot;&gt;pymissile&lt;/a&gt; to make
10470 sure udev will fix the device permissions when it is plugged in. I
10471 also added a &quot;Modaliases&quot; header to test it in the Debian archive and
10472 hopefully make the package be proposed by jockey in Ubuntu when a user
10473 plug in his rocket launcher. In the process I moved the source to a
10474 git repository under collab-maint, to make it easier for any DD to
10475 contribute. &lt;a href=&quot;http://code.google.com/p/pymissile/&quot;&gt;Upstream&lt;/a&gt;
10476 is not very active, but the software still work for me even after five
10477 years of relative silence. The new git repository is not listed in
10478 the uploaded package yet, because I want to test the other changes a
10479 bit more before I upload the new version. If you want to check out
10480 the new version with a .desktop file included, visit the
10481 &lt;a href=&quot;http://anonscm.debian.org/gitweb/?p=collab-maint/pymissile.git&quot;&gt;gitweb
10482 view&lt;/a&gt; or use &quot;&lt;tt&gt;git clone
10483 git://anonscm.debian.org/collab-maint/pymissile.git&lt;/tt&gt;&quot;.&lt;/p&gt;
10484 </description>
10485 </item>
10486
10487 <item>
10488 <title>Lets make hardware dongles easier to use in Debian</title>
10489 <link>http://people.skolelinux.org/pere/blog/Lets_make_hardware_dongles_easier_to_use_in_Debian.html</link>
10490 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lets_make_hardware_dongles_easier_to_use_in_Debian.html</guid>
10491 <pubDate>Wed, 9 Jan 2013 15:40:00 +0100</pubDate>
10492 <description>&lt;p&gt;One thing that annoys me with Debian and Linux distributions in
10493 general, is that there is a great package management system with the
10494 ability to automatically install software packages by downloading them
10495 from the distribution mirrors, but no way to get it to automatically
10496 install the packages I need to use the hardware I plug into my
10497 machine. Even if the package to use it is easily available from the
10498 Linux distribution. When I plug in a LEGO Mindstorms NXT, it could
10499 suggest to automatically install the python-nxt, nbc and t2n packages
10500 I need to talk to it. When I plug in a Yubikey, it could propose the
10501 yubikey-personalization package. The information required to do this
10502 is available, but no-one have pulled all the pieces together.&lt;/p&gt;
10503
10504 &lt;p&gt;Some years ago, I proposed to
10505 &lt;a href=&quot;http://lists.debian.org/debian-devel/2010/05/msg01206.html&quot;&gt;use
10506 the discover subsystem to implement this&lt;/a&gt;. The idea is fairly
10507 simple:
10508
10509 &lt;ul&gt;
10510
10511 &lt;li&gt;Add a desktop entry in /usr/share/autostart/ pointing to a program
10512 starting when a user log in.&lt;/li&gt;
10513
10514 &lt;li&gt;Set this program up to listen for kernel events emitted when new
10515 hardware is inserted into the computer.&lt;/li&gt;
10516
10517 &lt;li&gt;When new hardware is inserted, look up the hardware ID in a
10518 database mapping to packages, and take note of any non-installed
10519 packages.&lt;/li&gt;
10520
10521 &lt;li&gt;Show a message to the user proposing to install the discovered
10522 package, and make it easy to install it.&lt;/li&gt;
10523
10524 &lt;/ul&gt;
10525
10526 &lt;p&gt;I am not sure what the best way to implement this is, but my
10527 initial idea was to use dbus events to discover new hardware, the
10528 discover database to find packages and
10529 &lt;a href=&quot;http://www.packagekit.org/&quot;&gt;PackageKit&lt;/a&gt; to install
10530 packages.&lt;/p&gt;
10531
10532 &lt;p&gt;Yesterday, I found time to try to implement this idea, and the
10533 draft package is now checked into
10534 &lt;a href=&quot;http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/&quot;&gt;the
10535 Debian Edu subversion repository&lt;/a&gt;. In the process, I updated the
10536 &lt;a href=&quot;http://packages.qa.debian.org/d/discover-data.html&quot;&gt;discover-data&lt;/a&gt;
10537 package to map the USB ids of LEGO Mindstorms and Yubikey devices to
10538 the relevant packages in Debian, and uploaded a new version
10539 2.2013.01.09 to unstable. I also discovered that the current
10540 &lt;a href=&quot;http://packages.qa.debian.org/d/discover.html&quot;&gt;discover&lt;/a&gt;
10541 package in Debian no longer discovered any USB devices, because
10542 /proc/bus/usb/devices is no longer present. I ported it to use
10543 libusb as a fall back option to get it working. The fixed package
10544 version 2.1.2-6 is now in experimental (didn&#39;t upload it to unstable
10545 because of the freeze).&lt;/p&gt;
10546
10547 &lt;p&gt;With this prototype in place, I can insert my Yubikey, and get this
10548 desktop notification to show up (only once, the first time it is
10549 inserted):&lt;/p&gt;
10550
10551 &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;
10552
10553 &lt;p&gt;For this prototype to be really useful, some way to automatically
10554 install the proposed packages by pressing the &quot;Please install
10555 program(s)&quot; button should to be implemented.&lt;/p&gt;
10556
10557 &lt;p&gt;If this idea seem useful to you, and you want to help make it
10558 happen, please help me update the discover-data database with mappings
10559 from hardware to Debian packages. Check if &#39;discover-pkginstall -l&#39;
10560 list the package you would like to have installed when a given
10561 hardware device is inserted into your computer, and report bugs using
10562 reportbug if it isn&#39;t. Or, if you know of a better way to provide
10563 such mapping, please let me know.&lt;/p&gt;
10564
10565 &lt;p&gt;This prototype need more work, and there are several questions that
10566 should be considered before it is ready for production use. Is dbus
10567 the correct way to detect new hardware? At the moment I look for HAL
10568 dbus events on the system bus, because that is the events I could see
10569 on my Debian Squeeze KDE desktop. Are there better events to use?
10570 How should the user be notified? Is the desktop notification
10571 mechanism the best option, or should the background daemon raise a
10572 popup instead? How should packages be installed? When should they
10573 not be installed?&lt;/p&gt;
10574
10575 &lt;p&gt;If you want to help getting such feature implemented in Debian,
10576 please send me an email. :)&lt;/p&gt;
10577 </description>
10578 </item>
10579
10580 <item>
10581 <title>New IRC channel for LEGO designers using Debian</title>
10582 <link>http://people.skolelinux.org/pere/blog/New_IRC_channel_for_LEGO_designers_using_Debian.html</link>
10583 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/New_IRC_channel_for_LEGO_designers_using_Debian.html</guid>
10584 <pubDate>Wed, 2 Jan 2013 15:40:00 +0100</pubDate>
10585 <description>&lt;p&gt;During Christmas, I have worked a bit on the Debian support for
10586 &lt;a href=&quot;http://mindstorms.lego.com/en-us/Default.aspx&quot;&gt;LEGO Mindstorm
10587 NXT&lt;/a&gt;. My son and I have played a bit with my NXT set, and I
10588 discovered I had to build all the tools myself because none were
10589 already in Debian Squeeze. If Debian support for LEGO is something
10590 you care about, please join me on the IRC channel
10591 &lt;a href=&quot;irc://irc.debian.org/%23debian-lego&quot;&gt;#debian-lego&lt;/a&gt; (server
10592 irc.debian.org). There is a lot that could be done to improve the
10593 Debian support for LEGO designers. For example both CAD software
10594 and Mindstorm compilers are missing. :)&lt;/p&gt;
10595
10596 &lt;p&gt;Update 2012-01-03: A
10597 &lt;a href=&quot;http://wiki.debian.org/LegoDesigners&quot;&gt;project page&lt;/a&gt;
10598 including links to Lego related packages is now available.&lt;/p&gt;
10599 </description>
10600 </item>
10601
10602 <item>
10603 <title>A Christmas present for Skolelinux / Debian Edu</title>
10604 <link>http://people.skolelinux.org/pere/blog/A_Christmas_present_for_Skolelinux___Debian_Edu.html</link>
10605 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_Christmas_present_for_Skolelinux___Debian_Edu.html</guid>
10606 <pubDate>Fri, 28 Dec 2012 09:20:00 +0100</pubDate>
10607 <description>&lt;p&gt;I was happy to discover a few days ago that the
10608 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux / Debian Edu&lt;/a&gt;
10609 project also this year received a Christmas present from Another
10610 Agency in Trondheim. NOK 1000,- showed up on our donation account
10611 December 24th. I want to express our thanks for this very welcome
10612 present. As the Debian Edu / Skolelinux project is very short on
10613 funding these days, and thus lack the money to do regular developer
10614 gatherings, this donation was most welcome. One developer gathering
10615 cost around NOK 15&amp;nbsp;000,-, so we need quite a lot more to keep the
10616 development pace we want. Thus, I hope their example this year is
10617 followed by many others. :)&lt;/p&gt;
10618
10619 &lt;p&gt;The public list of donors can be found on
10620 &lt;a href=&quot;http://www.linuxiskolen.no/slxdebianlabs/donations.html&quot;&gt;the
10621 donation page&lt;/a&gt; for the project, which also contain instructions if
10622 you want to donate to the project.&lt;/p&gt;
10623 </description>
10624 </item>
10625
10626 <item>
10627 <title>How to backport bitcoin-qt version 0.7.2-2 to Debian Squeeze</title>
10628 <link>http://people.skolelinux.org/pere/blog/How_to_backport_bitcoin_qt_version_0_7_2_2_to_Debian_Squeeze.html</link>
10629 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_backport_bitcoin_qt_version_0_7_2_2_to_Debian_Squeeze.html</guid>
10630 <pubDate>Tue, 25 Dec 2012 20:50:00 +0100</pubDate>
10631 <description>&lt;p&gt;Let me start by wishing you all marry Christmas and a happy new
10632 year! I hope next year will prove to be a good year.&lt;/p&gt;
10633
10634 &lt;p&gt;&lt;a href=&quot;http://www.bitcoin.org/&quot;&gt;Bitcoin&lt;/a&gt;, the digital
10635 decentralised &quot;currency&quot; that allow people to transfer bitcoins
10636 between each other with minimal overhead, is a very interesting
10637 experiment. And as I wrote a few days ago, the bitcoin situation in
10638 &lt;a href=&quot;http://www.debian.org/&quot;&gt;Debian&lt;/a&gt; is about to improve a bit.
10639 The &lt;a href=&quot;http://packages.qa.debian.org/bitcoin&quot;&gt;new debian source
10640 package&lt;/a&gt; (version 0.7.2-2) was uploaded yesterday, and is waiting
10641 in &lt;a href=&quot;http://ftp-master.debian.org/new.html&quot;&gt;the NEW queue&lt;/A&gt;
10642 for one of the ftpmasters to approve the new bitcoin-qt package
10643 name.&lt;/p&gt;
10644
10645 &lt;p&gt;And thanks to the great work of Jonas and the rest of the bitcoin
10646 team in Debian, you can easily test the package in Debian Squeeze
10647 using the following steps to get a set of working packages:&lt;/p&gt;
10648
10649 &lt;blockquote&gt;&lt;pre&gt;
10650 git clone git://git.debian.org/git/collab-maint/bitcoin
10651 cd bitcoin
10652 DEB_MAINTAINER_MODE=1 DEB_BUILD_OPTIONS=noupnp fakeroot debian/rules clean
10653 DEB_BUILD_OPTIONS=noupnp git-buildpackage --git-ignore-new
10654 &lt;/pre&gt;&lt;/blockquote&gt;
10655
10656 &lt;p&gt;You might have to install some build dependencies as well. The
10657 list of commands should give you two packages, bitcoind and
10658 bitcoin-qt, ready for use in a Squeeze environment. Note that the
10659 client will download the complete set of bitcoin &quot;blocks&quot;, which need
10660 around 5.6 GiB of data on my machine at the moment. Make sure your
10661 ~/.bitcoin/ directory have lots of spare room if you want to download
10662 all the blocks. The client will warn if the disk is getting full, so
10663 there is not really a problem if you got too little room, but you will
10664 not be able to get all the features out of the client.&lt;/p&gt;
10665
10666 &lt;p&gt;As usual, if you use bitcoin and want to show your support of my
10667 activities, please send Bitcoin donations to my address
10668 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&amp;label=PetterReinholdtsenBlog&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
10669 </description>
10670 </item>
10671
10672 <item>
10673 <title>A word on bitcoin support in Debian</title>
10674 <link>http://people.skolelinux.org/pere/blog/A_word_on_bitcoin_support_in_Debian.html</link>
10675 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_word_on_bitcoin_support_in_Debian.html</guid>
10676 <pubDate>Fri, 21 Dec 2012 23:59:00 +0100</pubDate>
10677 <description>&lt;p&gt;It has been a while since I wrote about
10678 &lt;a href=&quot;http://www.bitcoin.org/&quot;&gt;bitcoin&lt;/a&gt;, the decentralised
10679 peer-to-peer based crypto-currency, and the reason is simply that I
10680 have been busy elsewhere. But two days ago, I started looking at the
10681 state of &lt;a href=&quot;http://packages.qa.debian.org/bitcoin&quot;&gt;bitcoin in
10682 Debian&lt;/a&gt; again to try to recover my old bitcoin wallet. The package
10683 is now maintained by a
10684 &lt;a href=&quot;https://alioth.debian.org/projects/pkg-bitcoin/&quot;&gt;team of
10685 people&lt;/a&gt;, and the grunt work had already been done by this team. We
10686 owe a huge thank you to all these team members. :)
10687 But I was sad to discover that the bitcoin client is missing in
10688 Wheezy. It is only available in Sid (and an outdated client from
10689 backports). The client had several RC bugs registered in BTS blocking
10690 it from entering testing. To try to help the team and improve the
10691 situation, I spent some time providing patches and triaging the bug
10692 reports. I also had a look at the bitcoin package available from Matt
10693 Corallo in a
10694 &lt;a href=&quot;https://launchpad.net/~bitcoin/+archive/bitcoin&quot;&gt;PPA for
10695 Ubuntu&lt;/a&gt;, and moved the useful pieces from that version into the
10696 Debian package.&lt;/p&gt;
10697
10698 &lt;p&gt;After checking with the main package maintainer Jonas Smedegaard on
10699 IRC, I pushed several patches into the collab-maint git repository to
10700 improve the package. It now contains fixes for the RC issues (not from
10701 me, but fixed by Scott Howard), build rules for a Qt GUI client
10702 package, konqueror support for the bitcoin: URI and bash completion
10703 setup. As I work on Debian Squeeze, I also created
10704 &lt;a href=&quot;http://lists.alioth.debian.org/pipermail/pkg-bitcoin-devel/Week-of-Mon-20121217/000041.html&quot;&gt;a
10705 patch to backport&lt;/a&gt; the latest version. Jonas is going to look at
10706 it and try to integrate it into the git repository before uploading a
10707 new version to unstable.
10708
10709 &lt;p&gt;I would very much like bitcoin to succeed, to get rid of the
10710 centralized control currently exercised in the monetary system. I
10711 find it completely unacceptable that the USA government is collecting
10712 transaction data for almost all international money transfers (most are done in USD and transaction logs shipped to the spooks), and
10713 that the major credit card companies can block legal money
10714 transactions to Wikileaks. But for bitcoin to succeed, more people
10715 need to use bitcoins, and more people need to accept bitcoins when
10716 they sell products and services. Improving the bitcoin support in
10717 Debian is a small step in the right direction, but not enough.
10718 Unfortunately the user experience when browsing the web and wanting to
10719 pay with bitcoin is still not very good. The bitcoin: URI is a step
10720 in the right direction, but need to work in most or every browser in
10721 use. Also the bitcoin-qt client is too heavy to fire up to do a
10722 quick transaction. I believe there are other clients available, but
10723 have not tested them.&lt;/p&gt;
10724
10725 &lt;p&gt;My
10726 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Now_accepting_bitcoins___anonymous_and_distributed_p2p_crypto_money.html&quot;&gt;experiment
10727 with bitcoins&lt;/a&gt; showed that at least some of my readers use bitcoin.
10728 I received 20.15 BTC so far on the address I provided in my blog two
10729 years ago, as can be
10730 &lt;a href=&quot;http://blockexplorer.com/address/15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&quot;&gt;seen
10731 on the blockexplorer service&lt;/a&gt;. Thank you everyone for your
10732 donation. The blockexplorer service demonstrates quite well that
10733 bitcoin is not quite anonymous and untracked. :) I wonder if the
10734 number of users have gone up since then. If you use bitcoin and want
10735 to show your support of my activity, please send Bitcoin donations to
10736 the same address as last time,
10737 &lt;b&gt;&lt;a href=&quot;bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&amp;label=PetterReinholdtsenBlog&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;&lt;/b&gt;.&lt;/p&gt;
10738 </description>
10739 </item>
10740
10741 <item>
10742 <title>Ledger - double-entry accounting using text based storage format</title>
10743 <link>http://people.skolelinux.org/pere/blog/Ledger___double_entry_accounting_using_text_based_storage_format.html</link>
10744 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Ledger___double_entry_accounting_using_text_based_storage_format.html</guid>
10745 <pubDate>Tue, 18 Dec 2012 23:30:00 +0100</pubDate>
10746 <description>&lt;p&gt;A few days ago I came across
10747 &lt;a href=&quot;http://joeyh.name/blog/entry/hledger/&quot;&gt;a blog post from Joey
10748 Hess&lt;/a&gt; describing &lt;a href=&quot;http://ledger-cli.org/&quot;&gt;ledger&lt;/a&gt; and
10749 hledger, a text based system for double-entry accounting. I found it
10750 interesting, as I am involved with several organizations where
10751 accounting is an issue, and I have not really become too friendly with
10752 the different web based systems we use. I find it hard to find what I
10753 look for in the menus and even harder try to get sensible data out of
10754 the systems. Ledger seem different. The accounting data is kept in
10755 text files that can be stored in a version control system, and there
10756
10757 are at least &lt;a href=&quot;https://github.com/ledger/ledger/wiki/Ports&quot;&gt;five
10758 different implementations&lt;/a&gt; able to read the format. An example
10759 entry look like this, and is simple enough that it will be trivial to
10760 generate entries based on CVS files fetched from the bank:&lt;/p&gt;
10761
10762 &lt;blockquote&gt;&lt;pre&gt;
10763 2004-05-27 Book Store
10764 Expenses:Books $20.00
10765 Liabilities:Visa
10766 &lt;/pre&gt;&lt;/blockquote&gt;
10767
10768 &lt;p&gt;The concept seemed interesting enough for me to check it out and
10769 look for others using it. I found blog posts from
10770 &lt;a href=&quot;http://blog.spang.cc/posts/hledger_rocks_my_world/&quot;&gt;Christine
10771 Spang&lt;/a&gt;,
10772 &lt;a href=&quot;http://bugsplat.info/2010-05-23-keeping-finances-with-ledger.html&quot;&gt;Pete
10773 Keen&lt;/a&gt;,
10774 &lt;a href=&quot;http://blog.andrewcantino.com/blog/2010/11/06/command-line-accounting-with-ledger-and-reckon/&quot;&gt;Andrew
10775 Cantino&lt;/a&gt; and
10776 &lt;a href=&quot;http://blog.iphoting.com/blog/2012/11/29/command-line-double-entry-accounting/&quot;&gt;Ronald
10777 Ip&lt;/a&gt; describing how they use it, as well as a post from
10778 &lt;a href=&quot;https://groups.google.com/forum/?fromgroups=#!topic/ledger-cli/r0oWjwbQ9Bo&quot;&gt;Bradley
10779 M. Kuhn&lt;/a&gt; at the Software Freedom Conservancy. All seemed like good
10780 recommendations fitting my need.&lt;/p&gt;
10781
10782 &lt;p&gt;The &lt;a href=&quot;http://packages.qa.debian.org/l/ledger.html&quot;&gt;ledger&lt;/a&gt;
10783 package is available in Debian Squeeze, while the
10784 &lt;a href=&quot;http://packages.qa.debian.org/h/haskell-hledger.html&quot;&gt;hledger&lt;/a&gt;
10785 package only is available in Debian Sid. As I use Squeeze, ledger
10786 seemed the best choice to get started.&lt;/p&gt;
10787
10788 &lt;p&gt;To get some real data to test on, I wrote a
10789 &lt;a href=&quot;http://www.nuug.no/tools/lodo2ledger&quot;&gt;web scraper&lt;/a&gt; for
10790 &lt;a href=&quot;http://www.lodo.no/&quot;&gt;LODO&lt;/a&gt;, the accounting system used by
10791 the &lt;a href=&quot;http://www.nuug.no/&quot;&gt;NUUG&lt;/a&gt; association, and started to
10792 play with the data set. I&#39;m not really deeply into accounting, but I
10793 am able to get a simple balance and accounting status for example
10794 using the &quot;&lt;tt&gt;ledger balance&lt;/tt&gt;&quot; command. But I will have to
10795 gather more experience before I know if the ledger way is a good fit
10796 for the organisations I am involved in.&lt;/p&gt;
10797 </description>
10798 </item>
10799
10800 <item>
10801 <title>Scripting the Cerebrum/bofhd user administration system using XML-RPC</title>
10802 <link>http://people.skolelinux.org/pere/blog/Scripting_the_Cerebrum_bofhd_user_administration_system_using_XML_RPC.html</link>
10803 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Scripting_the_Cerebrum_bofhd_user_administration_system_using_XML_RPC.html</guid>
10804 <pubDate>Thu, 6 Dec 2012 10:30:00 +0100</pubDate>
10805 <description>&lt;p&gt;Where I work at the &lt;a href=&quot;http://www.uio.no/&quot;&gt;University of
10806 Oslo&lt;/a&gt;, we use the
10807 &lt;a href=&quot;http://sourceforge.net/projects/cerebrum/&quot;&gt;Cerebrum user
10808 administration system&lt;/a&gt; to maintain users, groups, DNS, DHCP, etc.
10809 I&#39;ve known since the system was written that the server is providing
10810 an &lt;a href=&quot;http://en.wikipedia.org/wiki/XML-RPC&quot;&gt;XML-RPC&lt;/a&gt; API, but
10811 I have never spent time to try to figure out how to use it, as we
10812 always use the bofh command line client at work. Until today. I want
10813 to script the updating of DNS and DHCP to make it easier to set up
10814 virtual machines. Here are a few notes on how to use it with
10815 Python.&lt;/p&gt;
10816
10817 &lt;p&gt;I started by looking at the source of the Java
10818 &lt;a href=&quot;http://cerebrum.svn.sourceforge.net/viewvc/cerebrum/trunk/cerebrum/clients/jbofh/&quot;&gt;bofh
10819 client&lt;/a&gt;, to figure out how it connected to the API server. I also
10820 googled for python examples on how to use XML-RPC, and found
10821 &lt;a href=&quot;http://tldp.org/HOWTO/XML-RPC-HOWTO/xmlrpc-howto-python.html&quot;&gt;a
10822 simple example in&lt;/a&gt; the XML-RPC howto.&lt;/p&gt;
10823
10824 &lt;p&gt;This simple example code show how to connect, get the list of
10825 commands (as a JSON dump), and how to get the information about the
10826 user currently logged in:&lt;/p&gt;
10827
10828 &lt;blockquote&gt;&lt;pre&gt;
10829 #!/usr/bin/env python
10830 import getpass
10831 import xmlrpclib
10832 server_url = &#39;https://cerebrum-uio.uio.no:8000&#39;;
10833 username = getpass.getuser()
10834 password = getpass.getpass()
10835 server = xmlrpclib.Server(server_url);
10836 #print server.get_commands(sessionid)
10837 sessionid = server.login(username, password)
10838 print server.run_command(sessionid, &quot;user_info&quot;, username)
10839 result = server.logout(sessionid)
10840 print result
10841 &lt;/pre&gt;&lt;/blockquote&gt;
10842
10843 &lt;p&gt;Armed with this knowledge I can now move forward and script the DNS
10844 and DHCP updates I wanted to do.&lt;/p&gt;
10845 </description>
10846 </item>
10847
10848 <item>
10849 <title>Why isn&#39;t the value of copyright taxed?</title>
10850 <link>http://people.skolelinux.org/pere/blog/Why_isn_t_the_value_of_copyright_taxed_.html</link>
10851 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Why_isn_t_the_value_of_copyright_taxed_.html</guid>
10852 <pubDate>Sat, 17 Nov 2012 11:30:00 +0100</pubDate>
10853 <description>&lt;p&gt;While working on a
10854 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;Norwegian
10855 translation of the Free Culture by Lawrence Lessig&lt;/a&gt; (76% done),
10856 which cover the problems with todays copyright law and how it stifles
10857 creativity, one idea occurred to me. The idea is to get the tax
10858 office to help make more works enter the public domain and also help
10859 make it easier to clear rights for using copyrighted works.&lt;/p&gt;
10860
10861 &lt;p&gt;I mentioned this idea briefly during Yesterdays
10862 &lt;a href=&quot;http://www.farmann.no/2012/11/14/john-perry-barlow-in-oslo-friday-nov-16
10863 -15-30-19-00/&quot;&gt;presentation
10864 by John Perry Barlow&lt;/a&gt;, and concluded that it was best to put it
10865 in writing for a wider audience. The idea is not really based on the
10866 argument that copyrighted works are &quot;intellectual property&quot;, as the
10867 core requirement is that copyrighted work have value for the copyright
10868 holder and the tax office like to collect their share from any value
10869 controlled by the citizens in a country. I&#39;m sharing the idea here to
10870 let others consider it and perhaps shoot it down with a fresh set of
10871 arguments.&lt;/p&gt;
10872
10873 &lt;p&gt;Most valuables are taxed by the government. At least here in
10874 Norway, the amount of money you have, the value of our land property,
10875 the value of your house, the value of your car, the value of our
10876 stocks and other valuables are all added together. If the tax value
10877 of these values exceed your debt, you have to pay the tax office some
10878 taxes for these values. And copyrighted work have value. It have
10879 value for the rights holder, who can earn money selling access to the
10880 work. But it is not included in the tax calculations? Why not?&lt;/p&gt;
10881
10882 &lt;p&gt;If the government want to tax copyrighted works, it would want to
10883 maintain a database of all the copyrighted works and who are the
10884 rights holders for a given works, to be able to associate the works
10885 value to the right citizen or company for tax purposes. If such
10886 database exist, it will become a lot easier to find out who to talk to
10887 for clearing permissions to use a copyrighted work, which is a very
10888 hard operation with todays copyright law. To ensure that copyright
10889 holders keep the database up-to-date, it would have to become a
10890 requirement to be able to collect money for granting access to
10891 copyrighted works that the work is listed in the database with the
10892 correct right holder.&lt;/p&gt;
10893
10894 &lt;p&gt;If copyright causes copyright holders to have to pay more taxes,
10895 they will have a small incentive to &quot;disown&quot; their copyright, and let
10896 the work enter the public domain. For works with several right holders
10897 one of the right holders could state (and get it registered in the
10898 database) that she do not need to be consulted when clearing rights to
10899 use the work in question and thus will not get any income from that
10900 work. Stating this would have to be impossible to revert and stop the
10901 tax office from adding the value of that work to the given citizens
10902 tax calculation. I assume the copyright law would stay the same,
10903 allowing creators to pick a license of their choosing, and also
10904 allowing them to put their work directly in the public domain. The
10905 existence of such database will make it even easier to clear rights,
10906 and if the right holders listed in the database is taxed, this system
10907 would increase the amount of works that enter the public domain.&lt;/p&gt;
10908
10909 &lt;p&gt;The effect would be that the tax office help to make it easier to
10910 get rights to use the works that have not yet entered the public
10911 domain and help to get more work into the public domain and .&lt;/p&gt;
10912
10913 &lt;p&gt;Why have such taxing not happened yet? I am sure the tax office
10914 would like to tax copyrighted work values if they could.&lt;/p&gt;
10915 </description>
10916 </item>
10917
10918 <item>
10919 <title>Debian Edu interview: Angela Fuß</title>
10920 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Angela_Fu_.html</link>
10921 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Angela_Fu_.html</guid>
10922 <pubDate>Wed, 14 Nov 2012 21:30:00 +0100</pubDate>
10923 <description>&lt;p&gt;Here is another interview with one of the people in the &lt;a
10924 href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
10925 community. I am running short on people willing to be interviewed, so
10926 if you know about someone I should interview, Please send me an email.
10927 After asking for many months, I finally managed to lure another one of
10928 the people behind the German
10929 &quot;&lt;a href=&quot;http://wiki.it-zukunft-schule.de/&quot;&gt;IT-Zukunft Schule&lt;/a&gt;&quot;
10930 project out from maternity leave to conduct an interview. Give a warm
10931 welcome to Angela Fuß. :)&lt;/p&gt;
10932
10933 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
10934
10935 &lt;p&gt;I am a 39-year-old woman living in the very north of Germany near
10936 Denmark. I live in a patchwork family with &quot;my man&quot; Mike Gabriel, my
10937 two daughters, Mikes daughter and Mikes and my rather newborn son.
10938
10939 &lt;p&gt;At the moment - because of our little baby - I am spending most of
10940 the day by being a caring and organising mom for all the kids.
10941 Besides that I am really involved into and occupied with several inner
10942 growth processes: New born souls always bring the whole familiar
10943 system into movement and that needs time and focus ;-). We are also
10944 in the middle of buying a house and moving to it.&lt;/p&gt;
10945
10946 &lt;p&gt;In 2013 I will work again in my job in a German foundation for
10947 nature conservation. I am doing public relation work there. Besides
10948 that - and that is the connection to Skolelinux / Debian Edu - I am
10949 working in our own school project &quot;IT-Zukunft Schule&quot; in North
10950 Germany. I am responsible for the quality assurance, the customer
10951 relationship management and the communication processes in the
10952 project.&lt;/p&gt;
10953
10954 &lt;p&gt;Since 2001 I constantly have been training myself in communication
10955 and leadership. Besides that I am a forester, a landscaping gardener
10956 and a yoga teacher.&lt;/p&gt;
10957
10958 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux / Debian Edu
10959 project?&lt;/strong&gt;&lt;/p&gt;
10960
10961 &lt;p&gt;I fell in love with Mike ;-).&lt;/p&gt;
10962
10963 &lt;p&gt;Very soon after getting to know him I was completely enrolled into
10964 Free Software. At this time Mike did IT-services for one newly
10965 founded school in Kiel. Other schools in Kiel needed concepts for
10966 their IT environment. Often when Mike came home from working at the
10967 newly founded school I found myself listening to his complaints about
10968 several points where the communication with the schools head or the
10969 teachers did not work. So we were clear that he would not work for
10970 one more school if we did not set up a structure for communication
10971 between him, the schools head, the teachers, the students and the
10972 parents.&lt;/p&gt;
10973
10974 &lt;p&gt;Together with our friend and hardware supplier Andreas Buchholz we
10975 started to get an overview of free software solutions suitable for
10976 schools. One day before Christmas 2010 Mike and I had a date with Kurt
10977 Gramlich in Gütersloh. As Kurt and I are really interested in building
10978 networks of people and in being in communication we dived into
10979 Skolelinux and brought it to the first grammar schools in Northern
10980 Germany.&lt;/p&gt;
10981
10982 &lt;p&gt;For information about our school project you can read
10983 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Mike_Gabriel.html&quot;&gt;the
10984 interview with Mike Gabriel&lt;/a&gt;.&lt;/p&gt;
10985
10986 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux / Debian
10987 Edu?&lt;/strong&gt;&lt;/p&gt;
10988
10989 &lt;p&gt;First I have to say: I cannot answer this question technically. My
10990 answer comes rather from a social point of view.&lt;/p&gt;
10991
10992 &lt;p&gt;The biggest advantage of Skolelinux / Debian Edu I see is the large
10993 and strong international community of Debian Developers in the
10994 background which is very alive and connected over mailinglists, blogs
10995 and meetings. My constant feeling for the Debian Community is: If
10996 something does not work they will somehow fix it. All is well
10997 ;-). This is of course a user experience. What I also get as a big
10998 advantage of Skolelinux / Debian Edu is that everybody who uses it and
10999 works with it can also contribute to it - that includes students,
11000 teachers, parents...&lt;/p&gt;
11001
11002 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux / Debian
11003 Edu?&lt;/strong&gt;&lt;/p&gt;
11004
11005 &lt;p&gt;I will answer this question relating to the internal structure of
11006 Skolelinux / Debian Edu.&lt;/p&gt;
11007
11008 &lt;p&gt;What I see as a major disadvantage is that there is a gap between
11009 the group of developers for Debian Edu and the people who make the
11010 marketing, that means the people that bring Skolelinux to the
11011 schools. There is a lack of communication between these two groups and
11012 I think that does not really work for Skolelinux / Debian Edu.&lt;/p&gt;
11013
11014 &lt;p&gt;Further I appreciate that Skolelinux / Debian Edu is known as a
11015 do-ocracy. Nevertheless I keep asking myself if at some points a
11016 democracy or some kind of hierarchical project structure would be good
11017 and helpful. I am also missing some kind of contact between the
11018 Skolelinux / Debian Edu communities in Europe or on an international
11019 level. I think it would be good if there was more sharing between the
11020 different countries using Skolelinux / Debian Edu.&lt;/p&gt;
11021
11022 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
11023
11024 &lt;p&gt;On my laptop I am still using an Ubuntu 10.04 with a Gnome Desktop
11025 on. As applications I use Openoffice.org, Gedit, Firefox, Pidgin,
11026 LaTeX and GnuCash. For mails I am using Horde. And I am really fond of
11027 my N900 running with Maemo.&lt;/p&gt;
11028
11029 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
11030 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
11031
11032 &lt;p&gt;I am really convinced that in our school project &quot;IT-Zukunft
11033 Schule&quot; we have developed (and keep developing) a great way to get
11034 schools to use Free Software. We have written a detailed concept for
11035 that so I cannot explain the whole thing here. But in a nutshell the
11036 strategy has three crucial pillars:&lt;/p&gt;
11037
11038 &lt;ul&gt;
11039
11040 &lt;li&gt;We really take time to get what sort of stories, questions and
11041 concerns the schools head and the teachers have about using different
11042 kinds of IT and we take time to enrol them into Free Software.&lt;/li&gt;
11043
11044 &lt;li&gt;Our solution for schools is never just technical. In the centre
11045 are always the people who are going to use the software. From the very
11046 beginning of the planning for a school, we tell the schools head that
11047 they are paying us not only for a technical solution for their school,
11048 they also pay us for leading all the communication processes
11049 needed. If they do not want that, we are not working with them because
11050 we cannot give a guarantee for the quality of our work then.&lt;/li&gt;
11051
11052 &lt;li&gt;Another focus lies in the training of teachers and students in
11053 co-administrating the IT-System at their school. They start getting in
11054 contact with the Skolelinux / Debian Edu community and they get the
11055 offer to become more and more independent from us.&lt;/li&gt;
11056
11057 &lt;/ul&gt;
11058 </description>
11059 </item>
11060
11061 <item>
11062 <title>The European Central Bank (ECB) take a look at bitcoin</title>
11063 <link>http://people.skolelinux.org/pere/blog/The_European_Central_Bank__ECB__take_a_look_at_bitcoin.html</link>
11064 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_European_Central_Bank__ECB__take_a_look_at_bitcoin.html</guid>
11065 <pubDate>Sun, 4 Nov 2012 08:30:00 +0100</pubDate>
11066 <description>&lt;p&gt;Slashdot just ran a story about the European Central Bank (ECB)
11067 &lt;a href=&quot;http://www.ecb.europa.eu/pub/pdf/other/virtualcurrencyschemes201210en.pdf&quot;&gt;releasing
11068 a report (PDF)&lt;/a&gt; about virtual currencies and
11069 &lt;a href=&quot;http://www.bitcoin.org/&quot;&gt;bitcoin&lt;/a&gt;. It is interesting to
11070 see how a member of the bitcoin community
11071 &lt;a href=&quot;http://blog.bitinstant.com/blog/2012/10/30/the-ecb-report-on-bitcoin-and-virtual-currencies.html&quot;&gt;receive
11072 the report&lt;/a&gt;. As for the future, I suspect the central banks and
11073 the governments will outlaw bitcoin if it gain any popularity, to avoid
11074 competition. My thoughts go to the
11075 &lt;a href=&quot;http://en.wikipedia.org/wiki/Wörgl&quot;&gt;Wörgl experiment&lt;/a&gt; with
11076 negative inflation on cash which was such a success that it was
11077 terminated by the Austrian National Bank in 1933. A successful
11078 alternative would be a threat to the current money system and gain
11079 powerful forces to work against it.&lt;/p&gt;
11080
11081 &lt;p&gt;While checking out the current status of bitcoin, I also discovered
11082 that the community already seem to have
11083 &lt;a href=&quot;http://www.theverge.com/2012/8/27/3271637/bitcoin-savings-trust-pyramid-scheme-shuts-down&quot;&gt;experienced
11084 its first pyramid game / Ponzi scheme&lt;/a&gt;. Not very surprising, given
11085 how members of &quot;small&quot; communities tend to trust each other. I guess
11086 enterprising crocks will try again and again, as they do anywhere
11087 wealth is available.&lt;/p&gt;
11088 </description>
11089 </item>
11090
11091 <item>
11092 <title>12 years of outages - summarised by Stuart Kendrick</title>
11093 <link>http://people.skolelinux.org/pere/blog/12_years_of_outages___summarised_by_Stuart_Kendrick.html</link>
11094 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/12_years_of_outages___summarised_by_Stuart_Kendrick.html</guid>
11095 <pubDate>Fri, 26 Oct 2012 14:20:00 +0200</pubDate>
11096 <description>&lt;p&gt;I work at the &lt;a href=&quot;http://www.uio.no/&quot;&gt;University of Oslo&lt;/a&gt;
11097 looking after the computers, mostly on the unix side, but in general
11098 all over the place. I am also a member (and currently leader) of
11099 &lt;a href=&quot;http://www.nuug.no/&quot;&gt;the NUUG association&lt;/a&gt;, which in turn
11100 make me a member of &lt;a href=&quot;http://www.usenix.org/&quot;&gt;USENIX&lt;/a&gt;. NUUG
11101 is an member organisation for us in Norway interested in free
11102 software, open standards and unix like operating systems, and USENIX
11103 is a US based member organisation with similar targets. And thanks to
11104 these memberships, I get all issues of the great USENIX magazine
11105 &lt;a href=&quot;https://www.usenix.org/publications/login&quot;&gt;;login:&lt;/a&gt; in the
11106 mail several times a year. The magazine is great, and I read most of
11107 it every time.&lt;/p&gt;
11108
11109 &lt;p&gt;In the last issue of the USENIX magazine ;login:, there is an
11110 article by &lt;a href=&quot;http://www.skendric.com/&quot;&gt;Stuart Kendrick&lt;/a&gt; from
11111 Fred Hutchinson Cancer Research Center titled
11112 &quot;&lt;a href=&quot;https://www.usenix.org/publications/login/october-2012-volume-37-number-5/what-takes-us-down&quot;&gt;What
11113 Takes Us Down&lt;/a&gt;&quot; (longer version also
11114 &lt;a href=&quot;http://www.skendric.com/problem/incident-analysis/2012-06-30/What-Takes-Us-Down.pdf&quot;&gt;available
11115 from his own site&lt;/a&gt;), where he report what he found when he
11116 processed the outage reports (both planned and unplanned) from the
11117 last twelve years and classified them according to cause, time of day,
11118 etc etc. The article is a good read to get some empirical data on
11119 what kind of problems affect a data centre, but what really inspired
11120 me was the kind of reporting they had put in place since 2000.&lt;p&gt;
11121
11122 &lt;p&gt;The centre set up a mailing list, and started to send fairly
11123 standardised messages to this list when a outage was planned or when
11124 it already occurred, to announce the plan and get feedback on the
11125 assumtions on scope and user impact. Here is the two example from the
11126 article: First the unplanned outage:
11127
11128 &lt;blockquote&gt;&lt;pre&gt;
11129 Subject: Exchange 2003 Cluster Issues
11130 Severity: Critical (Unplanned)
11131 Start: Monday, May 7, 2012, 11:58
11132 End: Monday, May 7, 2012, 12:38
11133 Duration: 40 minutes
11134 Scope: Exchange 2003
11135 Description: The HTTPS service on the Exchange cluster crashed, triggering
11136 a cluster failover.
11137
11138 User Impact: During this period, all Exchange users were unable to
11139 access e-mail. Zimbra users were unaffected.
11140 Technician: [xxx]
11141 &lt;/pre&gt;&lt;/blockquote&gt;
11142
11143 Next the planned outage:
11144
11145 &lt;blockquote&gt;&lt;pre&gt;
11146 Subject: H Building Switch Upgrades
11147 Severity: Major (Planned)
11148 Start: Saturday, June 16, 2012, 06:00
11149 End: Saturday, June 16, 2012, 16:00
11150 Duration: 10 hours
11151 Scope: H2 Transport
11152 Description: Currently, Catalyst 4006s provide 10/100 Ethernet to end-
11153 stations. We will replace these with newer Catalyst
11154 4510s.
11155 User Impact: All users on H2 will be isolated from the network during
11156 this work. Afterward, they will have gigabit
11157 connectivity.
11158 Technician: [xxx]
11159 &lt;/pre&gt;&lt;/blockquote&gt;
11160
11161 &lt;p&gt;He notes in his article that the date formats and other fields have
11162 been a bit too free form to make it easy to automatically process them
11163 into a database for further analysis, and I would have used ISO 8601
11164 dates myself to make it easier to process (in other words I would ask
11165 people to write &#39;2012-06-16 06:00 +0000&#39; instead of the start time
11166 format listed above). There are also other issues with the format
11167 that could be improved, read the article for the details.&lt;/p&gt;
11168
11169 &lt;p&gt;I find the idea of standardising outage messages seem to be such a
11170 good idea that I would like to get it implemented here at the
11171 university too. We do register
11172 &lt;a href=&quot;http://www.uio.no/tjenester/it/aktuelt/planlagte-tjenesteavbrudd/&quot;&gt;planned
11173 changes and outages in a calendar&lt;/a&gt;, and report the to a mailing
11174 list, but we do not do so in a structured format and there is not a
11175 report to the same location for unplanned outages. Perhaps something
11176 for other sites to consider too?&lt;/p&gt;
11177 </description>
11178 </item>
11179
11180 <item>
11181 <title>Amazon steal books from customer and throw out her out without any explanation</title>
11182 <link>http://people.skolelinux.org/pere/blog/Amazon_steal_books_from_customer_and_throw_out_her_out_without_any_explanation.html</link>
11183 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Amazon_steal_books_from_customer_and_throw_out_her_out_without_any_explanation.html</guid>
11184 <pubDate>Mon, 22 Oct 2012 20:30:00 +0200</pubDate>
11185 <description>&lt;p&gt;A blog post from Martin Bekkelund today tell the story of
11186 &lt;a href=&quot;http://www.bekkelund.net/2012/10/22/outlawed-by-amazon-drm/&quot;&gt;how
11187 Amazon erased the books from a customer&#39;s kindle, locked the account
11188 and refuse to tell the customer why&lt;/a&gt;. If a real book store did
11189 this to a customer, it would be called breaking into private property
11190 and theft. The story has spread around the net today. A bit more
11191 background information is available in Norwegian from
11192 &lt;a href=&quot;http://www.digi.no/904658/hun-ble-kastet-ut-av-amazon&quot;&gt;digi.no&lt;/a&gt;.
11193 It is no surprise that digital restriction mechanisms (DRM) are used
11194 this way, as it has been warned about such abuse since DRM was
11195 introduced many years back. And Amazon proved in 2009 that it was
11196 willing to
11197 &lt;a href=&quot;http://boingboing.net/2009/07/20/amazons-orwellian-de.html&quot;&gt;
11198 break into customers equipment and remove the books&lt;/a&gt; people had
11199 bought, when it removed the book 1984 by George Orwell from all the
11200 customers who had bought it. From the official comments, it even
11201 sounded like
11202 &lt;a href=&quot;http://www.nytimes.com/2009/07/18/technology/companies/18amazon.html&quot;&gt;Amazon
11203 would never do that again&lt;/a&gt;. And here we are, three years
11204 later.&lt;/p&gt;
11205
11206 &lt;p&gt;And thought this action is
11207 &lt;a href=&quot;http://www.itavisen.no/904648/forbrukerraadet-helt-haarreisende&quot;&gt;against
11208 Norwegian regulations and law&lt;/a&gt;, it is according to the terms of use
11209 as written by Amazon, and it is hard to hold Amazon accountable to
11210 Norwegian laws. It is just yet another example of unacceptable terms
11211 of use on the web, and how they are used to remove customer
11212 rights.&lt;/p&gt;
11213
11214 &lt;p&gt;Luckily for electronic books, there are alternatives without
11215 unacceptable terms. For example
11216 &lt;a href=&quot;http://www.gutenberg.org/&quot;&gt;Project Gutenberg&lt;/a&gt; (about 40,000
11217 books), &lt;a href=&quot;http://runeberg.org/&quot;&gt;Project Runenberg&lt;/a&gt; (1,652
11218 books) and &lt;a href=&quot;http://www.archive.org/details/texts&quot;&gt;The Internet
11219 Archive&lt;/a&gt; (3,641,797 books) have heaps of books without DRM, which
11220 can read by anyone and shared with anyone.&lt;/p&gt;
11221
11222 &lt;p&gt;Update 2012-10-23: This story broke in the morning on Monday. In
11223 the evening after the story had spread all across the Internet, Amazon
11224 restored the account of the user, as reported by
11225 &lt;a href=&quot;http://www.digi.no/904675/helomvending-fra-amazon&quot;&gt;digi.no&lt;/a&gt;
11226 and &lt;a href=&quot;http://nrk.no/kultur-og-underholdning/1.8368487&quot;&gt;NRK&lt;/a&gt;.
11227 Apparently public pressure work. The story from Martin have seen
11228 several twitter messages per minute the last 24 hours, which is quite
11229 a lot, and is still drawing a lot of attention. But even when the
11230 account is restored, the fundamental problem still exist. I recommend
11231 reading two opinions from
11232 &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
11233 Phipps&lt;/a&gt; and
11234 &lt;a href=&quot;http://blogs.computerworlduk.com/open-enterprise/2012/10/is-amazon-playing-fair/index.htm&quot;&gt;Glen
11235 Moody&lt;/a&gt; if you want to learn more about the fundamentals and more
11236 details about the original story.&lt;/p&gt;
11237 </description>
11238 </item>
11239
11240 <item>
11241 <title>The fight for freedom and privacy</title>
11242 <link>http://people.skolelinux.org/pere/blog/The_fight_for_freedom_and_privacy.html</link>
11243 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_fight_for_freedom_and_privacy.html</guid>
11244 <pubDate>Thu, 18 Oct 2012 10:50:00 +0200</pubDate>
11245 <description>&lt;p&gt;Civil liberties and privacy in the western world are going down the
11246 drain, and it is hard to fight against it. I try to do my best, but
11247 time is limited. I hope you do your best too. A few years ago I came
11248 across a marvellous drawing by
11249 &lt;a href=&quot;http://www.claybennett.com/about.html&quot;&gt;Clay Bennett&lt;/a&gt;
11250 visualising some of what is going on.
11251
11252 &lt;p&gt;&lt;a href=&quot;http://www.claybennett.com/pages/security_fence.html&quot;&gt;
11253 &lt;img src=&quot;http://www.claybennett.com/images/archivetoons/security_fence.jpg&quot;&gt;&lt;/a&gt;&lt;/p&gt;
11254
11255 &lt;blockquote&gt;
11256 «They who can give up essential liberty to obtain a little temporary
11257 safety, deserve neither liberty nor safety.» - Benjamin Franklin
11258 &lt;/blockquote&gt;
11259
11260 &lt;p&gt;Do you feel safe at the airport? I do not. Do you feel safe when
11261 you see a surveillance camera? I do not. Do you feel safe when you
11262 leave electronic traces of your behaviour and opinions? I do not. I
11263 just remember &lt;a href=&quot;http://en.wikipedia.org/wiki/Panopticon&quot;&gt;the
11264 Panopticon&lt;/a&gt;, and can not help to think that we are slowly
11265 transforming our society to a huge Panopticon on our own.&lt;/p&gt;
11266 </description>
11267 </item>
11268
11269 <item>
11270 <title>ColonHelp produser sue WordPress to silence critic</title>
11271 <link>http://people.skolelinux.org/pere/blog/ColonHelp_produser_sue_WordPress_to_silence_critic.html</link>
11272 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/ColonHelp_produser_sue_WordPress_to_silence_critic.html</guid>
11273 <pubDate>Fri, 12 Oct 2012 23:50:00 +0200</pubDate>
11274 <description>&lt;p&gt;Thanks to a blog post by
11275 &lt;a href=&quot;http://ramblingfoo.blogspot.no/2012/10/a-shitstorm-is-comming.html&quot;&gt;Eddy
11276 Petrișor&lt;/a&gt;, I became aware of yet another &quot;alternative medicine&quot;
11277 company using legal intimidation tactics to scare off critics.
11278 According to the originating blog post about the detox &quot;cure&quot;
11279 &lt;a href=&quot;http://insulaindoielii.wordpress.com/2012/10/11/colon-help-sues-wordpress/&quot;&gt;ColonHelp
11280 and its producers Zenyth Pharmaceuticals actions&lt;/a&gt;, the producer
11281 sues Wordpress to get rid of the critical information. To check if
11282 the story was for real, I contacted Automattic, the company behind
11283 wordpress.com, and they reply was &quot;We can confirm that Zenyth is
11284 seeking a court order against WordPress / Automattic. However, we
11285 don&#39;t believe the Terms of Service have been violated in this
11286 matter&quot;.&lt;/p&gt;
11287
11288 &lt;p&gt;The story seem to be simply that a blogger checked the scientific
11289 foundation for a popular health product in Rumania, ColonHelp, and
11290 reported that there was no reason at all to believe it improved the
11291 health of its users. This caused the company behind the product,
11292 Zenyth Pharmaceuticals, to use legal intimidation to try to silence
11293 the critic, instead of presenting its views and scientific foundation
11294 to argue its side.&lt;/p&gt;
11295
11296 &lt;p&gt;This is the usual story, and the Zenyth Pharmaceuticals company
11297 deserve everyone to know how it failed to act properly. Lets hope the
11298 &lt;a href=&quot;http://en.wikipedia.org/wiki/Streisand_effect&quot;&gt;Streisand
11299 effect&lt;/a&gt; can make it rethink its strategy.&lt;/p&gt;
11300
11301 &lt;p&gt;What is the harm, you might think. I suggest you take a look at
11302 &lt;a href=&quot;http://www.whatstheharm.net/detoxification.html&quot;&gt;a list of
11303 victims of detoxification&lt;/a&gt;.&lt;/p&gt;
11304 </description>
11305 </item>
11306
11307 <item>
11308 <title>Why is your local library collecting the &quot;wrong&quot; computer books?</title>
11309 <link>http://people.skolelinux.org/pere/blog/Why_is_your_local_library_collecting_the__wrong__computer_books_.html</link>
11310 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Why_is_your_local_library_collecting_the__wrong__computer_books_.html</guid>
11311 <pubDate>Wed, 3 Oct 2012 10:00:00 +0200</pubDate>
11312 <description>&lt;p&gt;I just read the blog post from Tim Retout
11313 &lt;a href=&quot;http://retout.co.uk/blog/2012/10/02/the-library-challenge&quot;&gt;about
11314 the computer science book collection available in his local
11315 library&lt;/a&gt;, and just wanted to share my comment on his theory about
11316 computer books becoming obsolete so soon. That is part of the reason
11317 why the selection is so sad in almost any local library (it is in mine
11318 too), but I believe the major contributing factor is that the people
11319 buying books to the library have no way to know a good and future
11320 computer classic from trash. And they need to know which one will
11321 become a classic in the future, as they would normally buy one of the
11322 recently published books.&lt;/p&gt;
11323
11324 &lt;p&gt;During my university years, I worked for a while at the university
11325 library, and even there the person in charge of buying computer
11326 related books (and in fact any natural science related book), did not
11327 know enough about computers to make a good educated guess. Once, just
11328 before Christmas, they had some leftover money on the book budget and
11329 I was asked if I could pick out a lot of computer books in the
11330 university book store, for the library to buy for their collection. I
11331 had a great time picking all the books I dreamt of buying and reading,
11332 and the books I knew were classics (like most of the
11333 &lt;a href=&quot;http://en.wikipedia.org/wiki/W._Richard_Stevens&quot;&gt;Stevens
11334 collection&lt;/a&gt;). I picked several of the generic O&#39;Reilly books (ie
11335 documenting protocols, formats and systems, not specific versions of
11336 products) and stayed away from the &#39;teach yourself X in N days&#39; class.
11337 I had a great time, and probably picked out more than a hundred books
11338 for the library that evening.&lt;/p&gt;
11339
11340 &lt;p&gt;The sad fact is that there is no way a overworked librarian is
11341 going to know that for example
11342 &lt;a href=&quot;http://en.wikipedia.org/wiki/The_Practice_of_Programming&quot;&gt;The
11343 Practice of Programming&lt;/a&gt; is a must-have in any computer library,
11344 and they will most of the time end up picking the wrong books to buy.
11345 Perhaps you can help your local library make better choices by giving
11346 the suggestions for books to get? I know they would love to hear from
11347 you, even if their budget might block them from getting your favourite
11348 book right away.&lt;/p&gt;
11349 </description>
11350 </item>
11351
11352 <item>
11353 <title>Seventy percent done with Norwegian docbook version of Free Culture</title>
11354 <link>http://people.skolelinux.org/pere/blog/Seventy_percent_done_with_Norwegian_docbook_version_of_Free_Culture.html</link>
11355 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Seventy_percent_done_with_Norwegian_docbook_version_of_Free_Culture.html</guid>
11356 <pubDate>Sun, 23 Sep 2012 09:30:00 +0200</pubDate>
11357 <description>&lt;p&gt;Since this summer, I have worked in my spare time on a Norwegian &lt;a
11358 href=&quot;http://www.docbook.org/&quot;&gt;docbook&lt;/a&gt; version of the 2004 book &lt;a
11359 href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; by Lawrence Lessig.
11360 The reason is that this book is a great primer on what problems exist
11361 in the current copyright laws, and I want it to be available also for
11362 those that are reluctant do read an English book.
11363
11364 When I started, I
11365 &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
11366 for volunteers&lt;/a&gt; to help me, but too few have volunteered so far,
11367 and progress is a bit slow. Anyway, today I broken the 70 percent
11368 mark for the first rough translation. At the moment, less than 700
11369 strings (paragraphs, index terms, titles) are left to translate. With
11370 my current progress of 10-20 strings per day, it will take a while to
11371 complete the translation. This graph show the updated progress:&lt;/p&gt;
11372
11373 &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;
11374
11375 &lt;p&gt;Progress have slowed down lately due to family and work
11376 commitments. If you want to help, please get in touch, and check out
11377 the project files currently available from
11378 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;.&lt;/p&gt;
11379
11380 &lt;p&gt;If you are curious what the translated book currently look like,
11381 the updated
11382 &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;
11383 and
11384 &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;
11385 are published on github. The HTML version is published as well, but
11386 github hand it out with MIME type text/plain, confusing browsers, so I
11387 saw no point in linking to that version.&lt;/p&gt;
11388 </description>
11389 </item>
11390
11391 <item>
11392 <title>Debian Edu interview: Giorgio Pioda</title>
11393 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Giorgio_Pioda.html</link>
11394 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Giorgio_Pioda.html</guid>
11395 <pubDate>Mon, 17 Sep 2012 14:10:00 +0200</pubDate>
11396 <description>&lt;p&gt;After a long break in my row of interviews with people in the
11397 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
11398 community, I finally found time to wrap up another. This time it is
11399 Giorgio Pioda, which showed up on the mailing list at the start of
11400 this year, asking questions and inspiring us to improve the first time
11401 administrators experience with Skolelinux. :) The interview was
11402 conduced in May, but I only found time to publish it now.&lt;/p&gt;
11403
11404 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
11405
11406 &lt;p&gt;I have a PhD in chemistry but since several years I work as teacher
11407 in secondary (15-18 year old students) and tertiary (a kind of &quot;light&quot;
11408 university) schools. Five years ago I started to manage a Learning
11409 Management Service server and slowly I got more and more involved with
11410 IT. 3 years ago the graduating schools moved completely to Linux and I
11411 got the head of the IT for this. The experience collected in chemistry
11412 labs computers (for example NMR analysis of protein folding) and in
11413 the IT-courses during university where sufficient to start. Self
11414 training is anyway very important&lt;/p&gt;
11415
11416 &lt;p&gt;I live in the Italian speaking part of Switzerland, and the
11417 &lt;a href=&quot;http://www.spse.ch/&quot;&gt;SPSE school&lt;/a&gt; (secondary) is a very
11418 special sport school for young people who try to became sport pro (for
11419 all sports, we have dozens of disciplines represented) and we are
11420 recognised by the Olympic Swiss Organisation.
11421
11422 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
11423 project?&lt;/strong&gt;&lt;/p&gt;
11424
11425 &lt;p&gt;Looking for Linux / Primary Domain Controller (PDC) I found it
11426 already several years ago. But since the system was still not
11427 Kerberized and since our schools relies strongly on laptops I didn&#39;t
11428 use it. I plan to introduce it in the next future, probably for the
11429 next school year, since the squeeze release solved this security
11430 hole.&lt;/p&gt;
11431
11432 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
11433 Edu?&lt;/strong&gt;&lt;/p&gt;
11434
11435 &lt;p&gt;Many. First of all there is a strong and living community that is
11436 very generous for help and hints. Chat help is crucial, together with
11437 the mailing list. Second. With Skolelinux you get an already well
11438 engineered platform and you don&#39;t have to start to build up your PDC
11439 and your clients from GNU/scratch; I&#39;ve already done this once and I
11440 can tell it, it is hard. Third, since Skolelinux is a standard
11441 platform, it is way easier to educate other IT people and even if the
11442 head IT is sick another one could pick up the task without too much
11443 hassle.&lt;/p&gt;
11444
11445 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
11446 Edu?&lt;/strong&gt;&lt;/p&gt;
11447
11448 &lt;p&gt;The only real problem I see is that it is a little too less
11449 flexible at client level. Debian stable is rocky and desirable, but
11450 there are many reasons that force for another choice. For example the
11451 need of new drivers for new PC, or the need for a specific OS for some
11452 devices that have specific software packages for another specific
11453 distribution (I have such a case for whiteboards that have only
11454 Ubuntu packages). Thus, I prepared compatibility packages educlient
11455 and eduroaming, hoping not to use them ;-)&lt;/p&gt;
11456
11457 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
11458
11459 &lt;p&gt;I have a Debian Stable PDC at school (Kerberos, NIS, NFS) with
11460 mixed Debian and Ubuntu clients. If you think that this triad
11461 combination is exotic... well I discovered right yesterday that
11462 &lt;a href=&quot;http://moo.nac.uci.edu/~hjm/Perceus-Report.html&quot;&gt;Perceus&lt;/a&gt;
11463 has the same...&lt;/p&gt;
11464
11465 &lt;p&gt;For myself I run Debian wheezy/sid, but this combination is good
11466 only I you have enough competence to fix stuff for yourself, if
11467 something breaks. Daily I use texmacs, gnumeric, a little bit of R
11468 statistics, kmplot, and less frequently OpenOffice.org.&lt;/p&gt;
11469
11470 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
11471 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
11472
11473 &lt;P&gt;I think that the only real argument that school managers &quot;hear&quot; is
11474 cost reduction. They don&#39;t give too much weight on quality, stability,
11475 just because they are normally not open to change.&lt;/p&gt;
11476
11477 &lt;p&gt;Students adapts very quickly to GNU/Linux (and for them being able
11478 to switch between different OS is a plus value); teachers and managers
11479 don&#39;t.&lt;/p&gt;
11480
11481 &lt;p&gt;We decided to move to Linux because students at our school have own
11482 laptop and we have the responsibility to keep the laptop ready to use;
11483 we were really unsatisfied with Microsoft since every Monday we had 20
11484 machine to fix for viral infections... With Linux this has been
11485 reduced to zero, since people installs almost only from official
11486 repositories. I think that our special needs brought us to Linux.
11487 Those who don&#39;t have such needs will hardly move to Linux.&lt;/p&gt;
11488 </description>
11489 </item>
11490
11491 <item>
11492 <title>IETF activity to standardise video codec</title>
11493 <link>http://people.skolelinux.org/pere/blog/IETF_activity_to_standardise_video_codec.html</link>
11494 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/IETF_activity_to_standardise_video_codec.html</guid>
11495 <pubDate>Sat, 15 Sep 2012 20:00:00 +0200</pubDate>
11496 <description>&lt;p&gt;After the
11497 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/IETF_standardize_its_first_multimedia_codec__Opus.html&quot;&gt;Opus
11498 codec made&lt;/a&gt; it into &lt;a href=&quot;http://www.ietf.org/&quot;&gt;IETF&lt;/a&gt; as
11499 &lt;a href=&quot;http://tools.ietf.org/html/rfc6716&quot;&gt;RFC 6716&lt;/a&gt;, I had a look
11500 to see if there is any activity in IETF to standardise a video codec
11501 too, and I was happy to discover that there is some activity in this
11502 area. A non-&quot;working group&quot; mailing list
11503 &lt;a href=&quot;https://www.ietf.org/mailman/listinfo/video-codec&quot;&gt;video-codec&lt;/a&gt;
11504 was
11505 &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
11506 formal working group should be formed.&lt;/p&gt;
11507
11508 &lt;p&gt;I look forward to see how this plays out. There is already
11509 &lt;a href=&quot;http://www.ietf.org/mail-archive/web/video-codec/current/msg00003.html&quot;&gt;an
11510 email from someone&lt;/a&gt; in the MPEG group at ISO asking people to
11511 participate in the ISO group. Given how ISO failed with OOXML and given
11512 that it so far (as far as I can remember) only have produced
11513 multimedia formats requiring royalty payments, I suspect
11514 joining the ISO group would be a complete waste of time, but I am not
11515 involved in any codec work and my opinion will not matter much.&lt;/p&gt;
11516
11517 &lt;p&gt;If one of my readers is involved with codec work, I hope she will
11518 join this work to standardise a royalty free video codec within
11519 IETF.&lt;/p&gt;
11520 </description>
11521 </item>
11522
11523 <item>
11524 <title>IETF standardize its first multimedia codec: Opus</title>
11525 <link>http://people.skolelinux.org/pere/blog/IETF_standardize_its_first_multimedia_codec__Opus.html</link>
11526 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/IETF_standardize_its_first_multimedia_codec__Opus.html</guid>
11527 <pubDate>Wed, 12 Sep 2012 13:50:00 +0200</pubDate>
11528 <description>&lt;p&gt;Yesterday, &lt;a href=&quot;http://www.ietf.org/&quot;&gt;IETF&lt;/a&gt; announced the
11529 publication of of
11530 &lt;a href=&quot;http://tools.ietf.org/html/rfc6716&quot;&gt;RFC 6716, the Definition
11531 of the Opus Audio Codec&lt;/a&gt;, a low latency, variable bandwidth, codec
11532 intended for both VoIP, film and music. This is the first time, as
11533 far as I know, that IETF have standardized a multimedia codec. In
11534 &lt;a href=&quot;http://tools.ietf.org/html/rfc3533&quot;&gt;RFC 3533&lt;/a&gt;, IETF
11535 standardized the OGG container format, and it has proven to be a great
11536 royalty free container for audio, video and movies. I hope IETF will
11537 continue to standardize more royalty free codeces, after ISO and MPEG
11538 have proven incapable of securing everyone equal rights to publish
11539 multimedia content on the Internet.&lt;/p&gt;
11540
11541 &lt;p&gt;IETF require two interoperating independent implementations to
11542 ratify a standard, and have so far ensured to only standardize royalty
11543 free specifications. Both are key factors to allow everyone (rich and
11544 poor), to compete on equal terms on the Internet.&lt;/p&gt;
11545
11546 &lt;p&gt;Visit the &lt;a href=&quot;http://opus-codec.org/&quot;&gt;Opus project page&lt;/a&gt; if
11547 you want to learn more about the solution.&lt;/p&gt;
11548 </description>
11549 </item>
11550
11551 <item>
11552 <title>Git repository for song book for Computer Scientists</title>
11553 <link>http://people.skolelinux.org/pere/blog/Git_repository_for_song_book_for_Computer_Scientists.html</link>
11554 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Git_repository_for_song_book_for_Computer_Scientists.html</guid>
11555 <pubDate>Fri, 7 Sep 2012 13:50:00 +0200</pubDate>
11556 <description>&lt;p&gt;As I
11557 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Song_book_for_Computer_Scientists.html&quot;&gt;mentioned
11558 this summer&lt;/a&gt;, I have created a Computer Science song book a few
11559 years ago, and today I finally found time to create a public
11560 &lt;a href=&quot;https://gitorious.org/pere-cs-songbook/pere-cs-songbook&quot;&gt;Gitorious
11561 repository for the project&lt;/a&gt;.&lt;/p&gt;
11562
11563 &lt;p&gt;If you want to help out, please clone the source and submit patches
11564 to the HTML version. To generate the PDF and PostScript version,
11565 please use prince XML, or let me know about a useful free software
11566 processor capable of creating a good looking PDF from the HTML.&lt;/p&gt;
11567
11568 &lt;p&gt;Want to sing? You can still find the song book in HTML, PDF and
11569 PostScript formats at
11570 &lt;a href=&quot;http://www.hungry.com/~pere/cs-songbook/&quot;&gt;Petter&#39;s Computer
11571 Science Songbook&lt;/a&gt;.&lt;/p&gt;
11572 </description>
11573 </item>
11574
11575 <item>
11576 <title>Free software forced Microsoft to open Office (and don&#39;t forget Officeshots)</title>
11577 <link>http://people.skolelinux.org/pere/blog/Free_software_forced_Microsoft_to_open_Office__and_don_t_forget_Officeshots_.html</link>
11578 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_software_forced_Microsoft_to_open_Office__and_don_t_forget_Officeshots_.html</guid>
11579 <pubDate>Thu, 23 Aug 2012 14:20:00 +0200</pubDate>
11580 <description>&lt;p&gt;I came across a great comment from Simon Phipps today, about how
11581 &lt;a href=&quot;http://www.infoworld.com/d/open-source-software/how-microsoft-was-forced-open-office-200233&quot;&gt;Microsoft
11582 have been forced to open Office&lt;/a&gt;, and it made me remember and
11583 revisit the great site
11584 &lt;a href=&quot;http://www.officeshots.org/&quot;&gt;officeshots&lt;/a&gt; which allow you
11585 to check out how different programs present the ODF file format. I
11586 recommend both to those of my readers interested in ODF. :)&lt;/p&gt;
11587 </description>
11588 </item>
11589
11590 <item>
11591 <title>Half way there with translated docbook version of Free Culture</title>
11592 <link>http://people.skolelinux.org/pere/blog/Half_way_there_with_translated_docbook_version_of_Free_Culture.html</link>
11593 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Half_way_there_with_translated_docbook_version_of_Free_Culture.html</guid>
11594 <pubDate>Fri, 17 Aug 2012 21:50:00 +0200</pubDate>
11595 <description>&lt;p&gt;In my spare time, I currently work on a Norwegian
11596 &lt;a href=&quot;http://www.docbook.org/&quot;&gt;docbook&lt;/a&gt; version of the 2004 book
11597 &lt;a href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; by Lawrence Lessig,
11598 to get a Norwegian text explaining the problems with the copyright law
11599 I can give to my parents and others that are reluctant to read an
11600 English book. It is a marvellous set of examples on how the ever
11601 expanding copyright regulations hurt culture and society. When the
11602 translation is done, I hope to find funding to print and ship a copy
11603 to all the members of the Norwegian parliament, before they sit down
11604 to debate the latest revisions to the Norwegian copyright law. This
11605 summer I
11606 &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
11607 for volunteers&lt;/a&gt; to help me, and I have been able to secure the
11608 valuable contribution from at least one other Norwegian.&lt;/p&gt;
11609
11610 &lt;p&gt;Two days ago, we finally broke the 50% mark. Then more than 50% of
11611 the number of strings to translate (normally paragraphs, but also
11612 titles and index entries are also counted). All parts from the
11613 beginning up to and including chapter four is translated. So is
11614 chapters six, seven and the conclusion. I created a graph to show the
11615 progress:&lt;/p&gt;
11616
11617 &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;
11618
11619 &lt;p&gt;The number of strings to translate increase as I insert the index
11620 entries into the docbook. They were missing with the docbook version
11621 I initially started with. There are still quite a few index entries
11622 missing, but everyone starting with A, B, O, Z and Y are done. I
11623 currently focus on completing the index entries, to get a complete
11624 english version of the docbook source.&lt;/p&gt;
11625
11626 &lt;p&gt;There is still need for translators and people with docbook
11627 knowledge, to be able to get a good looking book (I still struggle
11628 with dblatex, xmlto and docbook-xsl) as well as to do the draft
11629 translation and proof reading. And I would like the figures to be
11630 redrawn as SVGs to make it easy to translate them. Any SVG master
11631 around? I am sure there are some legal terms that are unfamiliar to
11632 me. If you want to help, please get in touch, and check out the
11633 project files currently available from &lt;a
11634 href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;.&lt;/p&gt;
11635
11636 &lt;p&gt;If you are curious what the translated book currently look like,
11637 the updated
11638 &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;
11639 and
11640 &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;
11641 are published on github. The HTML version is published as well, but
11642 github hand it out with MIME type text/plain, confusing browsers, so I
11643 saw no point in linking to that version.&lt;/p&gt;
11644 </description>
11645 </item>
11646
11647 <item>
11648 <title>Notes on language codes for Norwegian docbook processing...</title>
11649 <link>http://people.skolelinux.org/pere/blog/Notes_on_language_codes_for_Norwegian_docbook_processing___.html</link>
11650 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Notes_on_language_codes_for_Norwegian_docbook_processing___.html</guid>
11651 <pubDate>Fri, 10 Aug 2012 21:00:00 +0200</pubDate>
11652 <description>&lt;p&gt;In &lt;a href=&quot;http://www.docbook.org/&quot;&gt;docbook&lt;/a&gt; one can specify
11653 the language used at the top, and the processing pipeline will use
11654 this information to pick the correct translations for &#39;chapter&#39;, &#39;see
11655 also&#39;, &#39;index&#39; etc. And for most languages used with docbook, I guess
11656 this work just fine. For example a German user can start the document
11657 with &amp;lt;book lang=&quot;de&quot;&amp;gt;, and the document will show up with the
11658 correct content with any of the docbook processors. This is not the
11659 case for the language
11660 &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
11661 am working with at the moment&lt;/a&gt;, Norwegian Bokmål.&lt;/p&gt;
11662
11663 &lt;p&gt;For a while, I was confused about which language code to use,
11664 because I was unable to find any language code that would work across
11665 all tools. I am currently testing dblatex, xmlto, docbook-xsl, and
11666 dbtoepub, and they do not handle Norwegian Bokmål the same way. Some
11667 of them do not handle it at all.&lt;/p&gt;
11668
11669 &lt;p&gt;A bit of background information is probably needed to understand
11670 this mess. Norwegian is not one, but two written variants. The
11671 variants are Norwegian Nynorsk and Norwegian Bokmål. There are three
11672 two letter language codes associated with these languages, Norwegian
11673 is &#39;no&#39;, Norwegian Nynorsk is &#39;nn&#39; and Norwegian Bokmål is &#39;nb&#39;.
11674 Historically the &#39;no&#39; language code was used for Norwegian Bokmål, but
11675 many years ago this was found to be å bad idea, and the recommendation
11676 is to use the most specific language code instead, to avoid confusion.
11677 In the transition period it is a good idea to make sure &#39;no&#39; was an
11678 alias for &#39;nb&#39;.&lt;/p&gt;
11679
11680 &lt;p&gt;Back to docbook processing tools in Debian. The dblatex tool only
11681 understand &#39;nn&#39;. There are translations for &#39;no&#39;, but not &#39;nb&#39; (BTS
11682 &lt;a href=&quot;http://bugs.debian.org/684391&quot;&gt;#684391&lt;/a&gt;), but due to a bug
11683 (BTS &lt;a href=&quot;http://bugs.debian.org/682936&quot;&gt;#682936&lt;/a&gt;) the &#39;no&#39;
11684 language code is not recognised. The docbook-xsl tool chain only
11685 recognise &#39;nn&#39; and &#39;nb&#39;, but not &#39;no&#39;. The xmlto tool only recognise
11686 &#39;nn&#39; and &#39;nb&#39;, but not &#39;no&#39;. The end result that there is no language
11687 code I can use to get the docbook file working with all of these tools
11688 at the same time. :(&lt;/p&gt;
11689
11690 &lt;p&gt;The correct solution is to use &amp;lt;book lang=&quot;nb&quot;&amp;gt;, but it will
11691 take time before that will work with all the free software docbook
11692 processors. :(&lt;/p&gt;
11693
11694 &lt;p&gt;Oh, the joy of well integrated tools. :/&lt;/p&gt;
11695 </description>
11696 </item>
11697
11698 <item>
11699 <title>Best way to create a docbook book?</title>
11700 <link>http://people.skolelinux.org/pere/blog/Best_way_to_create_a_docbook_book_.html</link>
11701 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Best_way_to_create_a_docbook_book_.html</guid>
11702 <pubDate>Tue, 31 Jul 2012 22:00:00 +0200</pubDate>
11703 <description>&lt;p&gt;I tried to send this text to the
11704 &lt;a href=&quot;https://lists.oasis-open.org/archives/docbook-apps/&quot;&gt;docbook-apps
11705 mailing list at lists.oasis-open.org&lt;/a&gt;, but it only accept messages
11706 from subscribers and rejected my post, and I completely lack the
11707 bandwidth required to subscribe to another mailing list, so instead I
11708 try to post my message here and hope my blog readers can help me
11709 out.&lt;/p&gt;
11710
11711 &lt;p&gt;I am quite new to docbook processing, and am climbing a steep
11712 learning curve at the moment.&lt;/p&gt;
11713
11714 &lt;p&gt;To give you some background, I am working on a Norwegian
11715 translation of the book Free Culture by Lawrence Lessig, and I use
11716 docbook to handle the process. The files to build the book are
11717 available from
11718 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;.
11719 The book got around 400 pages with parts, images, footnotes, tables,
11720 index entries etc, which has proven to be a challenge for the free
11721 software docbook processors. My build platform is Debian GNU/Linux
11722 Squeeze.&lt;/p&gt;
11723
11724 &lt;p&gt;I want to build PDF, EPUB and HTML version of the book, and have
11725 tried different tool chains to do the conversion from docbook to these
11726 formats. I am currently focusing on the PDF version, and have a few
11727 problems.&lt;/p&gt;
11728
11729 &lt;ul&gt;
11730
11731 &lt;li&gt;Using dblatex, the &amp;lt;part&amp;gt; handling is not the way I want to,
11732 as &amp;lt;/part&amp;gt; do not really end the &amp;lt;part&amp;gt;. (See
11733 &lt;a href=&quot;http://bugs.debian.org/683166&quot;&gt;BTS report #683166&lt;/a&gt;), the
11734 xetex backend (needed to process UTF-8) give incorrect hyphens in
11735 index references spanning several pages (See
11736 &lt;a href=&quot;http://bugs.debian.org/682901&quot;&gt;BTS report #682901&lt;/a&gt;), and
11737 I am unable to get the norwegian template texts (See
11738 &lt;a href=&quot;http://bugs.debian.org/682936&quot;&gt;BTS report #682936&lt;/a&gt;).&lt;/li&gt;
11739
11740 &lt;li&gt;Using straight xmlto fail with some latex error (See
11741 &lt;a href=&quot;http://bugs.debian.org/683163&quot;&gt;BTS report
11742 #683163&lt;/a&gt;).&lt;/li&gt;
11743
11744 &lt;li&gt;Using xmlto with the fop backend fail to handle images (do not
11745 show up in the PDF), fail to handle a long footnote (overlap
11746 footnote and text body, see
11747 &lt;a href=&quot;http://bugs.debian.org/683197&quot;&gt;BTS report #683197&lt;/a&gt;), and
11748 fail to create a correct index (some lack page ref, and the page
11749 refs listed are not right).&lt;/li&gt;
11750
11751 &lt;li&gt;Using xmlto with the dblatex backend behave like dblatex.&lt;/li&gt;
11752
11753 &lt;li&gt;Using docbook-xls with xsltproc + fop have the same footnote and
11754 index problems the xmlto + fop processing.&lt;/li&gt;
11755
11756 &lt;/ul&gt;
11757
11758 &lt;p&gt;So I wonder, what would be the best way to create the PDF version
11759 of this book? Are some of the bugs found above solved in new or
11760 experimental versions of some docbook tool chain?&lt;/p&gt;
11761
11762 &lt;p&gt;What about HTML and EPUB versions?&lt;/p&gt;
11763 </description>
11764 </item>
11765
11766 <item>
11767 <title>Free Culture in Norwegian - 5 chapters done, 74 percent left to do</title>
11768 <link>http://people.skolelinux.org/pere/blog/Free_Culture_in_Norwegian___5_chapters_done__74_percent_left_to_do.html</link>
11769 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_Culture_in_Norwegian___5_chapters_done__74_percent_left_to_do.html</guid>
11770 <pubDate>Sat, 21 Jul 2012 20:00:00 +0200</pubDate>
11771 <description>&lt;p&gt;I reported earlier that I am working on
11772 &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
11773 norwegian version&lt;/a&gt; of the book
11774 &lt;a href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; by Lawrence Lessig.
11775 Progress is good, and yesterday I got a major contribution from Anders
11776 Hagen Jarmund completing chapter six. The source files as well as a
11777 PDF and EPUB version of this book are available from
11778 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;.&lt;/p&gt;
11779
11780 &lt;p&gt;I am happy to report that the draft for the first two chapters
11781 (preface, introduction) is complete, and three other chapters are also
11782 completely translated. This completes 26 percent of the number of
11783 strings (equivalent to paragraphs) in the book, and there is thus 74
11784 percent left to translate. A graph of the progress is present at the
11785 bottom of the github project page. There is still room for more
11786 contributors. Get in touch or send github pull requests with fixes if
11787 you got time and are willing to help make this book make it to
11788 print. :)&lt;/p&gt;
11789
11790 &lt;p&gt;The book translation framework could also be a good basis for other
11791 translations, if you want the book to be available in your
11792 language.&lt;/p&gt;
11793 </description>
11794 </item>
11795
11796 <item>
11797 <title>Call for help from docbook expert to tag Free Culture by Lawrence Lessig</title>
11798 <link>http://people.skolelinux.org/pere/blog/Call_for_help_from_docbook_expert_to_tag_Free_Culture_by_Lawrence_Lessig.html</link>
11799 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Call_for_help_from_docbook_expert_to_tag_Free_Culture_by_Lawrence_Lessig.html</guid>
11800 <pubDate>Mon, 16 Jul 2012 22:50:00 +0200</pubDate>
11801 <description>&lt;p&gt;I am currently working on a
11802 &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
11803 to translate&lt;/a&gt; the book
11804 &lt;a href=&quot;http://free-culture.cc/&quot;&gt;Free Culture&lt;/a&gt; by Lawrence Lessig
11805 to Norwegian. And the source we base our translation on is the
11806 &lt;a href=&quot;http://en.wikipedia.org/wiki/DocBook&quot;&gt;docbook&lt;/a&gt; version, to
11807 allow us to use po4a and .po files to handle the translation, and for
11808 this to work well the docbook source document need to be properly
11809 tagged. The source files of this project is available from
11810 &lt;a href=&quot;https://github.com/petterreinholdtsen/free-culture-lessig&quot;&gt;github&lt;/a&gt;.&lt;/p&gt;
11811
11812 &lt;p&gt;The problem is that the docbook source have flaws, and we have
11813 no-one involved in the project that is a docbook expert. Is there a
11814 docbook expert somewhere that is interested in helping us create a
11815 well tagged docbook version of the book, and adjust our build process
11816 for the PDF, EPUB and HTML version of the book? This will provide a
11817 well tagged English version (our source document), and make it a lot
11818 easier for us to create a good Norwegian version. If you can and want
11819 to help, please get in touch with me or fork the github project and
11820 send pull requests with fixes. :)&lt;/p&gt;
11821 </description>
11822 </item>
11823
11824 <item>
11825 <title>Debian Edu interview: George Bredberg</title>
11826 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__George_Bredberg.html</link>
11827 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__George_Bredberg.html</guid>
11828 <pubDate>Mon, 9 Jul 2012 00:30:00 +0200</pubDate>
11829 <description>&lt;p&gt;The &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
11830 Skolelinux&lt;/a&gt; project have users all over the globe, but until
11831 recently we have not known about any users in Norway&#39;s neighbour
11832 country Sweden. This changed when George Bredberg showed up in March
11833 this year on the mailing list, asking interesting questions about how
11834 to adjust and scale the just released
11835 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.html&quot;&gt;Debian Edu
11836 Wheezy&lt;/a&gt; setup to his liking. He granted me an interview, and I am
11837 happy to share his answers with you here.&lt;/p&gt;
11838
11839 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
11840
11841 &lt;p&gt;I&#39;m a 44 year old country guy that have been working 12 years at
11842 the same school as 50% IT-manager and 50% Teacher. My educational
11843 background is fil.kand in history and religious beliefs, an exam as a
11844 &quot;folkhighschool&quot; teacher, that is, for teaching grownups. In
11845 Norwegian I believe it&#39;s called &quot;Vuxenupplaring&quot;. I also have a master
11846 in &quot;Technology and social change&quot;. So I&#39;m not really a tech guy, I
11847 just like to study how humans and technology interact and that is my
11848 perspective when working with IT.&lt;/p&gt;
11849
11850 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
11851 project?&lt;/strong&gt;&lt;/p&gt;
11852
11853 I have followed the Skolelinux project for quite some time by
11854 now. Earlier I tested out the K12-LTSP project, which we used for some
11855 time, but I really like the idea of having a distribution aimed to be
11856 a complete solution for schools with necessary tools integrated. When
11857 K12-LTSP abandoned that idea some years ago, I started to look more
11858 seriously into Skolelinux instead.
11859
11860 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
11861 Edu?&lt;/strong&gt;&lt;/p&gt;
11862
11863 The big point of Skolelinux to me is that it is a complete
11864 distribution, ready to install. It has LDAP-support, MS Windows
11865 integration tools and so forth already configured, saving an
11866 administrator a lot of time and headache. We were using another Linux
11867 based thin-client system called Thinlinc, that has served us very
11868 well. But that Skolelinux is based on VNC and LTSP, to me, is better
11869 when it comes to the kind of multimedia used in schools. That is
11870 showing videos from Youtube or educational TV. It is also easier to
11871 mix thin clients with workstations, since the user settings will be the
11872 same. In our VNC-based solution you had to &quot;beat around the bush&quot; by
11873 setting up a second, hidden, home-directory for user settings for the
11874 workstations, because they will be different from the ones used on the
11875 thin clients. Skolelinux support for diskless workstations are very
11876 convenient since a school today often need to use a class room
11877 projector showing videos in full screen. That is easily done with a
11878 small integrated media computer running as a diskless workstation. You
11879 have only two installs to update and configure. One for the thin
11880 clients and one for the workstations. Also saving a lot of time. Our
11881 old system was also based on Redhat and CentOS. They are both very
11882 nice distributions, but they are sometimes painfully slow when it
11883 comes to updating multimedia support and multimedia programs (even
11884 such as Gimp), leaving us with a bit &quot;oldish&quot; applications. Debian is
11885 quicker to update.
11886
11887 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
11888 Edu?&lt;/strong&gt;&lt;/p&gt;
11889
11890 &lt;p&gt;Debian is a bit too quick when it comes to updating. As an example
11891 we use old HP terminals as thinclients, and two times already this
11892 year (2012) the updates you get from the repositories has stopped
11893 sound from working with them. It&#39;s a kernel/ALSA issue. So you have
11894 to be more careful properly testing the updates before you run them in
11895 a production environment. This has never happened with CentOS.&lt;/p&gt;
11896
11897 &lt;p&gt;I also would like to be able to set my own domain-settings at
11898 install time. In Skolelinux they are kind of hard coded into the
11899 distribution, when it comes to LDAP and at least samba integration.
11900 That is more a cosmetic/translation issue, and not a real problem.
11901 Running MS Windows applications within the Skolelinux environment needs
11902 to be better supported. That is, running them seamlessly via RDP, and
11903 support for single-sign on. That will make the transition to free
11904 software easier, because you can keep the applications you really
11905 need. No support will make it impossible if you work in a school where
11906 some applications can&#39;t be open source. As for us we really need to
11907 run Adobe InDesign in our journalist classes. We run a journalist
11908 education, and is one of the very few non university ones that is ok:d
11909 by Svenska journalistförbundet (Swedish journalist association). Our
11910 education gives the pupils the right of membership there, once they
11911 are done. This is important if you want to get a job.&lt;/p&gt;
11912
11913 &lt;p&gt;Adobe InDesign is the program most commonly used in newspapers and
11914 magazines. We used Quark Express before, but they seem to loose there
11915 market to Adobe. The only &quot;equivalent&quot; to InDesign in the opensource
11916 world is Scribus, and its not advanced enough. At least not according
11917 to the teacher. I think it would be possible to use it, because they
11918 are not supposed to learn a program, they are supposed to learn how to
11919 edit and compile a newspaper. But politically at our school we are not
11920 there yet. And Scribus lacks a lot of things you find i InDesign.&lt;/p&gt;
11921
11922 &lt;p&gt;We used even a windows program for sound editing when it comes to
11923 the radio-journalist part. The year to come we are going to try
11924 Audacity. That software has the same kind of limitations compared to
11925 Adobe Audition, but that teacher is a bit more open minded. We have
11926 tried Ardour also, but that instead is more like a music studio
11927 program, not intended for the kind of editing taking place in a radio
11928 studio. Its way to complex and the GUI is to scattered when you only
11929 want to cut, make pass-overs, add extra channels and normalise. Those
11930 things you can do in Audacity, but its not as easy as in Audition. You
11931 have to do more things manually with envelopes, and that is a bit old
11932 fashion and timewasting. Its also harder to cut and move sound from
11933 one channel to another, which is a thing that you do frequently
11934 because you often find yourself needing to rearrange parts of the
11935 sound file.&lt;/p&gt;
11936
11937 &lt;p&gt;So, I am not sure we will succeed in replacing even Audition, but we
11938 will try. The problem is the students have certain expectations when
11939 they start an education towards a profession. So the programs has to
11940 look and feel professional. Good thing with radio, there are many
11941 programs out there, that radio studios use, so its not as standardised
11942 as Newspaper editing. That means, it does not really matter what
11943 program they learn, because once they start working they still have to
11944 learn the program the studio uses, so instead focus has to be to learn
11945 the editing part without to much focus on a specific software.&lt;/p&gt;
11946
11947 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
11948
11949 &lt;p&gt;Myself I&#39;m running Linux Mint, or Ubuntu these days. I use almost
11950 only open source software, and preferably Linux based. When it comes
11951 to most used applications its OpenOffice, and Firefox (of course ;)
11952 )&lt;/p&gt;
11953
11954 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
11955 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
11956
11957 &lt;p&gt;To get schools to use free software there has to be good open
11958 source software that are windows based, to ease the transition. But
11959 it&#39;s also very important that the multimedia support is working
11960 flawlessly. The problems with Youtube, Twitter, Facebook and whatever
11961 will create problems when it comes to both teachers and
11962 students. Economy are also important for schools, so using thin
11963 clients, as long as they have good multimedia support, is a very good
11964 idea. It&#39;s also important that the open source software works even for
11965 the administration. It&#39;s hard to convince the teachers to stick with
11966 open source, if the principal has to run Windows. It also creates a
11967 problem if some classes has to use Windows for there tasks, since that
11968 will create a difference in &quot;status&quot; between classes, so a good
11969 support for running windows applications via the thin client (Linux)
11970 desktop is essential. At least at our school, where we have mixed
11971 level of educations, from high-school to journalist-school.&lt;/p&gt;
11972
11973 &lt;p&gt;Update 2012-07-09 08:30: Paul Wise tipped me on IRC about three
11974 useful sources related to Free Software for radio stations: the LWN
11975 article &lt;a href=&quot;https://lwn.net/Articles/481607/&quot;&gt;Radio station
11976 management with Airtime&lt;/a&gt;,
11977 &lt;a href=&quot;http://www.sourcefabric.org/en/airtime/&quot;&gt;Airtime&lt;/a&gt; which
11978 claim to be a Free open source radio automation software and
11979 &lt;a href=&quot;http://www.rivendellaudio.org/&quot;&gt;Rivendell&lt;/a&gt; which claim to
11980 be complete radio broadcast automation solution. All of them seem
11981 useful to the aspiring radio producer.&lt;/p&gt;
11982 </description>
11983 </item>
11984
11985 <item>
11986 <title>Why do schools waste money on IT?</title>
11987 <link>http://people.skolelinux.org/pere/blog/Why_do_schools_waste_money_on_IT_.html</link>
11988 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Why_do_schools_waste_money_on_IT_.html</guid>
11989 <pubDate>Sun, 8 Jul 2012 09:40:00 +0200</pubDate>
11990 <description>&lt;p&gt;In the Debian Edu / Skolelinux project, we have realised that one
11991 of the major blockers for the project success is the purchasing skills
11992 in schools and municipalities. We provide what the happy users of
11993 Debian Edu / Skolelinux say they need and to a lower cost than the
11994 alternatives, and yet so few schools decide to use our solution. I
11995 was pleased to discover the same observation done by mySociety and Tom
11996 Steinberg in his blog post
11997 &quot;&lt;a href=&quot;http://www.mysociety.org/2012/06/19/can-you-recognize-the-million-pound-chair/&quot;&gt;Can
11998 you recognize the million pound chair?&lt;/a&gt;&quot;. Read it and weep for the
11999 spending of your tax money.&lt;/p&gt;
12000
12001 &lt;p&gt;Of course there are other factors involved as well, like our
12002 projects bad marketing skills and the Linux community fragmentation
12003 causing worry with the people on the outside, so we as a project need
12004 to keep working hard to gain users, but it is a up-hill battle when
12005 public decision makers are unable to understand computer system
12006 purchases.&lt;/p&gt;
12007 </description>
12008 </item>
12009
12010 <item>
12011 <title>Free Timetabling Software - nice free software</title>
12012 <link>http://people.skolelinux.org/pere/blog/Free_Timetabling_Software___nice_free_software.html</link>
12013 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_Timetabling_Software___nice_free_software.html</guid>
12014 <pubDate>Sat, 7 Jul 2012 09:50:00 +0200</pubDate>
12015 <description>&lt;p&gt;Included in &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
12016 Skolelinux&lt;/a&gt; is a large collection of end user and school specific
12017 software. It is one of the packages not installed by default but
12018 provided in the Debian archive for schools to install if they want to,
12019 is a system to automatically plan the school time table using
12020 information about available teachers, classes and rooms, combined with
12021 the list of required courses and how many hours each topic should
12022 receive. The software is
12023
12024 &lt;a href=&quot;http://lalescu.ro/liviu/fet/&quot;&gt;named FET&lt;/a&gt;, and it provide a
12025 graphical user interface to input the required information, save the
12026 result in a fairly simple XML format, and generate time tables for
12027 both teachers and students. It is available both for
12028 &lt;a href=&quot;http://lalescu.ro/liviu/fet/download.html&quot;&gt;Linux, MacOSX and
12029 Windows&lt;/a&gt;.&lt;/p&gt;
12030
12031 &lt;p&gt;This is &lt;a href=&quot;http://lalescu.ro/liviu/fet/features.html&quot;&gt;the
12032 feature list&lt;/a&gt;, liftet from the project web site:&lt;/p&gt;
12033
12034 &lt;p&gt;&lt;ul&gt;
12035
12036 &lt;li&gt;FET is free software, licensed under the GNU GPL v2 or later.
12037 You can freely use, copy, modify and redistribute it &lt;/li&gt;
12038
12039 &lt;li&gt;Localized to en_US (US English, default), ar (Arabic), ca
12040 (Catalan), da (Danish), de (German), el (Greek), es (Spanish), fa
12041 (Persian), fr (French), gl (Galician), he (Hebrew), hu
12042 (Hungarian), id (Indonesian), it (Italian), lt (Lithuanian), mk
12043 (Macedonian), ms (Malay), nl (Dutch), pl (Polish), pt_BR
12044 (Brazilian Portuguese), ro (Romanian), ru (Russian), si (Sinhala),
12045 sk (Slovak), sr (Serbian), tr (Turkish), uk (Ukrainian), uz
12046 (Uzbek) and vi (Vietnamese) (incompletely for some languages)
12047 &lt;/li&gt;
12048
12049 &lt;li&gt;Fully automatic generation algorithm, allowing also
12050 semi-automatic or manual allocation&lt;/li&gt;
12051
12052 &lt;li&gt;Platform independent implementation, allowing running on
12053 GNU/Linux, Windows, Mac and any system that Qt supports &lt;/li&gt;
12054
12055 &lt;li&gt;Flexible modular XML format for the input file, allowing editing
12056 with an XML editor or by hand (besides FET interface)&lt;/li&gt;
12057
12058 &lt;li&gt;Import/export from CSV format&lt;/li&gt;
12059
12060 &lt;li&gt;The resulted timetables are exported into HTML, XML and CSV
12061 formats &lt;/li&gt;
12062
12063 &lt;li&gt;Flexible students structure, organized into sets: years, groups
12064 and subgroups. FET allows overlapping years and groups and
12065 non-overlapping subgroups. You can even define individual students
12066 (as separate sets)&lt;/li&gt;
12067
12068 &lt;li&gt;Each constraint has a weight percentage, from 0.0% to 100.0%
12069 (but some special constraints are allowed to have only 100% weight
12070 percentage)&lt;/li&gt;
12071
12072 &lt;li&gt;Limits for the algorithm (all these limits can be increased on
12073 demand, as a custom version, because this would require a bit more
12074 memory):
12075 &lt;ul&gt;
12076 &lt;li&gt;Maximum total number of hours (periods) per day: 60&lt;/li&gt;
12077 &lt;li&gt;Maximum number of working days per week: 35&lt;/li&gt;
12078 &lt;li&gt;Maximum total number of teachers: 6000&lt;/li&gt;
12079 &lt;li&gt;Maximum total number of sets of students: 30000&lt;/li&gt;
12080 &lt;li&gt;Maximum total number of subjects: 6000&lt;/li&gt;
12081 &lt;li&gt;Virtually unlimited number of activity tags&lt;/li&gt;
12082 &lt;li&gt;Maximum number of activities: 30000&lt;/li&gt;
12083 &lt;li&gt;Maximum number of rooms: 6000&lt;/li&gt;
12084 &lt;li&gt;Maximum number of buildings: 6000&lt;/li&gt;
12085 &lt;li&gt;Possibility of adding multiple teachers and
12086 students sets for each activity. (it is possible
12087 also to have no teachers or no students sets for an
12088 activity)&lt;/li&gt;
12089 &lt;li&gt;Virtually unlimited number of time constraints&lt;/li&gt;
12090 &lt;li&gt;Virtually unlimited number of space constraints&lt;/li&gt;
12091 &lt;/ul&gt;&lt;/li&gt;
12092
12093 &lt;li&gt;A large and flexible palette of time constraints:
12094 &lt;ul&gt;
12095 &lt;li&gt;Break periods&lt;/li&gt;
12096 &lt;li&gt;For teacher(s):
12097 &lt;ul&gt;
12098 &lt;li&gt;Not available periods&lt;/li&gt;
12099 &lt;li&gt;Max/min days per week&lt;/li&gt;
12100 &lt;li&gt;Max gaps per day/week&lt;/li&gt;
12101 &lt;li&gt;Max hours daily/continuously&lt;/li&gt;
12102 &lt;li&gt;Min hours daily&lt;/li&gt;
12103 &lt;li&gt;Max hours daily/continuously with an activity tag&lt;/li&gt;
12104
12105 &lt;li&gt;Respect working in an hourly interval a max number of
12106 days per week&lt;/li&gt;
12107 &lt;/ul&gt;&lt;/li&gt;
12108 &lt;li&gt;For students (sets):
12109 &lt;ul&gt;
12110 &lt;li&gt;Not available periods&lt;/li&gt;
12111 &lt;li&gt;Begins early (specify max allowed beginnings at second hour)&lt;/li&gt;
12112 &lt;li&gt;Max gaps per day/week&lt;/li&gt;
12113 &lt;li&gt;Max hours daily/continuously&lt;/li&gt;
12114 &lt;li&gt;Min hours daily&lt;/li&gt;
12115 &lt;li&gt;Max hours daily/continuously with an activity tag&lt;/li&gt;
12116
12117 &lt;li&gt;Respect working in an hourly interval a max number of
12118 days per week&lt;/li&gt;
12119 &lt;/ul&gt;&lt;/li&gt;
12120 &lt;li&gt;For an activity or a set of activities/subactivities:
12121 &lt;ul&gt;
12122 &lt;li&gt;A single preferred starting time&lt;/li&gt;
12123 &lt;li&gt;A set of preferred starting times&lt;/li&gt;
12124 &lt;li&gt;A set of preferred time slots&lt;/li&gt;
12125 &lt;li&gt;Min/max days between them&lt;/li&gt;
12126 &lt;li&gt;End(s) students day&lt;/li&gt;
12127 &lt;li&gt;Same starting time/day/hour&lt;/li&gt;
12128 &lt;li&gt;Occupy max time slots from selection (a complex and
12129 flexible constraint, useful in many situations)&lt;/li&gt;
12130 &lt;li&gt;Consecutive, ordered, grouped (for 2 or 3 (sub)activities)&lt;/li&gt;
12131 &lt;li&gt;Not overlapping&lt;/li&gt;
12132 &lt;li&gt;Max simultaneous in selected time slots&lt;/li&gt;
12133 &lt;li&gt;Min gaps between a set of (sub)activities&lt;/li&gt;
12134 &lt;/ul&gt;&lt;/li&gt;
12135 &lt;/ul&gt;&lt;/li&gt;
12136
12137 &lt;li&gt;A large and flexible palette of space constraints:
12138 &lt;ul&gt;
12139 &lt;li&gt;Room not available periods&lt;/li&gt;
12140 &lt;li&gt;For teacher(s):
12141 &lt;ul&gt;
12142 &lt;li&gt;Home room(s)&lt;/li&gt;
12143 &lt;li&gt;Max building changes per day/week&lt;/li&gt;
12144 &lt;li&gt;Min gaps between building changes&lt;/li&gt;
12145 &lt;/ul&gt;
12146 &lt;/li&gt;
12147
12148 &lt;li&gt;For students (sets):
12149 &lt;ul&gt;
12150 &lt;li&gt;Home room(s)&lt;/li&gt;
12151 &lt;li&gt;Max building changes per day/week&lt;/li&gt;
12152 &lt;li&gt;Min gaps between building changes&lt;/li&gt;
12153 &lt;/ul&gt;
12154 &lt;/li&gt;
12155 &lt;li&gt;Preferred room(s):
12156 &lt;ul&gt;
12157 &lt;li&gt;For a subject&lt;/li&gt;
12158 &lt;li&gt;For an activity tag&lt;/li&gt;
12159 &lt;li&gt;For a subject and an activity tag&lt;/li&gt;
12160 &lt;li&gt;Individually for a (sub)activity&lt;/li&gt;
12161 &lt;/ul&gt;
12162 &lt;/li&gt;
12163
12164 &lt;li&gt;For a set of activities:
12165 &lt;ul&gt;
12166 &lt;li&gt;Occupy a maximum number of different rooms&lt;/li&gt;
12167 &lt;/ul&gt;
12168 &lt;/li&gt;
12169 &lt;/ul&gt;
12170 &lt;/li&gt;
12171 &lt;/ul&gt;&lt;/p&gt;
12172
12173 &lt;p&gt;I have not used it myself, as I am not involved in time table
12174 planning at a school, but it seem to work fine when I test it. If you
12175 need to set up your schools time table, and is tired of doing it
12176 manually, check it out.
12177
12178 A quick summary on how to use it can be found in
12179 &lt;a href=&quot;http://marvelsoft.co.in/wp/2012/03/generate-timetable-for-state-cbse-icse-igcse-schools-free/&quot;&gt;a
12180 blog post from MarvelSoft&lt;/a&gt;. If you find FET useful, please provide
12181 a recipe for the Debian Edu project in the
12182 &lt;a href=&quot;http://wiki.debian.org/DebianEdu#Howtos&quot;&gt;Debian Edu HowTo
12183 section&lt;/a&gt;.&lt;/p&gt;
12184 </description>
12185 </item>
12186
12187 <item>
12188 <title>Can Zimbra be told to send autoreplies to the From: address?</title>
12189 <link>http://people.skolelinux.org/pere/blog/Can_Zimbra_be_told_to_send_autoreplies_to_the_From__address_.html</link>
12190 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Can_Zimbra_be_told_to_send_autoreplies_to_the_From__address_.html</guid>
12191 <pubDate>Tue, 3 Jul 2012 23:30:00 +0200</pubDate>
12192 <description>&lt;p&gt;In the NUUG &lt;a href=&quot;http://www.fiksgatami.no/&quot;&gt;FiksGataMi&lt;/a&gt;
12193 project (Norwegian version of
12194 &lt;a href=&quot;http://www.fixmystreet.com/&quot;&gt;FixMyStreet&lt;/a&gt; from
12195 &lt;a href=&quot;http://www.mysociety.org/&quot;&gt;mySociety&lt;/a&gt;), we have discovered
12196 a problem with the municipalities using
12197 &lt;a href=&quot;http://www.zimbra.com/&quot;&gt;Zimbra&lt;/a&gt;. When FiksGataMi send a
12198 problem report to the government, the email From: address is set to
12199 the address of the person reporting the problem, while envelope sender
12200 is set to the FiksGataMi contact address. The intention is to make
12201 sure the municipality send any replies to the person reporting the
12202 problem, while any email delivery problems are sent to us in NUUG.
12203 This work well in most cases, but not for Karmøy municipality using
12204 Zimbra. Karmøy is using the vacation message function in Zimbra to
12205 send an automatic reply to report that the message has been received,
12206 and this message is sent to the envelope sender and not the address in
12207 the From: header.&lt;/p&gt;
12208
12209 &lt;p&gt;This causes the automatic message from Karmøy to go to NUUGs
12210 request-tracker instance instead of to the person reporting the
12211 problem. We can not really change the envelope sender address, as
12212 this would make it impossible for us to discover when there are
12213 problems with the MTAs receiving problem reports. We have been in
12214 contact with the people at Karmøy municipality, and they are willing
12215 to adjust Zimbra if something can be changed there to get a better
12216 behaviour.&lt;/p&gt;
12217
12218 &lt;p&gt;The default behaviour of Zimbra is as far as I can tell according
12219 to the specification in RFC 3834, which recommend that vacation
12220 messages are sent to the envelope sender and not to the From: address.
12221 But I wonder if it is possible to adjust or configure Zimbra to behave
12222 differently. Anyone know? Please let us know at
12223 &lt;a href=&quot;http://lists.nuug.no/mailman/listinfo/fiksgatami&quot;&gt;fiksgatami
12224 (at) nuug.no&lt;/a&gt;.&lt;/p&gt;
12225 </description>
12226 </item>
12227
12228 <item>
12229 <title>Debian Edu interview: José Luis Redrejo Rodríguez</title>
12230 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Jos__Luis_Redrejo_Rodr_guez.html</link>
12231 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Jos__Luis_Redrejo_Rodr_guez.html</guid>
12232 <pubDate>Tue, 26 Jun 2012 08:30:00 +0200</pubDate>
12233 <description>&lt;p&gt;I&#39;ve been too busy at home, but finally I found time to wrap up
12234 another interview with the people behind
12235 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;.
12236 This time we get to know José Luis Redrejo Rodríguez, one of our great
12237 helpers from Spain. His effort was the reason we added support for
12238 several desktop types (KDE, Gnome and most recently LXDE) in Debian
12239 Edu, and have all of these available in the recently published
12240 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.html&quot;&gt;Debian Edu
12241 Squeeze&lt;/a&gt; version.&lt;/p&gt;
12242
12243 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
12244
12245 &lt;p&gt;I&#39;m a father, teacher and engineer who is working for the Education
12246 ministry of the Region of Extremadura (Spain) in the implementation of
12247 ICT in schools&lt;/p&gt;
12248
12249 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
12250 project?&lt;/strong&gt;&lt;/p&gt;
12251
12252 &lt;p&gt;At 2006, I verified that both, we in Extremadura and Skolelinux
12253 project, had been working in parallel for some years, doing very
12254 similar things, using very similar tools and with similar targets, so
12255 I decided it was time to join forces as much as possible.&lt;/p&gt;
12256
12257 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
12258 Edu?&lt;/strong&gt;&lt;/p&gt;
12259
12260 &lt;p&gt;A community of highly skilled experts working together, with a
12261 really open schema of collaboration and work. I really love the
12262 concepts of Do-ocracy and Merit-ocracy and the way these concepts are
12263 been used everyday inside Debian Edu.&lt;/p&gt;
12264
12265 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
12266 Edu?&lt;/strong&gt;&lt;/p&gt;
12267
12268 &lt;p&gt;Sometimes the differences in the implementations, laws or
12269 economical and technical resources in the different countries don&#39;t
12270 allow us to agree in the same solution for all of us, and several
12271 approaches are needed, what is a waste of effort. Also, there is a
12272 lack of more man power to be able to follow the fast evolution of the
12273 technologies in school.&lt;/p&gt;
12274
12275 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
12276
12277 &lt;p&gt;Debian, of course, and due to my kind of job I am most of my time
12278 between Iceweasel, &lt;a href=&quot;http://www.geany.org/&quot;&gt;Geany&lt;/a&gt; and
12279 &lt;a href=&quot;http://www.ohloh.net/p/gnome-terminator&quot;&gt;Terminator&lt;/a&gt;.&lt;/p&gt;
12280
12281 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
12282 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
12283
12284 &lt;p&gt;I think there is not a single strategy because there are very
12285 different scenarios: schools with mixed proprietary and free
12286 environments, schools using only workstations, other schools using
12287 laptops, netbooks, tablets, interactive white-boards, etc.&lt;/p&gt;
12288
12289 &lt;p&gt;Also the range of ages of the students is very broad and you can
12290 not use the same solutions for primary schools and secondary or even
12291 universities. So different strategies are needed.&lt;/p&gt;
12292
12293 &lt;p&gt;But, looking at these differences, and looking back to the things
12294 we&#39;ve done and implemented, and the places were we have spent most of
12295 our forces, I think we should focus as much as possible in free
12296 multi-platform environments, using only standards tools, and moving
12297 more and more to Internet or network solutions that could be deployed
12298 using wireless. I think we&#39;ll see more and more personal devices in
12299 the schools, devices the students and teachers will take home with
12300 them, so the solutions must be able to be taken at home and continue
12301 working there.&lt;/p&gt;
12302 </description>
12303 </item>
12304
12305 <item>
12306 <title>Song book for Computer Scientists</title>
12307 <link>http://people.skolelinux.org/pere/blog/Song_book_for_Computer_Scientists.html</link>
12308 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Song_book_for_Computer_Scientists.html</guid>
12309 <pubDate>Sun, 24 Jun 2012 13:30:00 +0200</pubDate>
12310 <description>&lt;p&gt;Many years ago, while studying Computer Science at the
12311 &lt;a href=&quot;http://www.uit.no/&quot;&gt;University of Tromsø&lt;/a&gt;, I started
12312 collecting computer related songs for use at parties. The original
12313 version was written in LaTeX, but a few years ago I got help from
12314 Håkon W. Lie, one of the inventors of W3C CSS, to convert it to HTML
12315 while keeping the ability to create a nice book in PDF format. I have
12316 not had time to maintain the book for a while now, and guess I should
12317 put it up on some public version control repository where others can
12318 help me extend and update the book. If anyone is volunteering to help
12319 me with this, send me an email. Also let me know if there are songs
12320 missing in my book.&lt;/p&gt;
12321
12322 &lt;p&gt;I have not mentioned the book on my blog so far, and it occured to
12323 me today that I really should let all my readers share the joys of
12324 singing out load about programming, computers and computer networks.
12325 Especially now that &lt;a href=&quot;http://debconf12.debconf.org/&quot;&gt;Debconf
12326 12&lt;/a&gt; is about to start (and I am not going). Want to sing? Check
12327 out &lt;a href=&quot;http://www.hungry.com/~pere/cs-songbook/&quot;&gt;Petter&#39;s
12328 Computer Science Songbook&lt;/a&gt;.
12329 </description>
12330 </item>
12331
12332 <item>
12333 <title>Debian Edu - some ideas for the future versions</title>
12334 <link>http://people.skolelinux.org/pere/blog/Debian_Edu___some_ideas_for_the_future_versions.html</link>
12335 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu___some_ideas_for_the_future_versions.html</guid>
12336 <pubDate>Mon, 11 Jun 2012 14:30:00 +0200</pubDate>
12337 <description>&lt;p&gt;During my work on
12338 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.nb.html&quot;&gt;Debian Edu
12339 based on Squeeze&lt;/a&gt;, I came across some issues that should be
12340 addressed in the Wheezy release. I finally found time to wrap up my
12341 notes and provide quick summary of what I found, with a bit
12342 explanation.&lt;/p&gt;
12343
12344 &lt;p&gt;&lt;ul&gt;
12345
12346 &lt;li&gt;We need to rewrite our package installation framework, as tasksel
12347 changed from using tasksel tasks to using meta packages (aka packages
12348 with dependencies like our education-* packages), and our installation
12349 system depend on tasksel tasks in
12350 /usr/share/tasksel/debian-edu-tasks.desc for package
12351 installation.&lt;/li&gt;
12352
12353 &lt;li&gt;Enable Kerberos login for more services. Now with the Kerberos
12354 foundation in place, we should use it to get single sign on with more
12355 services, and avoiding unneeded password / login questions. We should
12356 at least try to enable it for these services:
12357 &lt;ul&gt;
12358
12359 &lt;li&gt;CUPS for admins to add/configure printers and users when using
12360 quotas.&lt;/li&gt;
12361 &lt;li&gt;Nagios for admins checking the system status.&lt;/li&gt;
12362 &lt;li&gt;GOsa for admins updating LDAP and users changing their passwords.&lt;/li&gt;
12363 &lt;li&gt;LDAP for admins updating LDAP.&lt;/li&gt;
12364 &lt;li&gt;Squid for users when exam mode / filtering is active.&lt;/li&gt;
12365 &lt;li&gt;ssh for admins and users to save a password prompt.&lt;/li&gt;
12366
12367 &lt;/ul&gt;&lt;/li&gt;
12368
12369 &lt;li&gt;When we move GOsa to use Kerberos instead of LDAP bind to
12370 authenticate users, we should try to block or at least limit access to
12371 use LDAP bind for authentication, to ensure Kerberos is used when it
12372 is intended, and nothing fall back to using the less safe LDAP bind&lt;/li&gt;
12373
12374 &lt;li&gt;Merge debian-edu-config and debian-edu-install. The split made
12375 sense when d-e-install did a lot more, but these days it is just an
12376 inconvenience when we update the debconf preseeding values.&lt;/li&gt;
12377
12378 &lt;li&gt;Fix partman-auto to allow us to abort the installation before
12379 touching the disk if the disk is too small. This is
12380 &lt;a href=&quot;http://bugs.debian.org/653305&quot;&gt;BTS report #653305&lt;/a&gt; and the
12381 d-i developers are fine with the patch and someone just need to apply
12382 it and upload. After this is done we need to adjust
12383 debian-edu-install to use this new hook.&lt;/li&gt;
12384
12385 &lt;li&gt;Adjust to new LTSP framework (boot time config instead of install
12386 time config). LTSP changed its design, and our hooks to install
12387 packages and update the configuration is most likely not going to work
12388 in Wheezy.
12389
12390 &lt;li&gt;Consider switching to NBD instead of NFS for LTSP root, to allow
12391 the Kernel to cache files in its normal file cache, possibly speeding
12392 up KDE login on slow networks.&lt;/li&gt;
12393
12394 &lt;li&gt;Make it possible to create expired user passwords that need to
12395 change on first login. This is useful when handing out password on
12396 paper, to make sure only the user know the password. This require
12397 fixes to the PAM handling of kdm and gdm.&lt;/li&gt;
12398
12399 &lt;li&gt;Make GUI for adding new machines automatically from sitesummary.
12400 The current command line script is not very friendly to people most
12401 familiar with GUIs. This should probably be integrated into GOsa to
12402 have it available where the admin will be looking for it..&lt;/li&gt;
12403
12404 &lt;li&gt;We should find way for Nagios to check that the DHCP service
12405 actually is working (as in handling out IP addresses). None of the
12406 Nagios checks I have found so far have been working for me.&lt;/li&gt;
12407
12408 &lt;li&gt;We should switch from libpam-nss-ldapd to sssd for all profiles
12409 using LDAP, and not only on for roaming workstations, to have less
12410 packages to configure and consistent setup across all profiles.&lt;/li&gt;
12411
12412 &lt;li&gt;We should configure Kerberos to update LDAP and Samba password
12413 when changing password using the Kerberos protocol. The hook was
12414 requested in &lt;a href=&quot;http://bugs.debian.org/588968&quot;&gt;BTS report
12415 #588968&lt;/a&gt; and is now available in Wheezy. We might need to write a
12416 MIT Kerberos plugin in C to get this.&lt;/li&gt;
12417
12418 &lt;li&gt;We should clean up the set of applications installed by default.
12419 &lt;ul&gt;
12420
12421 &lt;li&gt;reduce the number of chemistry visualisers&lt;/li&gt;
12422 &lt;li&gt;consider dropping xpaint&lt;/li&gt;
12423 &lt;li&gt;and probably more?&lt;/li&gt;
12424 &lt;/ul&gt;&lt;/li&gt;
12425
12426 &lt;li&gt;Some hardware need external firmware to work properly. This is
12427 mostly the case for WiFi network cards, but there are some other
12428 examples too. For popular laptops to work out of the box, such
12429 firmware need to be installed from non-free, and we should provide
12430 some GUI to do this. Ubuntu already have this implemented, and we
12431 could consider using their packages. At the moment we have some
12432 command line script to do this (one for the running system, another
12433 for the LTSP chroot).&lt;/li&gt;
12434
12435
12436 &lt;li&gt;In Squeeze, we provide KDE, Gnome and LXDE as desktop options. We
12437 should extend the list to Xfce and Sugar, and preferably find a way to
12438 install several and allow the admin or the user to select which one to
12439 use.&lt;/li&gt;
12440
12441 &lt;li&gt;The golearn tool from the goplay package make it easy to check out
12442 interesting educational packages. We should work on the package
12443 tagging in Debian to ensure it represent all the useful educational
12444 packages, and extend the tool to allow it to use packagekit to install
12445 new applications with a simple mouse click.&lt;/li&gt;
12446
12447 &lt;li&gt;The Squeeze version got half a exam solution already in place,
12448 with the introduction of iptable based network blocking, but for it to
12449 be a complete exam solution the Squid proxy need to enable
12450 filtering/blocking as well when the exam mode is enabled. We should
12451 implement a way to easily enable this for the schools that want it,
12452 instead of the &quot;it is documented&quot; method of today.&lt;/li&gt;
12453
12454 &lt;li&gt;A feature used in several schools is the ability for a teacher to
12455 &quot;take over&quot; the desktop of individual or all computers in the room.
12456 There are at least three implementations,
12457 &lt;a href=&quot;italc.sourceforge.net/&quot;&gt;italc&lt;/a&gt;,
12458 &lt;a href=&quot;http://www.itais.net/help/en/&quot;&gt;controlaula&lt;/a&gt; og
12459 &lt;a href=&quot;http://www.epoptes.org/&quot;&gt;epoptes&lt;/a&gt; and we should pick one of
12460 them and make it trivial to set it up in a school. The challenges is
12461 how to distribute crypto keys and how to group computers in one room
12462 and how to set up which machine/user can control the machines in a
12463 given room.&lt;/li&gt;
12464
12465 &lt;li&gt;Tablets and surf boards are getting more and more popular, and we
12466 should look into providing a good solution for integrating these into
12467 the Debian Edu network. Not quite sure how. Perhaps we should
12468 provide a installation profile with better touch screen support for
12469 them, or add some sync services to allow them to exchange
12470 configuration and data with the central server. This should be
12471 investigated.&lt;/li&gt;
12472
12473 &lt;/ul&gt;&lt;/p&gt;
12474
12475 &lt;p&gt;I guess we will discover more as we continue to work on the Wheezy
12476 version.&lt;/p&gt;
12477 </description>
12478 </item>
12479
12480 <item>
12481 <title>TV with face recognition, for improved viewer experience</title>
12482 <link>http://people.skolelinux.org/pere/blog/TV_with_face_recognition__for_improved_viewer_experience.html</link>
12483 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/TV_with_face_recognition__for_improved_viewer_experience.html</guid>
12484 <pubDate>Sat, 9 Jun 2012 22:00:00 +0200</pubDate>
12485 <description>&lt;p&gt;Slashdot got a story about Intel planning a
12486 &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
12487 with face recognition&lt;/a&gt; to recognise the viewer, and it occurred to
12488 me that it would be more interesting to turn it around, and do face
12489 recognition on the TV image itself. It could let the viewer know who
12490 is present on the screen, and perhaps look up their credibility,
12491 company affiliation, previous appearances etc for the viewer to better
12492 evaluate what is being said and done. That would be a feature I would
12493 be willing to pay for.&lt;/p&gt;
12494
12495 &lt;p&gt;I would not be willing to pay for a TV that point a camera on my
12496 household, like the big brother feature apparently proposed by Intel.
12497 It is the telescreen idea fetched straight out of the book
12498 &lt;a href=&quot;http://gutenberg.net.au/ebooks01/0100021.txt&quot;&gt;1984 by George
12499 Orwell&lt;/a&gt;.&lt;/p&gt;
12500 </description>
12501 </item>
12502
12503 <item>
12504 <title>Web service to look up HP and Dell computer hardware support status</title>
12505 <link>http://people.skolelinux.org/pere/blog/Web_service_to_look_up_HP_and_Dell_computer_hardware_support_status.html</link>
12506 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Web_service_to_look_up_HP_and_Dell_computer_hardware_support_status.html</guid>
12507 <pubDate>Wed, 6 Jun 2012 23:15:00 +0200</pubDate>
12508 <description>&lt;p&gt;A few days ago
12509 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/SOAP_based_webservice_from_Dell_to_check_server_support_status.html&quot;&gt;I
12510 reported how to get&lt;/a&gt; the support status out of Dell using an
12511 unofficial and undocumented SOAP API, which I since have found out was
12512 &lt;a href=&quot;http://lists.us.dell.com/pipermail/linux-poweredge/2012-February/045959.html&quot;&gt;discovered
12513 by Daniel De Marco in february&lt;/a&gt;. Combined with my web scraping
12514 code for HP, Dell and IBM
12515 &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
12516 2009&lt;/a&gt;, I got inspired and wrote
12517 &lt;a href=&quot;https://views.scraperwiki.com/run/computer-hardware-support-status/&quot;&gt;a
12518 web service&lt;/a&gt; based on Scraperwiki to make it easy to look up the
12519 support status and get a machine readable result back.&lt;/p&gt;
12520
12521 &lt;p&gt;This is what it look like at the moment when asking for the JSON
12522 output:
12523
12524 &lt;blockquote&gt;&lt;pre&gt;
12525 % 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;
12526 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;})
12527 %
12528 &lt;/pre&gt;&lt;/blockquote&gt;
12529
12530 &lt;p&gt;It currently support Dell and HP, and I am hoping for help to add
12531 support for other vendors. The python source is available on
12532 Scraperwiki and I welcome help with adding more features.&lt;/p&gt;
12533 </description>
12534 </item>
12535
12536 <item>
12537 <title>Debian Edu interview: Mike Gabriel</title>
12538 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Mike_Gabriel.html</link>
12539 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Mike_Gabriel.html</guid>
12540 <pubDate>Sat, 2 Jun 2012 15:00:00 +0200</pubDate>
12541 <description>&lt;p&gt;Back in 2010, Mike Gabriel showed up on the
12542 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
12543 mailing list. He quickly proved to be a valuable developer, and
12544 thanks to his tireless effort we now have Kerberos integrated into the
12545 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.html&quot;&gt;Debian Edu
12546 Squeeze&lt;/a&gt; version.&lt;/p&gt;
12547
12548 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
12549
12550 &lt;p&gt;My name is Mike Gabriel, I am 38 years old and live near Kiel,
12551 Schleswig-Holstein, Germany. I live together with a wonderful partner
12552 (Angela Fuß) and two own children and two bonus children (contributed
12553 by Angela).&lt;/p&gt;
12554
12555 &lt;p&gt;During the day I am part-time employed as a system administrator
12556 and part-time working as an IT consultant. The consultancy work
12557 touches free software topics wherever and whenever possible. During
12558 the nights I am a free software developer. In the gaps I also train in
12559 becoming an osteopath.&lt;/p&gt;
12560
12561 &lt;p&gt;Starting in 2010 we (Andreas Buchholz, Angela Fuß, Mike Gabriel)
12562 have set up a free software project in the area of Kiel that aims at
12563 introducing free software into schools. The project&#39;s name is
12564 &quot;IT-Zukunft Schule&quot; (IT future for schools). The project links IT
12565 skills with communication skills.&lt;/p&gt;
12566
12567 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
12568 project?&lt;/strong&gt;&lt;/p&gt;
12569
12570 &lt;p&gt;While preparing our own customised Linux distribution for
12571 &quot;IT-Zukunft Schule&quot; we were repeatedly asked if we really wanted to
12572 reinvent the wheel. What schools really need is already available,
12573 people said. From this impulse we started evaluating other Linux
12574 distributions that target being used for school networks.&lt;/p&gt;
12575
12576 &lt;p&gt;At the end we short-listed two approaches and compared them: a
12577 commercial Linux distribution developed by a company in Bremen,
12578 Germany, and Skolelinux / Debian Edu. Between 12/2010 and 03/2011 we
12579 went to several events and met people being responsible for marketing
12580 and development of either of the distributions. Skolelinux / Debian
12581 Edu was by far much more convincing compared to the other product that
12582 got short-listed beforehand--across the full spectrum. What was most
12583 attractive for me personally: the perspective of collaboration within
12584 the developmental branch of the Debian Edu project itself.&lt;/p&gt;
12585
12586 &lt;p&gt;In parallel with this, we talked to many local and not-so-local
12587 people. People teaching at schools, headmasters, politicians, data
12588 protection experts, other IT professionals.&lt;/p&gt;
12589
12590 &lt;p&gt;We came to two conclusions:&lt;/p&gt;
12591
12592 &lt;p&gt;First, a technical conclusion: What schools need is available in
12593 bits and pieces here and there, and none of the solutions really fit
12594 by 100%. Any school we have seen has a very individual IT setup
12595 whereas most of each school&#39;s requirements could mapped by a standard
12596 IT solution. The requirement to this IT solution is flexibility and
12597 customisability, so that individual adaptations here and there are
12598 possible. In terms of re-distributing and rolling out such a
12599 standardised IT system for schools (a system that is still to some
12600 degree customisable) there is still a lot of work to do here
12601 locally. Debian Edu / Skolelinux has been our choice as the starting
12602 point.&lt;/p&gt;
12603
12604 &lt;p&gt;Second, a holistic conclusion: What schools need does not exist at
12605 all (or we missed it so far). There are several technical solutions
12606 for handling IT at schools that tend to make a good impression. What
12607 has been missing completely here in Germany, though, is the enrolment
12608 of people into using IT and teaching with IT. &quot;IT-Zukunft Schule&quot;
12609 tries to provide an approach for this.&lt;/p&gt;
12610
12611 &lt;p&gt;Only some schools have some sort of a media concept which explains,
12612 defines and gives guidance on how to use IT in class. Most schools in
12613 Northern Germany do not have an IT service provider, the school&#39;s IT
12614 equipment is managed by one or (if the school is lucky) two (admin)
12615 teachers, most of the workload these admin teachers get done in there
12616 spare time.&lt;/p&gt;
12617
12618 &lt;p&gt;We were surprised that only a very few admin teachers were
12619 networked with colleagues from other schools. Basically, every school
12620 here around has its individual approach of providing IT equipment to
12621 teachers and students and the exchange of ideas has been quasi
12622 non-existent until 2010/2011.&lt;/p&gt;
12623
12624 &lt;p&gt;Quite some (non-admin) teachers try to avoid using IT technology in
12625 class as a learning medium completely. Several reasons for this
12626 avoidance do exist.&lt;/p&gt;
12627
12628 &lt;p&gt;We discovered that no-one has ever taken a closer look at this
12629 social part of IT management in schools, so far. On our quest journey
12630 for a technical IT solution for schools, we discussed this issue with
12631 several teachers, headmasters, politicians, other IT professionals and
12632 they all confirmed: a holistic approach of considering IT management
12633 at schools, an approach that includes the people in place, will be new
12634 and probably a gain for all.&lt;/p&gt;
12635
12636 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
12637 Edu?&lt;/strong&gt;&lt;/p&gt;
12638
12639 &lt;p&gt;There is a list of advantages: international context, openness to
12640 any kind of contributions, do-ocracy policy, the closeness to Debian,
12641 the different installation scenarios possible (from stand-alone
12642 workstation to complex multi-server sites), the transparency within
12643 project communication, honest communication within the group of
12644 developers, etc.&lt;/p&gt;
12645
12646 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
12647 Edu?&lt;/strong&gt;&lt;/p&gt;
12648
12649 &lt;p&gt;Every coin has two sides:&lt;/p&gt;
12650
12651 &lt;p&gt;Technically: &lt;a href=&quot;http://bugs.debian.org/311188&quot;&gt;BTS issue
12652 #311188&lt;/a&gt;, tricky upgradability of a Debian Edu main server, network
12653 client installations on top of a plain vanilla Debian installation
12654 should become possible sometime in the near future, one could think
12655 about splitting the very complex package debian-edu-config into
12656 several portions (to make it easier for new developers to
12657 contribute).&lt;/p&gt;
12658
12659 &lt;p&gt;Another issue I see is that we (as Debian Edu developers) should
12660 find out more about the network of people who do the marketing for
12661 Debian Edu / Skolelinux. There is a very active group in Germany
12662 promoting Skolelinux on the bigger Linux Days within Germany. Are
12663 there other groups like that in other countries? How can we bring
12664 these marketing people together (marketing group A with group B and
12665 all of them with the group of Debian Edu developers)? During the last
12666 meeting of the German Skolelinux group, I got the impression of people
12667 there being rather disconnected from the development department of
12668 Debian Edu / Skolelinux.&lt;/p&gt;
12669
12670 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
12671
12672 &lt;p&gt;For my daily business, I do not use commercial software at all.&lt;/p&gt;
12673
12674 &lt;p&gt;For normal stuff I use Iceweasel/Firefox, Libreoffice.org. For
12675 serious text writing I prefer LaTeX. I use gimp, inkscape, scribus for
12676 more artistic tasks. I run virtual machines in KVM and Virtualbox.&lt;/p&gt;
12677
12678 &lt;p&gt;I am one of the upstream developers of X2Go. In 2010 I started the
12679 development of a Python based X2Go Client, called PyHoca-GUI.
12680 PyHoca-GUI has brought forth a Python X2Go Client API that currently
12681 is being integrated in Ubuntu&#39;s software center.&lt;/p&gt;
12682
12683 &lt;p&gt;For communications I have my own Kolab server running using Horde
12684 as web-based groupware client. For IRC I love to use irssi, for Jabber
12685 I have several clients that I use, mostly pidgin, though. I am also
12686 the Debian maintainer of Coccinella, a Jabber-based interactive
12687 whiteboard.&lt;/p&gt;
12688
12689 &lt;p&gt;My favourite terminal emulator is KDE&#39;s Yakuake.&lt;/p&gt;
12690
12691 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
12692 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
12693
12694 &lt;p&gt;Communicate, communicate, communicate. Enrol people, enrol people,
12695 enrol people.&lt;/p&gt;
12696 </description>
12697 </item>
12698
12699 <item>
12700 <title>SOAP based webservice from Dell to check server support status</title>
12701 <link>http://people.skolelinux.org/pere/blog/SOAP_based_webservice_from_Dell_to_check_server_support_status.html</link>
12702 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/SOAP_based_webservice_from_Dell_to_check_server_support_status.html</guid>
12703 <pubDate>Fri, 1 Jun 2012 15:20:00 +0200</pubDate>
12704 <description>&lt;p&gt;A few years ago I wrote
12705 &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
12706 to extract support status&lt;/a&gt; for your Dell and HP servers. Recently
12707 I have learned from colleges here at the
12708 &lt;a href=&quot;http://www.uio.no/&quot;&gt;University of Oslo&lt;/a&gt; that Dell have
12709 made this even easier, by providing a SOAP based web service. Given
12710 the service tag, one can now query the Dell servers and get machine
12711 readable information about the support status. This perl code
12712 demonstrate how to do it:&lt;/p&gt;
12713
12714 &lt;p&gt;&lt;pre&gt;
12715 use strict;
12716 use warnings;
12717 use SOAP::Lite;
12718 use Data::Dumper;
12719 my $GUID = &#39;11111111-1111-1111-1111-111111111111&#39;;
12720 my $App = &#39;test&#39;;
12721 my $servicetag = $ARGV[0] or die &quot;Please supply a servicetag. $!\n&quot;;
12722 my ($deal, $latest, @dates);
12723 my $s = SOAP::Lite
12724 -&gt; uri(&#39;http://support.dell.com/WebServices/&#39;)
12725 -&gt; on_action( sub { join &#39;&#39;, @_ } )
12726 -&gt; proxy(&#39;http://xserv.dell.com/services/assetservice.asmx&#39;)
12727 ;
12728 my $a = $s-&gt;GetAssetInformation(
12729 SOAP::Data-&gt;name(&#39;guid&#39;)-&gt;value($GUID)-&gt;type(&#39;&#39;),
12730 SOAP::Data-&gt;name(&#39;applicationName&#39;)-&gt;value($App)-&gt;type(&#39;&#39;),
12731 SOAP::Data-&gt;name(&#39;serviceTags&#39;)-&gt;value($servicetag)-&gt;type(&#39;&#39;),
12732 );
12733 print Dumper($a -&gt; result) ;
12734 &lt;/pre&gt;&lt;/p&gt;
12735
12736 &lt;p&gt;The output can look like this:&lt;/p&gt;
12737
12738 &lt;p&gt;&lt;pre&gt;
12739 $VAR1 = {
12740 &#39;Asset&#39; =&gt; {
12741 &#39;Entitlements&#39; =&gt; {
12742 &#39;EntitlementData&#39; =&gt; [
12743 {
12744 &#39;EntitlementType&#39; =&gt; &#39;Expired&#39;,
12745 &#39;EndDate&#39; =&gt; &#39;2009-07-29T00:00:00&#39;,
12746 &#39;Provider&#39; =&gt; &#39;&#39;,
12747 &#39;StartDate&#39; =&gt; &#39;2006-07-29T00:00:00&#39;,
12748 &#39;DaysLeft&#39; =&gt; &#39;0&#39;
12749 },
12750 {
12751 &#39;EntitlementType&#39; =&gt; &#39;Expired&#39;,
12752 &#39;EndDate&#39; =&gt; &#39;2009-07-29T00:00:00&#39;,
12753 &#39;Provider&#39; =&gt; &#39;&#39;,
12754 &#39;StartDate&#39; =&gt; &#39;2006-07-29T00:00:00&#39;,
12755 &#39;DaysLeft&#39; =&gt; &#39;0&#39;
12756 },
12757 {
12758 &#39;EntitlementType&#39; =&gt; &#39;Expired&#39;,
12759 &#39;EndDate&#39; =&gt; &#39;2007-07-29T00:00:00&#39;,
12760 &#39;Provider&#39; =&gt; &#39;&#39;,
12761 &#39;StartDate&#39; =&gt; &#39;2006-07-29T00:00:00&#39;,
12762 &#39;DaysLeft&#39; =&gt; &#39;0&#39;
12763 }
12764 ]
12765 },
12766 &#39;AssetHeaderData&#39; =&gt; {
12767 &#39;SystemModel&#39; =&gt; &#39;GX620&#39;,
12768 &#39;ServiceTag&#39; =&gt; &#39;8DSGD2J&#39;,
12769 &#39;SystemShipDate&#39; =&gt; &#39;2006-07-29T19:00:00-05:00&#39;,
12770 &#39;Buid&#39; =&gt; &#39;2323&#39;,
12771 &#39;Region&#39; =&gt; &#39;Europe&#39;,
12772 &#39;SystemID&#39; =&gt; &#39;PLX_GX620&#39;,
12773 &#39;SystemType&#39; =&gt; &#39;OptiPlex&#39;
12774 }
12775 }
12776 };
12777 &lt;/pre&gt;&lt;/p&gt;
12778
12779 &lt;p&gt;I have not been able to find any documentation from Dell about this
12780 service outside the
12781 &lt;a href=&quot;http://xserv.dell.com/services/assetservice.asmx?op=GetAssetInformation&quot;&gt;inline
12782 documentation&lt;/a&gt;, and according to
12783 &lt;a href=&quot;http://iboyd.net/index.php/2012/02/14/updated-dell-warranty-information-script/&quot;&gt;one
12784 comment&lt;/a&gt; it can have stability issues, but it is a lot better than
12785 scraping HTML pages. :)&lt;/p&gt;
12786
12787 &lt;p&gt;Wonder if HP and other server vendors have a similar service. If
12788 you know of one, drop me an email. :)&lt;/p&gt;
12789 </description>
12790 </item>
12791
12792 <item>
12793 <title>First monitor calibration using ColorHug</title>
12794 <link>http://people.skolelinux.org/pere/blog/First_monitor_calibration_using_ColorHug.html</link>
12795 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_monitor_calibration_using_ColorHug.html</guid>
12796 <pubDate>Thu, 31 May 2012 22:10:00 +0200</pubDate>
12797 <description>&lt;p&gt;A few days ago my color calibration gadget
12798 &lt;a href=&quot;http://www.hughski.com/index.html&quot;&gt;ColorHug&lt;/a&gt; arrived in the
12799 mail, and I&#39;ve had a few days to test it. As all my machines are
12800 running Debian Squeeze, where
12801 &lt;a href=&quot;http://packages.qa.debian.org/c/colorhug-client.html&quot;&gt;the
12802 calibration software&lt;/a&gt; is missing (it is present in Wheezy and Sid),
12803 I ran the calibration using the Fedora based live CD. This worked
12804 just fine. So far I have only done the quick calibration. It was
12805 slow enough for me, so I will leave the more extensive calibration for
12806 another day.&lt;/p&gt;
12807
12808 &lt;p&gt;After calibration, I get a
12809 &lt;a href=&quot;http://en.wikipedia.org/wiki/ICC_profile&quot;&gt;ICC color
12810 profile&lt;/a&gt; file that can be passed to programs understanding such
12811 tools. KDE do not seem to understand it out of the box, so I searched
12812 for command line tools to use to load the color profile into X.
12813 xcalib was the first one I found, and it seem to work fine for single
12814 monitor setups. But for my video player, a laptop with a flat screen
12815 attached, it was unable to load the color profile for the correct
12816 monitor. After searching a bit, I
12817 &lt;a href=&quot;http://ubuntuforums.org/showthread.php?t=1347896&quot;&gt;discovered&lt;/a&gt;
12818 that the dispwin tool from the argyll package would do what I wanted,
12819 and a simple&lt;/p&gt;
12820
12821 &lt;p&gt;&lt;pre&gt;
12822 dispwin -d 1 profile.icc
12823 &lt;/pre&gt;&lt;/p&gt;
12824
12825 &lt;p&gt;later I had the color profile loaded for the correct monitor. The
12826 result was a bit more pink than I expected. I guess I picked the
12827 wrong monitor type for the &quot;led&quot; monitor I got, but the result is good
12828 enough for now.&lt;/p&gt;
12829 </description>
12830 </item>
12831
12832 <item>
12833 <title>Debian Edu interview: Ralf Gesellensetter</title>
12834 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Ralf_Gesellensetter.html</link>
12835 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Ralf_Gesellensetter.html</guid>
12836 <pubDate>Sun, 27 May 2012 17:15:00 +0200</pubDate>
12837 <description>&lt;p&gt;In 2003, a German teacher showed up on the
12838 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
12839 mailing list with interesting problems and reports proving he setting
12840 up Linux for a (for us at the time) lot of pupils. His name was Ralf
12841 Gesellensetter, and he has been an important tester and contributor
12842 since then, helping to make sure the
12843 &lt;a href=&quot;http://www.debian.org/News/2012/20120311.html&quot;&gt;Debian Edu
12844 Squeeze&lt;/a&gt; release became as good as it is..&lt;/p&gt;
12845
12846 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
12847
12848 &lt;p&gt;I am a teacher from Germany, and my subjects are Geography,
12849 Mathematics, and Computer Science (&quot;Informatik&quot;). During the past 12
12850 years (since 2000), I have been working for a comprehensive (and soon,
12851 also inclusive) school leading to all kind of general levels, such as
12852 O- or A-level (&quot;Abitur&quot;). For quite as long, I&#39;ve been taking care of
12853 our computer network.&lt;/p&gt;
12854
12855 &lt;p&gt;Now, in my early 40s, I enjoy the privilege of spending a lot of my
12856 spare time together with my wife, our son (3 years) and our daughter
12857 (4 months).&lt;/p&gt;
12858
12859 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
12860 project?&lt;/strong&gt;&lt;/p&gt;
12861
12862 &lt;p&gt;We had tried different Linux based school servers, when members of
12863 my local Linux User Group (LUG OWL) detected Skolelinux. I remember
12864 very well, being part of a party celebrating the Linux New Media Award
12865 (&quot;Best Newcomer Distribution&quot;, also nominated: Ubuntu) that was given
12866 to Skolelinux at Linux World Exposition in Frankfurt, 2005 (IIRC). Few
12867 months later, I had the chance to join a developer meeting in Ulsrud
12868 (Oslo) and to hand out the award to Knut Yrvin and others. For more
12869 than 7 years, Skolelinux is part of our schools infrastructure, namely
12870 our main server (tjener), one LTSP (today without thin clients), and
12871 approximately 50 work stations. Most of these have the option to boot a
12872 locally installed Skolelinux image. As a consequence, I joined quite
12873 a few events dealing with free software or Linux, and met many Debian
12874 (Edu) developers. All of them seemed quite nice and competent to me,
12875 one more reason to stick to Skolelinux.&lt;/p&gt;
12876
12877 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
12878 Edu?&lt;/strong&gt;&lt;/p&gt;
12879
12880 &lt;p&gt;Debian driven, you are given all the advantages of a community
12881 project including well maintained updates. Once, you are familiar with
12882 the network layout, you can easily roll out an entire educational
12883 computer infrastructure, from just one installation media. As only
12884 free software (FOSS) is used, that supports even elderly hardware,
12885 up-sizing your IT equipment is only limited by space (i.e. available
12886 labs). Especially if you run a LTSP thin client server, your
12887 administration costs tend towards zero.&lt;/p&gt;
12888
12889 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
12890 Edu?&lt;/strong&gt;&lt;/p&gt;
12891
12892 &lt;p&gt;While Debian&#39;s stability has loads of advantages for servers, this
12893 might be different in some cases for clients: Schools with unlimited
12894 budget might buy new hardware with components that are not yet
12895 supported by Debian stable, or wish to use more recent versions of
12896 office packages or desktop environments. These schools have the
12897 option to run Debian testing or other distributions - if they have the
12898 capacity to do so. Another issue is that Debian release cycles
12899 include a wide range of changes; therefor a high percentage of human
12900 power seems to be absorbed by just keeping the features of Skolelinux
12901 within the new setting of the version to come. During this process,
12902 the cogs of Debian Edu are getting more and more professional,
12903 i.e. harder to understand for novices.&lt;/p&gt;
12904
12905 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
12906
12907 &lt;p&gt;LibreOffice, Wikipedia, Openstreetmap, Iceweasel (Mozilla Firefox),
12908 KMail, Gimp, Inkscape - and of course the Linux Kernel (not only on
12909 PC, Laptop, Mobile, but also our SAT receiver)&lt;/p&gt;
12910
12911 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
12912 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
12913
12914 &lt;p&gt;&lt;ol&gt;
12915
12916 &lt;li&gt;Support computer science as regular subject in schools to make
12917 people really &quot;own&quot; their hardware, to make them understand the
12918 difference between proprietary software products, and free software
12919 developing.&lt;/li&gt;
12920
12921 &lt;li&gt;Make budget baskets corresponding: In Germany&#39;s public schools
12922 there are more or less fixed budgets for IT equipment (including
12923 licenses), so schools won&#39;t benefit from any savings here. This
12924 privilege is left to private schools which have consequently a large
12925 share among German Skolelinux schools.&lt;/li&gt;
12926
12927 &lt;li&gt;Get free software in the seminars where would-be teachers are
12928 trained. In many cases, teachers&#39; software customs are respected by
12929 decision makers rather than the expertise of any IT experts.&lt;/li&gt;
12930
12931 &lt;li&gt;Don&#39;t limit ourself to free software run natively. Everybody uses
12932 free software or free licenses (for instance Wikipedia), and this
12933 general concept should get expanded to free educational content to be
12934 shared world wide (school books e.g.).&lt;/li&gt;
12935
12936 &lt;li&gt;Make clear where ever you can that the market share of free (libre)
12937 office suites is much above 20 p.c. today, and that you pupils don&#39;t
12938 need to know the &quot;ribbon menu&quot; in order to get employed.&lt;/li&gt;
12939
12940 &lt;li&gt;Talk about the difference between freeware and free software.&lt;/li&gt;
12941
12942 &lt;li&gt;Spread free software, or even collections of portable free apps
12943 for USB pen drives. Endorse students to get a legal copy of
12944 Libreoffice rather than accepting them to use illegal serials. And
12945 keep sending documents in ODF formats.&lt;/li&gt;
12946
12947 &lt;/ol&gt;&lt;/p&gt;
12948 </description>
12949 </item>
12950
12951 <item>
12952 <title>The cost of ODF and OOXML</title>
12953 <link>http://people.skolelinux.org/pere/blog/The_cost_of_ODF_and_OOXML.html</link>
12954 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_cost_of_ODF_and_OOXML.html</guid>
12955 <pubDate>Sat, 26 May 2012 18:00:00 +0200</pubDate>
12956 <description>&lt;p&gt;I just come across a blog post from Glyn Moody reporting the
12957 claimed cost from Microsoft on requiring ODF to be used by the UK
12958 government. I just sent him an email to let him know that his
12959 assumption are most likely wrong. Sharing it here in case some of my
12960 blog readers have seem the same numbers float around in the UK.&lt;/p&gt;
12961
12962 &lt;p&gt;&lt;blockquote&gt; &lt;p&gt;Hi. I just noted your
12963 &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;
12964 comment:&lt;/p&gt;
12965
12966 &lt;p&gt;&lt;blockquote&gt;&quot;They&#39;re all in Danish, not unreasonably, but even
12967 with the help of Google Translate I can&#39;t find any figures about the
12968 savings of &quot;moving to a flexible two standard&quot; as claimed by the
12969 Microsoft email. But I assume it is backed up somewhere, so let&#39;s take
12970 it, and the £500 million figure for the UK, on trust.&quot;
12971 &lt;/blockquote&gt;&lt;/p&gt;
12972
12973 &lt;p&gt;I can tell you that the Danish reports are inflated. I believe it is
12974 the same reports that were used in the Norwegian debate around 2007,
12975 and Gisle Hannemyr (a well known IT commentator in Norway) had a look
12976 at the content. In short, the reason it is claimed that using ODF
12977 will be so costly, is based on the assumption that this mean every
12978 existing document need to be converted from one of the MS Office
12979 formats to ODF, transferred to the receiver, and converted back from
12980 ODF to one of the MS Office formats, and that the conversion will cost
12981 10 minutes of work time for both the sender and the receiver. In
12982 reality the sender would have a tool capable of saving to ODF, and the
12983 receiver would have a tool capable of reading it, and the time spent
12984 would at most be a few seconds for saving and loading, not 20 minutes
12985 of wasted effort.&lt;/p&gt;
12986
12987 &lt;p&gt;Microsoft claimed all these costs were saved by allowing people to
12988 transfer the original files from MS Office instead of spending 10
12989 minutes converting to ODF. :)&lt;/p&gt;
12990
12991 &lt;p&gt;See
12992 &lt;a href=&quot;http://hannemyr.com/no/ms12_vl02.php&quot;&gt;http://hannemyr.com/no/ms12_vl02.php&lt;/a&gt;
12993 and
12994 &lt;a href=&quot;http://hannemyr.com/no/ms12.php&quot;&gt;http://hannemyr.com/no/ms12.php&lt;/a&gt;
12995 for background information. Norwegian only, sorry. :)&lt;/p&gt;
12996 &lt;/blockquote&gt;&lt;/p&gt;
12997 </description>
12998 </item>
12999
13000 <item>
13001 <title>ColorHug - USB and free software based screen color calibration</title>
13002 <link>http://people.skolelinux.org/pere/blog/ColorHug___USB_and_free_software_based_screen_color_calibration.html</link>
13003 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/ColorHug___USB_and_free_software_based_screen_color_calibration.html</guid>
13004 <pubDate>Fri, 18 May 2012 10:00:00 +0200</pubDate>
13005 <description>&lt;p&gt;In january, I
13006 &lt;a href=&quot;http://blog.cihar.com/archives/2012/01/17/colorhug-has-arrived/&quot;&gt;discovered
13007 the ColorHug&lt;/a&gt;, a USB dongle from
13008 &lt;a href=&quot;http://www.hughski.com/index.html&quot;&gt;Hughski&lt;/a&gt; to calibrate
13009 the color on a computer screen. The software required is
13010 &lt;a href=&quot;http://packages.qa.debian.org/c/colorhug-client.html&quot;&gt;included
13011 in Debian&lt;/a&gt;, and I decided back then to preorder from the next
13012 batch. Yesterday I finally heard back from them, and got the
13013 opportunity to order. Today I ordered mine, and eagerly await the
13014 delivery. I hope it arrive next week, as I got a confirmation that it
13015 should go in the mail on monday. :)&lt;/p&gt;
13016
13017 &lt;p&gt;If you want to ensure the colors on the screen match the intended
13018 colors, I suggest you check out this cheap tool with free software
13019 drivers. :)&lt;/p&gt;
13020 </description>
13021 </item>
13022
13023 <item>
13024 <title>Debian Edu interview: Jürgen Leibner</title>
13025 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__J_rgen_Leibner.html</link>
13026 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__J_rgen_Leibner.html</guid>
13027 <pubDate>Sun, 13 May 2012 20:30:00 +0200</pubDate>
13028 <description>&lt;p&gt;It has been a few busy weeks for me, but I am finally back to
13029 publish another interview with the people behind
13030 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;.
13031 This time it is one of our German developers, who have helped out over the
13032 years to make sure both a lot of major but also a lot of the minor
13033 details get right before release.
13034
13035 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
13036
13037 &lt;p&gt;My name is Jürgen Leibner, I&#39;m 49 years old and living in
13038 Bielefeld, a town in northern Germany. I worked nearly 20 years as
13039 certified engineer in the department for plant design and layout of an
13040 international company for machinery and equipment. Since 2011 I&#39;m a
13041 certified technical writer (tekom e.V.) and doing technical
13042 documentations for a steam turbine manufacturer. From April this year
13043 I will manage the department of technical documentation at a
13044 manufacturer of automation and assembly line engineering.&lt;/p&gt;
13045
13046 &lt;p&gt;My first contact with linux was around 1993. Since that time I used
13047 it at work and at home repeatedly but not exclusively as I do now at
13048 home since 2006.&lt;/p&gt;
13049
13050 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
13051 project?&lt;/strong&gt;&lt;/p&gt;
13052
13053 &lt;p&gt;Once a day in the early year of 2001 when I wanted to fetch my
13054 daughter from primary school, there was a teacher sitting in the
13055 middle of 20 old computers trying to boot them and he failed. I helped
13056 him to get them booting. That was seen by the school director and she
13057 asked me if I would like to manage that the school gets all that old
13058 computers in use. I answered: &quot;Yes&quot;.&lt;/p&gt;
13059
13060 &lt;p&gt;Some weeks later every of the 10 classrooms had one computer
13061 running Windows98. I began to collect old computers and equipment as
13062 gifts and installed the first computer room with a peer-to-peer
13063 network. I did my work at school without being payed in my spare time
13064 and with a lot of fun. About one year later the school was connected
13065 to Internet and a local area network was installed in the school
13066 building. That was the time to have a server and I knew it must be a
13067 Linux server to be able to fulfil all the wishes of the teachers and
13068 being able to do this in a transparent and economic way, without extra
13069 costs for things like licence and software. So I searched for a
13070 school server system running under Linux and I found a couple of
13071 people nearby who founded &#39;skolelinux.de&#39;. It was the Skolelinux
13072 prerelease 32 I first tried out for being used at the school. I
13073 managed the IT of that school until the municipal authority took over
13074 the IT management and centralised the services for all schools in
13075 Bielefeld in December of 2006.&lt;/p&gt;
13076
13077 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
13078 Edu?&lt;/strong&gt;&lt;/p&gt;
13079
13080 &lt;p&gt;When I&#39;m looking back to the beginning, there were other advantages
13081 for me as today.&lt;/p&gt;
13082
13083 &lt;p&gt;In the past there were advantages like:&lt;/p&gt;
13084
13085 &lt;p&gt;&lt;ul&gt;
13086
13087 &lt;li&gt;I don&#39;t need to buy it so it generates no costs to the school as
13088 they had little money to spent for computers and software.&lt;/li&gt;
13089
13090 &lt;li&gt;It has a licence which grands all rights to use it without
13091 cost.&lt;/li&gt;
13092
13093 &lt;li&gt;It was more able to fit all requirements of a server system for
13094 schools than a Microsoft server system, even if there are only Windows
13095 clients because of it&#39;s preconfigured overall concept of being a
13096 infrastructure solution and community for schools, not only a
13097 server&lt;/li&gt;
13098
13099 &lt;li&gt;I was able to configure the server to the needs of the
13100 school.&lt;/li&gt;
13101
13102 &lt;/ul&gt;&lt;/p&gt;
13103
13104 &lt;p&gt;Today some of the advantages has been lost, changed or new ones
13105 came up in this way:&lt;/p&gt;
13106
13107 &lt;p&gt;&lt;ul&gt;
13108
13109 &lt;li&gt;Most schools here do have money to buy hardware and software
13110 now.&lt;/li&gt;
13111
13112 &lt;li&gt;They are today mostly managed from central IT departments which
13113 have own concepts which often do not fit to Debian Edu concepts
13114 because they are to close to Microsoft ideology.&lt;/li&gt;
13115
13116 &lt;li&gt;With the Squeeze version of Debian Edu which now uses GOsa² for
13117 management I feel more able to manage the daily tasks than with the
13118 interfaces used in the past.&lt;/li&gt;
13119
13120 &lt;li&gt;It is more modular than in the past and fits even better to the
13121 different needs.&lt;/li&gt;
13122
13123 &lt;li&gt;The documentation is usable and gets better every day.&lt;/li&gt;
13124
13125 &lt;li&gt;More people than ever before are using Debian Edu all over the
13126 world and so the community, which is an very important part I think,
13127 is sharing knowledge and minds.&lt;/li&gt;
13128
13129 &lt;li&gt;Most, maybe all, of the technical requirements for schools are
13130 solved today by Debian Edu. &lt;/li&gt;
13131
13132 &lt;/ul&gt;&lt;/p&gt;
13133
13134 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
13135 Edu?&lt;/strong&gt;&lt;/p&gt;
13136
13137 &lt;p&gt;&lt;ul&gt;
13138
13139 &lt;li&gt;There are too few IT companies able to integrate Debian Edu into
13140 their product portfolio for serving schools with concepts or even
13141 whole municipality areas.&lt;/li&gt;
13142
13143 &lt;li&gt;Debian Edu has beside other free and open software projects not
13144 enough lobbyists which promote free and open software to
13145 politicians.&lt;/li&gt;
13146
13147 &lt;li&gt;Technically there are no disadvantages I&#39;m aware of.&lt;/li&gt;
13148
13149 &lt;/ul&gt;&lt;/p&gt;
13150
13151 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
13152
13153 &lt;p&gt;I use Debian stable on my home server and on my little desktop
13154 computer. On my laptop I use Debian testing/sid. The applications I
13155 use on my laptop and my desktop are Open/Libre-office, Iceweasel,
13156 KMail, DigiKam, Amarok, Dolphin, okular and all the other programs I
13157 need from the KDE environment. On console I use newsbeuter, mutt,
13158 screen, irssi and all the other famous and useful tools.&lt;/p&gt;
13159
13160 &lt;p&gt;My home server provides mail services with exim, dovecot, roundcube
13161 and mutt over ssh on the console, file services with samba, NFS,
13162 rsync, web services with apache, moinmoin-wiki, multimedia services
13163 with gallery2 and mediatomb and database services with MySQL for me
13164 and the whole family. I probably forgot something.&lt;/p&gt;
13165
13166 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
13167 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
13168
13169 &lt;p&gt;I believe, we should provide concepts for IT companies to integrate
13170 Debian Edu into their product portfolio with use cases for different
13171 countries and areas all over the world.&lt;/p&gt;
13172 </description>
13173 </item>
13174
13175 <item>
13176 <title>Cutting it short - and picking the right tool for the job</title>
13177 <link>http://people.skolelinux.org/pere/blog/Cutting_it_short___and_picking_the_right_tool_for_the_job.html</link>
13178 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Cutting_it_short___and_picking_the_right_tool_for_the_job.html</guid>
13179 <pubDate>Mon, 30 Apr 2012 23:30:00 +0200</pubDate>
13180 <description>&lt;p&gt;&lt;!-- IMG_5869.JPG --&gt;
13181 &lt;img src=&quot;http://people.skolelinux.org/pere/blog/images/panasonic-er-1611.jpeg&quot;&gt;&lt;/p&gt;
13182
13183 &lt;p&gt;I normally cut my hair short, and my tool of choice has been a
13184 common hair/beard cutter, bought in a electrical shop here in Norway.
13185 But the last ones have not really been up to the task. My last
13186 cutter, some model from Braun, could only cut a few of my hairs at the
13187 time, and cutting my head took forever. And the one before that did
13188 not work very well either. We have looked for something better for a
13189 while, but it was not until I ended up visiting a hairdresser that we
13190 discovered that there are indeed better tools available. But these
13191 are not marketed and sold to &quot;regular consumers&quot;. The hair saloons
13192 can get them through their suppliers, but their suppliers only sell
13193 companies. The models they sell, are very different from the ones
13194 available from Elkjøp and Lefdal. The main difference is their
13195 efficiency. It would cut my hair in 5 minutes, instead of the 30-40
13196 minutes required by my impotent Braun. The hairdresser I visited had
13197 a Panasonic ER160, which unfortunately is no longer available from the
13198 producer. But I found it had a successor, the Panasonic ER1611.&lt;/p&gt;
13199
13200 &lt;p&gt;The next step was to find somewhere to buy it. This was not
13201 straight forward. The list of suppliers I got from the hairdresser
13202 did not want to sell anything to me. But searching for the model on
13203 the web we found a supplier in Norway willing to sell it to us for
13204 around NOK 4000,-. This was a bit much. We kept searching and
13205 finally found a Danish supplier
13206 &lt;a href=&quot;http://nicehair.dk/panasonic-er-1611-professionel-hartrimmer.html&quot;&gt;selling
13207 it for around NOK 1800,-&lt;/a&gt;. We ordered one, and it arrived a few
13208 days ago.&lt;/p&gt;
13209
13210 &lt;p&gt;The instructions said it had to charge for 8 hours when we started
13211 to use it, so we left it charging over night. Normally it will only
13212 need one hour to charge. The following evening we successfully tested
13213 it, and I can warmly recommend it to anyone looking for a real hair
13214 cutter. The ones we have used until now have been hair cutter
13215 toys.&lt;/p&gt;
13216 </description>
13217 </item>
13218
13219 <item>
13220 <title>HTC One X - Your video? What do you mean?</title>
13221 <link>http://people.skolelinux.org/pere/blog/HTC_One_X___Your_video___What_do_you_mean_.html</link>
13222 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/HTC_One_X___Your_video___What_do_you_mean_.html</guid>
13223 <pubDate>Thu, 26 Apr 2012 13:20:00 +0200</pubDate>
13224 <description>&lt;p&gt;In &lt;a href=&quot;http://www.idg.no/computerworld/article243690.ece&quot;&gt;an
13225 article today&lt;/a&gt; published by Computerworld Norway, the photographer
13226 &lt;a href=&quot;http://www.urke.com/eirik/&quot;&gt;Eirik Helland Urke&lt;/a&gt; reports
13227 that the video editor application included with
13228 &lt;a href=&quot;http://www.htc.com/www/smartphones/htc-one-x/#specs&quot;&gt;HTC One
13229 X&lt;/a&gt; have some quite surprising terms of use. The article is mostly
13230 based on the twitter message from mister Urke, stating:
13231
13232 &lt;p&gt;&lt;blockquote&gt;
13233 &quot;&lt;a href=&quot;http://twitter.com/urke/status/194062269724897280&quot;&gt;Drøy
13234 brukeravtale: HTC kan bruke MINE redigerte videoer kommersielt. Selv
13235 kan jeg KUN bruke dem privat.&lt;/a&gt;&quot;
13236 &lt;/blockquote&gt;&lt;/p&gt;
13237
13238 &lt;p&gt;I quickly translated it to this English message:&lt;/p&gt;
13239
13240 &lt;p&gt;&lt;blockquote&gt;
13241 &quot;Arrogant user agreement: HTC can use MY edited videos
13242 commercially. Although I can ONLY use them privately.&quot;
13243 &lt;/blockquote&gt;&lt;/p&gt;
13244
13245 &lt;p&gt;I&#39;ve been unable to find the text of the license term myself, but
13246 suspect it is a variation of the MPEG-LA terms I
13247 &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
13248 with my Canon IXUS 130&lt;/a&gt;. The HTC One X specification specifies that
13249 the recording format of the phone is .amr for audio and .mp3 for
13250 video. AMR is
13251 &lt;a href=&quot;http://en.wikipedia.org/wiki/Adaptive_Multi-Rate_audio_codec#Licensing_and_patent_issues&quot;&gt;Adaptive
13252 Multi-Rate audio codec&lt;/a&gt; with patents which according to the
13253 Wikipedia article require an license agreement with
13254 &lt;a href=&quot;http://www.voiceage.com/&quot;&gt;VoiceAge&lt;/a&gt;. MP4 is
13255 &lt;a href=&quot;http://en.wikipedia.org/wiki/H.264/MPEG-4_AVC#Patent_licensing&quot;&gt;MPEG4 with
13256 H.264&lt;/a&gt;, which according to Wikipedia require a licence agreement
13257 with &lt;a href=&quot;http://www.mpegla.com/&quot;&gt;MPEG-LA&lt;/a&gt;.&lt;/p&gt;
13258
13259 &lt;p&gt;I know why I prefer
13260 &lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;free and open
13261 standards&lt;/a&gt; also for video.&lt;/p&gt;
13262 </description>
13263 </item>
13264
13265 <item>
13266 <title>RAND terms - non-reasonable and discriminatory</title>
13267 <link>http://people.skolelinux.org/pere/blog/RAND_terms___non_reasonable_and_discriminatory.html</link>
13268 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/RAND_terms___non_reasonable_and_discriminatory.html</guid>
13269 <pubDate>Thu, 19 Apr 2012 22:20:00 +0200</pubDate>
13270 <description>&lt;p&gt;Here in Norway, the
13271 &lt;a href=&quot;http://www.regjeringen.no/nb/dep/fad.html?id=339&quot;&gt; Ministry of
13272 Government Administration, Reform and Church Affairs&lt;/a&gt; is behind
13273 a &lt;a href=&quot;http://standard.difi.no/forvaltningsstandarder&quot;&gt;directory of
13274 standards&lt;/a&gt; that are recommended or mandatory for use by the
13275 government. When the directory was created, the people behind it made
13276 an effort to ensure that everyone would be able to implement the
13277 standards and compete on equal terms to supply software and solutions
13278 to the government. Free software and non-free software could compete
13279 on the same level.&lt;/p&gt;
13280
13281 &lt;p&gt;But recently, some standards with RAND
13282 (&lt;a href=&quot;http://en.wikipedia.org/wiki/Reasonable_and_non-discriminatory_licensing&quot;&gt;Reasonable
13283 And Non-Discriminatory&lt;/a&gt;) terms have made their way into the
13284 directory. And while this might not sound too bad, the fact is that
13285 standard specifications with RAND terms often block free software from
13286 implementing them. The reasonable part of RAND mean that the cost per
13287 user/unit is low,and the non-discriminatory part mean that everyone
13288 willing to pay will get a license. Both sound great in theory. In
13289 practice, to get such license one need to be able to count users, and
13290 be able to pay a small amount of money per unit or user. By
13291 definition, users of free software do not need to register their use.
13292 So counting users or units is not possible for free software projects.
13293 And given that people will use the software without handing any money
13294 to the author, it is not really economically possible for a free
13295 software author to pay a small amount of money to license the rights
13296 to implement a standard when the income available is zero. The result
13297 in these situations is that free software are locked out from
13298 implementing standards with RAND terms.&lt;/p&gt;
13299
13300 &lt;p&gt;Because of this, when I see someone claiming the terms of a
13301 standard is reasonable and non-discriminatory, all I can think of is
13302 how this really is non-reasonable and discriminatory. Because free
13303 software developers are working in a global market, it does not really
13304 help to know that software patents are not supposed to be enforceable
13305 in Norway. The patent regimes in other countries affect us even here.
13306 I really hope the people behind the standard directory will pay more
13307 attention to these issues in the future.&lt;/p&gt;
13308
13309 &lt;p&gt;You can find more on the issues with RAND, FRAND and RAND-Z terms
13310 from Simon Phipps
13311 (&lt;a href=&quot;http://blogs.computerworlduk.com/simon-says/2010/11/rand-not-so-reasonable/&quot;&gt;RAND:
13312 Not So Reasonable?&lt;/a&gt;).&lt;/p&gt;
13313
13314 &lt;p&gt;Update 2012-04-21: Just came across a
13315 &lt;a href=&quot;http://blogs.computerworlduk.com/open-enterprise/2012/04/of-microsoft-netscape-patents-and-open-standards/index.htm&quot;&gt;blog
13316 post from Glyn Moody&lt;/a&gt; over at Computer World UK warning about the
13317 same issue, and urging people to speak out to the UK government. I
13318 can only urge Norwegian users to do the same for
13319 &lt;a href=&quot;http://www.standard.difi.no/hoyring/hoyring-om-nye-anbefalte-it-standarder&quot;&gt;the
13320 hearing taking place at the moment&lt;/a&gt; (respond before 2012-04-27).
13321 It proposes to require video conferencing standards including
13322 specifications with RAND terms.&lt;/p&gt;
13323 </description>
13324 </item>
13325
13326 <item>
13327 <title>Debian Edu interview: Andreas Mundt</title>
13328 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Andreas_Mundt.html</link>
13329 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Andreas_Mundt.html</guid>
13330 <pubDate>Sun, 15 Apr 2012 12:10:00 +0200</pubDate>
13331 <description>&lt;p&gt;Behind &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and
13332 Skolelinux&lt;/a&gt; there are a lot of people doing the hard work of
13333 setting together all the pieces. This time I present to you Andreas
13334 Mundt, who have been part of the technical development team several
13335 years. He was also a key contributor in getting GOsa and Kerberos set
13336 up in the recently released
13337 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze&quot;&gt;Debian
13338 Edu Squeeze&lt;/a&gt; version.&lt;/p&gt;
13339
13340 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
13341
13342 &lt;p&gt;My name is Andreas Mundt, I grew up in south Germany. After
13343 studying Physics I spent several years at university doing research in
13344 Quantum Optics. After that I worked some years in an optics company.
13345 Finally I decided to turn over a new leaf in my life and started
13346 teaching 10 to 19 years old kids at school. I teach math, physics,
13347 information technology and science/technology.&lt;/p&gt;
13348
13349 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
13350 project?&lt;/strong&gt;&lt;/p&gt;
13351
13352 &lt;p&gt;Already before I switched to teaching, I followed the Debian Edu
13353 project because of my interest in education and Debian. Within the
13354 qualification/training period for the teaching, I started
13355 contributing.&lt;/p&gt;
13356
13357 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
13358 Edu?&lt;/strong&gt;&lt;/p&gt;
13359
13360 &lt;p&gt;The advantages of Debian Edu are the well known name, the
13361 out-of-the-box philosophy and of course the great free software of the
13362 Debian Project!&lt;/p&gt;
13363
13364 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
13365 Edu?&lt;/strong&gt;&lt;/p&gt;
13366
13367 &lt;p&gt;As every coin has two sides, the out-of-the-box philosophy has its
13368 downside, too. In my opinion, it is hard to modify and tweak the
13369 setup, if you need or want that. Further more, it is not easily
13370 possible to upgrade the system to a new release. It takes much too
13371 long after a Debian release to prepare the -Edu release, perhaps
13372 because the number of developers working on the core of the code is
13373 rather small and often busy elsewhere.&lt;/p&gt;
13374
13375 &lt;p&gt;The &lt;a href=&quot;http://wiki.debian.org/DebianLAN&quot;&gt;Debian LAN&lt;/a&gt;
13376 project might fill the use case of a more flexible system.&lt;/p&gt;
13377
13378 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
13379
13380 &lt;p&gt;I am only using non-free software if I am forced to and run Debian
13381 on all my machines. For documents I prefer LaTeX and PGF/TikZ, then
13382 mutt and iceweasel for email respectively web browsing. At school I
13383 have Arduino and Fritzing in use for a micro controller project.&lt;/p&gt;
13384
13385 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
13386 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
13387
13388 &lt;p&gt;One of the major problems is the vendor lock-in from top to bottom:
13389 Especially in combination with ignorant government employees and
13390 politicians, this works out great for the &quot;market-leader&quot;. The school
13391 administration here in Baden-Wuerttemberg is occupied by that vendor.
13392 Documents have to be prepared in non-free, proprietary formats. Even
13393 free browsers do not work for the school administration. Publishers
13394 of school books provide software only for proprietary platforms.&lt;/p&gt;
13395
13396 &lt;p&gt;To change this, political work is very important. Parts of the
13397 political spectrum have become aware of the problem in the last years.
13398 However it takes quite some time and courageous politicians to &#39;free&#39;
13399 the system. There is currently some discussion about &quot;Open Data&quot; and
13400 &quot;Free/Open Standards&quot;. I am not sure if all the involved parties have
13401 a clue about the potential of these ideas, and probably only a
13402 fraction takes them seriously. However it might slowly make free
13403 software and the philosophy behind it more known and popular.&lt;/p&gt;
13404 </description>
13405 </item>
13406
13407 <item>
13408 <title>Debian Edu interview: Justin B. Rye</title>
13409 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Justin_B__Rye.html</link>
13410 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Justin_B__Rye.html</guid>
13411 <pubDate>Sun, 8 Apr 2012 10:50:00 +0200</pubDate>
13412 <description>&lt;p&gt;It take all kind of contributions to create a Linux distribution
13413 like &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;,
13414 and this time I lend the ear to Justin B. Rye, who is listed as a big
13415 contributor to the
13416 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze&quot;&gt;Debian
13417 Edu Squeeze release manual&lt;/a&gt;.
13418
13419 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
13420
13421 &lt;p&gt;I&#39;m a 44-year-old linguistics graduate living in Edinburgh who has
13422 occasionally been employed as a sysadmin.&lt;/p&gt;
13423
13424 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
13425 project?&lt;/strong&gt;&lt;/p&gt;
13426
13427 &lt;p&gt;I&#39;m neither a developer nor a Skolelinux/Debian Edu user! The only
13428 reason my name&#39;s in the credits for the documentation is that I hang
13429 around on debian-l10n-english waiting for people to mention things
13430 they&#39;d like a native English speaker to proofread... So I did a sweep
13431 through the wiki for typos and Norglish and inconsistent spellings of
13432 &quot;localisation&quot;.&lt;/p&gt;
13433
13434 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
13435 Edu?&lt;/strong&gt;&lt;/p&gt;
13436
13437 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
13438 Edu?&lt;/strong&gt;&lt;/p&gt;
13439
13440 &lt;p&gt;These questions are too hard for me - I don&#39;t use it! In fact I
13441 had hardly any contact with I.T. until long after I&#39;d got out of the
13442 education system.&lt;/p&gt;
13443
13444 &lt;p&gt;I can tell you the advantages of Debian for me though: it soaks up
13445 as much of my free time as I want and no more, and lets me do
13446 everything I want a computer for without ever forcing me to spend
13447 money on the latest hardware.&lt;/p&gt;
13448
13449 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
13450
13451 &lt;p&gt;I&#39;ve been using Debian since Rex; popularity-contest says the
13452 software that I use most is xinit, xterm, and xulrunner (in other
13453 words, I use a distinctly retro sort of desktop).&lt;/p&gt;
13454
13455 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
13456 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
13457
13458 &lt;p&gt;Well, I don&#39;t know. I suppose I&#39;d be inclined to try reasoning
13459 with the people who make the decisions, but obviously if that worked
13460 you would hardly need a strategy.&lt;/p&gt;
13461 </description>
13462 </item>
13463
13464 <item>
13465 <title>Why the KDE menu is slow when /usr/ is NFS mounted - and a workaround</title>
13466 <link>http://people.skolelinux.org/pere/blog/Why_the_KDE_menu_is_slow_when__usr__is_NFS_mounted___and_a_workaround.html</link>
13467 <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>
13468 <pubDate>Fri, 6 Apr 2012 22:40:00 +0200</pubDate>
13469 <description>&lt;p&gt;Recently I have spent time with
13470 &lt;a href=&quot;http://www.slxdrift.no/&quot;&gt;Skolelinux Drift AS&lt;/a&gt; on speeding
13471 up a &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;
13472 Lenny installation using LTSP diskless workstations, and in the
13473 process I discovered something very surprising. The reason the KDE
13474 menu was responding slow when using it for the first time, was mostly
13475 due to the way KDE find application icons. I discovered that showing
13476 the Multimedia menu would cause more than 20 000 IP packages to be
13477 passed between the LTSP client and the NFS server. Most of these were
13478
13479 NFS LOOKUP calls, resulting in a NFS3ERR_NOENT response. Because the
13480 ping times between the client and the server were in the range 2-20
13481 ms, the menus would be very slow. Looking at the strace of kicker in
13482 Lenny (or plasma-desktop i Squeeze - same problem there), I see that
13483 the source of these NFS calls are access(2) system calls for
13484 non-existing files. KDE can do hundreds of access(2) calls to find
13485 one icon file. In my example, just finding the mplayer icon required
13486 around 230 access(2) calls.&lt;/p&gt;
13487
13488 &lt;p&gt;The KDE code seem to search for icons using a list of icon
13489 directories, and the list of possible directories is large. In
13490 (almost) each directory, it look for files ending in .png, .svgz, .svg
13491 and .xpm. The result is a very slow KDE menu when /usr/ is NFS
13492 mounted. Showing a single sub menu may result in thousands of NFS
13493 requests. I am not the first one to discover this. I found a
13494 &lt;a href=&quot;https://bugs.kde.org/show_bug.cgi?id=211416&quot;&gt;KDE bug report
13495 from 2009&lt;/a&gt; about this problem, and it is still unsolved.&lt;/p&gt;
13496
13497 &lt;p&gt;My solution to speed up the KDE menu was to create a package
13498 kde-icon-cache that upon installation will look at all .desktop files
13499 used to generate the KDE menu, find their icons, search the icon paths
13500 for the file that KDE will end up finding at run time, and copying the
13501 icon file to /var/lib/kde-icon-cache/. Finally, I add symlinks to
13502 these icon files in one of the first directories where KDE will look
13503 for them. This cut down the number of file accesses required to find
13504 one icon from several hundred to less than 5, and make the KDE menu
13505 almost instantaneous. I&#39;m not quite sure where to make the package
13506 publicly available, so for now it is only available on request.&lt;/p&gt;
13507
13508 &lt;p&gt;The bug report mention that this do not only affect the KDE menu
13509 and icon handling, but also the login process. Not quite sure how to
13510 speed up that part without replacing NFS with for example NBD, and
13511 that is not really an option at the moment.&lt;/p&gt;
13512
13513 &lt;p&gt;If you got feedback on this issue, please let us know on debian-edu
13514 (at) lists.debian.org.&lt;/p&gt;
13515
13516 &lt;p&gt;Update 2015-08-04: The
13517 &lt;a href=&quot;http://anonscm.debian.org/cgit/debian-edu/upstream/kde-icon-cache.git/&quot;&gt;source
13518 of the scripts and associated Debian package&lt;/a&gt; is available from the
13519 Debian Edu github repository.&lt;/p&gt;
13520 </description>
13521 </item>
13522
13523 <item>
13524 <title>Debian Edu in the Linux Weekly News</title>
13525 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_in_the_Linux_Weekly_News.html</link>
13526 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_in_the_Linux_Weekly_News.html</guid>
13527 <pubDate>Thu, 5 Apr 2012 08:00:00 +0200</pubDate>
13528 <description>&lt;p&gt;About two weeks ago, I was interviewed via email about
13529 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt; by
13530 Bruce Byfield in Linux Weekly News. The result was made public for
13531 non-subscribers today. I am pleased to see liked our Linux solution
13532 for schools. Check out his article
13533 &lt;a href=&quot;https://lwn.net/Articles/488805/&quot;&gt;Debian Edu/Skolelinux: A
13534 distribution for education&lt;/a&gt; if you want to learn more.&lt;/p&gt;
13535 </description>
13536 </item>
13537
13538 <item>
13539 <title>Debian Edu interview: Wolfgang Schweer</title>
13540 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Wolfgang_Schweer.html</link>
13541 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Wolfgang_Schweer.html</guid>
13542 <pubDate>Sun, 1 Apr 2012 23:00:00 +0200</pubDate>
13543 <description>&lt;p&gt;Germany is a core area for the
13544 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and Skolelinux&lt;/a&gt;
13545 user community, and this time I managed to get hold of Wolfgang
13546 Schweer, a valuable contributor to the project from Germany.
13547
13548 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
13549
13550 &lt;p&gt;I&#39;ve studied Mathematics at the university &#39;Ruhr-Universität&#39; in
13551 Bochum, Germany. Since 1981 I&#39;m working as a teacher at the school
13552 &quot;&lt;a href=&quot;http://www.westfalenkolleg-dortmund.de/&quot;&gt;Westfalen-Kolleg
13553 Dortmund&lt;/a&gt;&quot;, a second chance school. Here, young adults is given
13554 the opportunity to get further education in order to do the school
13555 examination &#39;Abitur&#39;, which will allow to study at a university. This
13556 second chance is of value for those who want a better job perspective
13557 or failed to get a higher school examination being teens.&lt;/p&gt;
13558
13559 &lt;p&gt;Besides teaching I was involved in developing online courses for a
13560 blended learning project called &#39;abitur-online.nrw&#39; and in some other
13561 information technology related projects. For about ten years I&#39;ve been
13562 teacher and coordinator for the &#39;abitur-online&#39; project at my
13563 school. Being now in my early sixties, I&#39;ve decided to leave school at
13564 the end of April this year.&lt;/p&gt;
13565
13566 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
13567 project?&lt;/strong&gt;&lt;/p&gt;
13568
13569 &lt;p&gt;The first information about Skolelinux must have come to my
13570 attention years ago and somehow related to LTSP (Linux Terminal Server
13571 Project). At school, we had set up a network at the beginning of 1997
13572 using Suse Linux on the desktop, replacing a Novell network. Since
13573 2002, we used old machines from the city council of Dortmund as thin
13574 clients (LTSP, later Ubuntu/Lessdisks) cause new hardware was out of
13575 reach. At home I&#39;m using Debian since years and - subscribed to the
13576 Debian news letter - heard from time to time about Skolelinux. About
13577 two years ago I proposed to replace the (somehow undocumented and only
13578 known to me) system at school by a well known Debian based system:
13579 Skolelinux.&lt;/p&gt;
13580
13581 &lt;p&gt;Students and teachers appreciated the new system because of a
13582 better look and feel and an enhanced access to local media on thin
13583 clients. The possibility to alter and/or reset passwords using a GUI
13584 was welcomed, too. Being able to do administrative tasks using a GUI
13585 and to easily set up workstations using PXE was of very high value for
13586 the admin teachers.&lt;/p&gt;
13587
13588 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
13589 Edu?&lt;/strong&gt;&lt;/p&gt;
13590
13591 &lt;p&gt;It&#39;s open source, easy to set up, stable and flexible due to it&#39;s
13592 Debian base. It integrates LTSP out-of-the-box. And it is documented!
13593 So it was a perfect choice.&lt;/p&gt;
13594
13595 &lt;p&gt;Being open source, there are no license problems and so it&#39;s
13596 possible to point teachers and students to programs like
13597 OpenOffice.org, ViewYourMind (mind mapping) and The Gimp. It&#39;s of
13598 high value to be able to adapt parts of the system to special needs of
13599 a school and to choose where to get support for this.&lt;/p&gt;
13600
13601 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
13602 Edu?&lt;/strong&gt;&lt;/p&gt;
13603
13604 &lt;p&gt;Nothing yet.&lt;/p&gt;
13605
13606 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
13607
13608 &lt;p&gt;At home (Debian Sid with Gnome Desktop): Iceweasel, LibreOffice,
13609 Mutt, Gedit, Document Viewer, Midnight Commander, flpsed (PDF
13610 Annotator). At school (Skolelinux Lenny): Iceweasel, Gedit,
13611 LibreOffice.&lt;/p&gt;
13612
13613 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
13614 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
13615
13616 &lt;p&gt;Some time ago I thought it was enough to tell people about it. But
13617 that doesn&#39;t seem to work quite well. Now I concentrate on those more
13618 interested and hope to get multiplicators that way.&lt;/p&gt;
13619 </description>
13620 </item>
13621
13622 <item>
13623 <title>Debian Edu screencast: Checking email with kmail using Kerberos authentication</title>
13624 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_screencast__Checking_email_with_kmail_using_Kerberos_authentication.html</link>
13625 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_screencast__Checking_email_with_kmail_using_Kerberos_authentication.html</guid>
13626 <pubDate>Sun, 25 Mar 2012 10:00:00 +0200</pubDate>
13627 <description>&lt;!-- Video HTML based on http://www.diveintohtml5.net/video.html --&gt;
13628
13629 &lt;p&gt;The same Debian Edu developer that did the last screen cast I
13630 published, Wolfgang Schweer, has created a new screen cast showing how
13631 to set up Kmail in Debian Edu Squeze to authenticate using Kerberos,
13632 allowing users to check their local email account without providing
13633 any password. The video is embedded here in quarter size,
13634 and also available from &lt;a href=&quot;https://vimeo.com/38601767&quot;&gt;vimeo&lt;/a&gt;
13635 and download as a
13636 &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
13637 Theora&lt;/a&gt; file. Check it out below.&lt;/p&gt;
13638
13639 &lt;p&gt;&lt;video id=&quot;kmail-kerberos-movie&quot; width=&quot;256&quot; height=&quot;184&quot; preload controls&gt;
13640 &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;
13641 &lt;p&gt;Download video as
13642 &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;
13643 &lt;/video&gt;&lt;/p&gt;
13644 </description>
13645 </item>
13646
13647 <item>
13648 <title>Debian Edu interview: John Ingleby</title>
13649 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__John_Ingleby.html</link>
13650 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__John_Ingleby.html</guid>
13651 <pubDate>Mon, 19 Mar 2012 21:15:00 +0100</pubDate>
13652 <description>&lt;p&gt;&lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;
13653 users are spread all across the globe. The second inteview after
13654 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/03/msg00001.html&quot;&gt;the
13655 Squeeze release&lt;/a&gt; was publised is with John Ingleby, a teacher and
13656 long time Linux user in United Kingdom.&lt;/p&gt;
13657
13658 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
13659
13660 &lt;p&gt;I teach ICT part time at the Rudolf Steiner School in Kings
13661 Langley, near London, UK. Previously I worked as a technical
13662 author/trainer while my children attended the school, and I also
13663 contributed to the Schoolforge UK community with the aim of
13664 encouraging UK schools to adopt free/open source software. Five or six
13665 years ago we had about 50 schools interested in some way, but we
13666 weren&#39;t able to convert many of them into sustainable
13667 installations.&lt;/p&gt;
13668
13669 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
13670 project?&lt;/strong&gt;&lt;/p&gt;
13671
13672 &lt;p&gt;Skolelinux had two representatives at an early Edubuntu meeting in
13673 London which I attended. However at that time our school network had
13674 just been installed using CentOS, LTSP 4 and GNOME. When LTSP 5 came
13675 along we switched to Edubuntu thin client servers so now we have a
13676 mixed environment which includes Windows PCs and student laptops, as
13677 well as their MacBooks and iPads. However, the proprietary systems
13678 have always been rather problematic, and we never built a GUI for the
13679 LDAP server, so when I discovered Skolelinux is configured for all
13680 these things we decided to try it.&lt;/p&gt;
13681
13682 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
13683 Edu?&lt;/strong&gt;&lt;/p&gt;
13684
13685 &lt;p&gt;By far the biggest advantage is the Debian Edu community. Apart
13686 from that I have always believed in the same &quot;sustainable computing&quot;
13687 goals that Skolelinux is built on: installing Linux on computers which
13688 would otherwise be thrown away, to provide a reliable, secure and
13689 low-cost IT environment for schools. From my own experience I know
13690 that a part-time person can teach and manage a network of about 25
13691 Linux computers, but it would take much more of my time if we had
13692 proprietary software everywhere.&lt;/p&gt;
13693
13694 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
13695 Edu?&lt;/strong&gt;&lt;/p&gt;
13696
13697 &lt;p&gt;As a newcomer I&#39;m just finding out who&#39;s who in the community and
13698 how you&#39;re organised, and what your procedures are for dealing with
13699 various things such as editing manual pages and so-on. The only
13700 English language mailing list seems to be for developers as well as
13701 users, so my inbox needs heavy pruning each day!&lt;/p&gt;
13702
13703 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
13704
13705 &lt;p&gt;Besides the software already mentioned at school we use Samba,
13706 OpenLDAP, CUPS, Nagios and Dansguardian for the network, and on the
13707 desktops we have LibreOffice, Firefox, GIMP and Inkscape. At home I
13708 use Ubuntu and an Android 4 eePad Transformer (but I&#39;m not sure if
13709 that counts...)&lt;/p&gt;
13710
13711 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
13712 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
13713
13714 &lt;p&gt;That&#39;s a tough question! For very many years UK schools installed
13715 and taught only proprietary software, so that at the highest levels
13716 the notion of &quot;computer&quot; means simply &quot;proprietary office
13717 applications&quot;. However, schools today are experiencing budget
13718 constraints, and many are having to think hard about upgrading Windows
13719 XP. At the same time, we have students showing teachers how to use
13720 iPads, MacBooks and Android, so the choice of operating system is no
13721 longer quite so automatic. What is more, our government at last
13722 realised that we need people with programming skills, so they&#39;re
13723 putting coding back in the curriculum! And it&#39;s encouraging that the
13724 first 10,000 Raspberry Pi units sold out in 2 hours.&lt;/p&gt;
13725
13726 &lt;p&gt;I don&#39;t really know what strategy is going to get UK schools to use
13727 free software, but building an active community of Skolelinux/Debian
13728 Edu users in this country has to be part of it.&lt;/p&gt;
13729 </description>
13730 </item>
13731
13732 <item>
13733 <title>Writing and translating documentation in Debian Edu</title>
13734 <link>http://people.skolelinux.org/pere/blog/Writing_and_translating_documentation_in_Debian_Edu.html</link>
13735 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Writing_and_translating_documentation_in_Debian_Edu.html</guid>
13736 <pubDate>Fri, 16 Mar 2012 09:55:00 +0100</pubDate>
13737 <description>&lt;p&gt;Documentation in Debian Edu is provided in several languages, and
13738 it is important to make it both easy to contribute and to keep the
13739 translated versions in sync. To do this we have come up with what we
13740 believe is a very efficient work flow.&lt;/p&gt;
13741
13742 &lt;ol&gt;
13743
13744 &lt;li&gt;The documentation is written in a
13745 &lt;a href=&quot;http://moinmo.in&quot;&gt;moinmoin wiki&lt;/a&gt; (see for example
13746 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze&quot;&gt;the
13747 Squeeze release manual&lt;/a&gt;) with support for exporting the content as
13748 docbook XML.&lt;/li&gt;
13749
13750 &lt;li&gt;This docbook document is given to po4a to extract a gettext style
13751 .pot file with the content, which in turn is used to create .po files
13752 with the translated text.&lt;/li&gt;
13753
13754 &lt;li&gt;The .po files are given to translators, and they can always tell
13755 which part of the original wiki document is new or changed. They can
13756 use their normal translation tools like lokalize or poedit to write
13757 the translation. There is even a system in place to handle translated
13758 images.&lt;/li&gt;
13759
13760 &lt;li&gt;The translated .po files are combined with the original docbook
13761 XML document using po4a to create a translated docbook document.&lt;/li&gt;
13762
13763 &lt;li&gt;The final step is to use all the generated docbook files and
13764 create PDF and HTML version of the original and translated documents.&lt;/li&gt;
13765
13766 &lt;/ol&gt;
13767
13768 &lt;p&gt;This setup work very well, but have a few issues. The biggest
13769 issue is that &lt;a href=&quot;http://moinmo.in/DocBook&quot;&gt;the docbook support
13770 we use in moinmoin&lt;/a&gt; is not actively maintained. The docbook
13771 support is also buggy, and our build system contain workarounds to
13772 make sure the generated docbook is usable despite these bugs.&lt;/p&gt;
13773
13774 &lt;p&gt;If you want to have a look at our setup, it is all there in the
13775 &lt;a href=&quot;http://packages.qa.debian.org/debian-edu-doc&quot;&gt;debian-edu-doc
13776 package&lt;/a&gt;.&lt;/p&gt;
13777 </description>
13778 </item>
13779
13780 <item>
13781 <title>Skolelinux / Debian Edu Squeeze is out!</title>
13782 <link>http://people.skolelinux.org/pere/blog/Skolelinux___Debian_Edu_Squeeze_is_out_.html</link>
13783 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Skolelinux___Debian_Edu_Squeeze_is_out_.html</guid>
13784 <pubDate>Sun, 11 Mar 2012 23:00:00 +0100</pubDate>
13785 <description>&lt;p&gt;This weekend we finally published the first stable release of
13786 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux / Debian Edu&lt;/a&gt; based
13787 on Debian/Squeeze. The full announcement is
13788 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/03/msg00001.html&quot;&gt;available&lt;/a&gt;
13789 from the project announcement list. Now is a good time to test if it
13790 you have not done so already.&lt;/p&gt;
13791
13792 &lt;p&gt;I plan to present the new version at
13793 &lt;a href=&quot;http://www.nuug.no/aktiviteter/20120313-skolelinux/&quot;&gt;a NUUG
13794 meeting&lt;/a&gt; on tuesday. I look forward to seeing you there if you are
13795 in Oslo, Norway.&lt;/p&gt;
13796 </description>
13797 </item>
13798
13799 <item>
13800 <title>Debian Edu interview: Nigel Barker</title>
13801 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Nigel_Barker.html</link>
13802 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_interview__Nigel_Barker.html</guid>
13803 <pubDate>Fri, 9 Mar 2012 11:30:00 +0100</pubDate>
13804 <description>&lt;p&gt;Inspired by &lt;a href=&quot;http://raphaelhertzog.com/tag/interview/&quot;&gt;the
13805 interview series&lt;/a&gt; conducted by Raphael, I started a Norwegian
13806 interview series with people involved in the Debian Edu / Skolelinux
13807 community. This was so popular that I believe it is time to move to a
13808 more international audience.&lt;/p&gt;
13809
13810 &lt;p&gt;While &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu and
13811 Skolelinux&lt;/a&gt; originated in France and Norway, and have most users in
13812 Europe, there are users all around the globe. One of those far away
13813 from me is Nigel Barker, a long time Debian Edu system administrator
13814 and contributor. It is thanks to him that Debian Edu is adjusted to
13815 work out of the box in Japan. I got him to answer a few questions,
13816 and am happy to share the response with you. :)
13817
13818
13819 &lt;p&gt;&lt;strong&gt;Who are you, and how do you spend your days?&lt;/strong&gt;&lt;/p&gt;
13820
13821 &lt;p&gt;My name is Nigel Barker, and I am British. I am married to Yumiko,
13822 and we have three lovely children, aged 15, 14 and 4(!) I am the IT
13823 Coordinator at Hiroshima International School, Japan. I am also a
13824 teacher, and in fact I spend most of my day teaching Mathematics,
13825 Science, IT, and Chemistry. I was originally a Chemistry teacher, but
13826 I have always had an interest in computers. Another teacher teaches
13827 primary school IT, but apart from that I am the only computer person,
13828 so that means I am the network manager, technician and webmaster,
13829 also, and I help people with their computer problems. I teach python
13830 to beginners in an after-school club. I am way too busy, so I really
13831 appreciate the simplicity of Skolelinux.&lt;/p&gt;
13832
13833 &lt;p&gt;&lt;strong&gt;How did you get in contact with the Skolelinux/Debian Edu
13834 project?&lt;/strong&gt;&lt;/p&gt;
13835
13836 &lt;p&gt;In around 2004 or 5 I discovered the ltsp project, and set up a
13837 server in the IT lab. I wanted some way to connect it to our central
13838 samba server, which I was also quite poor at configuring. I discovered
13839 Edubuntu when it came out, but it didn&#39;t really improve my setup. I
13840 did various desperate searches for things like &quot;school Linux server&quot;
13841 and ended up in a document called &quot;Drift&quot; something or other. Reading
13842 there it became clear that Skolelinux was going to solve all my
13843 problems in one go. I was very excited, but apprehensive, because my
13844 previous attempts to install Debian had ended in failure (I used
13845 Mandrake for everything - ltsp, samba, apache, mail, ns...). I
13846 downloaded a beta version, had some problems, so subscribed to the
13847 Debian Edu list for help. I have remained subscribed ever since, and
13848 my school has run a Skolelinux network since Sarge.&lt;/p&gt;
13849
13850 &lt;p&gt;&lt;strong&gt;What do you see as the advantages of Skolelinux/Debian
13851 Edu?&lt;/strong&gt;&lt;/p&gt;
13852
13853 &lt;p&gt;For me the integrated setup. This is not just the server, or the
13854 workstation, or the ltsp. Its all of them, and its all configured
13855 ready to go. I read somewhere in the early documentation that it is
13856 designed to be setup and managed by the Maths or Science teacher, who
13857 doesn&#39;t necessarily know much about computers, in a small Norwegian
13858 school. That describes me perfectly if you replace Norway with
13859 Japan.&lt;/p&gt;
13860
13861 &lt;p&gt;&lt;strong&gt;What do you see as the disadvantages of Skolelinux/Debian
13862 Edu?&lt;/strong&gt;&lt;/p&gt;
13863
13864 &lt;p&gt;The desktop is fairly plain. If you compare it with Edubuntu, who
13865 have fun themes for children, or with distributions such as Mint, who
13866 make the desktop beautiful. They create a good impression on people
13867 who don&#39;t need to understand how to use any of it, but who might be
13868 important to the school. School administrators or directors, for
13869 instance, or parents. Even kids. Debian itself usually has ugly
13870 default theme settings. It was my dream a few years back that some
13871 kind of integration would allow Edubuntu to do the desktop stuff and
13872 Debian Edu the servers, but now I realise how impossible that is. A
13873 second disadvantage is that if something goes wrong, or you need to
13874 customise something, then suddenly the level of expertise required
13875 multiplies. For example, backup wasn&#39;t working properly in Lenny. It
13876 took me ages to learn how to set up my own server to do rsync backups.
13877 I am afraid of anything to do with ldap, but perhaps Gosa will
13878 help.&lt;/p&gt;
13879
13880 &lt;p&gt;&lt;strong&gt;Which free software do you use daily?&lt;/strong&gt;&lt;/p&gt;
13881
13882 &lt;p&gt;Nowadays I only use Debian on my personal computers. I have one for
13883 studio work (I play guitar and write songs), running AV Linux
13884 (customised Debian) a netbook running Squeeze, and a bigger laptop
13885 still running Skolelinux Lenny workstation. I have a Tjener in my
13886 house, that&#39;s very useful for the family photos and music. At school
13887 the students only use Skolelinux. (Some teachers and the office still
13888 have windows). So that means we only use free software all day every
13889 day. Open office, The GIMP, Firefox/Iceweasel, VLC and Audacity are
13890 installed on every computer in school, irrespective of OS. We also
13891 have Koha on Debian for the library, and Apache, Moodle, b2evolution
13892 and Etomite on Debian for the www. The firewall is Untangle.&lt;/p&gt;
13893
13894 &lt;p&gt;&lt;strong&gt;Which strategy do you believe is the right one to use to
13895 get schools to use free software?&lt;/strong&gt;&lt;/p&gt;
13896
13897 &lt;p&gt;Current trends are in our favour. Open source is big in industry,
13898 and ordinary people have heard of it. The spread of Android and the
13899 popularity of Apple have helped to weaken the impression that you have
13900 to have Microsoft on everything. People complain to me much less about
13901 file formats and Word than they did 5 years ago. The Edu aspect is
13902 also a selling point. This is all customised for schools. Where is the
13903 Windows-edu, or the Mac-edu? But of course the main attraction is
13904 budget.The trick is to convince people that the quality is not
13905 compromised when you stop paying and use free software instead. That
13906 is one reason why I say the desktop experience is a weakness. People
13907 are not impressed when their USB drive doesn&#39;t work, or their browser
13908 doesn&#39;t play flash, for example.&lt;/p&gt;
13909 </description>
13910 </item>
13911
13912 <item>
13913 <title>Debian Edu screencast: Mass creation of user accounts in Squeeze</title>
13914 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_screencast__Mass_creation_of_user_accounts_in_Squeeze.html</link>
13915 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_screencast__Mass_creation_of_user_accounts_in_Squeeze.html</guid>
13916 <pubDate>Wed, 7 Mar 2012 13:40:00 +0100</pubDate>
13917 <description>&lt;!-- Video HTML based on http://www.diveintohtml5.net/video.html --&gt;
13918
13919 &lt;p&gt;One of the Debian Edu developers, Wolfgang Schweer, just created a
13920 screen cast documenting how to create a lot of new users in LDAP on
13921 Debian Edu Squeeze. The video is embedded here in quarter size, and
13922 also available from &lt;a href=&quot;http://vimeo.com/37675399&quot;&gt;vimeo&lt;/a&gt; and
13923 download as a
13924 &lt;a href=&quot;http://ftp.skolelinux.org/skolelinux/press/screencasts/2012-02-29-debian_edu_mass_create_user_accounts.ogv&quot;&gt;Ogg
13925 Theora&lt;/a&gt; file. Check it out below.&lt;/p&gt;
13926
13927 &lt;p&gt;&lt;video id=&quot;gosa-mass-user-create-movie&quot; width=&quot;256&quot; height=&quot;184&quot; preload controls&gt;
13928 &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;
13929 &lt;p&gt;Download video as
13930 &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;
13931 &lt;/video&gt;&lt;/p&gt;
13932 </description>
13933 </item>
13934
13935 <item>
13936 <title>Third release candidate of Debian Edu / Skolelinux based on Squeeze</title>
13937 <link>http://people.skolelinux.org/pere/blog/Third_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
13938 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Third_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
13939 <pubDate>Sun, 4 Mar 2012 18:20:00 +0100</pubDate>
13940 <description>&lt;p&gt;This weekend we wrapped up and published the third release
13941 candidate for &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
13942 Skolelinux&lt;/a&gt; based on Squeeze. The full announcement is
13943 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/03/msg00000.html&quot;&gt;available&lt;/a&gt;
13944 from the project announcement list. Check it out if you
13945 need a software solution for your school.&lt;/p&gt;
13946 </description>
13947 </item>
13948
13949 <item>
13950 <title>Stopmotion for making stop motion animations on Linux - reloaded</title>
13951 <link>http://people.skolelinux.org/pere/blog/Stopmotion_for_making_stop_motion_animations_on_Linux___reloaded.html</link>
13952 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Stopmotion_for_making_stop_motion_animations_on_Linux___reloaded.html</guid>
13953 <pubDate>Sat, 3 Mar 2012 12:50:00 +0100</pubDate>
13954 <description>&lt;p&gt;Many years ago, the &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux
13955 / Debian Edu project&lt;/a&gt; initiated a student project to create a tool
13956 for making stop motion movies. The proposal came from a teacher
13957 needing such tool on Skolelinux. The project, called &quot;stopmotion&quot;,
13958 was manned by two extraordinary students and won a school award and a
13959 national aware with this great project. The project was initiated and
13960 mentored by Herman Robak, and manned by the students Bjørn Erik Nilsen
13961 and Fredrik Berg Kjølstad. They got in touch with people at Aardman
13962 Animation studio and received feedback on how professionals would like
13963 such stopmotion tool to work, and the end result was and is used by
13964 animators around the globe. But as is usual after studying, both got
13965 jobs and went elsewhere, and did not have time to properly tend to the
13966 project, and it has been lingering for a few years now. Until last
13967 year...&lt;/p&gt;
13968
13969 &lt;p&gt;Last year some of the users got together with Herman, and moved the
13970 project to Sourceforge and in effect restarted the project under a new
13971 name,
13972 &lt;a href=&quot;http://sourceforge.net/projects/linuxstopmotion/&quot;&gt;linuxstopmotion&lt;/a&gt;.
13973 The name change was done to make it possible to find the project using
13974 Internet search engines (try to search for &#39;stopmotion&#39; to see what I
13975 mean). I&#39;ve been following
13976 &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/linuxstopmotion-community&quot;&gt;the
13977 mailing list&lt;/a&gt; and the improvement already in place and planned for
13978 the future is encouraging. If you want to make stop motion movies.
13979 Check it out. :)&lt;/p&gt;
13980 </description>
13981 </item>
13982
13983 <item>
13984 <title>Second release candidate of Debian Edu / Skolelinux based on Squeeze</title>
13985 <link>http://people.skolelinux.org/pere/blog/Second_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
13986 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Second_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
13987 <pubDate>Mon, 27 Feb 2012 14:00:00 +0100</pubDate>
13988 <description>&lt;p&gt;This weekend we wrapped up and published the second release
13989 candidate for &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu /
13990 Skolelinux&lt;/a&gt; based on Squeeze. The full announcement did for some
13991 reason not make it the project announcement list, but is
13992 &lt;a href=&quot;http://lists.debian.org/debian-devel-announce/2012/02/msg00015.html&quot;&gt;available&lt;/a&gt;
13993 from the Debian development announcement list. Check it out if you
13994 need a software solution for your school.&lt;/p&gt;
13995 </description>
13996 </item>
13997
13998 <item>
13999 <title>First release candidate of Debian Edu / Skolelinux based on Squeeze</title>
14000 <link>http://people.skolelinux.org/pere/blog/First_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
14001 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_release_candidate_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
14002 <pubDate>Sun, 19 Feb 2012 23:10:00 +0100</pubDate>
14003 <description>&lt;p&gt;One week delayed due to DVD build problems, we managed today to
14004 wrap up and publish the first release candidate for
14005 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; based
14006 on Squeeze. The full announcement is
14007 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/02/msg00001.html&quot;&gt;available&lt;/a&gt;
14008 on the project announcement list. Check it out if you need a software
14009 solution for your school.&lt;/p&gt;
14010 </description>
14011 </item>
14012
14013 <item>
14014 <title>How to figure out which RAID disk to replace when it fail</title>
14015 <link>http://people.skolelinux.org/pere/blog/How_to_figure_out_which_RAID_disk_to_replace_when_it_fail.html</link>
14016 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_figure_out_which_RAID_disk_to_replace_when_it_fail.html</guid>
14017 <pubDate>Tue, 14 Feb 2012 21:25:00 +0100</pubDate>
14018 <description>&lt;p&gt;Once in a while my home server have disk problems. Thanks to Linux
14019 Software RAID, I have not lost data yet (but
14020 &lt;a href=&quot;http://comments.gmane.org/gmane.linux.raid/34532&quot;&gt;I was
14021 close&lt;/a&gt; this summer :). But once a disk is starting to behave
14022 funny, a practical problem present itself. How to get from the Linux
14023 device name (like /dev/sdd) to something that can be used to identify
14024 the disk when the computer is turned off? In my case I have SATA
14025 disks with a unique ID printed on the label. All I need is a way to
14026 figure out how to query the disk to get the ID out.&lt;/p&gt;
14027
14028 &lt;p&gt;After fumbling a bit, I
14029 &lt;a href=&quot;http://www.cyberciti.biz/faq/linux-getting-scsi-ide-harddisk-information/&quot;&gt;found
14030 that hdparm -I&lt;/a&gt; will report the disk serial number, which is
14031 printed on the disk label. The following (almost) one-liner can be
14032 used to look up the ID of all the failed disks:&lt;/p&gt;
14033
14034 &lt;blockquote&gt;&lt;pre&gt;
14035 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);
14036 do
14037 printf &quot;Failed disk $d: &quot;
14038 hdparm -I /dev/$d |grep &#39;Serial Num&#39;
14039 done
14040 &lt;/blockquote&gt;&lt;/pre&gt;
14041
14042 &lt;p&gt;Putting it here to make sure I do not have to search for it the
14043 next time, and in case other find it useful.&lt;/p&gt;
14044
14045 &lt;p&gt;At the moment I have two failing disk. :(&lt;/p&gt;
14046
14047 &lt;blockquote&gt;&lt;pre&gt;
14048 Failed disk sdd1: Serial Number: WD-WCASJ1860823
14049 Failed disk sdd2: Serial Number: WD-WCASJ1860823
14050 Failed disk sde2: Serial Number: WD-WCASJ1840589
14051 &lt;/blockquote&gt;&lt;/pre&gt;
14052
14053 &lt;p&gt;The last time I had failing disks, I added the serial number on
14054 labels I printed and stuck on the short sides of each disk, to be able
14055 to figure out which disk to take out of the box without having to
14056 remove each disk to look at the physical vendor label. The vendor
14057 label is at the top of the disk, which is hidden when the disks are
14058 mounted inside my box.&lt;/p&gt;
14059
14060 &lt;p&gt;I really wish the check_linux_raid Nagios plugin for checking Linux
14061 Software RAID in the
14062 &lt;a href=&quot;http://packages.qa.debian.org/n/nagios-plugins.html&quot;&gt;nagios-plugins-standard&lt;/a&gt;
14063 debian package would look up this value automatically, as it would
14064 make the plugin a lot more useful when my disks fail. At the moment
14065 it only report a failure when there are no more spares left (it really
14066 should warn as soon as a disk is failing), and it do not tell me which
14067 disk(s) is failing when the RAID is running short on disks.&lt;/p&gt;
14068 </description>
14069 </item>
14070
14071 <item>
14072 <title>Automatic proxy configuration with Debian Edu / Skolelinux</title>
14073 <link>http://people.skolelinux.org/pere/blog/Automatic_proxy_configuration_with_Debian_Edu___Skolelinux.html</link>
14074 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatic_proxy_configuration_with_Debian_Edu___Skolelinux.html</guid>
14075 <pubDate>Mon, 13 Feb 2012 23:40:00 +0100</pubDate>
14076 <description>&lt;p&gt;New in the Squeeze version of
14077 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; is the
14078 ability for clients to automatically configure their proxy settings
14079 based on their environment. We want all systems on the client to use
14080 the WPAD based proxy definition fetched from &lt;tt&gt;http://wpad/wpad.dat&lt;/tt&gt;, to
14081 allow sites to control the proxy setting from a central place and make
14082 sure clients do not have hard coded proxy settings. The schools can
14083 change the global proxy setting by editing
14084 &lt;tt&gt;tjener:/etc/debian-edu/www/wpad.dat&lt;/tt&gt; and the change propagate
14085 to all Debian Edu clients in the network.&lt;/p&gt;
14086
14087 &lt;p&gt;The problem is that some systems do not understand the WPAD system.
14088 In other words, how do one get from a WPAD file like this (this is a
14089 simple one, they can run arbitrary code):&lt;/p&gt;
14090
14091 &lt;blockquote&gt;&lt;pre&gt;
14092 function FindProxyForURL(url, host)
14093 {
14094 if (!isResolvable(host) ||
14095 isPlainHostName(host) ||
14096 dnsDomainIs(host, &quot;.intern&quot;))
14097 return &quot;DIRECT&quot;;
14098 else
14099 return &quot;PROXY webcache:3128; DIRECT&quot;;
14100 }
14101 &lt;/pre&gt;&lt;/blockquote&gt;
14102
14103 &lt;p&gt;to a proxy setting in the process environment looking like this:&lt;/p&gt;
14104
14105 &lt;blockquote&gt;&lt;pre&gt;
14106 http_proxy=http://webcache:3128/
14107 ftp_proxy=http://webcache:3128/
14108 &lt;/pre&gt;&lt;/blockquote&gt;
14109
14110 &lt;p&gt;To do this conversion I developed a perl script that will execute
14111 the javascript fragment in the WPAD file and return the proxy that
14112 would be used for
14113 &lt;tt&gt;&lt;a href=&quot;http://www.debian.org/&quot;&gt;http://www.debian.org/&lt;/a&gt;&lt;/tt&gt;,
14114 and insert this extracted proxy URL in &lt;tt&gt;/etc/environment&lt;/tt&gt; and
14115 &lt;tt&gt;/etc/apt/apt.conf&lt;/tt&gt;. The perl script wpad-extract work just
14116 fine in Squeeze, but in Wheezy the library it need to run the
14117 javascript code is &lt;a href=&quot;http://bugs.debian.org/631045&quot;&gt;no longer
14118 able to build&lt;/a&gt; because the C library it depended on is now a C++
14119 library. I hope someone find a solution to that problem before Wheezy
14120 is frozen. An alternative would be for us to rewrite wpad-extract to
14121 use some other javascript library currently working in Wheezy, but no
14122 known alternative is known at the moment.&lt;/p&gt;
14123
14124 &lt;p&gt;This automatic proxy system allow the roaming workstation (aka
14125 laptop) setup in Debian Edu/Squeeze to use the proxy when the laptop
14126 is connected to the backbone network in a Debian Edu setup, and to
14127 automatically use any proxy present and announced using the WPAD
14128 feature when it is connected to other networks. And if no proxy is
14129 announced, direct connections will be used instead.&lt;/p&gt;
14130
14131 &lt;p&gt;Silently using a proxy announced on the network might be a privacy
14132 or security problem. But those controlling DHCP and DNS on a network
14133 could just as easily set up a transparent proxy, and force all HTTP
14134 and FTP connections to use a proxy anyway, so I consider that
14135 distinction to be academic. If you are afraid of using the wrong
14136 proxy, you should avoid connecting to the network in question in the
14137 first place. In Debian Edu, the proxy setup is updated using dhcp and
14138 ifupdown hooks, to make sure the configuration is updated every time
14139 the network setup changes.&lt;/p&gt;
14140
14141 &lt;p&gt;The WPAD system is documented in a
14142 &lt;a href=&quot;http://tools.ietf.org/html/draft-ietf-wrec-wpad-01&quot;&gt;IETF
14143 draft&lt;/a&gt; and a
14144 &lt;a href=&quot;http://en.wikipedia.org/wiki/Web_Proxy_Autodiscovery_Protocol&quot;&gt;Wikipedia
14145 page&lt;/a&gt; for those that want to learn more.&lt;/p&gt;
14146 </description>
14147 </item>
14148
14149 <item>
14150 <title>Saving power with Debian Edu / Skolelinux using shutdown-at-night</title>
14151 <link>http://people.skolelinux.org/pere/blog/Saving_power_with_Debian_Edu___Skolelinux_using_shutdown_at_night.html</link>
14152 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Saving_power_with_Debian_Edu___Skolelinux_using_shutdown_at_night.html</guid>
14153 <pubDate>Sun, 5 Feb 2012 09:45:00 +0100</pubDate>
14154 <description>&lt;p&gt;Since the Lenny version of
14155 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;, a
14156 feature to save power have been included. It is as simple as it is
14157 practical: Shut down unused clients at night, and turn them on again
14158 in the morning. This is done using the
14159 &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;
14160
14161 &lt;p&gt;To enable this feature on a client, the machine need to be added to
14162 the netgroup shutdown-at-night-hosts. For Debian Edu, this is done in
14163 LDAP, and once this is in place, the machine in question will check
14164 every hour from 16:00 until 06:00 to see if the machine is unused, and
14165 shut it down if it is. If the hardware in question is supported by
14166 the
14167 &lt;a href=&quot;http://packages.qa.debian.org/n/nvram-wakeup.html&quot;&gt;nvram-wakeup&lt;/a&gt;
14168 package, the BIOS is told to turn the machine back on around 07:00 +-
14169 10 minutes. If this isn&#39;t working, one can configure wake-on-lan to
14170 try to turn on the client. The wake-on-lan option is only documented
14171 and not enabled by default in Debian Edu.&lt;/p&gt;
14172
14173 &lt;p&gt;It is important to not turn all machines on at once, as this can
14174 blow a fuse if several computers are connected to the same fuse like
14175 the common setup for a classroom. The nvram-wakeup method only work
14176 for machines with a functioning hardware/BIOS clock. I&#39;ve seen old
14177 machines where the BIOS battery were dead and the hardware clock were
14178 starting from 0 (or was it 1990?) every boot. If you have one of
14179 those, you have to turn on the computer manually.&lt;/p&gt;
14180
14181 &lt;p&gt;The shutdown-at-night package is completely self contained, and can
14182 also be used outside the Debian Edu environment. For those without a
14183 central LDAP server with netgroups, one can instead touch the file
14184 &lt;tt&gt;/etc/shutdown-at-night/shutdown-at-night&lt;/tt&gt; to enable it.
14185 Perhaps you too can use it to save some power?&lt;/p&gt;
14186 </description>
14187 </item>
14188
14189 <item>
14190 <title>Third beta version of Debian Edu / Skolelinux based on Squeeze</title>
14191 <link>http://people.skolelinux.org/pere/blog/Third_beta_version_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
14192 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Third_beta_version_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
14193 <pubDate>Sat, 4 Feb 2012 13:25:00 +0100</pubDate>
14194 <description>&lt;p&gt;I am happy to announce that finally we managed today to wrap up and
14195 publish the third beta version of
14196 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; based
14197 on Squeeze. If you want to test a LDAP backed Kerberos server with
14198 out of the box PXE configuration for running diskless machines and
14199 installing new machines, check it out. If you need a software
14200 solution for your school, check it out too. The full announcement is
14201 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/02/msg00000.html&quot;&gt;available&lt;/a&gt;
14202 on the project announcement list.&lt;/p&gt;
14203
14204 &lt;p&gt;I am very happy to report these changes and improvements since
14205 beta2 (there are more, see announcement for full list):&lt;/p&gt;
14206
14207 &lt;ul&gt;
14208
14209 &lt;li&gt;It is now possible to change the pre-configured IP subnet from
14210 10.0.0.0/8 to something else by using the subnet-change tool after
14211 the installation.&lt;/li&gt;
14212
14213 &lt;li&gt;Too full partitions are now automatically extended on the Main
14214 Server, based on the rules specified in /etc/fsautoresizetab.&lt;/li&gt;
14215
14216 &lt;li&gt;The CUPS queues are now automatically flushed every night, and all
14217 disabled queues are restarted every hour. This should cut down on
14218 the amount of manual administration needed for printers.&lt;/li&gt;
14219
14220 &lt;li&gt;The set of initial users have been changed. Now a personal user
14221 for the local system administrator is created during installation
14222 instead of the previously created localadmin and super-admin users,
14223 and this user is granted administrative privileges using group
14224 membership. This reduces the number of passwords one need to keep
14225 up to date on the system.&lt;/li&gt;
14226
14227 &lt;/ul&gt;
14228
14229 &lt;p&gt;The new main server seem to work so well that I am testing it as my
14230 private DNS/LDAP/Kerberos/PXE/LTSP server at home. I will use it look
14231 for issues we could fix to polish Debian Edu even further before the
14232 final Squeeze release is published.&lt;/p&gt;
14233
14234 &lt;p&gt;Next weekend the project organise a
14235 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/01/msg00001.html&quot;&gt;developer
14236 gathering&lt;/a&gt; in Oslo. We will continue the work on the Squeeze
14237 version, and start initial planning for the Wheezy version. Perhaps I
14238 will see you there?&lt;/p&gt;
14239 </description>
14240 </item>
14241
14242 <item>
14243 <title>Handling non-free firmware in Debian Edu/Squeeze</title>
14244 <link>http://people.skolelinux.org/pere/blog/Handling_non_free_firmware_in_Debian_Edu_Squeeze.html</link>
14245 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Handling_non_free_firmware_in_Debian_Edu_Squeeze.html</guid>
14246 <pubDate>Fri, 27 Jan 2012 23:30:00 +0100</pubDate>
14247 <description>&lt;p&gt;With some computer hardware, one need non-free firmware blobs.
14248 This is the sad fact of todays computers. In the next version of
14249 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; based
14250 on Squeeze, we provide several scripts and modifications to make
14251 firmware blobs easier to handle. The common use case I run into is a
14252 laptop with a wireless network card requiring non-free firmware to
14253 work, but there are other use cases as well.&lt;/p&gt;
14254
14255 &lt;p&gt;First and foremost, Debian Edu provide ISO images for DVD and CD
14256 with all firmware packages in the Debian sections main and non-free
14257 included, to ensure debian-installer find and can install all of them
14258 during installation. This take care firmware for network devices used
14259 by the installer when installing from from local media. But for
14260 example multimedia devices are not activated in the installer and are
14261 not taken care of by this.&lt;/p&gt;
14262
14263 &lt;p&gt;For non-network devices, we provide the script
14264 &lt;tt&gt;/usr/share/debian-edu-config/tools/auto-addfirmware&lt;/tt&gt; which
14265 search through the &lt;tt&gt;dmesg&lt;/tt&gt; output for drivers requesting extra
14266 firmware. The firmware file name is looked up in the Contents-ARCH.gz
14267 file available in the package repository, and the packages providing
14268 the requested firmware file(s) is installed. I have proposed to do
14269 something similar in debian-installer (BTS report
14270 &lt;a href=&quot;http://bugs.debian.org/655507&quot;&gt;#655507&lt;/a&gt;), to allow PXE
14271 installs of Debian to handle firmware installation better. Run the
14272 script as root from the command line to fetch and install the needed
14273 firmware packages.&lt;/p&gt;
14274
14275 &lt;p&gt;Debian Edu provide PXE installation of Debian out of the box, and
14276 because some machines need firmware to get their network cards
14277 working, the installation initrd some times need extra firmware
14278 included to be able to install at all. To fill the PXE installation
14279 initrd with extra firmware, the
14280 &lt;tt&gt;/usr/share/debian-edu-config/tools/pxe-addfirmware&lt;/tt&gt; script is
14281 provided. Again, just run it as root on the command line to fill the
14282 PXE initrd with firmware packages.&lt;/p&gt;
14283
14284 &lt;p&gt;Last, some LTSP clients might also need firmware to get their
14285 network cards working. For this,
14286 &lt;tt&gt;/usr/share/debian-edu-config/tools/ltsp-addfirmware&lt;/tt&gt; is
14287 provided to update the LTSP initrd with firmware blobs. It is used
14288 the same way as the other firmware related tools.&lt;/p&gt;
14289
14290 &lt;p&gt;At the moment, we do not run any of these during installation. We
14291 do not know if this is acceptable for the local administrator to use
14292 non-free software, and it is their choice.&lt;/p&gt;
14293
14294 &lt;p&gt;We plan to release beta3 this weekend. You might want to give it a
14295 try.&lt;/p&gt;
14296 </description>
14297 </item>
14298
14299 <item>
14300 <title>Setting up a new school with Debian Edu/Squeeze</title>
14301 <link>http://people.skolelinux.org/pere/blog/Setting_up_a_new_school_with_Debian_Edu_Squeeze.html</link>
14302 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Setting_up_a_new_school_with_Debian_Edu_Squeeze.html</guid>
14303 <pubDate>Wed, 25 Jan 2012 21:00:00 +0100</pubDate>
14304 <description>&lt;p&gt;The next version of &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu
14305 / Skolelinux&lt;/a&gt; will include a new tool
14306 &lt;tt&gt;sitesummary2ldapdhcp&lt;/tt&gt;, which can be used to quickly set up all
14307 the computers in a school without much manual labour. Here is a short
14308 summary on how to use it to set up a new school.&lt;/p&gt;
14309
14310 &lt;p&gt;First, install a combined Main Server and Thin Client Server as the
14311 central server in the network. Next, PXE boot all the client machines
14312 as thin clients and wait 5 minutes after the last client booted to
14313 allow the clients to report their existence to the central server. When
14314 this is done, log on to the central server and run
14315 &lt;tt&gt;sitesummary2ldapdhcp -a&lt;/tt&gt; in the &lt;tt&gt;konsole&lt;/tt&gt; to use the
14316 collected information to generate system objects in LDAP. The output
14317 will look similar to this:&lt;/p&gt;
14318
14319 &lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;
14320 % sitesummary2ldapdhcp -a
14321 info: Updating machine tjener.intern [10.0.2.2] id ether-00:01:02:03:04:05.
14322 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.
14323
14324 Enter password if you want to activate these changes, and ^c to abort.
14325
14326 Connecting to LDAP as cn=admin,ou=ldap-access,dc=skole,dc=skolelinux,dc=no
14327 enter password: *******
14328 %
14329 &lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;
14330
14331 &lt;p&gt;After providing the LDAP administrative password (the same as the
14332 root password set during installation), the LDAP database will be
14333 populated with system objects for each PXE booted machine with
14334 automatically generated names. The final step to set up the school is
14335 then to log into &lt;a href=&quot;https://oss.gonicus.de/labs/gosa/&quot;&gt;GOsa&lt;/a&gt;,
14336 the web based user, group and system administration system to change
14337 system names, add systems to the correct host groups and finally
14338 enable DHCP and DNS for the systems. All clients that should be used
14339 as diskless workstations should be added to the workstation-hosts
14340 group. After this is done, all computers can be booted again via PXE
14341 and get their assigned names and group based configuration
14342 automatically.&lt;/p&gt;
14343
14344 &lt;p&gt;We plan to release beta3 with the updated version of this feature
14345 enabled this weekend. You might want to give it a try.&lt;/p&gt;
14346
14347 &lt;p&gt;Update 2012-01-28: When calling sitesummary2ldapdhcp to add new
14348 hosts, one need to add the option -a. I forgot to mention this in my
14349 original text, and have added it to the text now.&lt;/p&gt;
14350 </description>
14351 </item>
14352
14353 <item>
14354 <title>Changing the default Iceweasel start page in Debian Edu/Squeeze</title>
14355 <link>http://people.skolelinux.org/pere/blog/Changing_the_default_Iceweasel_start_page_in_Debian_Edu_Squeeze.html</link>
14356 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Changing_the_default_Iceweasel_start_page_in_Debian_Edu_Squeeze.html</guid>
14357 <pubDate>Tue, 10 Jan 2012 15:30:00 +0100</pubDate>
14358 <description>&lt;p&gt;In the Squeeze version of
14359 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; soon
14360 to be released, users of the system will get their default browser
14361 start page set from LDAP, allowing the system administrator to point
14362 all users to the school web page by updating one setting in LDAP. In
14363 addition to setting the default start page when a machine boots, users
14364 are shown the same page as a welcome page when they log in for the
14365 first time.&lt;/p&gt;
14366
14367 &lt;p&gt;The LDAP object dc=skole,dc=skolelinux,dc=no have an attribute
14368 labeledURI with &quot;http://www/ LDAP for Debian Edu/Skolelinux&quot; as the
14369 default content. By changing this value to another URL, all users get
14370 to see the page behind this new URL.&lt;/p&gt;
14371
14372 &lt;p&gt;An easy way to update it is by using the ldapvi tool. It can be
14373 called as &quot;&lt;tt&gt;ldapvi -ZD &#39;(cn=admin)&#39;&lt;/tt&gt;&#39; to update LDAP with the
14374 new setting.&lt;/p&gt;
14375
14376 &lt;p&gt;We have written the code to adjust the default start page and show
14377 the welcome page, and I wonder if there is an easier way to do this
14378 from within Iceweasel instead.&lt;/p&gt;
14379 </description>
14380 </item>
14381
14382 <item>
14383 <title>Second beta version of Debian Edu / Skolelinux based on Squeeze</title>
14384 <link>http://people.skolelinux.org/pere/blog/Second_beta_version_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</link>
14385 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Second_beta_version_of_Debian_Edu___Skolelinux_based_on_Squeeze.html</guid>
14386 <pubDate>Sat, 7 Jan 2012 22:50:00 +0100</pubDate>
14387 <description>&lt;p&gt;I am happy to announce that today we managed to wrap up and publish
14388 the second beta version of
14389 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt;. If
14390 you want to test a LDAP backed Kerberos server with out of the box PXE
14391 configuration for running diskless machines and installing new
14392 machines, check it out. If you need a software solution for your
14393 school, check it out too. The full announcement is
14394 &lt;a href=&quot;http://lists.debian.org/debian-edu-announce/2012/01/msg00000.html&quot;&gt;available&lt;/a&gt;
14395 on the project announcement list.&lt;/p&gt;
14396 </description>
14397 </item>
14398
14399 <item>
14400 <title>Fixing an hanging debian installer for Debian Edu</title>
14401 <link>http://people.skolelinux.org/pere/blog/Fixing_an_hanging_debian_installer_for_Debian_Edu.html</link>
14402 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Fixing_an_hanging_debian_installer_for_Debian_Edu.html</guid>
14403 <pubDate>Tue, 3 Jan 2012 11:25:00 +0100</pubDate>
14404 <description>&lt;p&gt;During christmas, I have been working getting the next version of
14405 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu / Skolelinux&lt;/a&gt; ready
14406 for release. The initial problem I looked at was particularly
14407 interesting.&lt;/p&gt;
14408
14409 &lt;P&gt;The installer would hang at the end when it was doing it
14410 post-installation configuration, and whatevery I did to try to find
14411 the cause and fix it always worked while I tested it, but never when I
14412 integrated it into the installer and ran the installation from
14413 scratch. I would try to restart processes, close file descriptors,
14414 remove or create files, and the installer would always unblock and
14415 wrap up its tasks.&lt;/p&gt;
14416
14417 &lt;p&gt;Eventually the cause was found. The kernel was simply running out
14418 of entropy, causing the Kerberos setup to hang waiting for more.
14419 Pressing keys was adding entropy to the kernel, and thus all my tries
14420 to fix the problem worked not because what I was typing to fix it, but
14421 because I was typing.&lt;/P&gt;
14422
14423 &lt;p&gt;The fix I implemented was to add a background process looking at
14424 the level of entropy in the kernel (by checking
14425 /proc/sys/kernel/random/entropy_avail), and if it was too small, the
14426 installer will flush the kernel file buffers and do &#39;find /&#39; to
14427 generate some disk IO. Disk IO generate entropy in the kernel, and is
14428 one of the few things that can be initated from within the system to
14429 generate entropy.&lt;/p&gt;
14430
14431 &lt;p&gt;The fix is in
14432 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/Documentation/Squeeze/Installation&quot;&gt;beta1
14433 of the Debian Edu/Squeeze&lt;/a&gt; version, and we
14434 &lt;a href=&quot;http://wiki.debian.org/DebianEdu&quot;&gt;welcome more testers and
14435 developers&lt;/a&gt;. We plan to release beta2 this weekend.&lt;/p&gt;
14436 </description>
14437 </item>
14438
14439 <item>
14440 <title>Automatically upgrading server firmware on Dell PowerEdge</title>
14441 <link>http://people.skolelinux.org/pere/blog/Automatically_upgrading_server_firmware_on_Dell_PowerEdge.html</link>
14442 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatically_upgrading_server_firmware_on_Dell_PowerEdge.html</guid>
14443 <pubDate>Mon, 21 Nov 2011 12:00:00 +0100</pubDate>
14444 <description>&lt;p&gt;At work we have heaps of servers. I believe the total count is
14445 around 1000 at the moment. To be able to get help from the vendors
14446 when something go wrong, we want to keep the firmware on the servers
14447 up to date. If the firmware isn&#39;t the latest and greatest, the
14448 vendors typically refuse to start debugging any problems until the
14449 firmware is upgraded. So before every reboot, we want to upgrade the
14450 firmware, and we would really like everyone handling servers at the
14451 university to do this themselves when they plan to reboot a machine.
14452 For that to happen we at the unix server admin group need to provide
14453 the tools to do so.&lt;/p&gt;
14454
14455 &lt;p&gt;To make firmware upgrading easier, I am working on a script to
14456 fetch and install the latest firmware for the servers we got. Most of
14457 our hardware are from Dell and HP, so I have focused on these servers
14458 so far. This blog post is about the Dell part.&lt;/P&gt;
14459
14460 &lt;p&gt;On the Dell FTP site I was lucky enough to find
14461 &lt;a href=&quot;ftp://ftp.us.dell.com/catalog/Catalog.xml.gz&quot;&gt;an XML file&lt;/a&gt;
14462 with firmware information for all 11th generation servers, listing
14463 which firmware should be used on a given model and where on the FTP
14464 site I can find it. Using a simple perl XML parser I can then
14465 download the shell scripts Dell provides to do firmware upgrades from
14466 within Linux and reboot when all the firmware is primed and ready to
14467 be activated on the first reboot.&lt;/p&gt;
14468
14469 &lt;p&gt;This is the Dell related fragment of the perl code I am working on.
14470 Are there anyone working on similar tools for firmware upgrading all
14471 servers at a site? Please get in touch and lets share resources.&lt;/p&gt;
14472
14473 &lt;p&gt;&lt;pre&gt;
14474 #!/usr/bin/perl
14475 use strict;
14476 use warnings;
14477 use File::Temp qw(tempdir);
14478 BEGIN {
14479 # Install needed RHEL packages if missing
14480 my %rhelmodules = (
14481 &#39;XML::Simple&#39; =&gt; &#39;perl-XML-Simple&#39;,
14482 );
14483 for my $module (keys %rhelmodules) {
14484 eval &quot;use $module;&quot;;
14485 if ($@) {
14486 my $pkg = $rhelmodules{$module};
14487 system(&quot;yum install -y $pkg&quot;);
14488 eval &quot;use $module;&quot;;
14489 }
14490 }
14491 }
14492 my $errorsto = &#39;pere@hungry.com&#39;;
14493
14494 upgrade_dell();
14495
14496 exit 0;
14497
14498 sub run_firmware_script {
14499 my ($opts, $script) = @_;
14500 unless ($script) {
14501 print STDERR &quot;fail: missing script name\n&quot;;
14502 exit 1
14503 }
14504 print STDERR &quot;Running $script\n\n&quot;;
14505
14506 if (0 == system(&quot;sh $script $opts&quot;)) { # FIXME correct exit code handling
14507 print STDERR &quot;success: firmware script ran succcessfully\n&quot;;
14508 } else {
14509 print STDERR &quot;fail: firmware script returned error\n&quot;;
14510 }
14511 }
14512
14513 sub run_firmware_scripts {
14514 my ($opts, @dirs) = @_;
14515 # Run firmware packages
14516 for my $dir (@dirs) {
14517 print STDERR &quot;info: Running scripts in $dir\n&quot;;
14518 opendir(my $dh, $dir) or die &quot;Unable to open directory $dir: $!&quot;;
14519 while (my $s = readdir $dh) {
14520 next if $s =~ m/^\.\.?/;
14521 run_firmware_script($opts, &quot;$dir/$s&quot;);
14522 }
14523 closedir $dh;
14524 }
14525 }
14526
14527 sub download {
14528 my $url = shift;
14529 print STDERR &quot;info: Downloading $url\n&quot;;
14530 system(&quot;wget --quiet \&quot;$url\&quot;&quot;);
14531 }
14532
14533 sub upgrade_dell {
14534 my @dirs;
14535 my $product = `dmidecode -s system-product-name`;
14536 chomp $product;
14537
14538 if ($product =~ m/PowerEdge/) {
14539
14540 # on RHEL, these pacakges are needed by the firwmare upgrade scripts
14541 system(&#39;yum install -y compat-libstdc++-33.i686 libstdc++.i686 libxml2.i686 procmail&#39;);
14542
14543 my $tmpdir = tempdir(
14544 CLEANUP =&gt; 1
14545 );
14546 chdir($tmpdir);
14547 fetch_dell_fw(&#39;catalog/Catalog.xml.gz&#39;);
14548 system(&#39;gunzip Catalog.xml.gz&#39;);
14549 my @paths = fetch_dell_fw_list(&#39;Catalog.xml&#39;);
14550 # -q is quiet, disabling interactivity and reducing console output
14551 my $fwopts = &quot;-q&quot;;
14552 if (@paths) {
14553 for my $url (@paths) {
14554 fetch_dell_fw($url);
14555 }
14556 run_firmware_scripts($fwopts, $tmpdir);
14557 } else {
14558 print STDERR &quot;error: Unsupported Dell model &#39;$product&#39;.\n&quot;;
14559 print STDERR &quot;error: Please report to $errorsto.\n&quot;;
14560 }
14561 chdir(&#39;/&#39;);
14562 } else {
14563 print STDERR &quot;error: Unsupported Dell model &#39;$product&#39;.\n&quot;;
14564 print STDERR &quot;error: Please report to $errorsto.\n&quot;;
14565 }
14566 }
14567
14568 sub fetch_dell_fw {
14569 my $path = shift;
14570 my $url = &quot;ftp://ftp.us.dell.com/$path&quot;;
14571 download($url);
14572 }
14573
14574 # Using ftp://ftp.us.dell.com/catalog/Catalog.xml.gz, figure out which
14575 # firmware packages to download from Dell. Only work for Linux
14576 # machines and 11th generation Dell servers.
14577 sub fetch_dell_fw_list {
14578 my $filename = shift;
14579
14580 my $product = `dmidecode -s system-product-name`;
14581 chomp $product;
14582 my ($mybrand, $mymodel) = split(/\s+/, $product);
14583
14584 print STDERR &quot;Finding firmware bundles for $mybrand $mymodel\n&quot;;
14585
14586 my $xml = XMLin($filename);
14587 my @paths;
14588 for my $bundle (@{$xml-&gt;{SoftwareBundle}}) {
14589 my $brand = $bundle-&gt;{TargetSystems}-&gt;{Brand}-&gt;{Display}-&gt;{content};
14590 my $model = $bundle-&gt;{TargetSystems}-&gt;{Brand}-&gt;{Model}-&gt;{Display}-&gt;{content};
14591 my $oscode;
14592 if (&quot;ARRAY&quot; eq ref $bundle-&gt;{TargetOSes}-&gt;{OperatingSystem}) {
14593 $oscode = $bundle-&gt;{TargetOSes}-&gt;{OperatingSystem}[0]-&gt;{osCode};
14594 } else {
14595 $oscode = $bundle-&gt;{TargetOSes}-&gt;{OperatingSystem}-&gt;{osCode};
14596 }
14597 if ($mybrand eq $brand &amp;&amp; $mymodel eq $model &amp;&amp; &quot;LIN&quot; eq $oscode)
14598 {
14599 @paths = map { $_-&gt;{path} } @{$bundle-&gt;{Contents}-&gt;{Package}};
14600 }
14601 }
14602 for my $component (@{$xml-&gt;{SoftwareComponent}}) {
14603 my $componenttype = $component-&gt;{ComponentType}-&gt;{value};
14604
14605 # Drop application packages, only firmware and BIOS
14606 next if &#39;APAC&#39; eq $componenttype;
14607
14608 my $cpath = $component-&gt;{path};
14609 for my $path (@paths) {
14610 if ($cpath =~ m%/$path$%) {
14611 push(@paths, $cpath);
14612 }
14613 }
14614 }
14615 return @paths;
14616 }
14617 &lt;/pre&gt;
14618
14619 &lt;p&gt;The code is only tested on RedHat Enterprise Linux, but I suspect
14620 it could work on other platforms with some tweaking. Anyone know a
14621 index like Catalog.xml is available from HP for HP servers? At the
14622 moment I maintain a similar list manually and it is quickly getting
14623 outdated.&lt;/p&gt;
14624 </description>
14625 </item>
14626
14627 <item>
14628 <title>Free e-book kiosk for the public libraries?</title>
14629 <link>http://people.skolelinux.org/pere/blog/Free_e_book_kiosk_for_the_public_libraries_.html</link>
14630 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_e_book_kiosk_for_the_public_libraries_.html</guid>
14631 <pubDate>Fri, 7 Oct 2011 19:20:00 +0200</pubDate>
14632 <description>&lt;p&gt;Here in Norway the public libraries are debating with the
14633 publishing houses how to handle electronic books. Surprisingly, the
14634 libraries seem to be willing to accept digital restriction mechanisms
14635 (DRM) on books and renting e-books with artificial scarcity from the
14636 publishing houses. Time limited renting (2-3 years) is one proposed
14637 model, and only allowing X borrowers for each book is another.
14638 Personally I find it amazing that libraries are even considering such
14639 models.&lt;/p&gt;
14640
14641 &lt;p&gt;Anyway, while reading &lt;a href=&quot;http://boklaben.no/?p=220&quot;&gt;part of
14642 this debate&lt;/a&gt;, it occurred to me that someone should present a more
14643 sensible approach to the libraries, to allow its borrowers to get used
14644 to a better model. The idea is simple:&lt;/p&gt;
14645
14646 &lt;p&gt;Create a computer system for the libraries, either in the form of a
14647 Live DVD or a installable distribution, that provide a simple kiosk
14648 solution to hand out free e-books. As a start, the books distributed
14649 by &lt;a href=&quot;http://www.gutenberg.org/&quot;&gt;Project Gutenberg&lt;/a&gt; (about
14650 36,000 books), &lt;a href=&quot;http://runeberg.org/&quot;&gt;Project Runenberg&lt;/a&gt;
14651 (1149 books) and &lt;a href=&quot;http://www.archive.org/details/texts&quot;&gt;The
14652 Internet Archive&lt;/a&gt; (3,033,748 books) could be included, but any book
14653 where the copyright has expired or with a free licence could be
14654 distributed.&lt;/p&gt;
14655
14656 &lt;p&gt;The computer system would make it easy to:&lt;/p&gt;
14657
14658 &lt;ul&gt;
14659
14660 &lt;li&gt;Copy e-books into a USB stick, reading tablets, cell phones and
14661 other relevant equipment.&lt;/li&gt;
14662
14663 &lt;li&gt;Show the books for reading on the the screen in the library.&lt;/li&gt;
14664
14665 &lt;/ul&gt;
14666
14667 &lt;p&gt;In addition to such kiosk solution, there should probably be a web
14668 site as well to allow people easy access to these books without
14669 visiting the library. The site would be the distribution point for
14670 the kiosk systems, which would connect regularly to fetch any new
14671 books available.&lt;/p&gt;
14672
14673 &lt;p&gt;Are there anyone working on a system like this? I guess it would
14674 fit any library in the world, and not just the Norwegian public
14675 libraries. :)&lt;/p&gt;
14676 </description>
14677 </item>
14678
14679 <item>
14680 <title>Ripping problematic DVDs using dvdbackup and genisoimage</title>
14681 <link>http://people.skolelinux.org/pere/blog/Ripping_problematic_DVDs_using_dvdbackup_and_genisoimage.html</link>
14682 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Ripping_problematic_DVDs_using_dvdbackup_and_genisoimage.html</guid>
14683 <pubDate>Sat, 17 Sep 2011 20:20:00 +0200</pubDate>
14684 <description>&lt;p&gt;For convenience, I want to store copies of all my DVDs on my file
14685 server. It allow me to save shelf space flat while still having my
14686 movie collection easily available. It also make it possible to let
14687 the kids see their favourite DVDs without wearing the physical copies
14688 down. I prefer to store the DVDs as ISOs to keep the DVD menu and
14689 subtitle options intact. It also ensure that the entire film is one
14690 file on the disk. As this is for personal use, the ripping is
14691 perfectly legal here in Norway.&lt;/p&gt;
14692
14693 &lt;p&gt;Normally I rip the DVDs using dd like this:&lt;/p&gt;
14694
14695 &lt;blockquote&gt;&lt;pre&gt;
14696 #!/bin/sh
14697 # apt-get install lsdvd
14698 title=$(lsdvd 2&gt;/dev/null|awk &#39;/Disc Title: / {print $3}&#39;)
14699 dd if=/dev/dvd of=/storage/dvds/$title.iso bs=1M
14700 &lt;/pre&gt;&lt;/blockquote&gt;
14701
14702 &lt;p&gt;But some DVDs give a input/output error when I read it, and I have
14703 been looking for a better alternative. I have no idea why this I/O
14704 error occur, but suspect my DVD drive, the Linux kernel driver or
14705 something fishy with the DVDs in question. Or perhaps all three.&lt;/p&gt;
14706
14707 &lt;p&gt;Anyway, I believe I found a solution today using dvdbackup and
14708 genisoimage. This script gave me a working ISO for a problematic
14709 movie by first extracting the DVD file system and then re-packing it
14710 back as an ISO.
14711
14712 &lt;blockquote&gt;&lt;pre&gt;
14713 #!/bin/sh
14714 # apt-get install lsdvd dvdbackup genisoimage
14715 set -e
14716 tmpdir=/storage/dvds/
14717 title=$(lsdvd 2&gt;/dev/null|awk &#39;/Disc Title: / {print $3}&#39;)
14718 dvdbackup -i /dev/dvd -M -o $tmpdir -n$title
14719 genisoimage -dvd-video -o $tmpdir/$title.iso $tmpdir/$title
14720 rm -rf $tmpdir/$title
14721 &lt;/pre&gt;&lt;/blockquote&gt;
14722
14723 &lt;p&gt;Anyone know of a better way available in Debian/Squeeze?&lt;/p&gt;
14724
14725 &lt;p&gt;Update 2011-09-18: I got a tip from Konstantin Khomoutov about the
14726 readom program from the wodim package. It is specially written to
14727 read optical media, and is called like this: &lt;tt&gt;readom dev=/dev/dvd
14728 f=image.iso&lt;/tt&gt;. It got 6 GB along with the problematic Cars DVD
14729 before it failed, and failed right away with a Timmy Time DVD.&lt;/p&gt;
14730
14731 &lt;p&gt;Next, I got a tip from Bastian Blank about
14732 &lt;a href=&quot;http://bblank.thinkmo.de/blog/new-software-python-dvdvideo&quot;&gt;his
14733 program python-dvdvideo&lt;/a&gt;, which seem to be just what I am looking
14734 for. Tested it with my problematic Timmy Time DVD, and it succeeded
14735 creating a ISO image. The git source built and installed just fine in
14736 Squeeze, so I guess this will be my tool of choice in the future.&lt;/p&gt;
14737 </description>
14738 </item>
14739
14740 <item>
14741 <title>How is booting into runlevel 1 different from single user boots?</title>
14742 <link>http://people.skolelinux.org/pere/blog/How_is_booting_into_runlevel_1_different_from_single_user_boots_.html</link>
14743 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_is_booting_into_runlevel_1_different_from_single_user_boots_.html</guid>
14744 <pubDate>Thu, 4 Aug 2011 12:40:00 +0200</pubDate>
14745 <description>&lt;p&gt;Wouter Verhelst have some
14746 &lt;a href=&quot;http://grep.be/blog/en/retorts/pere_kubuntu_boot&quot;&gt;interesting
14747 comments and opinions&lt;/a&gt; on my blog post on
14748 &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
14749 need to clean up /etc/rcS.d/ in Debian&lt;/a&gt; and my blog post about
14750 &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
14751 default KDE desktop in Debian&lt;/a&gt;. I only have time to address one
14752 small piece of his comment now, and though it best to address the
14753 misunderstanding he bring forward:&lt;/p&gt;
14754
14755 &lt;p&gt;&lt;blockquote&gt;
14756 Currently, a system admin has four options: [...] boot to a
14757 single-user system (by adding &#39;single&#39; to the kernel command line;
14758 this runs rcS and rc1 scripts)
14759 &lt;/blockquote&gt;&lt;/p&gt;
14760
14761 &lt;p&gt;This make me believe Wouter believe booting into single user mode
14762 and booting into runlevel 1 is the same. I am not surprised he
14763 believe this, because it would make sense and is a quite sensible
14764 thing to believe. But because the boot in Debian is slightly broken,
14765 runlevel 1 do not work properly and it isn&#39;t the same as single user
14766 mode. I&#39;ll try to explain what is actually happing, but it is a bit
14767 hard to explain.&lt;/p&gt;
14768
14769 &lt;p&gt;Single user mode is defined like this in /etc/inittab:
14770 &quot;&lt;tt&gt;~~:S:wait:/sbin/sulogin&lt;/tt&gt;&quot;. This means the only thing that is
14771 executed in single user mode is sulogin. Single user mode is a boot
14772 state &quot;between&quot; the runlevels, and when booting into single user mode,
14773 only the scripts in /etc/rcS.d/ are executed before the init process
14774 enters the single user state. When switching to runlevel 1, the state
14775 is in fact not ending in runlevel 1, but it passes through runlevel 1
14776 and end up in the single user mode (see /etc/rc1.d/S03single, which
14777 runs &quot;init -t1 S&quot; to switch to single user mode at the end of runlevel
14778 1. It is confusing that the &#39;S&#39; (single user) init mode is not the
14779 mode enabled by /etc/rcS.d/ (which is more like the initial boot
14780 mode).&lt;/p&gt;
14781
14782 &lt;p&gt;This summary might make it clearer. When booting for the first
14783 time into single user mode, the following commands are executed:
14784 &quot;&lt;tt&gt;/etc/init.d/rc S; /sbin/sulogin&lt;/tt&gt;&quot;. When booting into
14785 runlevel 1, the following commands are executed: &quot;&lt;tt&gt;/etc/init.d/rc
14786 S; /etc/init.d/rc 1; /sbin/sulogin&lt;/tt&gt;&quot;. A problem show up when
14787 trying to continue after visiting single user mode. Not all services
14788 are started again as they should, causing the machine to end up in an
14789 unpredicatble state. This is why Debian admins recommend rebooting
14790 after visiting single user mode.&lt;/p&gt;
14791
14792 &lt;p&gt;A similar problem with runlevel 1 is caused by the amount of
14793 scripts executed from /etc/rcS.d/. When switching from say runlevel 2
14794 to runlevel 1, the services started from /etc/rcS.d/ are not properly
14795 stopped when passing through the scripts in /etc/rc1.d/, and not
14796 started again when switching away from runlevel 1 to the runlevels
14797 2-5. I believe the problem is best fixed by moving all the scripts
14798 out of /etc/rcS.d/ that are not &lt;strong&gt;required&lt;/strong&gt; to get a
14799 functioning single user mode during boot.&lt;/p&gt;
14800
14801 &lt;p&gt;I have spent several years investigating the Debian boot system,
14802 and discovered this problem a few years ago. I suspect it originates
14803 from when sysvinit was introduced into Debian, a long time ago.&lt;/p&gt;
14804 </description>
14805 </item>
14806
14807 <item>
14808 <title>What should start from /etc/rcS.d/ in Debian? - almost nothing</title>
14809 <link>http://people.skolelinux.org/pere/blog/What_should_start_from__etc_rcS_d__in_Debian____almost_nothing.html</link>
14810 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/What_should_start_from__etc_rcS_d__in_Debian____almost_nothing.html</guid>
14811 <pubDate>Sat, 30 Jul 2011 14:00:00 +0200</pubDate>
14812 <description>&lt;p&gt;In the Debian boot system, several packages include scripts that
14813 are started from /etc/rcS.d/. In fact, there is a bite more of them
14814 than make sense, and this causes a few problems. What kind of
14815 problems, you might ask. There are at least two problems. The first
14816 is that it is not possible to recover a machine after switching to
14817 runlevel 1. One need to actually reboot to get the machine back to
14818 the expected state. The other is that single user boot will sometimes
14819 run into problems because some of the subsystems are activated before
14820 the root login is presented, causing problems when trying to recover a
14821 machine from a problem in that subsystem. A minor additional point is
14822 that moving more scripts out of rcS.d/ and into the other rc#.d/
14823 directories will increase the amount of scripts that can run in
14824 parallel during boot, and thus decrease the boot time.&lt;/p&gt;
14825
14826 &lt;p&gt;So, which scripts should start from rcS.d/. In short, only the
14827 scripts that _have_ to execute before the root login prompt is
14828 presented during a single user boot should go there. Everything else
14829 should go into the numeric runlevels. This means things like
14830 lm-sensors, fuse and x11-common should not run from rcS.d, but from
14831 the numeric runlevels. Today in Debian, there are around 115 init.d
14832 scripts that are started from rcS.d/, and most of them should be moved
14833 out. Do your package have one of them? Please help us make single
14834 user and runlevel 1 better by moving it.&lt;/p&gt;
14835
14836 &lt;p&gt;Scripts setting up the screen, keyboard, system partitions
14837 etc. should still be started from rcS.d/, but there is for example no
14838 need to have the network enabled before the single user login prompt
14839 is presented.&lt;/p&gt;
14840
14841 &lt;p&gt;As always, things are not so easy to fix as they sound. To keep
14842 Debian systems working while scripts migrate and during upgrades, the
14843 scripts need to be moved from rcS.d/ to rc2.d/ in reverse dependency
14844 order, ie the scripts that nothing in rcS.d/ depend on can be moved,
14845 and the next ones can only be moved when their dependencies have been
14846 moved first. This migration must be done sequentially while we ensure
14847 that the package system upgrade packages in the right order to keep
14848 the system state correct. This will require some coordination when it
14849 comes to network related packages, but most of the packages with
14850 scripts that should migrate do not have anything in rcS.d/ depending
14851 on them. Some packages have already been updated, like the sudo
14852 package, while others are still left to do. I wish I had time to work
14853 on this myself, but real live constrains make it unlikely that I will
14854 find time to push this forward.&lt;/p&gt;
14855 </description>
14856 </item>
14857
14858 <item>
14859 <title>What is missing in the Debian desktop, or why my parents use Kubuntu</title>
14860 <link>http://people.skolelinux.org/pere/blog/What_is_missing_in_the_Debian_desktop__or_why_my_parents_use_Kubuntu.html</link>
14861 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/What_is_missing_in_the_Debian_desktop__or_why_my_parents_use_Kubuntu.html</guid>
14862 <pubDate>Fri, 29 Jul 2011 08:10:00 +0200</pubDate>
14863 <description>&lt;p&gt;While at Debconf11, I have several times during discussions
14864 mentioned the issues I believe should be improved in Debian for its
14865 desktop to be useful for more people. The use case for this is my
14866 parents, which are currently running Kubuntu which solve the
14867 issues.&lt;/p&gt;
14868
14869 &lt;p&gt;I suspect these four missing features are not very hard to
14870 implement. After all, they are present in Ubuntu, so if we wanted to
14871 do this in Debian we would have a source.&lt;/p&gt;
14872
14873 &lt;ol&gt;
14874
14875 &lt;li&gt;&lt;strong&gt;Simple GUI based upgrade of packages.&lt;/strong&gt; When there
14876 are new packages available for upgrades, a icon in the KDE status bar
14877 indicate this, and clicking on it will activate the simple upgrade
14878 tool to handle it. I have no problem guiding both of my parents
14879 through the process over the phone. If a kernel reboot is required,
14880 this too is indicated by the status bars and the upgrade tool. Last
14881 time I checked, nothing with the same features was working in KDE in
14882 Debian.&lt;/li&gt;
14883
14884 &lt;li&gt;&lt;strong&gt;Simple handling of missing Firefox browser
14885 plugins.&lt;/strong&gt; When the browser encounter a MIME type it do not
14886 currently have a handler for, it will ask the user if the system
14887 should search for a package that would add support for this MIME type,
14888 and if the user say yes, the APT sources will be searched for packages
14889 advertising the MIME type in their control file (visible in the
14890 Packages file in the APT archive). If one or more packages are found,
14891 it is a simple click of the mouse to add support for the missing mime
14892 type. If the package require the user to accept some non-free
14893 license, this is explained to the user. The entire process make it
14894 more clear to the user why something do not work in the browser, and
14895 make the chances higher for the user to blame the web page authors and
14896 not the browser for any missing features.&lt;/li&gt;
14897
14898 &lt;li&gt;&lt;strong&gt;Simple handling of missing multimedia codec/format
14899 handlers.&lt;/strong&gt; When the media players encounter a format or codec
14900 it is not supporting, a dialog pop up asking the user if the system
14901 should search for a package that would add support for it. This
14902 happen with things like MP3, Windows Media or H.264. The selection
14903 and installation procedure is very similar to the Firefox browser
14904 plugin handling. This is as far as I know implemented using a
14905 gstreamer hook. The end result is that the user easily get access to
14906 the codecs that are present from the APT archives available, while
14907 explaining more on why a given format is unsupported by Ubuntu.&lt;/li&gt;
14908
14909 &lt;li&gt;&lt;strong&gt;Better browser handling of some MIME types.&lt;/strong&gt; When
14910 displaying a text/plain file in my Debian browser, it will propose to
14911 start emacs to show it. If I remember correctly, when doing the same
14912 in Kunbutu it show the file as a text file in the browser. At least I
14913 know Opera will show text files within the browser. I much prefer the
14914 latter behaviour.&lt;/li&gt;
14915
14916 &lt;/ol&gt;
14917
14918 &lt;p&gt;There are other nice features as well, like the simplified suite
14919 upgrader, but given that I am the one mostly doing the dist-upgrade,
14920 it do not matter much.&lt;/p&gt;
14921
14922 &lt;p&gt;I really hope we could get these features in place for the next
14923 Debian release. It would require the coordinated effort of several
14924 maintainers, but would make the end user experience a lot better.&lt;/p&gt;
14925 </description>
14926 </item>
14927
14928 <item>
14929 <title>Perl modules used by FixMyStreet which are missing in Debian/Squeeze</title>
14930 <link>http://people.skolelinux.org/pere/blog/Perl_modules_used_by_FixMyStreet_which_are_missing_in_Debian_Squeeze.html</link>
14931 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Perl_modules_used_by_FixMyStreet_which_are_missing_in_Debian_Squeeze.html</guid>
14932 <pubDate>Tue, 26 Jul 2011 12:25:00 +0200</pubDate>
14933 <description>&lt;p&gt;The Norwegian &lt;a href=&quot;http://www.fiksgatami.no/&quot;&gt;FiksGataMi&lt;/A&gt;
14934 site is build on Debian/Squeeze, and this platform was chosen because
14935 I am most familiar with Debian (being a Debian Developer for around 10
14936 years) because it is the latest stable Debian release which should get
14937 security support for a few years.&lt;/p&gt;
14938
14939 &lt;p&gt;The web service is written in Perl, and depend on some perl modules
14940 that are missing in Debian at the moment. It would be great if these
14941 modules were added to the Debian archive, allowing anyone to set up
14942 their own &lt;a href=&quot;http://www.fixmystreet.com&quot;&gt;FixMyStreet&lt;/a&gt; clone
14943 in their own country using only Debian packages. The list of modules
14944 missing in Debian/Squeeze isn&#39;t very long, and I hope the perl group
14945 will find time to package the 12 modules Catalyst::Plugin::SmartURI,
14946 Catalyst::Plugin::Unicode::Encoding, Catalyst::View::TT, Devel::Hide,
14947 Sort::Key, Statistics::Distributions, Template::Plugin::Comma,
14948 Template::Plugin::DateTime::Format, Term::Size::Any, Term::Size::Perl,
14949 URI::SmartURI and Web::Scraper to make the maintenance of FixMyStreet
14950 easier in the future.&lt;/p&gt;
14951
14952 &lt;p&gt;Thanks to the great tools in Debian, getting the missing modules
14953 installed on my server was a simple call to &#39;cpan2deb Module::Name&#39;
14954 and &#39;dpkg -i&#39; to install the resulting package. But this leave me
14955 with the responsibility of tracking security problems, which I really
14956 do not have time for.&lt;/p&gt;
14957 </description>
14958 </item>
14959
14960 <item>
14961 <title>Free Software vs. proprietary softare...</title>
14962 <link>http://people.skolelinux.org/pere/blog/Free_Software_vs__proprietary_softare___.html</link>
14963 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Free_Software_vs__proprietary_softare___.html</guid>
14964 <pubDate>Mon, 20 Jun 2011 12:50:00 +0200</pubDate>
14965 <description>&lt;p&gt;Reading
14966 &lt;a href=&quot;http://blog.thingiverse.com/2011/06/20/open-source-vs-closed-source-eulas/&quot;&gt;the
14967 thingiverse blog&lt;/a&gt;, I came across two highlights of interesting
14968 parts of the
14969 &lt;a href=&quot;http://wiki.blender.org/index.php/Autodesk_EULA&quot;&gt;Autodesk&lt;/a&gt;
14970 and
14971 &lt;a href=&quot;http://blog.makezine.com/archive/2011/06/things-you-cant-do-with-the-microsoft-kinect-sdk.html&quot;&gt;Microsoft
14972 Kinect&lt;/a&gt; End User License Agreements (EULAs), which illustrates
14973 quite well why I stay away from software with EULAs. Whenever I take
14974 the time to read their content, the terms are simply unacceptable.&lt;/p&gt;
14975 </description>
14976 </item>
14977
14978 <item>
14979 <title>Experimental Open311 API for the mySociety fixmystreet system</title>
14980 <link>http://people.skolelinux.org/pere/blog/Experimental_Open311_API_for_the_mySociety_fixmystreet_system.html</link>
14981 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Experimental_Open311_API_for_the_mySociety_fixmystreet_system.html</guid>
14982 <pubDate>Sat, 30 Apr 2011 17:20:00 +0200</pubDate>
14983 <description>&lt;p&gt;Today, the first draft implementation of an
14984 &lt;a href=&quot;http://www.open311.org/&quot;&gt;Open311 API&lt;/a&gt; for the Norwegian
14985 service &lt;a href=&quot;http://www.fiksgatami.no/&quot;&gt;FiksGataMi&lt;/a&gt; started to
14986 work. It is only available on the developer server for now, and I
14987 have not tested it using any existing Open311 client (I lack the
14988 platforms needed to run the clients I have found so far), but it is
14989 able to query the database and extract a list of open and closed
14990 requests within a given category and reported to a given municipality.
14991 I believe that is a good start to create a useful service for those
14992 that want to do data mining on the requests submitted so far.&lt;/p&gt;
14993
14994 &lt;p&gt;Where is it? Visit
14995 &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;
14996 to have a look. Please send feedback to the
14997 &lt;a href=&quot;http://lists.nuug.no/mailman/listinfo/fiksgatami&quot;&gt;fiksgatami
14998 (at) nuug.no&lt;/a&gt; mailing list.&lt;/p&gt;
14999 </description>
15000 </item>
15001
15002 <item>
15003 <title>Initial notes on adding Open311 server API on FixMyStreet</title>
15004 <link>http://people.skolelinux.org/pere/blog/Initial_notes_on_adding_Open311_server_API_on_FixMyStreet.html</link>
15005 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Initial_notes_on_adding_Open311_server_API_on_FixMyStreet.html</guid>
15006 <pubDate>Fri, 29 Apr 2011 10:00:00 +0200</pubDate>
15007 <description>&lt;p&gt;The last few days I have spent some time trying to add support for
15008 the &lt;a href=&quot;http://www.open311.org/&quot;&gt;Open311 API&lt;/a&gt; in the
15009 &lt;a href=&quot;http://www.fiksgatami.no/&quot;&gt;Norwegian FixMyStreet service&lt;/a&gt;.
15010 Earlier I believed Open311 would be a useful API to use to submit
15011 reports to the municipalities, but when I noticed that the
15012 &lt;a href=&quot;http://fixmystreet.org.nz/&quot;&gt;New Zealand version&lt;/a&gt; of
15013 FixMyStreet had implemented Open311 on the server side, it occurred to
15014 me that this was a nice way to allow the public, press and
15015 municipalities to do data mining directly in the FixMyStreet service.
15016 Thus I went to work implementing the Open311 specification for
15017 FixMyStreet. The implementation is not yet ready, but I am starting
15018 to get a draft limping along. In the process, I have discovered a few
15019 issues with the Open311 specification.&lt;/p&gt;
15020
15021 &lt;p&gt;One obvious missing feature is the lack of natural language
15022 handling in the specification. The specification seem to assume all
15023 reports will be written in English, and do not provide a way for the
15024 receiving end to specify which languages are understood there. To be
15025 able to use the same client and submit to several Open311 receivers,
15026 it would be useful to know which language to use when writing reports.
15027 I believe the specification should be extended to allow the receivers
15028 of problem reports to specify which language they accept, and the
15029 submitter to specify which language the report is written in.
15030 Language of a text can also be automatically guessed using statistical
15031 methods, but for multi-lingual persons like myself, it is useful to
15032 know which language to use when writing a problem report. I suspect
15033 some lang=nb,nn kind of attribute would solve it.&lt;/p&gt;
15034
15035 &lt;p&gt;A key part of the Open311 API is the list of services provided,
15036 which is similar to the categories used by FixMyStreet. One issue I
15037 run into is the need to specify both name and unique identifier for
15038 each category. The specification do not state that the identifier
15039 should be numeric, but all example implementations have used numbers
15040 here. In FixMyStreet, there is no number associated with each
15041 category. As the specification do not forbid it, I will use the name
15042 as the unique identifier for now and see how open311 clients handle
15043 it.&lt;/p&gt;
15044
15045 &lt;p&gt;The report format in open311 and the report format in FixMyStreet
15046 differ in a key part. FixMyStreet have a title and a description,
15047 while Open311 only have a description and lack the title. I&#39;m not
15048 quite sure how to best handle this yet. When asking for a FixMyStreet
15049 report in Open311 format, I just merge title an description into the
15050 open311 description, but this is not going to work if the open311 API
15051 should be used for submitting new reports to FixMyStreet.&lt;/p&gt;
15052
15053 &lt;p&gt;The search feature in Open311 is missing a way to ask for problems
15054 near a geographic location. I believe this is important if one is to
15055 use Open311 as the query language for mobile units. The specification
15056 should be extended to handle this, probably using some new lat=, lon=
15057 and range= options.&lt;/p&gt;
15058
15059 &lt;p&gt;The final challenge I see is that the FixMyStreet code handle
15060 several administrations in one interface, while the Open311 API seem
15061 to assume only one administration. For FixMyStreet, this mean a
15062 report can be sent to several administrations, and the categories
15063 available depend on the location of the problem. Not quite sure how
15064 to best handle this. I&#39;ve noticed
15065 &lt;a href=&quot;http://seeclickfix.com/open311/&quot;&gt;SeeClickFix&lt;/a&gt; added
15066 latitude and longitude options to the services request, but it do not
15067 solve the problem of what to return when no location is specified.
15068 Will have to investigate this a bit more.&lt;/p&gt;
15069
15070 &lt;p&gt;My distaste for web forums have kept me from bringing these issues
15071 up with the open311 developer group. I really wish they had a email
15072 list available via &lt;a href=&quot;http://www.gmane.org/&quot;&gt;Gmane&lt;/a&gt; to use for
15073 discussions instead of only
15074 &lt;a href=&quot;http://lists.open311.org/groups/discuss&quot;&gt;a forum&lt;a/&gt;. Oh,
15075 well. That will probably resolve itself, one way or another. I&#39;ve
15076 also tried visiting the IRC channel #open311 on FreeNode, but no-one
15077 seem to reply to my questions there. This make me wonder if I just
15078 fail to understand how the open311 community work. It sure do not
15079 work like the free software project communities I am used to.&lt;/p&gt;
15080 </description>
15081 </item>
15082
15083 <item>
15084 <title>Gnash enteres Google Summer of Code 2011</title>
15085 <link>http://people.skolelinux.org/pere/blog/Gnash_enteres_Google_Summer_of_Code_2011.html</link>
15086 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Gnash_enteres_Google_Summer_of_Code_2011.html</guid>
15087 <pubDate>Wed, 6 Apr 2011 09:00:00 +0200</pubDate>
15088 <description>&lt;p&gt;&lt;a href=&quot;http://www.getgnash.org/&quot;&gt;The Gnash project&lt;/a&gt; is still
15089 the most promising solution for a Free Software Flash implementation.
15090 A few days ago the project
15091 &lt;a href=&quot;http://lists.gnu.org/archive/html/gnash-dev/2011-04/msg00011.html&quot;&gt;announced&lt;/a&gt;
15092 that it will participate in Google Summer of Code. I hope many
15093 students apply, and that some of them succeed in getting AVM2 support
15094 into Gnash.&lt;/p&gt;
15095 </description>
15096 </item>
15097
15098 <item>
15099 <title>A Norwegian FixMyStreet have kept me busy the last few weeks</title>
15100 <link>http://people.skolelinux.org/pere/blog/A_Norwegian_FixMyStreet_have_kept_me_busy_the_last_few_weeks.html</link>
15101 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_Norwegian_FixMyStreet_have_kept_me_busy_the_last_few_weeks.html</guid>
15102 <pubDate>Sun, 3 Apr 2011 22:50:00 +0200</pubDate>
15103 <description>&lt;p&gt;Here is a small update for my English readers. Most of my blog
15104 posts have been in Norwegian the last few weeks, so here is a short
15105 update in English.&lt;/p&gt;
15106
15107 &lt;p&gt;The kids still keep me too busy to get much free software work
15108 done, but I did manage to organise a project to get a Norwegian port
15109 of the British service
15110 &lt;a href=&quot;http://www.fixmystreet.com/&quot;&gt;FixMyStreet&lt;/a&gt; up and running,
15111 and it has been running for a month now. The entire project has been
15112 organised by me and two others. Around Christmas we gathered sponsors
15113 to fund the development work. In January I drafted a contract with
15114 &lt;a href=&quot;http://www.mysociety.org/&quot;&gt;mySociety&lt;/a&gt; on what to develop,
15115 and in February the development took place. Most of it involved
15116 converting the source to use GPS coordinates instead of British
15117 easting/northing, and the resulting code should be a lot easier to get
15118 running in any country by now. The Norwegian
15119 &lt;a href=&quot;http://www.fiksgatami.no/&quot;&gt;FiksGataMi&lt;/a&gt; is using
15120 &lt;a href=&quot;http://www.openstreetmap.org/&quot;&gt;OpenStreetmap&lt;/a&gt; as the map
15121 source and the source for administrative borders in Norway, and
15122 support for this had to be added/fixed.&lt;/p&gt;
15123
15124 &lt;p&gt;The Norwegian version went live March 3th, and we spent the weekend
15125 polishing the system before we announced it March 7th. The system is
15126 running on a KVM instance of Debian/Squeeze, and has seen almost 3000
15127 problem reports in a few weeks. Soon we hope to announce the Android
15128 and iPhone versions making it even easier to report problems with the
15129 public infrastructure.&lt;/p&gt;
15130
15131 &lt;p&gt;Perhaps something to consider for those of you in countries without
15132 such service?&lt;/p&gt;
15133 </description>
15134 </item>
15135
15136 <item>
15137 <title>Using NVD and CPE to track CVEs in locally maintained software</title>
15138 <link>http://people.skolelinux.org/pere/blog/Using_NVD_and_CPE_to_track_CVEs_in_locally_maintained_software.html</link>
15139 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Using_NVD_and_CPE_to_track_CVEs_in_locally_maintained_software.html</guid>
15140 <pubDate>Fri, 28 Jan 2011 15:40:00 +0100</pubDate>
15141 <description>&lt;p&gt;The last few days I have looked at ways to track open security
15142 issues here at my work with the University of Oslo. My idea is that
15143 it should be possible to use the information about security issues
15144 available on the Internet, and check our locally
15145 maintained/distributed software against this information. It should
15146 allow us to verify that no known security issues are forgotten. The
15147 CVE database listing vulnerabilities seem like a great central point,
15148 and by using the package lists from Debian mapped to CVEs provided by
15149 the testing security team, I believed it should be possible to figure
15150 out which security holes were present in our free software
15151 collection.&lt;/p&gt;
15152
15153 &lt;p&gt;After reading up on the topic, it became obvious that the first
15154 building block is to be able to name software packages in a unique and
15155 consistent way across data sources. I considered several ways to do
15156 this, for example coming up with my own naming scheme like using URLs
15157 to project home pages or URLs to the Freshmeat entries, or using some
15158 existing naming scheme. And it seem like I am not the first one to
15159 come across this problem, as MITRE already proposed and implemented a
15160 solution. Enter the &lt;a href=&quot;http://cpe.mitre.org/index.html&quot;&gt;Common
15161 Platform Enumeration&lt;/a&gt; dictionary, a vocabulary for referring to
15162 software, hardware and other platform components. The CPE ids are
15163 mapped to CVEs in the &lt;a href=&quot;http://web.nvd.nist.gov/&quot;&gt;National
15164 Vulnerability Database&lt;/a&gt;, allowing me to look up know security
15165 issues for any CPE name. With this in place, all I need to do is to
15166 locate the CPE id for the software packages we use at the university.
15167 This is fairly trivial (I google for &#39;cve cpe $package&#39; and check the
15168 NVD entry if a CVE for the package exist).&lt;/p&gt;
15169
15170 &lt;p&gt;To give you an example. The GNU gzip source package have the CPE
15171 name cpe:/a:gnu:gzip. If the old version 1.3.3 was the package to
15172 check out, one could look up
15173 &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
15174 in NVD&lt;/a&gt; and get a list of 6 security holes with public CVE entries.
15175 The most recent one is
15176 &lt;a href=&quot;http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2010-0001&quot;&gt;CVE-2010-0001&lt;/a&gt;,
15177 and at the bottom of the NVD page for this vulnerability the complete
15178 list of affected versions is provided.&lt;/p&gt;
15179
15180 &lt;p&gt;The NVD database of CVEs is also available as a XML dump, allowing
15181 for offline processing of issues. Using this dump, I&#39;ve written a
15182 small script taking a list of CPEs as input and list all CVEs
15183 affecting the packages represented by these CPEs. One give it CPEs
15184 with version numbers as specified above and get a list of open
15185 security issues out.&lt;/p&gt;
15186
15187 &lt;p&gt;Of course for this approach to be useful, the quality of the NVD
15188 information need to be high. For that to happen, I believe as many as
15189 possible need to use and contribute to the NVD database. I notice
15190 RHEL is providing
15191 &lt;a href=&quot;https://www.redhat.com/security/data/metrics/rhsamapcpe.txt&quot;&gt;a
15192 map from CVE to CPE&lt;/a&gt;, indicating that they are using the CPE
15193 information. I&#39;m not aware of Debian and Ubuntu doing the same.&lt;/p&gt;
15194
15195 &lt;p&gt;To get an idea about the quality for free software, I spent some
15196 time making it possible to compare the CVE database from Debian with
15197 the CVE database in NVD. The result look fairly good, but there are
15198 some inconsistencies in NVD (same software package having several
15199 CPEs), and some inaccuracies (NVD not mentioning buggy packages that
15200 Debian believe are affected by a CVE). Hope to find time to improve
15201 the quality of NVD, but that require being able to get in touch with
15202 someone maintaining it. So far my three emails with questions and
15203 corrections have not seen any reply, but I hope contact can be
15204 established soon.&lt;/p&gt;
15205
15206 &lt;p&gt;An interesting application for CPEs is cross platform package
15207 mapping. It would be useful to know which packages in for example
15208 RHEL, OpenSuSe and Mandriva are missing from Debian and Ubuntu, and
15209 this would be trivial if all linux distributions provided CPE entries
15210 for their packages.&lt;/p&gt;
15211 </description>
15212 </item>
15213
15214 <item>
15215 <title>Which module is loaded for a given PCI and USB device?</title>
15216 <link>http://people.skolelinux.org/pere/blog/Which_module_is_loaded_for_a_given_PCI_and_USB_device_.html</link>
15217 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Which_module_is_loaded_for_a_given_PCI_and_USB_device_.html</guid>
15218 <pubDate>Sun, 23 Jan 2011 00:20:00 +0100</pubDate>
15219 <description>&lt;p&gt;In the
15220 &lt;a href=&quot;http://packages.qa.debian.org/discover-data&quot;&gt;discover-data&lt;/a&gt;
15221 package in Debian, there is a script to report useful information
15222 about the running hardware for use when people report missing
15223 information. One part of this script that I find very useful when
15224 debugging hardware problems, is the part mapping loaded kernel module
15225 to the PCI device it claims. It allow me to quickly see if the kernel
15226 module I expect is driving the hardware I am struggling with. To see
15227 the output, make sure discover-data is installed and run
15228 &lt;tt&gt;/usr/share/bug/discover-data 3&gt;&amp;1&lt;/tt&gt;. The relevant output on
15229 one of my machines like this:&lt;/p&gt;
15230
15231 &lt;pre&gt;
15232 loaded modules:
15233 10de:03eb i2c_nforce2
15234 10de:03f1 ohci_hcd
15235 10de:03f2 ehci_hcd
15236 10de:03f0 snd_hda_intel
15237 10de:03ec pata_amd
15238 10de:03f6 sata_nv
15239 1022:1103 k8temp
15240 109e:036e bttv
15241 109e:0878 snd_bt87x
15242 11ab:4364 sky2
15243 &lt;/pre&gt;
15244
15245 &lt;p&gt;The code in question look like this, slightly modified for
15246 readability and to drop the output to file descriptor 3:&lt;/p&gt;
15247
15248 &lt;pre&gt;
15249 if [ -d /sys/bus/pci/devices/ ] ; then
15250 echo loaded pci modules:
15251 (
15252 cd /sys/bus/pci/devices/
15253 for address in * ; do
15254 if [ -d &quot;$address/driver/module&quot; ] ; then
15255 module=`cd $address/driver/module ; pwd -P | xargs basename`
15256 if grep -q &quot;^$module &quot; /proc/modules ; then
15257 address=$(echo $address |sed s/0000://)
15258 id=`lspci -n -s $address | tail -n 1 | awk &#39;{print $3}&#39;`
15259 echo &quot;$id $module&quot;
15260 fi
15261 fi
15262 done
15263 )
15264 echo
15265 fi
15266 &lt;/pre&gt;
15267
15268 &lt;p&gt;Similar code could be used to extract USB device module
15269 mappings:&lt;/p&gt;
15270
15271 &lt;pre&gt;
15272 if [ -d /sys/bus/usb/devices/ ] ; then
15273 echo loaded usb modules:
15274 (
15275 cd /sys/bus/usb/devices/
15276 for address in * ; do
15277 if [ -d &quot;$address/driver/module&quot; ] ; then
15278 module=`cd $address/driver/module ; pwd -P | xargs basename`
15279 if grep -q &quot;^$module &quot; /proc/modules ; then
15280 address=$(echo $address |sed s/0000://)
15281 id=$(lsusb -s $address | tail -n 1 | awk &#39;{print $6}&#39;)
15282 if [ &quot;$id&quot; ] ; then
15283 echo &quot;$id $module&quot;
15284 fi
15285 fi
15286 fi
15287 done
15288 )
15289 echo
15290 fi
15291 &lt;/pre&gt;
15292
15293 &lt;p&gt;This might perhaps be something to include in other tools as
15294 well.&lt;/p&gt;
15295 </description>
15296 </item>
15297
15298 <item>
15299 <title>The video format most supported in web browsers?</title>
15300 <link>http://people.skolelinux.org/pere/blog/The_video_format_most_supported_in_web_browsers_.html</link>
15301 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_video_format_most_supported_in_web_browsers_.html</guid>
15302 <pubDate>Sun, 16 Jan 2011 00:20:00 +0100</pubDate>
15303 <description>&lt;p&gt;The video format struggle on the web continues, and the three
15304 contenders seem to be Ogg Theora, H.264 and WebM. Most video sites
15305 seem to use H.264, while others use Ogg Theora. Interestingly enough,
15306 the comments I see give me the feeling that a lot of people believe
15307 H.264 is the most supported video format in browsers, but according to
15308 the Wikipedia article on
15309 &lt;a href=&quot;http://en.wikipedia.org/wiki/HTML5_video&quot;&gt;HTML5 video&lt;/a&gt;,
15310 this is not true. Check out the nice table of supprted formats in
15311 different browsers there. The format supported by most browsers is
15312 Ogg Theora, supported by released versions of Mozilla Firefox, Google
15313 Chrome, Chromium, Opera, Konqueror, Epiphany, Origyn Web Browser and
15314 BOLT browser, while not supported by Internet Explorer nor Safari.
15315 The runner up is WebM supported by released versions of Google Chrome
15316 Chromium Opera and Origyn Web Browser, and test versions of Mozilla
15317 Firefox. H.264 is supported by released versions of Safari, Origyn
15318 Web Browser and BOLT browser, and the test version of Internet
15319 Explorer. Those wanting Ogg Theora support in Internet Explorer and
15320 Safari can install plugins to get it.&lt;/p&gt;
15321
15322 &lt;p&gt;To me, the simple conclusion from this is that to reach most users
15323 without any extra software installed, one uses Ogg Theora with the
15324 HTML5 video tag. Of course to reach all those without a browser
15325 handling HTML5, one need fallback mechanisms. In
15326 &lt;a href=&quot;http://www.nuug.no/&quot;&gt;NUUG&lt;/a&gt;, we provide first fallback to a
15327 plugin capable of playing MPEG1 video, and those without such support
15328 we have a second fallback to the Cortado java applet playing Ogg
15329 Theora. This seem to work quite well, as can be seen in an &lt;a
15330 href=&quot;http://www.nuug.no/aktiviteter/20110111-semantic-web/&quot;&gt;example
15331 from last week&lt;/a&gt;.&lt;/p&gt;
15332
15333 &lt;p&gt;The reason Ogg Theora is the most supported format, and H.264 is
15334 the least supported is simple. Implementing and using H.264
15335 require royalty payment to MPEG-LA, and the terms of use from MPEG-LA
15336 are incompatible with free software licensing. If you believed H.264
15337 was without royalties and license terms, check out
15338 &quot;&lt;a href=&quot;http://webmink.com/essays/h-264/&quot;&gt;H.264 – Not The Kind Of
15339 Free That Matters&lt;/a&gt;&quot; by Simon Phipps.&lt;/p&gt;
15340
15341 &lt;p&gt;A incomplete list of sites providing video in Ogg Theora is
15342 available from
15343 &lt;a href=&quot;http://wiki.xiph.org/index.php/List_of_Theora_videos&quot;&gt;the
15344 Xiph.org wiki&lt;/a&gt;, if you want to have a look. I&#39;m not aware of a
15345 similar list for WebM nor H.264.&lt;/p&gt;
15346
15347 &lt;p&gt;Update 2011-01-16 09:40: A question from Tollef on IRC made me
15348 realise that I failed to make it clear enough this text is about the
15349 &amp;lt;video&amp;gt; tag support in browsers and not the video support
15350 provided by external plugins like the Flash plugins.&lt;/p&gt;
15351 </description>
15352 </item>
15353
15354 <item>
15355 <title>Chrome plan to drop H.264 support for HTML5 &amp;lt;video&amp;gt;</title>
15356 <link>http://people.skolelinux.org/pere/blog/Chrome_plan_to_drop_H_264_support_for_HTML5__lt_video_gt_.html</link>
15357 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Chrome_plan_to_drop_H_264_support_for_HTML5__lt_video_gt_.html</guid>
15358 <pubDate>Wed, 12 Jan 2011 22:10:00 +0100</pubDate>
15359 <description>&lt;p&gt;Today I discovered
15360 &lt;a href=&quot;http://www.digi.no/860070/google-dropper-h264-stotten-i-chrome&quot;&gt;via
15361 digi.no&lt;/a&gt; that the Chrome developers, in a surprising announcement,
15362 &lt;a href=&quot;http://blog.chromium.org/2011/01/html-video-codec-support-in-chrome.html&quot;&gt;yesterday
15363 announced&lt;/a&gt; plans to drop H.264 support for HTML5 &amp;lt;video&amp;gt; in
15364 the browser. The argument used is that H.264 is not a &quot;completely
15365 open&quot; codec technology. If you believe H.264 was free for everyone
15366 to use, I recommend having a look at the essay
15367 &quot;&lt;a href=&quot;http://webmink.com/essays/h-264/&quot;&gt;H.264 – Not The Kind Of
15368 Free That Matters&lt;/a&gt;&quot;. It is not free of cost for creators of video
15369 tools, nor those of us that want to publish on the Internet, and the
15370 terms provided by MPEG-LA excludes free software projects from
15371 licensing the patents needed for H.264. Some background information
15372 on the Google announcement is available from
15373 &lt;a href=&quot;http://www.osnews.com/story/24243/Google_To_Drop_H264_Support_from_Chrome&quot;&gt;OSnews&lt;/a&gt;.
15374 A good read. :)&lt;/p&gt;
15375
15376 &lt;p&gt;Personally, I believe it is great that Google is taking a stand to
15377 promote equal terms for everyone when it comes to video publishing on
15378 the Internet. This can only be done by publishing using free and open
15379 standards, which is only possible if the web browsers provide support
15380 for these free and open standards. At the moment there seem to be two
15381 camps in the web browser world when it come to video support. Some
15382 browsers support H.264, and others support
15383 &lt;a href=&quot;http://www.theora.org/&quot;&gt;Ogg Theora&lt;/a&gt; and
15384 &lt;a href=&quot;http://www.webmproject.org/&quot;&gt;WebM&lt;/a&gt;
15385 (&lt;a href=&quot;http://www.diracvideo.org/&quot;&gt;Dirac&lt;/a&gt; is not really an option
15386 yet), forcing those of us that want to publish video on the Internet
15387 and which can not accept the terms of use presented by MPEG-LA for
15388 H.264 to not reach all potential viewers.
15389 Wikipedia keep &lt;a href=&quot;http://en.wikipedia.org/wiki/HTML5_video&quot;&gt;an
15390 updated summary&lt;/a&gt; of the current browser support.&lt;/p&gt;
15391
15392 &lt;p&gt;Not surprising, several people would prefer Google to keep
15393 promoting H.264, and John Gruber
15394 &lt;a href=&quot;http://daringfireball.net/2011/01/simple_questions&quot;&gt;presents
15395 the mind set&lt;/a&gt; of these people quite well. His rhetorical questions
15396 provoked a reply from Thom Holwerda with another set of questions
15397 &lt;a href=&quot;http://www.osnews.com/story/24245/10_Questions_for_John_Gruber_Regarding_H_264_WebM&quot;&gt;presenting
15398 the issues with H.264&lt;/a&gt;. Both are worth a read.&lt;/p&gt;
15399
15400 &lt;p&gt;Some argue that if Google is dropping H.264 because it isn&#39;t free,
15401 they should also drop support for the Adobe Flash plugin. This
15402 argument was covered by Simon Phipps in
15403 &lt;a href=&quot;http://blogs.computerworlduk.com/simon-says/2011/01/google-and-h264---far-from-hypocritical/index.htm&quot;&gt;todays
15404 blog post&lt;/a&gt;, which I find to put the issue in context. To me it
15405 make perfect sense to drop native H.264 support for HTML5 in the
15406 browser while still allowing plugins.&lt;/p&gt;
15407
15408 &lt;p&gt;I suspect the reason this announcement make so many people protest,
15409 is that all the users and promoters of H.264 suddenly get an uneasy
15410 feeling that they might be backing the wrong horse. A lot of TV
15411 broadcasters have been moving to H.264 the last few years, and a lot
15412 of money has been invested in hardware based on the belief that they
15413 could use the same video format for both broadcasting and web
15414 publishing. Suddenly this belief is shaken.&lt;/p&gt;
15415
15416 &lt;p&gt;An interesting question is why Google is doing this. While the
15417 presented argument might be true enough, I believe Google would only
15418 present the argument if the change make sense from a business
15419 perspective. One reason might be that they are currently negotiating
15420 with MPEG-LA over royalties or usage terms, and giving MPEG-LA the
15421 feeling that dropping H.264 completely from Chroome, Youtube and
15422 Google Video would improve the negotiation position of Google.
15423 Another reason might be that Google want to save money by not having
15424 to pay the video tax to MPEG-LA at all, and thus want to move to a
15425 video format not requiring royalties at all. A third reason might be
15426 that the Chrome development team simply want to avoid the
15427 Chrome/Chromium split to get more help with the development of Chrome.
15428 I guess time will tell.&lt;/p&gt;
15429
15430 &lt;p&gt;Update 2011-01-15: The Google Chrome team provided
15431 &lt;a href=&quot;http://blog.chromium.org/2011/01/more-about-chrome-html-video-codec.html&quot;&gt;more
15432 background and information on the move&lt;/a&gt; it a blog post yesterday.&lt;/p&gt;
15433 </description>
15434 </item>
15435
15436 <item>
15437 <title>What standards are Free and Open as defined by Digistan?</title>
15438 <link>http://people.skolelinux.org/pere/blog/What_standards_are_Free_and_Open_as_defined_by_Digistan_.html</link>
15439 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/What_standards_are_Free_and_Open_as_defined_by_Digistan_.html</guid>
15440 <pubDate>Thu, 30 Dec 2010 23:15:00 +0100</pubDate>
15441 <description>&lt;p&gt;After trying to
15442 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Is_Ogg_Theora_a_free_and_open_standard_.html&quot;&gt;compare
15443 Ogg Theora&lt;/a&gt; to
15444 &lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;the Digistan
15445 definition&lt;/a&gt; of a free and open standard, I concluded that this need
15446 to be done for more standards and started on a framework for doing
15447 this. As a start, I want to get the status for all the standards in
15448 the Norwegian reference directory, which include UTF-8, HTML, PDF, ODF,
15449 JPEG, PNG, SVG and others. But to be able to complete this in a
15450 reasonable time frame, I will need help.&lt;/p&gt;
15451
15452 &lt;p&gt;If you want to help out with this work, please visit
15453 &lt;a href=&quot;http://wiki.nuug.no/grupper/standard/digistan-analyse&quot;&gt;the
15454 wiki pages I have set up for this&lt;/a&gt;, and let me know that you want
15455 to help out. The IRC channel #nuug on irc.freenode.net is a good
15456 place to coordinate this for now, as it is the IRC channel for the
15457 NUUG association where I have created the framework (I am the leader
15458 of the Norwegian Unix User Group).&lt;/p&gt;
15459
15460 &lt;p&gt;The framework is still forming, and a lot is left to do. Do not be
15461 scared by the sketchy form of the current pages. :)&lt;/p&gt;
15462 </description>
15463 </item>
15464
15465 <item>
15466 <title>The many definitions of a open standard</title>
15467 <link>http://people.skolelinux.org/pere/blog/The_many_definitions_of_a_open_standard.html</link>
15468 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_many_definitions_of_a_open_standard.html</guid>
15469 <pubDate>Mon, 27 Dec 2010 14:45:00 +0100</pubDate>
15470 <description>&lt;p&gt;One of the reasons I like the Digistan definition of
15471 &quot;&lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;Free and
15472 Open Standard&lt;/a&gt;&quot; is that this is a new term, and thus the meaning of
15473 the term has been decided by Digistan. The term &quot;Open Standard&quot; has
15474 become so misunderstood that it is no longer very useful when talking
15475 about standards. One end up discussing which definition is the best
15476 one and with such frame the only one gaining are the proponents of
15477 de-facto standards and proprietary solutions.&lt;/p&gt;
15478
15479 &lt;p&gt;But to give us an idea about the diversity of definitions of open
15480 standards, here are a few that I know about. This list is not
15481 complete, but can be a starting point for those that want to do a
15482 complete survey. More definitions are available on the
15483 &lt;a href=&quot;http://en.wikipedia.org/wiki/Open_standard&quot;&gt;wikipedia
15484 page&lt;/a&gt;.&lt;/p&gt;
15485
15486 &lt;p&gt;First off is my favourite, the definition from the European
15487 Interoperability Framework version 1.0. Really sad to notice that BSA
15488 and others has succeeded in getting it removed from version 2.0 of the
15489 framework by stacking the committee drafting the new version with
15490 their own people. Anyway, the definition is still available and it
15491 include the key properties needed to make sure everyone can use a
15492 specification on equal terms.&lt;/p&gt;
15493
15494 &lt;blockquote&gt;
15495
15496 &lt;p&gt;The following are the minimal characteristics that a specification
15497 and its attendant documents must have in order to be considered an
15498 open standard:&lt;/p&gt;
15499
15500 &lt;ul&gt;
15501
15502 &lt;li&gt;The standard is adopted and will be maintained by a not-for-profit
15503 organisation, and its ongoing development occurs on the basis of an
15504 open decision-making procedure available to all interested parties
15505 (consensus or majority decision etc.).&lt;/li&gt;
15506
15507 &lt;li&gt;The standard has been published and the standard specification
15508 document is available either freely or at a nominal charge. It must be
15509 permissible to all to copy, distribute and use it for no fee or at a
15510 nominal fee.&lt;/li&gt;
15511
15512 &lt;li&gt;The intellectual property - i.e. patents possibly present - of
15513 (parts of) the standard is made irrevocably available on a royalty-
15514 free basis.&lt;/li&gt;
15515
15516 &lt;li&gt;There are no constraints on the re-use of the standard.&lt;/li&gt;
15517
15518 &lt;/ul&gt;
15519 &lt;/blockquote&gt;
15520
15521 &lt;p&gt;Another one originates from my friends over at
15522 &lt;a href=&quot;http://www.dkuug.dk/&quot;&gt;DKUUG&lt;/a&gt;, who coined and gathered
15523 support for &lt;a href=&quot;http://www.aaben-standard.dk/&quot;&gt;this
15524 definition&lt;/a&gt; in 2004. It even made it into the Danish parlament as
15525 &lt;a href=&quot;http://www.ft.dk/dokumenter/tingdok.aspx?/samling/20051/beslutningsforslag/B103/som_fremsat.htm&quot;&gt;their
15526 definition of a open standard&lt;/a&gt;. Another from a different part of
15527 the Danish government is available from the wikipedia page.&lt;/p&gt;
15528
15529 &lt;blockquote&gt;
15530
15531 &lt;p&gt;En åben standard opfylder følgende krav:&lt;/p&gt;
15532
15533 &lt;ol&gt;
15534
15535 &lt;li&gt;Veldokumenteret med den fuldstændige specifikation offentligt
15536 tilgængelig.&lt;/li&gt;
15537
15538 &lt;li&gt;Frit implementerbar uden økonomiske, politiske eller juridiske
15539 begrænsninger på implementation og anvendelse.&lt;/li&gt;
15540
15541 &lt;li&gt;Standardiseret og vedligeholdt i et åbent forum (en såkaldt
15542 &quot;standardiseringsorganisation&quot;) via en åben proces.&lt;/li&gt;
15543
15544 &lt;/ol&gt;
15545
15546 &lt;/blockquote&gt;
15547
15548 &lt;p&gt;Then there is &lt;a href=&quot;http://www.fsfe.org/projects/os/def.html&quot;&gt;the
15549 definition&lt;/a&gt; from Free Software Foundation Europe.&lt;/p&gt;
15550
15551 &lt;blockquote&gt;
15552
15553 &lt;p&gt;An Open Standard refers to a format or protocol that is&lt;/p&gt;
15554
15555 &lt;ol&gt;
15556
15557 &lt;li&gt;subject to full public assessment and use without constraints in a
15558 manner equally available to all parties;&lt;/li&gt;
15559
15560 &lt;li&gt;without any components or extensions that have dependencies on
15561 formats or protocols that do not meet the definition of an Open
15562 Standard themselves;&lt;/li&gt;
15563
15564 &lt;li&gt;free from legal or technical clauses that limit its utilisation by
15565 any party or in any business model;&lt;/li&gt;
15566
15567 &lt;li&gt;managed and further developed independently of any single vendor
15568 in a process open to the equal participation of competitors and third
15569 parties;&lt;/li&gt;
15570
15571 &lt;li&gt;available in multiple complete implementations by competing
15572 vendors, or as a complete implementation equally available to all
15573 parties.&lt;/li&gt;
15574
15575 &lt;/ol&gt;
15576
15577 &lt;/blockquote&gt;
15578
15579 &lt;p&gt;A long time ago, SUN Microsystems, now bought by Oracle, created
15580 its
15581 &lt;a href=&quot;http://blogs.sun.com/dennisding/resource/Open%20Standard%20Definition.pdf&quot;&gt;Open
15582 Standards Checklist&lt;/a&gt; with a fairly detailed description.&lt;/p&gt;
15583
15584 &lt;blockquote&gt;
15585 &lt;p&gt;Creation and Management of an Open Standard
15586
15587 &lt;ul&gt;
15588
15589 &lt;li&gt;Its development and management process must be collaborative and
15590 democratic:
15591
15592 &lt;ul&gt;
15593
15594 &lt;li&gt;Participation must be accessible to all those who wish to
15595 participate and can meet fair and reasonable criteria
15596 imposed by the organization under which it is developed
15597 and managed.&lt;/li&gt;
15598
15599 &lt;li&gt;The processes must be documented and, through a known
15600 method, can be changed through input from all
15601 participants.&lt;/li&gt;
15602
15603 &lt;li&gt;The process must be based on formal and binding commitments for
15604 the disclosure and licensing of intellectual property rights.&lt;/li&gt;
15605
15606 &lt;li&gt;Development and management should strive for consensus,
15607 and an appeals process must be clearly outlined.&lt;/li&gt;
15608
15609 &lt;li&gt;The standard specification must be open to extensive
15610 public review at least once in its life-cycle, with
15611 comments duly discussed and acted upon, if required.&lt;/li&gt;
15612
15613 &lt;/ul&gt;
15614
15615 &lt;/li&gt;
15616
15617 &lt;/ul&gt;
15618
15619 &lt;p&gt;Use and Licensing of an Open Standard&lt;/p&gt;
15620 &lt;ul&gt;
15621
15622 &lt;li&gt;The standard must describe an interface, not an implementation,
15623 and the industry must be capable of creating multiple, competing
15624 implementations to the interface described in the standard without
15625 undue or restrictive constraints. Interfaces include APIs,
15626 protocols, schemas, data formats and their encoding.&lt;/li&gt;
15627
15628 &lt;li&gt; The standard must not contain any proprietary &quot;hooks&quot; that create
15629 a technical or economic barriers&lt;/li&gt;
15630
15631 &lt;li&gt;Faithful implementations of the standard must
15632 interoperate. Interoperability means the ability of a computer
15633 program to communicate and exchange information with other computer
15634 programs and mutually to use the information which has been
15635 exchanged. This includes the ability to use, convert, or exchange
15636 file formats, protocols, schemas, interface information or
15637 conventions, so as to permit the computer program to work with other
15638 computer programs and users in all the ways in which they are
15639 intended to function.&lt;/li&gt;
15640
15641 &lt;li&gt;It must be permissible for anyone to copy, distribute and read the
15642 standard for a nominal fee, or even no fee. If there is a fee, it
15643 must be low enough to not preclude widespread use.&lt;/li&gt;
15644
15645 &lt;li&gt;It must be possible for anyone to obtain free (no royalties or
15646 fees; also known as &quot;royalty free&quot;), worldwide, non-exclusive and
15647 perpetual licenses to all essential patent claims to make, use and
15648 sell products based on the standard. The only exceptions are
15649 terminations per the reciprocity and defensive suspension terms
15650 outlined below. Essential patent claims include pending, unpublished
15651 patents, published patents, and patent applications. The license is
15652 only for the exact scope of the standard in question.
15653
15654 &lt;ul&gt;
15655
15656 &lt;li&gt; May be conditioned only on reciprocal licenses to any of
15657 licensees&#39; patent claims essential to practice that standard
15658 (also known as a reciprocity clause)&lt;/li&gt;
15659
15660 &lt;li&gt; May be terminated as to any licensee who sues the licensor
15661 or any other licensee for infringement of patent claims
15662 essential to practice that standard (also known as a
15663 &quot;defensive suspension&quot; clause)&lt;/li&gt;
15664
15665 &lt;li&gt; The same licensing terms are available to every potential
15666 licensor&lt;/li&gt;
15667
15668 &lt;/ul&gt;
15669 &lt;/li&gt;
15670
15671 &lt;li&gt;The licensing terms of an open standards must not preclude
15672 implementations of that standard under open source licensing terms
15673 or restricted licensing terms&lt;/li&gt;
15674
15675 &lt;/ul&gt;
15676
15677 &lt;/blockquote&gt;
15678
15679 &lt;p&gt;It is said that one of the nice things about standards is that
15680 there are so many of them. As you can see, the same holds true for
15681 open standard definitions. Most of the definitions have a lot in
15682 common, and it is not really controversial what properties a open
15683 standard should have, but the diversity of definitions have made it
15684 possible for those that want to avoid a level marked field and real
15685 competition to downplay the significance of open standards. I hope we
15686 can turn this tide by focusing on the advantages of Free and Open
15687 Standards.&lt;/p&gt;
15688 </description>
15689 </item>
15690
15691 <item>
15692 <title>Is Ogg Theora a free and open standard?</title>
15693 <link>http://people.skolelinux.org/pere/blog/Is_Ogg_Theora_a_free_and_open_standard_.html</link>
15694 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Is_Ogg_Theora_a_free_and_open_standard_.html</guid>
15695 <pubDate>Sat, 25 Dec 2010 20:25:00 +0100</pubDate>
15696 <description>&lt;p&gt;&lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;The
15697 Digistan definition&lt;/a&gt; of a free and open standard reads like this:&lt;/p&gt;
15698
15699 &lt;blockquote&gt;
15700
15701 &lt;p&gt;The Digital Standards Organization defines free and open standard
15702 as follows:&lt;/p&gt;
15703
15704 &lt;ol&gt;
15705
15706 &lt;li&gt;A free and open standard is immune to vendor capture at all stages
15707 in its life-cycle. Immunity from vendor capture makes it possible to
15708 freely use, improve upon, trust, and extend a standard over time.&lt;/li&gt;
15709
15710 &lt;li&gt;The standard is adopted and will be maintained by a not-for-profit
15711 organisation, and its ongoing development occurs on the basis of an
15712 open decision-making procedure available to all interested
15713 parties.&lt;/li&gt;
15714
15715 &lt;li&gt;The standard has been published and the standard specification
15716 document is available freely. It must be permissible to all to copy,
15717 distribute, and use it freely.&lt;/li&gt;
15718
15719 &lt;li&gt;The patents possibly present on (parts of) the standard are made
15720 irrevocably available on a royalty-free basis.&lt;/li&gt;
15721
15722 &lt;li&gt;There are no constraints on the re-use of the standard.&lt;/li&gt;
15723
15724 &lt;/ol&gt;
15725
15726 &lt;p&gt;The economic outcome of a free and open standard, which can be
15727 measured, is that it enables perfect competition between suppliers of
15728 products based on the standard.&lt;/p&gt;
15729 &lt;/blockquote&gt;
15730
15731 &lt;p&gt;For a while now I have tried to figure out of Ogg Theora is a free
15732 and open standard according to this definition. Here is a short
15733 writeup of what I have been able to gather so far. I brought up the
15734 topic on the Xiph advocacy mailing list
15735 &lt;a href=&quot;http://lists.xiph.org/pipermail/advocacy/2009-July/001632.html&quot;&gt;in
15736 July 2009&lt;/a&gt;, for those that want to see some background information.
15737 According to Ivo Emanuel Gonçalves and Monty Montgomery on that list
15738 the Ogg Theora specification fulfils the Digistan definition.&lt;/p&gt;
15739
15740 &lt;p&gt;&lt;strong&gt;Free from vendor capture?&lt;/strong&gt;&lt;/p&gt;
15741
15742 &lt;p&gt;As far as I can see, there is no single vendor that can control the
15743 Ogg Theora specification. It can be argued that the
15744 &lt;a href=&quot;http://www.xiph.org/&quot;&gt;Xiph foundation&lt;/A&gt; is such vendor, but
15745 given that it is a non-profit foundation with the expressed goal
15746 making free and open protocols and standards available, it is not
15747 obvious that this is a real risk. One issue with the Xiph
15748 foundation is that its inner working (as in board member list, or who
15749 control the foundation) are not easily available on the web. I&#39;ve
15750 been unable to find out who is in the foundation board, and have not
15751 seen any accounting information documenting how money is handled nor
15752 where is is spent in the foundation. It is thus not obvious for an
15753 external observer who control The Xiph foundation, and for all I know
15754 it is possible for a single vendor to take control over the
15755 specification. But it seem unlikely.&lt;/p&gt;
15756
15757 &lt;p&gt;&lt;strong&gt;Maintained by open not-for-profit organisation?&lt;/strong&gt;&lt;/p&gt;
15758
15759 &lt;p&gt;Assuming that the Xiph foundation is the organisation its web pages
15760 claim it to be, this point is fulfilled. If Xiph foundation is
15761 controlled by a single vendor, it isn&#39;t, but I have not found any
15762 documentation indicating this.&lt;/p&gt;
15763
15764 &lt;p&gt;According to
15765 &lt;a href=&quot;http://media.hiof.no/diverse/fad/rapport_4.pdf&quot;&gt;a report&lt;/a&gt;
15766 prepared by Audun Vaaler og Børre Ludvigsen for the Norwegian
15767 government, the Xiph foundation is a non-commercial organisation and
15768 the development process is open, transparent and non-Discrimatory.
15769 Until proven otherwise, I believe it make most sense to believe the
15770 report is correct.&lt;/p&gt;
15771
15772 &lt;p&gt;&lt;strong&gt;Specification freely available?&lt;/strong&gt;&lt;/p&gt;
15773
15774 &lt;p&gt;The specification for the &lt;a href=&quot;http://www.xiph.org/ogg/doc/&quot;&gt;Ogg
15775 container format&lt;/a&gt; and both the
15776 &lt;a href=&quot;http://www.xiph.org/vorbis/doc/&quot;&gt;Vorbis&lt;/a&gt; and
15777 &lt;a href=&quot;http://theora.org/doc/&quot;&gt;Theora&lt;/a&gt; codeces are available on
15778 the web. This are the terms in the Vorbis and Theora specification:
15779
15780 &lt;blockquote&gt;
15781
15782 Anyone may freely use and distribute the Ogg and [Vorbis/Theora]
15783 specifications, whether in private, public, or corporate
15784 capacity. However, the Xiph.Org Foundation and the Ogg project reserve
15785 the right to set the Ogg [Vorbis/Theora] specification and certify
15786 specification compliance.
15787
15788 &lt;/blockquote&gt;
15789
15790 &lt;p&gt;The Ogg container format is specified in IETF
15791 &lt;a href=&quot;http://www.xiph.org/ogg/doc/rfc3533.txt&quot;&gt;RFC 3533&lt;/a&gt;, and
15792 this is the term:&lt;p&gt;
15793
15794 &lt;blockquote&gt;
15795
15796 &lt;p&gt;This document and translations of it may be copied and furnished to
15797 others, and derivative works that comment on or otherwise explain it
15798 or assist in its implementation may be prepared, copied, published and
15799 distributed, in whole or in part, without restriction of any kind,
15800 provided that the above copyright notice and this paragraph are
15801 included on all such copies and derivative works. However, this
15802 document itself may not be modified in any way, such as by removing
15803 the copyright notice or references to the Internet Society or other
15804 Internet organizations, except as needed for the purpose of developing
15805 Internet standards in which case the procedures for copyrights defined
15806 in the Internet Standards process must be followed, or as required to
15807 translate it into languages other than English.&lt;/p&gt;
15808
15809 &lt;p&gt;The limited permissions granted above are perpetual and will not be
15810 revoked by the Internet Society or its successors or assigns.&lt;/p&gt;
15811 &lt;/blockquote&gt;
15812
15813 &lt;p&gt;All these terms seem to allow unlimited distribution and use, an
15814 this term seem to be fulfilled. There might be a problem with the
15815 missing permission to distribute modified versions of the text, and
15816 thus reuse it in other specifications. Not quite sure if that is a
15817 requirement for the Digistan definition.&lt;/p&gt;
15818
15819 &lt;p&gt;&lt;strong&gt;Royalty-free?&lt;/strong&gt;&lt;/p&gt;
15820
15821 &lt;p&gt;There are no known patent claims requiring royalties for the Ogg
15822 Theora format.
15823 &lt;a href=&quot;http://www.streamingmedia.com/Articles/ReadArticle.aspx?ArticleID=65782&quot;&gt;MPEG-LA&lt;/a&gt;
15824 and
15825 &lt;a href=&quot;http://yro.slashdot.org/story/10/04/30/237238/Steve-Jobs-Hints-At-Theora-Lawsuit&quot;&gt;Steve
15826 Jobs&lt;/a&gt; in Apple claim to know about some patent claims (submarine
15827 patents) against the Theora format, but no-one else seem to believe
15828 them. Both Opera Software and the Mozilla Foundation have looked into
15829 this and decided to implement Ogg Theora support in their browsers
15830 without paying any royalties. For now the claims from MPEG-LA and
15831 Steve Jobs seem more like FUD to scare people to use the H.264 codec
15832 than any real problem with Ogg Theora.&lt;/p&gt;
15833
15834 &lt;p&gt;&lt;strong&gt;No constraints on re-use?&lt;/strong&gt;&lt;/p&gt;
15835
15836 &lt;p&gt;I am not aware of any constraints on re-use.&lt;/p&gt;
15837
15838 &lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;/p&gt;
15839
15840 &lt;p&gt;3 of 5 requirements seem obviously fulfilled, and the remaining 2
15841 depend on the governing structure of the Xiph foundation. Given the
15842 background report used by the Norwegian government, I believe it is
15843 safe to assume the last two requirements are fulfilled too, but it
15844 would be nice if the Xiph foundation web site made it easier to verify
15845 this.&lt;/p&gt;
15846
15847 &lt;p&gt;It would be nice to see other analysis of other specifications to
15848 see if they are free and open standards.&lt;/p&gt;
15849 </description>
15850 </item>
15851
15852 <item>
15853 <title>The reply from Edgar Villanueva to Microsoft in Peru</title>
15854 <link>http://people.skolelinux.org/pere/blog/The_reply_from_Edgar_Villanueva_to_Microsoft_in_Peru.html</link>
15855 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_reply_from_Edgar_Villanueva_to_Microsoft_in_Peru.html</guid>
15856 <pubDate>Sat, 25 Dec 2010 10:50:00 +0100</pubDate>
15857 <description>&lt;p&gt;A few days ago
15858 &lt;a href=&quot;http://www.idg.no/computerworld/article189879.ece&quot;&gt;an
15859 article&lt;/a&gt; in the Norwegian Computerworld magazine about how version
15860 2.0 of
15861 &lt;a href=&quot;http://en.wikipedia.org/wiki/European_Interoperability_Framework&quot;&gt;European
15862 Interoperability Framework&lt;/a&gt; has been successfully lobbied by the
15863 proprietary software industry to remove the focus on free software.
15864 Nothing very surprising there, given
15865 &lt;a href=&quot;http://news.slashdot.org/story/10/03/29/2115235/Open-Source-Open-Standards-Under-Attack-In-Europe&quot;&gt;earlier
15866 reports&lt;/a&gt; on how Microsoft and others have stacked the committees in
15867 this work. But I find this very sad. The definition of
15868 &lt;a href=&quot;http://www.nuug.no/dokumenter/standard-presse-def-200506.txt&quot;&gt;an
15869 open standard from version 1&lt;/a&gt; was very good, and something I
15870 believe should be used also in the future, alongside
15871 &lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;the
15872 definition from Digistan&lt;/A&gt;. Version 2 have removed the open
15873 standard definition from its content.&lt;/p&gt;
15874
15875 &lt;p&gt;Anyway, the news reminded me of the great reply sent by Dr. Edgar
15876 Villanueva, congressman in Peru at the time, to Microsoft as a reply
15877 to Microsofts attack on his proposal regarding the use of free software
15878 in the public sector in Peru. As the text was not available from a
15879 few of the URLs where it used to be available, I copy it here from
15880 &lt;a href=&quot;http://gnuwin.epfl.ch/articles/en/reponseperou/villanueva_to_ms.html&quot;&gt;my
15881 source&lt;/a&gt; to ensure it is available also in the future. Some
15882 background information about that story is available in
15883 &lt;a href=&quot;http://www.linuxjournal.com/article/6099&quot;&gt;an article&lt;/a&gt; from
15884 Linux Journal in 2002.&lt;/p&gt;
15885
15886 &lt;blockquote&gt;
15887 &lt;p&gt;Lima, 8th of April, 2002&lt;br&gt;
15888 To: Señor JUAN ALBERTO GONZÁLEZ&lt;br&gt;
15889 General Manager of Microsoft Perú&lt;/p&gt;
15890
15891 &lt;p&gt;Dear Sir:&lt;/p&gt;
15892
15893 &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;
15894
15895 &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;
15896
15897 &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;
15898
15899 &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;
15900
15901 &lt;p&gt;
15902 &lt;ul&gt;
15903 &lt;li&gt;Free access to public information by the citizen. &lt;/li&gt;
15904 &lt;li&gt;Permanence of public data. &lt;/li&gt;
15905 &lt;li&gt;Security of the State and citizens.&lt;/li&gt;
15906 &lt;/ul&gt;
15907 &lt;/p&gt;
15908
15909 &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;
15910
15911 &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;
15912
15913 &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;
15914
15915 &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;
15916
15917 &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;
15918
15919
15920 &lt;p&gt;From reading the Bill it will be clear that once passed:&lt;br&gt;
15921 &lt;li&gt;the law does not forbid the production of proprietary software&lt;/li&gt;
15922 &lt;li&gt;the law does not forbid the sale of proprietary software&lt;/li&gt;
15923 &lt;li&gt;the law does not specify which concrete software to use&lt;/li&gt;
15924 &lt;li&gt;the law does not dictate the supplier from whom software will be bought&lt;/li&gt;
15925 &lt;li&gt;the law does not limit the terms under which a software product can be licensed.&lt;/li&gt;
15926
15927 &lt;/p&gt;
15928
15929 &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;
15930
15931 &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;
15932
15933 &lt;p&gt;As for the observations you have made, we will now go on to analyze them in detail:&lt;/p&gt;
15934
15935 &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;
15936
15937 &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;
15938
15939 &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;
15940
15941 &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;
15942
15943 &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;
15944
15945 &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;
15946
15947 &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;
15948
15949 &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;
15950
15951 &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;
15952
15953 &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;
15954
15955 &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;
15956
15957 &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;
15958
15959 &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;
15960
15961 &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;
15962
15963 &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;
15964
15965 &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;
15966
15967 &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;
15968
15969 &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;
15970
15971 &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;
15972
15973 &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;
15974
15975 &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;
15976
15977 &lt;p&gt;On security:&lt;/p&gt;
15978
15979 &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;
15980
15981 &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;
15982
15983 &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;
15984
15985 &lt;p&gt;In respect of the guarantee:&lt;/p&gt;
15986
15987 &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;
15988
15989 &lt;p&gt;On Intellectual Property:&lt;/p&gt;
15990
15991 &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;
15992
15993 &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;
15994
15995 &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;
15996
15997 &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;
15998
15999 &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;
16000
16001 &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;
16002
16003 &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;
16004
16005 &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;
16006
16007 &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;
16008
16009 &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;
16010
16011 &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;
16012
16013 &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;
16014
16015 &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;
16016
16017 &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;
16018
16019 &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;
16020
16021 &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;
16022
16023 &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;
16024
16025 &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;
16026
16027 &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;
16028
16029 &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;
16030
16031 &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;
16032
16033 &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;
16034
16035 &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;
16036
16037 &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;
16038
16039 &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;
16040
16041 &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;
16042
16043 &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;
16044
16045 &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;
16046
16047 &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;
16048
16049 &lt;p&gt;Cordially,&lt;br&gt;
16050 DR. EDGAR DAVID VILLANUEVA NUÑEZ&lt;br&gt;
16051 Congressman of the Republic of Perú.&lt;/p&gt;
16052 &lt;/blockquote&gt;
16053 </description>
16054 </item>
16055
16056 <item>
16057 <title>Officeshots still going strong</title>
16058 <link>http://people.skolelinux.org/pere/blog/Officeshots_still_going_strong.html</link>
16059 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Officeshots_still_going_strong.html</guid>
16060 <pubDate>Sat, 25 Dec 2010 09:40:00 +0100</pubDate>
16061 <description>&lt;p&gt;Half a year ago I
16062 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Officeshots_taking_shape.html&quot;&gt;wrote
16063 a bit&lt;/a&gt; about &lt;a href=&quot;http://www.officeshots.org/&quot;&gt;OfficeShots&lt;/a&gt;,
16064 a web service to allow anyone to test how ODF documents are handled by
16065 the different programs reading and writing the ODF format.&lt;/p&gt;
16066
16067 &lt;p&gt;I just had a look at the service, and it seem to be going strong.
16068 Very interesting to see the results reported in the gallery, how
16069 different Office implementations handle different ODF features. Sad
16070 to see that KOffice was not doing it very well, and happy to see that
16071 LibreOffice has been tested already (but sadly not listed as a option
16072 for OfficeShots users yet). I am glad to see that the ODF community
16073 got such a great test tool available.&lt;/p&gt;
16074 </description>
16075 </item>
16076
16077 <item>
16078 <title>How to test if a laptop is working with Linux</title>
16079 <link>http://people.skolelinux.org/pere/blog/How_to_test_if_a_laptop_is_working_with_Linux.html</link>
16080 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/How_to_test_if_a_laptop_is_working_with_Linux.html</guid>
16081 <pubDate>Wed, 22 Dec 2010 14:55:00 +0100</pubDate>
16082 <description>&lt;p&gt;The last few days I have spent at work here at the &lt;a
16083 href=&quot;http://www.uio.no/&quot;&gt;University of Oslo&lt;/a&gt; testing if the new
16084 batch of computers will work with Linux. Every year for the last few
16085 years the university have organised shared bid of a few thousand
16086 computers, and this year HP won the bid. Two different desktops and
16087 five different laptops are on the list this year. We in the UNIX
16088 group want to know which one of these computers work well with RHEL
16089 and Ubuntu, the two Linux distributions we currently handle at the
16090 university.&lt;/p&gt;
16091
16092 &lt;p&gt;My test method is simple, and I share it here to get feedback and
16093 perhaps inspire others to test hardware as well. To test, I PXE
16094 install the OS version of choice, and log in as my normal user and run
16095 a few applications and plug in selected pieces of hardware. When
16096 something fail, I make a note about this in the test matrix and move
16097 on. If I have some spare time I try to report the bug to the OS
16098 vendor, but as I only have the machines for a short time, I rarely
16099 have the time to do this for all the problems I find.&lt;/p&gt;
16100
16101 &lt;p&gt;Anyway, to get to the point of this post. Here is the simple tests
16102 I perform on a new model.&lt;/p&gt;
16103
16104 &lt;ul&gt;
16105
16106 &lt;li&gt;Is PXE installation working? I&#39;m testing with RHEL6, Ubuntu Lucid
16107 and Ubuntu Maverik at the moment. If I feel like it, I also test with
16108 RHEL5 and Debian Edu/Squeeze.&lt;/li&gt;
16109
16110 &lt;li&gt;Is X.org working? If the graphical login screen show up after
16111 installation, X.org is working.&lt;/li&gt;
16112
16113 &lt;li&gt;Is hardware accelerated OpenGL working? Running glxgears (in
16114 package mesa-utils on Ubuntu) and writing down the frames per second
16115 reported by the program.&lt;/li&gt;
16116
16117 &lt;li&gt;Is sound working? With Gnome and KDE, a sound is played when
16118 logging in, and if I can hear this the test is successful. If there
16119 are several audio exits on the machine, I try them all and check if
16120 the Gnome/KDE audio mixer can control where to send the sound. I
16121 normally test this by playing
16122 &lt;a href=&quot;http://www.nuug.no/aktiviteter/20101012-chef/ &quot;&gt;a HTML5
16123 video&lt;/a&gt; in Firefox/Iceweasel.&lt;/li&gt;
16124
16125 &lt;li&gt;Is the USB subsystem working? I test this by plugging in a USB
16126 memory stick and see if Gnome/KDE notices this.&lt;/li&gt;
16127
16128 &lt;li&gt;Is the CD/DVD player working? I test this by inserting any CD/DVD
16129 I have lying around, and see if Gnome/KDE notices this.&lt;/li&gt;
16130
16131 &lt;li&gt;Is any built in camera working? Test using cheese, and see if a
16132 picture from the v4l device show up.&lt;/li&gt;
16133
16134 &lt;li&gt;Is bluetooth working? Use the Gnome/KDE browsing tool to see if
16135 any bluetooth devices are discovered. In my office, I normally see a
16136 few.&lt;/li&gt;
16137
16138 &lt;li&gt;For laptops, is the SD or Compaq Flash reader working. I have
16139 memory modules lying around, and stick them in and see if Gnome/KDE
16140 notice this.&lt;/li&gt;
16141
16142 &lt;li&gt;For laptops, is suspend/hibernate working? I&#39;m testing if the
16143 special button work, and if the laptop continue to work after
16144 resume.&lt;/li&gt;
16145
16146 &lt;li&gt;For laptops, is the extra buttons working, like audio level,
16147 adjusting background light, switching on/off external video output,
16148 switching on/off wifi, bluetooth, etc? The set of buttons differ from
16149 laptop to laptop, so I just write down which are working and which are
16150 not.&lt;/li&gt;
16151
16152 &lt;li&gt;Some laptops have smart card readers, finger print readers,
16153 acceleration sensors etc. I rarely test these, as I do not know how
16154 to quickly test if they are working or not, so I only document their
16155 existence.&lt;/li&gt;
16156
16157 &lt;/ul&gt;
16158
16159 &lt;p&gt;By now I suspect you are really curious what the test results are
16160 for the HP machines I am testing. I&#39;m not done yet, so I will report
16161 the test results later. For now I can report that HP 8100 Elite work
16162 fine, and hibernation fail with HP EliteBook 8440p on Ubuntu Lucid,
16163 and audio fail on RHEL6. Ubuntu Maverik worked with 8440p. As you
16164 can see, I have most machines left to test. One interesting
16165 observation is that Ubuntu Lucid has almost twice the frame rate than
16166 RHEL6 with glxgears. No idea why.&lt;/p&gt;
16167 </description>
16168 </item>
16169
16170 <item>
16171 <title>Some thoughts on BitCoins</title>
16172 <link>http://people.skolelinux.org/pere/blog/Some_thoughts_on_BitCoins.html</link>
16173 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Some_thoughts_on_BitCoins.html</guid>
16174 <pubDate>Sat, 11 Dec 2010 15:10:00 +0100</pubDate>
16175 <description>&lt;p&gt;As I continue to explore
16176 &lt;a href=&quot;http://www.bitcoin.org/&quot;&gt;BitCoin&lt;/a&gt;, I&#39;ve starting to wonder
16177 what properties the system have, and how it will be affected by laws
16178 and regulations here in Norway. Here are some random notes.&lt;/p&gt;
16179
16180 &lt;p&gt;One interesting thing to note is that since the transactions are
16181 verified using a peer to peer network, all details about a transaction
16182 is known to everyone. This means that if a BitCoin address has been
16183 published like I did with mine in my initial post about BitCoin, it is
16184 possible for everyone to see how many BitCoins have been transfered to
16185 that address. There is even a web service to look at the details for
16186 all transactions. There I can see that my address
16187 &lt;a href=&quot;http://blockexplorer.com/address/15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&quot;&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/a&gt;
16188 have received 16.06 Bitcoin, the
16189 &lt;a href=&quot;http://blockexplorer.com/address/1LfdGnGuWkpSJgbQySxxCWhv8MHqvwst3&quot;&gt;1LfdGnGuWkpSJgbQySxxCWhv8MHqvwst3&lt;/a&gt;
16190 address of Simon Phipps have received 181.97 BitCoin and the address
16191 &lt;a href=&quot;http://blockexplorer.com/address/1MCwBbhNGp5hRm5rC1Aims2YFRe2SXPYKt&quot;&gt;1MCwBbhNGp5hRm5rC1Aims2YFRe2SXPYKt&lt;/A&gt;
16192 of EFF have received 2447.38 BitCoins so far. Thank you to each and
16193 every one of you that donated bitcoins to support my activity. The
16194 fact that anyone can see how much money was transfered to a given
16195 address make it more obvious why the BitCoin community recommend to
16196 generate and hand out a new address for each transaction. I&#39;m told
16197 there is no way to track which addresses belong to a given person or
16198 organisation without the person or organisation revealing it
16199 themselves, as Simon, EFF and I have done.&lt;/p&gt;
16200
16201 &lt;p&gt;In Norway, and in most other countries, there are laws and
16202 regulations limiting how much money one can transfer across the border
16203 without declaring it. There are money laundering, tax and accounting
16204 laws and regulations I would expect to apply to the use of BitCoin.
16205 If the Skolelinux foundation
16206 (&lt;a href=&quot;http://linuxiskolen.no/slxdebianlabs/donations.html&quot;&gt;SLX
16207 Debian Labs&lt;/a&gt;) were to accept donations in BitCoin in addition to
16208 normal bank transfers like EFF is doing, how should this be accounted?
16209 Given that it is impossible to know if money can cross the border or
16210 not, should everything or nothing be declared? What exchange rate
16211 should be used when calculating taxes? Would receivers have to pay
16212 income tax if the foundation were to pay Skolelinux contributors in
16213 BitCoin? I have no idea, but it would be interesting to know.&lt;/p&gt;
16214
16215 &lt;p&gt;For a currency to be useful and successful, it must be trusted and
16216 accepted by a lot of users. It must be possible to get easy access to
16217 the currency (as a wage or using currency exchanges), and it must be
16218 easy to spend it. At the moment BitCoin seem fairly easy to get
16219 access to, but there are very few places to spend it. I am not really
16220 a regular user of any of the vendor types currently accepting BitCoin,
16221 so I wonder when my kind of shop would start accepting BitCoins. I
16222 would like to buy electronics, travels and subway tickets, not herbs
16223 and books. :) The currency is young, and this will improve over time
16224 if it become popular, but I suspect regular banks will start to lobby
16225 to get BitCoin declared illegal if it become popular. I&#39;m sure they
16226 will claim it is helping fund terrorism and money laundering (which
16227 probably would be true, as is any currency in existence), but I
16228 believe the problems should be solved elsewhere and not by blaming
16229 currencies.&lt;/p&gt;
16230
16231 &lt;p&gt;The process of creating new BitCoins is called mining, and it is
16232 CPU intensive process that depend on a bit of luck as well (as one is
16233 competing against all the other miners currently spending CPU cycles
16234 to see which one get the next lump of cash). The &quot;winner&quot; get 50
16235 BitCoin when this happen. Yesterday I came across the obvious way to
16236 join forces to increase ones changes of getting at least some coins,
16237 by coordinating the work on mining BitCoins across several machines
16238 and people, and sharing the result if one is lucky and get the 50
16239 BitCoins. Check out
16240 &lt;a href=&quot;http://www.bluishcoder.co.nz/bitcoin-pool/&quot;&gt;BitCoin Pool&lt;/a&gt;
16241 if this sounds interesting. I have not had time to try to set up a
16242 machine to participate there yet, but have seen that running on ones
16243 own for a few days have not yield any BitCoins througth mining
16244 yet.&lt;/p&gt;
16245
16246 &lt;p&gt;Update 2010-12-15: Found an &lt;a
16247 href=&quot;http://inertia.posterous.com/reply-to-the-underground-economist-why-bitcoi&quot;&gt;interesting
16248 criticism&lt;/a&gt; of bitcoin. Not quite sure how valid it is, but thought
16249 it was interesting to read. The arguments presented seem to be
16250 equally valid for gold, which was used as a currency for many years.&lt;/p&gt;
16251 </description>
16252 </item>
16253
16254 <item>
16255 <title>Now accepting bitcoins - anonymous and distributed p2p crypto-money</title>
16256 <link>http://people.skolelinux.org/pere/blog/Now_accepting_bitcoins___anonymous_and_distributed_p2p_crypto_money.html</link>
16257 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Now_accepting_bitcoins___anonymous_and_distributed_p2p_crypto_money.html</guid>
16258 <pubDate>Fri, 10 Dec 2010 08:20:00 +0100</pubDate>
16259 <description>&lt;p&gt;With this weeks lawless
16260 &lt;a href=&quot;http://www.salon.com/news/opinion/glenn_greenwald/2010/12/06/wikileaks/index.html&quot;&gt;governmental
16261 attacks&lt;/a&gt; on Wikileak and
16262 &lt;a href=&quot;http://www.salon.com/technology/dan_gillmor/2010/12/06/war_on_speech&quot;&gt;free
16263 speech&lt;/a&gt;, it has become obvious that PayPal, visa and mastercard can
16264 not be trusted to handle money transactions.
16265 A blog post from
16266 &lt;a href=&quot;http://webmink.com/2010/12/06/now-accepting-bitcoin/&quot;&gt;Simon
16267 Phipps on bitcoin&lt;/a&gt; reminded me about a project that a friend of
16268 mine mentioned earlier. I decided to follow Simon&#39;s example, and get
16269 involved with &lt;a href=&quot;http://www.bitcoin.org/&quot;&gt;BitCoin&lt;/a&gt;. I got
16270 some help from my friend to get it all running, and he even handed me
16271 some bitcoins to get started. I even donated a few bitcoins to Simon
16272 for helping me remember BitCoin.&lt;/p&gt;
16273
16274 &lt;p&gt;So, what is bitcoins, you probably wonder? It is a digital
16275 crypto-currency, decentralised and handled using peer-to-peer
16276 networks. It allows anonymous transactions and prohibits central
16277 control over the transactions, making it impossible for governments
16278 and companies alike to block donations and other transactions. The
16279 source is free software, and while the key dependency wxWidgets 2.9
16280 for the graphical user interface is missing in Debian, the command
16281 line client builds just fine. Hopefully Jonas
16282 &lt;a href=&quot;http://bugs.debian.org/578157&quot;&gt;will get the package into
16283 Debian&lt;/a&gt; soon.&lt;/p&gt;
16284
16285 &lt;p&gt;Bitcoins can be converted to other currencies, like USD and EUR.
16286 There are &lt;a href=&quot;http://www.bitcoin.org/trade&quot;&gt;companies accepting
16287 bitcoins&lt;/a&gt; when selling services and goods, and there are even
16288 currency &quot;stock&quot; markets where the exchange rate is decided. There
16289 are not many users so far, but the concept seems promising. If you
16290 want to get started and lack a friend with any bitcoins to spare,
16291 you can even get
16292 &lt;a href=&quot;https://freebitcoins.appspot.com/&quot;&gt;some for free&lt;/a&gt; (0.05
16293 bitcoin at the time of writing). Use
16294 &lt;a href=&quot;http://www.bitcoinwatch.com/&quot;&gt;BitcoinWatch&lt;/a&gt; to keep an eye
16295 on the current exchange rates.&lt;/p&gt;
16296
16297 &lt;p&gt;As an experiment, I have decided to set up bitcoind on one of my
16298 machines. If you want to support my activity, please send Bitcoin
16299 donations to the address
16300 &lt;b&gt;15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&lt;/b&gt;. Thank you!&lt;/p&gt;
16301 </description>
16302 </item>
16303
16304 <item>
16305 <title>Student group continue the work on my Reprap 3D printer</title>
16306 <link>http://people.skolelinux.org/pere/blog/Student_group_continue_the_work_on_my_Reprap_3D_printer.html</link>
16307 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Student_group_continue_the_work_on_my_Reprap_3D_printer.html</guid>
16308 <pubDate>Thu, 9 Dec 2010 19:30:00 +0100</pubDate>
16309 <description>&lt;p&gt;A few days ago, I was introduces to some students in the robot
16310 student assosiation &lt;a href=&quot;http://www.robotica.no/&quot;&gt;Robotica
16311 Osloensis&lt;/a&gt; at the University of Oslo where I work, who planned to
16312 get their own 3D printer. They wanted to learn from me based on my
16313 work in the area. After having a short lunch meeting with them, I
16314 offered them to borrow my reprap kit, as I never had time to complete
16315 the build and this seem unlike to change any time soon. I look
16316 forward to see how this goes. This monday their volunteer driver
16317 picked up my kit and drove it to their lab, and tomorrow I am told the
16318 last exam is over so they can start work on getting the 3D printer
16319 operational.&lt;/p&gt;
16320
16321 &lt;p&gt;The robotic group have already build several robots on their own,
16322 and seem capable of getting the reprap operational. I really look
16323 forward to being able to print all the cool 3D designs published on
16324 &lt;a href=&quot;http://www.thingiverse.com/&quot;&gt;Thingiverse&lt;/a&gt;. I even got
16325 some 3D scans I got made during Dagen@IFI when one of the groups at
16326 the computer science department at the university demonstrated their
16327 very cool 3D scanner.&lt;/p&gt;
16328 </description>
16329 </item>
16330
16331 <item>
16332 <title>Debian Edu development gathering and General Assembly for FRiSK</title>
16333 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_development_gathering_and_General_Assembly_for_FRiSK.html</link>
16334 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_development_gathering_and_General_Assembly_for_FRiSK.html</guid>
16335 <pubDate>Mon, 29 Nov 2010 18:40:00 +0100</pubDate>
16336 <description>&lt;p&gt;On friday, the first Debian Edu / Skolelinux
16337 &lt;a href=&quot;http://www.friprogramvareiskolen.no/Gathering/2010-12-03-05-Oslo&quot;&gt;development
16338 gathering&lt;/a&gt; in a long time take place here in Oslo, Norway. I
16339 really look forward to seeing all the good people working on the
16340 Squeeze release. The gathering is open for everyone interested in
16341 learning more about Debian Edu / Skolelinux.&lt;/p&gt;
16342
16343 &lt;p&gt;On Saturday, the Norwegian member organization taking care of
16344 organizing these development gatherings, Fri Programvare i Skolen,
16345 will hold its
16346 &lt;a href=&quot;http://friprogramvareiskolen.no/Genfors/2010&quot;&gt;General Assembly
16347 for 2010&lt;/a&gt;. Membership is open for all, and currently there are 388
16348 people registered as members. Last year 32 members cast their vote in
16349 the memberdb based election system. I hope more people find time to
16350 vote this year.&lt;/p&gt;
16351 </description>
16352 </item>
16353
16354 <item>
16355 <title>Why isn&#39;t Debian Edu using VLC?</title>
16356 <link>http://people.skolelinux.org/pere/blog/Why_isn_t_Debian_Edu_using_VLC_.html</link>
16357 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Why_isn_t_Debian_Edu_using_VLC_.html</guid>
16358 <pubDate>Sat, 27 Nov 2010 11:30:00 +0100</pubDate>
16359 <description>&lt;p&gt;In the latest issue of Linux Journal, the readers choices were
16360 presented, and the winner among the multimedia player were VLC.
16361 Personally, I like VLC, and it is my player of choice when I first try
16362 to play a video file or stream. Only if VLC fail will I drag out
16363 gmplayer to see if it can do better. The reason is mostly the failure
16364 model and trust. When VLC fail, it normally pop up a error message
16365 reporting the problem. When mplayer fail, it normally segfault or
16366 just hangs. The latter failure mode drain my trust in the program.&lt;p&gt;
16367
16368 &lt;p&gt;But even if VLC is my player of choice, we have choosen to use
16369 mplayer in &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian
16370 Edu/Skolelinux&lt;/a&gt;. The reason is simple. We need a good browser
16371 plugin to play web videos seamlessly, and the VLC browser plugin is
16372 not very good. For example, it lack in-line control buttons, so there
16373 is no way for the user to pause the video. Also, when I
16374 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/BrowserMultimedia&quot;&gt;last
16375 tested the browser plugins&lt;/a&gt; available in Debian, the VLC plugin
16376 failed on several video pages where mplayer based plugins worked. If
16377 the browser plugin for VLC was as good as the gecko-mediaplayer
16378 package (which uses mplayer), we would switch.&lt;/P&gt;
16379
16380 &lt;p&gt;While VLC is a good player, its user interface is slightly
16381 annoying. The most annoying feature is its inconsistent use of
16382 keyboard shortcuts. When the player is in full screen mode, its
16383 shortcuts are different from when it is playing the video in a window.
16384 For example, space only work as pause when in full screen mode. I
16385 wish it had consisten shortcuts and that space also would work when in
16386 window mode. Another nice shortcut in gmplayer is [enter] to restart
16387 the current video. It is very nice when playing short videos from the
16388 web and want to restart it when new people arrive to have a look at
16389 what is going on.&lt;/p&gt;
16390 </description>
16391 </item>
16392
16393 <item>
16394 <title>Lenny-&gt;Squeeze upgrades of the Gnome and KDE desktop, now with apt-get autoremove</title>
16395 <link>http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades_of_the_Gnome_and_KDE_desktop__now_with_apt_get_autoremove.html</link>
16396 <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>
16397 <pubDate>Mon, 22 Nov 2010 14:15:00 +0100</pubDate>
16398 <description>&lt;p&gt;Michael Biebl suggested to me on IRC, that I changed my automated
16399 upgrade testing of the
16400 &lt;a href=&quot;http://people.skolelinux.org/~pere/debian-upgrade-testing/&quot;&gt;Lenny
16401 Gnome and KDE Desktop&lt;/a&gt; to do &lt;tt&gt;apt-get autoremove&lt;/tt&gt; when using apt-get.
16402 This seem like a very good idea, so I adjusted by test scripts and
16403 can now present the updated result from today:&lt;/p&gt;
16404
16405 &lt;p&gt;This is for Gnome:&lt;/p&gt;
16406
16407 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
16408
16409 &lt;blockquote&gt;&lt;p&gt;
16410 apache2.2-bin
16411 aptdaemon
16412 baobab
16413 binfmt-support
16414 browser-plugin-gnash
16415 cheese-common
16416 cli-common
16417 cups-pk-helper
16418 dmz-cursor-theme
16419 empathy
16420 empathy-common
16421 freedesktop-sound-theme
16422 freeglut3
16423 gconf-defaults-service
16424 gdm-themes
16425 gedit-plugins
16426 geoclue
16427 geoclue-hostip
16428 geoclue-localnet
16429 geoclue-manual
16430 geoclue-yahoo
16431 gnash
16432 gnash-common
16433 gnome
16434 gnome-backgrounds
16435 gnome-cards-data
16436 gnome-codec-install
16437 gnome-core
16438 gnome-desktop-environment
16439 gnome-disk-utility
16440 gnome-screenshot
16441 gnome-search-tool
16442 gnome-session-canberra
16443 gnome-system-log
16444 gnome-themes-extras
16445 gnome-themes-more
16446 gnome-user-share
16447 gstreamer0.10-fluendo-mp3
16448 gstreamer0.10-tools
16449 gtk2-engines
16450 gtk2-engines-pixbuf
16451 gtk2-engines-smooth
16452 hamster-applet
16453 libapache2-mod-dnssd
16454 libapr1
16455 libaprutil1
16456 libaprutil1-dbd-sqlite3
16457 libaprutil1-ldap
16458 libart2.0-cil
16459 libboost-date-time1.42.0
16460 libboost-python1.42.0
16461 libboost-thread1.42.0
16462 libchamplain-0.4-0
16463 libchamplain-gtk-0.4-0
16464 libcheese-gtk18
16465 libclutter-gtk-0.10-0
16466 libcryptui0
16467 libdiscid0
16468 libelf1
16469 libepc-1.0-2
16470 libepc-common
16471 libepc-ui-1.0-2
16472 libfreerdp-plugins-standard
16473 libfreerdp0
16474 libgconf2.0-cil
16475 libgdata-common
16476 libgdata7
16477 libgdu-gtk0
16478 libgee2
16479 libgeoclue0
16480 libgexiv2-0
16481 libgif4
16482 libglade2.0-cil
16483 libglib2.0-cil
16484 libgmime2.4-cil
16485 libgnome-vfs2.0-cil
16486 libgnome2.24-cil
16487 libgnomepanel2.24-cil
16488 libgpod-common
16489 libgpod4
16490 libgtk2.0-cil
16491 libgtkglext1
16492 libgtksourceview2.0-common
16493 libmono-addins-gui0.2-cil
16494 libmono-addins0.2-cil
16495 libmono-cairo2.0-cil
16496 libmono-corlib2.0-cil
16497 libmono-i18n-west2.0-cil
16498 libmono-posix2.0-cil
16499 libmono-security2.0-cil
16500 libmono-sharpzip2.84-cil
16501 libmono-system2.0-cil
16502 libmtp8
16503 libmusicbrainz3-6
16504 libndesk-dbus-glib1.0-cil
16505 libndesk-dbus1.0-cil
16506 libopal3.6.8
16507 libpolkit-gtk-1-0
16508 libpt2.6.7
16509 libpython2.6
16510 librpm1
16511 librpmio1
16512 libsdl1.2debian
16513 libsrtp0
16514 libssh-4
16515 libtelepathy-farsight0
16516 libtelepathy-glib0
16517 libtidy-0.99-0
16518 media-player-info
16519 mesa-utils
16520 mono-2.0-gac
16521 mono-gac
16522 mono-runtime
16523 nautilus-sendto
16524 nautilus-sendto-empathy
16525 p7zip-full
16526 pkg-config
16527 python-aptdaemon
16528 python-aptdaemon-gtk
16529 python-axiom
16530 python-beautifulsoup
16531 python-bugbuddy
16532 python-clientform
16533 python-coherence
16534 python-configobj
16535 python-crypto
16536 python-cupshelpers
16537 python-elementtree
16538 python-epsilon
16539 python-evolution
16540 python-feedparser
16541 python-gdata
16542 python-gdbm
16543 python-gst0.10
16544 python-gtkglext1
16545 python-gtksourceview2
16546 python-httplib2
16547 python-louie
16548 python-mako
16549 python-markupsafe
16550 python-mechanize
16551 python-nevow
16552 python-notify
16553 python-opengl
16554 python-openssl
16555 python-pam
16556 python-pkg-resources
16557 python-pyasn1
16558 python-pysqlite2
16559 python-rdflib
16560 python-serial
16561 python-tagpy
16562 python-twisted-bin
16563 python-twisted-conch
16564 python-twisted-core
16565 python-twisted-web
16566 python-utidylib
16567 python-webkit
16568 python-xdg
16569 python-zope.interface
16570 remmina
16571 remmina-plugin-data
16572 remmina-plugin-rdp
16573 remmina-plugin-vnc
16574 rhythmbox-plugin-cdrecorder
16575 rhythmbox-plugins
16576 rpm-common
16577 rpm2cpio
16578 seahorse-plugins
16579 shotwell
16580 software-center
16581 system-config-printer-udev
16582 telepathy-gabble
16583 telepathy-mission-control-5
16584 telepathy-salut
16585 tomboy
16586 totem
16587 totem-coherence
16588 totem-mozilla
16589 totem-plugins
16590 transmission-common
16591 xdg-user-dirs
16592 xdg-user-dirs-gtk
16593 xserver-xephyr
16594 &lt;/p&gt;&lt;/blockquote&gt;
16595
16596 &lt;p&gt;Installed using apt-get, removed with aptitude&lt;/p&gt;
16597
16598 &lt;blockquote&gt;&lt;p&gt;
16599 cheese
16600 ekiga
16601 eog
16602 epiphany-extensions
16603 evolution-exchange
16604 fast-user-switch-applet
16605 file-roller
16606 gcalctool
16607 gconf-editor
16608 gdm
16609 gedit
16610 gedit-common
16611 gnome-games
16612 gnome-games-data
16613 gnome-nettool
16614 gnome-system-tools
16615 gnome-themes
16616 gnuchess
16617 gucharmap
16618 guile-1.8-libs
16619 libavahi-ui0
16620 libdmx1
16621 libgalago3
16622 libgtk-vnc-1.0-0
16623 libgtksourceview2.0-0
16624 liblircclient0
16625 libsdl1.2debian-alsa
16626 libspeexdsp1
16627 libsvga1
16628 rhythmbox
16629 seahorse
16630 sound-juicer
16631 system-config-printer
16632 totem-common
16633 transmission-gtk
16634 vinagre
16635 vino
16636 &lt;/p&gt;&lt;/blockquote&gt;
16637
16638 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
16639
16640 &lt;blockquote&gt;&lt;p&gt;
16641 gstreamer0.10-gnomevfs
16642 &lt;/p&gt;&lt;/blockquote&gt;
16643
16644 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
16645
16646 &lt;blockquote&gt;&lt;p&gt;
16647 [nothing]
16648 &lt;/p&gt;&lt;/blockquote&gt;
16649
16650 &lt;p&gt;This is for KDE:&lt;/p&gt;
16651
16652 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
16653
16654 &lt;blockquote&gt;&lt;p&gt;
16655 ksmserver
16656 &lt;/p&gt;&lt;/blockquote&gt;
16657
16658 &lt;p&gt;Installed using apt-get, removed with aptitude&lt;/p&gt;
16659
16660 &lt;blockquote&gt;&lt;p&gt;
16661 kwin
16662 network-manager-kde
16663 &lt;/p&gt;&lt;/blockquote&gt;
16664
16665 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
16666
16667 &lt;blockquote&gt;&lt;p&gt;
16668 arts
16669 dolphin
16670 freespacenotifier
16671 google-gadgets-gst
16672 google-gadgets-xul
16673 kappfinder
16674 kcalc
16675 kcharselect
16676 kde-core
16677 kde-plasma-desktop
16678 kde-standard
16679 kde-window-manager
16680 kdeartwork
16681 kdeartwork-emoticons
16682 kdeartwork-style
16683 kdeartwork-theme-icon
16684 kdebase
16685 kdebase-apps
16686 kdebase-workspace
16687 kdebase-workspace-bin
16688 kdebase-workspace-data
16689 kdeeject
16690 kdelibs
16691 kdeplasma-addons
16692 kdeutils
16693 kdewallpapers
16694 kdf
16695 kfloppy
16696 kgpg
16697 khelpcenter4
16698 kinfocenter
16699 konq-plugins-l10n
16700 konqueror-nsplugins
16701 kscreensaver
16702 kscreensaver-xsavers
16703 ktimer
16704 kwrite
16705 libgle3
16706 libkde4-ruby1.8
16707 libkonq5
16708 libkonq5-templates
16709 libnetpbm10
16710 libplasma-ruby
16711 libplasma-ruby1.8
16712 libqt4-ruby1.8
16713 marble-data
16714 marble-plugins
16715 netpbm
16716 nuvola-icon-theme
16717 plasma-dataengines-workspace
16718 plasma-desktop
16719 plasma-desktopthemes-artwork
16720 plasma-runners-addons
16721 plasma-scriptengine-googlegadgets
16722 plasma-scriptengine-python
16723 plasma-scriptengine-qedje
16724 plasma-scriptengine-ruby
16725 plasma-scriptengine-webkit
16726 plasma-scriptengines
16727 plasma-wallpapers-addons
16728 plasma-widget-folderview
16729 plasma-widget-networkmanagement
16730 ruby
16731 sweeper
16732 update-notifier-kde
16733 xscreensaver-data-extra
16734 xscreensaver-gl
16735 xscreensaver-gl-extra
16736 xscreensaver-screensaver-bsod
16737 &lt;/p&gt;&lt;/blockquote&gt;
16738
16739 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
16740
16741 &lt;blockquote&gt;&lt;p&gt;
16742 ark
16743 google-gadgets-common
16744 google-gadgets-qt
16745 htdig
16746 kate
16747 kdebase-bin
16748 kdebase-data
16749 kdepasswd
16750 kfind
16751 klipper
16752 konq-plugins
16753 konqueror
16754 ksysguard
16755 ksysguardd
16756 libarchive1
16757 libcln6
16758 libeet1
16759 libeina-svn-06
16760 libggadget-1.0-0b
16761 libggadget-qt-1.0-0b
16762 libgps19
16763 libkdecorations4
16764 libkephal4
16765 libkonq4
16766 libkonqsidebarplugin4a
16767 libkscreensaver5
16768 libksgrd4
16769 libksignalplotter4
16770 libkunitconversion4
16771 libkwineffects1a
16772 libmarblewidget4
16773 libntrack-qt4-1
16774 libntrack0
16775 libplasma-geolocation-interface4
16776 libplasmaclock4a
16777 libplasmagenericshell4
16778 libprocesscore4a
16779 libprocessui4a
16780 libqalculate5
16781 libqedje0a
16782 libqtruby4shared2
16783 libqzion0a
16784 libruby1.8
16785 libscim8c2a
16786 libsmokekdecore4-3
16787 libsmokekdeui4-3
16788 libsmokekfile3
16789 libsmokekhtml3
16790 libsmokekio3
16791 libsmokeknewstuff2-3
16792 libsmokeknewstuff3-3
16793 libsmokekparts3
16794 libsmokektexteditor3
16795 libsmokekutils3
16796 libsmokenepomuk3
16797 libsmokephonon3
16798 libsmokeplasma3
16799 libsmokeqtcore4-3
16800 libsmokeqtdbus4-3
16801 libsmokeqtgui4-3
16802 libsmokeqtnetwork4-3
16803 libsmokeqtopengl4-3
16804 libsmokeqtscript4-3
16805 libsmokeqtsql4-3
16806 libsmokeqtsvg4-3
16807 libsmokeqttest4-3
16808 libsmokeqtuitools4-3
16809 libsmokeqtwebkit4-3
16810 libsmokeqtxml4-3
16811 libsmokesolid3
16812 libsmokesoprano3
16813 libtaskmanager4a
16814 libtidy-0.99-0
16815 libweather-ion4a
16816 libxklavier16
16817 libxxf86misc1
16818 okteta
16819 oxygencursors
16820 plasma-dataengines-addons
16821 plasma-scriptengine-superkaramba
16822 plasma-widget-lancelot
16823 plasma-widgets-addons
16824 plasma-widgets-workspace
16825 polkit-kde-1
16826 ruby1.8
16827 systemsettings
16828 update-notifier-common
16829 &lt;/p&gt;&lt;/blockquote&gt;
16830
16831 &lt;p&gt;Running apt-get autoremove made the results using apt-get and
16832 aptitude a bit more similar, but there are still quite a lott of
16833 differences. I have no idea what packages should be installed after
16834 the upgrade, but hope those that do can have a look.&lt;/p&gt;
16835 </description>
16836 </item>
16837
16838 <item>
16839 <title>Migrating Xen virtual machines using LVM to KVM using disk images</title>
16840 <link>http://people.skolelinux.org/pere/blog/Migrating_Xen_virtual_machines_using_LVM_to_KVM_using_disk_images.html</link>
16841 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Migrating_Xen_virtual_machines_using_LVM_to_KVM_using_disk_images.html</guid>
16842 <pubDate>Mon, 22 Nov 2010 11:20:00 +0100</pubDate>
16843 <description>&lt;p&gt;Most of the computers in use by the
16844 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu/Skolelinux project&lt;/a&gt;
16845 are virtual machines. And they have been Xen machines running on a
16846 fairly old IBM eserver xseries 345 machine, and we wanted to migrate
16847 them to KVM on a newer Dell PowerEdge 2950 host machine. This was a
16848 bit harder that it could have been, because we set up the Xen virtual
16849 machines to get the virtual partitions from LVM, which as far as I
16850 know is not supported by KVM. So to migrate, we had to convert
16851 several LVM logical volumes to partitions on a virtual disk file.&lt;/p&gt;
16852
16853 &lt;p&gt;I found
16854 &lt;a href=&quot;http://searchnetworking.techtarget.com.au/articles/35011-Six-steps-for-migrating-Xen-virtual-machines-to-KVM&quot;&gt;a
16855 nice recipe&lt;/a&gt; to do this, and wrote the following script to do the
16856 migration. It uses qemu-img from the qemu package to make the disk
16857 image, parted to partition it, losetup and kpartx to present the disk
16858 image partions as devices, and dd to copy the data. I NFS mounted the
16859 new servers storage area on the old server to do the migration.&lt;/p&gt;
16860
16861 &lt;pre&gt;
16862 #!/bin/sh
16863
16864 # Based on
16865 # http://searchnetworking.techtarget.com.au/articles/35011-Six-steps-for-migrating-Xen-virtual-machines-to-KVM
16866
16867 set -e
16868 set -x
16869
16870 if [ -z &quot;$1&quot; ] ; then
16871 echo &quot;Usage: $0 &amp;lt;hostname&amp;gt;&quot;
16872 exit 1
16873 else
16874 host=&quot;$1&quot;
16875 fi
16876
16877 if [ ! -e /dev/vg_data/$host-disk ] ; then
16878 echo &quot;error: unable to find LVM volume for $host&quot;
16879 exit 1
16880 fi
16881
16882 # Partitions need to be a bit bigger than the LVM LVs. not sure why.
16883 disksize=$( lvs --units m | grep $host-disk | awk &#39;{sum = sum + $4} END { print int(sum * 1.05) }&#39;)
16884 swapsize=$( lvs --units m | grep $host-swap | awk &#39;{sum = sum + $4} END { print int(sum * 1.05) }&#39;)
16885 totalsize=$(( ( $disksize + $swapsize ) ))
16886
16887 img=$host.img
16888 #dd if=/dev/zero of=$img bs=1M count=$(( $disksize + $swapsize ))
16889 qemu-img create $img ${totalsize}MMaking room on the Debian Edu/Sqeeze DVD
16890
16891 parted $img mklabel msdos
16892 parted $img mkpart primary linux-swap 0 $disksize
16893 parted $img mkpart primary ext2 $disksize $totalsize
16894 parted $img set 1 boot on
16895
16896 modprobe dm-mod
16897 losetup /dev/loop0 $img
16898 kpartx -a /dev/loop0
16899
16900 dd if=/dev/vg_data/$host-disk of=/dev/mapper/loop0p1 bs=1M
16901 fsck.ext3 -f /dev/mapper/loop0p1 || true
16902 mkswap /dev/mapper/loop0p2
16903
16904 kpartx -d /dev/loop0
16905 losetup -d /dev/loop0
16906 &lt;/pre&gt;
16907
16908 &lt;p&gt;The script is perhaps so simple that it is not copyrightable, but
16909 if it is, it is licenced using GPL v2 or later at your discretion.&lt;/p&gt;
16910
16911 &lt;p&gt;After doing this, I booted a Debian CD in rescue mode in KVM with
16912 the new disk image attached, installed grub-pc and linux-image-686 and
16913 set up grub to boot from the disk image. After this, the KVM machines
16914 seem to work just fine.&lt;/p&gt;
16915 </description>
16916 </item>
16917
16918 <item>
16919 <title>Lenny-&gt;Squeeze upgrades, apt vs aptitude with the Gnome and KDE desktop</title>
16920 <link>http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__apt_vs_aptitude_with_the_Gnome_and_KDE_desktop.html</link>
16921 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__apt_vs_aptitude_with_the_Gnome_and_KDE_desktop.html</guid>
16922 <pubDate>Sat, 20 Nov 2010 22:50:00 +0100</pubDate>
16923 <description>&lt;p&gt;I&#39;m still running upgrade testing of the
16924 &lt;a href=&quot;http://people.skolelinux.org/~pere/debian-upgrade-testing/&quot;&gt;Lenny
16925 Gnome and KDE Desktop&lt;/a&gt;, but have not had time to spend on reporting the
16926 status. Here is a short update based on a test I ran 20101118.&lt;/p&gt;
16927
16928 &lt;p&gt;I still do not know what a correct migration should look like, so I
16929 report any differences between apt and aptitude and hope someone else
16930 can see if anything should be changed.&lt;/p&gt;
16931
16932 &lt;p&gt;This is for Gnome:&lt;/p&gt;
16933
16934 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
16935
16936 &lt;blockquote&gt;&lt;p&gt;
16937 apache2.2-bin aptdaemon at-spi baobab binfmt-support
16938 browser-plugin-gnash cheese-common cli-common cpp-4.3 cups-pk-helper
16939 dmz-cursor-theme empathy empathy-common finger
16940 freedesktop-sound-theme freeglut3 gconf-defaults-service gdm-themes
16941 gedit-plugins geoclue geoclue-hostip geoclue-localnet geoclue-manual
16942 geoclue-yahoo gnash gnash-common gnome gnome-backgrounds
16943 gnome-cards-data gnome-codec-install gnome-core
16944 gnome-desktop-environment gnome-disk-utility gnome-screenshot
16945 gnome-search-tool gnome-session-canberra gnome-spell
16946 gnome-system-log gnome-themes-extras gnome-themes-more
16947 gnome-user-share gs-common gstreamer0.10-fluendo-mp3
16948 gstreamer0.10-tools gtk2-engines gtk2-engines-pixbuf
16949 gtk2-engines-smooth hal-info hamster-applet libapache2-mod-dnssd
16950 libapr1 libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-ldap
16951 libart2.0-cil libatspi1.0-0 libboost-date-time1.42.0
16952 libboost-python1.42.0 libboost-thread1.42.0 libchamplain-0.4-0
16953 libchamplain-gtk-0.4-0 libcheese-gtk18 libclutter-gtk-0.10-0
16954 libcryptui0 libcupsys2 libdiscid0 libeel2-data libelf1 libepc-1.0-2
16955 libepc-common libepc-ui-1.0-2 libfreerdp-plugins-standard
16956 libfreerdp0 libgail-common libgconf2.0-cil libgdata-common libgdata7
16957 libgdl-1-common libgdu-gtk0 libgee2 libgeoclue0 libgexiv2-0 libgif4
16958 libglade2.0-cil libglib2.0-cil libgmime2.4-cil libgnome-vfs2.0-cil
16959 libgnome2.24-cil libgnomepanel2.24-cil libgnomeprint2.2-data
16960 libgnomeprintui2.2-common libgnomevfs2-bin libgpod-common libgpod4
16961 libgtk2.0-cil libgtkglext1 libgtksourceview-common
16962 libgtksourceview2.0-common libmono-addins-gui0.2-cil
16963 libmono-addins0.2-cil libmono-cairo2.0-cil libmono-corlib2.0-cil
16964 libmono-i18n-west2.0-cil libmono-posix2.0-cil
16965 libmono-security2.0-cil libmono-sharpzip2.84-cil
16966 libmono-system2.0-cil libmtp8 libmusicbrainz3-6
16967 libndesk-dbus-glib1.0-cil libndesk-dbus1.0-cil libopal3.6.8
16968 libpolkit-gtk-1-0 libpt-1.10.10-plugins-alsa
16969 libpt-1.10.10-plugins-v4l libpt2.6.7 libpython2.6 librpm1 librpmio1
16970 libsdl1.2debian libservlet2.4-java libsrtp0 libssh-4
16971 libtelepathy-farsight0 libtelepathy-glib0 libtidy-0.99-0
16972 libxalan2-java libxerces2-java media-player-info mesa-utils
16973 mono-2.0-gac mono-gac mono-runtime nautilus-sendto
16974 nautilus-sendto-empathy openoffice.org-writer2latex
16975 openssl-blacklist p7zip p7zip-full pkg-config python-4suite-xml
16976 python-aptdaemon python-aptdaemon-gtk python-axiom
16977 python-beautifulsoup python-bugbuddy python-clientform
16978 python-coherence python-configobj python-crypto python-cupshelpers
16979 python-cupsutils python-eggtrayicon python-elementtree
16980 python-epsilon python-evolution python-feedparser python-gdata
16981 python-gdbm python-gst0.10 python-gtkglext1 python-gtkmozembed
16982 python-gtksourceview2 python-httplib2 python-louie python-mako
16983 python-markupsafe python-mechanize python-nevow python-notify
16984 python-opengl python-openssl python-pam python-pkg-resources
16985 python-pyasn1 python-pysqlite2 python-rdflib python-serial
16986 python-tagpy python-twisted-bin python-twisted-conch
16987 python-twisted-core python-twisted-web python-utidylib python-webkit
16988 python-xdg python-zope.interface remmina remmina-plugin-data
16989 remmina-plugin-rdp remmina-plugin-vnc rhythmbox-plugin-cdrecorder
16990 rhythmbox-plugins rpm-common rpm2cpio seahorse-plugins shotwell
16991 software-center svgalibg1 system-config-printer-udev
16992 telepathy-gabble telepathy-mission-control-5 telepathy-salut tomboy
16993 totem totem-coherence totem-mozilla totem-plugins
16994 transmission-common xdg-user-dirs xdg-user-dirs-gtk xserver-xephyr
16995 zip
16996 &lt;/p&gt;&lt;/blockquote&gt;
16997
16998 Installed using apt-get, removed with aptitude
16999
17000 &lt;blockquote&gt;&lt;p&gt;
17001 arj bluez-utils cheese dhcdbd djvulibre-desktop ekiga eog
17002 epiphany-extensions epiphany-gecko evolution-exchange
17003 fast-user-switch-applet file-roller gcalctool gconf-editor gdm gedit
17004 gedit-common gnome-app-install gnome-games gnome-games-data
17005 gnome-nettool gnome-system-tools gnome-themes gnome-utils
17006 gnome-vfs-obexftp gnome-volume-manager gnuchess gucharmap
17007 guile-1.8-libs hal libavahi-compat-libdnssd1 libavahi-core5
17008 libavahi-ui0 libbind9-50 libbluetooth2 libcamel1.2-11 libcdio7
17009 libcucul0 libcurl3 libdirectfb-1.0-0 libdmx1 libdvdread3
17010 libedata-cal1.2-6 libedataserver1.2-9 libeel2-2.20 libepc-1.0-1
17011 libepc-ui-1.0-1 libexchange-storage1.2-3 libfaad0 libgadu3
17012 libgalago3 libgd2-noxpm libgda3-3 libgda3-common libggz2 libggzcore9
17013 libggzmod4 libgksu1.2-0 libgksuui1.0-1 libgmyth0 libgnome-desktop-2
17014 libgnome-pilot2 libgnomecups1.0-1 libgnomeprint2.2-0
17015 libgnomeprintui2.2-0 libgpod3 libgraphviz4 libgtk-vnc-1.0-0
17016 libgtkhtml2-0 libgtksourceview1.0-0 libgtksourceview2.0-0
17017 libgucharmap6 libhesiod0 libicu38 libisccc50 libisccfg50 libiw29
17018 libjaxp1.3-java-gcj libkpathsea4 liblircclient0 libltdl3 liblwres50
17019 libmagick++10 libmagick10 libmalaga7 libmozjs1d libmpfr1ldbl libmtp7
17020 libmysqlclient15off libnautilus-burn4 libneon27 libnm-glib0
17021 libnm-util0 libopal-2.2 libosp5 libparted1.8-10 libpisock9
17022 libpisync1 libpoppler-glib3 libpoppler3 libpt-1.10.10 libraw1394-8
17023 libsdl1.2debian-alsa libsensors3 libsexy2 libsmbios2 libsoup2.2-8
17024 libspeexdsp1 libssh2-1 libsuitesparse-3.1.0 libsvga1
17025 libswfdec-0.6-90 libtalloc1 libtotem-plparser10 libtrackerclient0
17026 libvoikko1 libxalan2-java-gcj libxerces2-java-gcj libxklavier12
17027 libxtrap6 libxxf86misc1 libzephyr3 mysql-common rhythmbox seahorse
17028 sound-juicer swfdec-gnome system-config-printer totem-common
17029 totem-gstreamer transmission-gtk vinagre vino w3c-dtd-xhtml wodim
17030 &lt;/p&gt;&lt;/blockquote&gt;
17031
17032 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
17033
17034 &lt;blockquote&gt;&lt;p&gt;
17035 gstreamer0.10-gnomevfs
17036 &lt;/p&gt;&lt;/blockquote&gt;
17037
17038 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
17039
17040 &lt;blockquote&gt;&lt;p&gt;
17041 [nothing]
17042 &lt;/p&gt;&lt;/blockquote&gt;
17043
17044 &lt;p&gt;This is for KDE:&lt;/p&gt;
17045
17046 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
17047
17048 &lt;blockquote&gt;&lt;p&gt;
17049 autopoint bomber bovo cantor cantor-backend-kalgebra cpp-4.3 dcoprss
17050 edict espeak espeak-data eyesapplet fifteenapplet finger gettext
17051 ghostscript-x git gnome-audio gnugo granatier gs-common
17052 gstreamer0.10-pulseaudio indi kaddressbook-plugins kalgebra
17053 kalzium-data kanjidic kapman kate-plugins kblocks kbreakout kbstate
17054 kde-icons-mono kdeaccessibility kdeaddons-kfile-plugins
17055 kdeadmin-kfile-plugins kdeartwork-misc kdeartwork-theme-window
17056 kdeedu kdeedu-data kdeedu-kvtml-data kdegames kdegames-card-data
17057 kdegames-mahjongg-data kdegraphics-kfile-plugins kdelirc
17058 kdemultimedia-kfile-plugins kdenetwork-kfile-plugins
17059 kdepim-kfile-plugins kdepim-kio-plugins kdessh kdetoys kdewebdev
17060 kdiamond kdnssd kfilereplace kfourinline kgeography-data kigo
17061 killbots kiriki klettres-data kmoon kmrml knewsticker-scripts
17062 kollision kpf krosspython ksirk ksmserver ksquares kstars-data
17063 ksudoku kubrick kweather libasound2-plugins libboost-python1.42.0
17064 libcfitsio3 libconvert-binhex-perl libcrypt-ssleay-perl libdb4.6++
17065 libdjvulibre-text libdotconf1.0 liberror-perl libespeak1
17066 libfinance-quote-perl libgail-common libgsl0ldbl libhtml-parser-perl
17067 libhtml-tableextract-perl libhtml-tagset-perl libhtml-tree-perl
17068 libio-stringy-perl libkdeedu4 libkdegames5 libkiten4 libkpathsea5
17069 libkrossui4 libmailtools-perl libmime-tools-perl
17070 libnews-nntpclient-perl libopenbabel3 libportaudio2 libpulse-browse0
17071 libservlet2.4-java libspeechd2 libtiff-tools libtimedate-perl
17072 libunistring0 liburi-perl libwww-perl libxalan2-java libxerces2-java
17073 lirc luatex marble networkstatus noatun-plugins
17074 openoffice.org-writer2latex palapeli palapeli-data parley
17075 parley-data poster psutils pulseaudio pulseaudio-esound-compat
17076 pulseaudio-module-x11 pulseaudio-utils quanta-data rocs rsync
17077 speech-dispatcher step svgalibg1 texlive-binaries texlive-luatex
17078 ttf-sazanami-gothic
17079 &lt;/p&gt;&lt;/blockquote&gt;
17080
17081 &lt;p&gt;Installed using apt-get, removed with aptitude&lt;/p&gt;
17082
17083 &lt;blockquote&gt;&lt;p&gt;
17084 amor artsbuilder atlantik atlantikdesigner blinken bluez-utils cvs
17085 dhcdbd djvulibre-desktop imlib-base imlib11 kalzium kanagram kandy
17086 kasteroids katomic kbackgammon kbattleship kblackbox kbounce kbruch
17087 kcron kdat kdemultimedia-kappfinder-data kdeprint kdict kdvi kedit
17088 keduca kenolaba kfax kfaxview kfouleggs kgeography kghostview
17089 kgoldrunner khangman khexedit kiconedit kig kimagemapeditor
17090 kitchensync kiten kjumpingcube klatin klettres klickety klines
17091 klinkstatus kmag kmahjongg kmailcvt kmenuedit kmid kmilo kmines
17092 kmousetool kmouth kmplot knetwalk kodo kolf kommander konquest kooka
17093 kpager kpat kpdf kpercentage kpilot kpoker kpovmodeler krec
17094 kregexpeditor kreversi ksame ksayit kshisen ksig ksim ksirc ksirtet
17095 ksmiletris ksnake ksokoban kspaceduel kstars ksvg ksysv kteatime
17096 ktip ktnef ktouch ktron kttsd ktuberling kturtle ktux kuickshow
17097 kverbos kview kviewshell kvoctrain kwifimanager kwin kwin4 kwordquiz
17098 kworldclock kxsldbg libakode2 libarts1-akode libarts1-audiofile
17099 libarts1-mpeglib libarts1-xine libavahi-compat-libdnssd1
17100 libavahi-core5 libavc1394-0 libbind9-50 libbluetooth2
17101 libboost-python1.34.1 libcucul0 libcurl3 libcvsservice0
17102 libdirectfb-1.0-0 libdjvulibre21 libdvdread3 libfaad0 libfreebob0
17103 libgd2-noxpm libgraphviz4 libgsmme1c2a libgtkhtml2-0 libicu38
17104 libiec61883-0 libindex0 libisccc50 libisccfg50 libiw29
17105 libjaxp1.3-java-gcj libk3b3 libkcal2b libkcddb1 libkdeedu3
17106 libkdegames1 libkdepim1a libkgantt0 libkleopatra1 libkmime2
17107 libkpathsea4 libkpimexchange1 libkpimidentities1 libkscan1
17108 libksieve0 libktnef1 liblockdev1 libltdl3 liblwres50 libmagick10
17109 libmimelib1c2a libmodplug0c2 libmozjs1d libmpcdec3 libmpfr1ldbl
17110 libneon27 libnm-util0 libopensync0 libpisock9 libpoppler-glib3
17111 libpoppler-qt2 libpoppler3 libraw1394-8 librss1 libsensors3
17112 libsmbios2 libssh2-1 libsuitesparse-3.1.0 libswfdec-0.6-90
17113 libtalloc1 libxalan2-java-gcj libxerces2-java-gcj libxtrap6 lskat
17114 mpeglib network-manager-kde noatun pmount tex-common texlive-base
17115 texlive-common texlive-doc-base texlive-fonts-recommended tidy
17116 ttf-dustin ttf-kochi-gothic ttf-sjfonts
17117 &lt;/p&gt;&lt;/blockquote&gt;
17118
17119 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
17120
17121 &lt;blockquote&gt;&lt;p&gt;
17122 dolphin kde-core kde-plasma-desktop kde-standard kde-window-manager
17123 kdeartwork kdebase kdebase-apps kdebase-workspace
17124 kdebase-workspace-bin kdebase-workspace-data kdeutils kscreensaver
17125 kscreensaver-xsavers libgle3 libkonq5 libkonq5-templates libnetpbm10
17126 netpbm plasma-widget-folderview plasma-widget-networkmanagement
17127 xscreensaver-data-extra xscreensaver-gl xscreensaver-gl-extra
17128 xscreensaver-screensaver-bsod
17129 &lt;/p&gt;&lt;/blockquote&gt;
17130
17131 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
17132
17133 &lt;blockquote&gt;&lt;p&gt;
17134 kdebase-bin konq-plugins konqueror
17135 &lt;/p&gt;&lt;/blockquote&gt;
17136 </description>
17137 </item>
17138
17139 <item>
17140 <title>Gnash buildbot slave and Debian kfreebsd</title>
17141 <link>http://people.skolelinux.org/pere/blog/Gnash_buildbot_slave_and_Debian_kfreebsd.html</link>
17142 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Gnash_buildbot_slave_and_Debian_kfreebsd.html</guid>
17143 <pubDate>Sat, 20 Nov 2010 07:20:00 +0100</pubDate>
17144 <description>&lt;p&gt;Answering
17145 &lt;a href=&quot;http://www.listware.net/201011/gnash-dev/67431-gnash-dev-buildbot-looking-for-slaves.html&quot;&gt;the
17146 call from the Gnash project&lt;/a&gt; for
17147 &lt;a href=&quot;http://www.gnashdev.org:8010&quot;&gt;buildbot&lt;/a&gt; slaves to test the
17148 current source, I have set up a virtual KVM machine on the Debian
17149 Edu/Skolelinux virtualization host to test the git source on
17150 Debian/Squeeze. I hope this can help the developers in getting new
17151 releases out more often.&lt;/p&gt;
17152
17153 &lt;p&gt;As the developers want less main-stream build platforms tested to,
17154 I have considered setting up a &lt;a
17155 href=&quot;http://www.debian.org/ports/kfreebsd-gnu/&quot;&gt;Debian/kfreebsd&lt;/a&gt;
17156 machine as well. I have also considered using the kfreebsd
17157 architecture in Debian as a file server in NUUG to get access to the 5
17158 TB zfs volume we currently use to store DV video. Because of this, I
17159 finally got around to do a test installation of Debian/Squeeze with
17160 kfreebsd. Installation went fairly smooth, thought I noticed some
17161 visual glitches in the cdebconf dialogs (black cursor left on the
17162 screen at random locations). Have not gotten very far with the
17163 testing. Noticed cfdisk did not work, but fdisk did so it was not a
17164 fatal problem. Have to spend some more time on it to see if it is
17165 useful as a file server for NUUG. Will try to find time to set up a
17166 gnash buildbot slave on the Debian Edu/Skolelinux this weekend.&lt;/p&gt;
17167 </description>
17168 </item>
17169
17170 <item>
17171 <title>Debian in 3D</title>
17172 <link>http://people.skolelinux.org/pere/blog/Debian_in_3D.html</link>
17173 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_in_3D.html</guid>
17174 <pubDate>Tue, 9 Nov 2010 16:10:00 +0100</pubDate>
17175 <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;
17176
17177 &lt;p&gt;3D printing is just great. I just came across this Debian logo in
17178 3D linked in from
17179 &lt;a href=&quot;http://blog.thingiverse.com/2010/11/09/participatory-branding/&quot;&gt;the
17180 thingiverse blog&lt;/a&gt;.&lt;/p&gt;
17181 </description>
17182 </item>
17183
17184 <item>
17185 <title>Making room on the Debian Edu/Sqeeze DVD</title>
17186 <link>http://people.skolelinux.org/pere/blog/Making_room_on_the_Debian_Edu_Sqeeze_DVD.html</link>
17187 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Making_room_on_the_Debian_Edu_Sqeeze_DVD.html</guid>
17188 <pubDate>Sun, 7 Nov 2010 11:45:00 +0100</pubDate>
17189 <description>&lt;p&gt;Prioritising packages for the Debian Edu /
17190 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt; DVD, which is
17191 supposed provide a school with all the services and user applications
17192 needed on the pupils computer network has always been hard. Even
17193 schools without Internet connections should be able to get Debian Edu
17194 working using this DVD.&lt;/p&gt;
17195
17196 &lt;p&gt;The job became a lot harder when apt and aptitude started
17197 installing recommended packages by default. We want the same set of
17198 packages to be installed when using the DVD and the netinst CD, and
17199 that means all recommended packages need to be on the DVD. I created
17200 a patch for debian-cd in &lt;a href=&quot;http://bugs.debian.org/601203&quot;&gt;BTS
17201 report #601203&lt;/a&gt; to do this, and since this change was applied to
17202 the Debian Edu DVD build, we have been seriously short on space.&lt;/p&gt;
17203
17204 &lt;p&gt;A few days ago we decided to drop blender, wxmaxima and kicad from
17205 the default installation to save space on the DVD, believing that
17206 those needing these applications are few and can get them from the
17207 Debian archive.&lt;/p&gt;
17208
17209 &lt;p&gt;Yesterday, I had a look what source packages to see which packages
17210 were using most space. A few large packages are well know;
17211 openoffice.org, openclipart and fluid-soundfont. But I also
17212 discovered that lilypond used 106 MiB and fglrx-driver used 53 MiB.
17213 The lilypond package is pulled in as a dependency for rosegarden, and
17214 when looking a bit closer I discovered that 99 MiB of the 106 MiB were
17215 the documentation package, which is recommended by the binary package.
17216 I decided to drop this documentation package from our DVD, as most of
17217 our users will use the GUI front-ends and do not need the lilypond
17218 documentation. Similarly, I dropped the non-free fglrx-driver package
17219 which might be installed by d-i when its hardware is detected, as the
17220 free X driver should work.&lt;/p&gt;
17221
17222 &lt;p&gt;With this change, we finally got space for the LXDE and Gnome
17223 desktop packages as well as the language specific packages making the
17224 DVD more useful again.&lt;/p&gt;
17225 </description>
17226 </item>
17227
17228 <item>
17229 <title>Software updates 2010-10-24</title>
17230 <link>http://people.skolelinux.org/pere/blog/Software_updates_2010_10_24.html</link>
17231 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Software_updates_2010_10_24.html</guid>
17232 <pubDate>Sun, 24 Oct 2010 22:45:00 +0200</pubDate>
17233 <description>&lt;p&gt;Some updates.&lt;/p&gt;
17234
17235 &lt;p&gt;My &lt;a href=&quot;http://pledgebank.com/gnash-avm2&quot;&gt;gnash pledge&lt;/a&gt; to
17236 raise money for the project is going well. The lower limit of 10
17237 signers was reached in 24 hours, and so far 13 people have signed it.
17238 More signers and more funding is most welcome, and I am really curious
17239 how far we can get before the time limit of December 24 is reached.
17240 :)&lt;/p&gt;
17241
17242 &lt;p&gt;On the #gnash IRC channel on irc.freenode.net, I was just tipped
17243 about what appear to be a great code coverage tool capable of
17244 generating code coverage stats without any changes to the source code.
17245 It is called
17246 &lt;a href=&quot;http://simonkagstrom.github.com/kcov/index.html&quot;&gt;kcov&lt;/a&gt;,
17247 and can be used using &lt;tt&gt;kcov &amp;lt;directory&amp;gt; &amp;lt;binary&amp;gt;&lt;/tt&gt;.
17248 It is missing in Debian, but the git source built just fine in Squeeze
17249 after I installed libelf-dev, libdwarf-dev, pkg-config and
17250 libglib2.0-dev. Failed to build in Lenny, but suspect that is
17251 solvable. I hope kcov make it into Debian soon.&lt;/p&gt;
17252
17253 &lt;p&gt;Finally found time to wrap up the release notes for &lt;a
17254 href=&quot;http://lists.debian.org/debian-edu-announce/2010/10/msg00002.html&quot;&gt;a
17255 new alpha release of Debian Edu&lt;/a&gt;, and just published the second
17256 alpha test release of the Squeeze based Debian Edu /
17257 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt;
17258 release. Give it a try if you need a complete linux solution for your
17259 school, including central infrastructure server, workstations, thin
17260 client servers and diskless workstations. A nice touch added
17261 yesterday is RDP support on the thin client servers, for windows
17262 clients to get a Linux desktop on request.&lt;/p&gt;
17263 </description>
17264 </item>
17265
17266 <item>
17267 <title>Pledge for funding to the Gnash project to get AVM2 support</title>
17268 <link>http://people.skolelinux.org/pere/blog/Pledge_for_funding_to_the_Gnash_project_to_get_AVM2_support.html</link>
17269 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Pledge_for_funding_to_the_Gnash_project_to_get_AVM2_support.html</guid>
17270 <pubDate>Tue, 19 Oct 2010 14:45:00 +0200</pubDate>
17271 <description>&lt;p&gt;&lt;a href=&quot;http://www.getgnash.org/&quot;&gt;The Gnash project&lt;/a&gt; is the
17272 most promising solution for a Free Software Flash implementation. It
17273 has done great so far, but there is still far to go, and recently its
17274 funding has dried up. I believe AVM2 support in Gnash is vital to the
17275 continued progress of the project, as more and more sites show up with
17276 AVM2 flash files.&lt;/p&gt;
17277
17278 &lt;p&gt;To try to get funding for developing such support, I have started
17279 &lt;a href=&quot;http://www.pledgebank.com/gnash-avm2&quot;&gt;a pledge&lt;/a&gt; with the
17280 following text:&lt;/P&gt;
17281
17282 &lt;p&gt;&lt;blockquote&gt;
17283
17284 &lt;p&gt;&quot;I will pay 100$ to the Gnash project to develop AVM2 support but
17285 only if 10 other people will do the same.&quot;&lt;/p&gt;
17286
17287 &lt;p&gt;- Petter Reinholdtsen, free software developer&lt;/p&gt;
17288
17289 &lt;p&gt;Deadline to sign up by: 24th December 2010&lt;/p&gt;
17290
17291 &lt;p&gt;The Gnash project need to get support for the new Flash file
17292 format AVM2 to work with a lot of sites using Flash on the
17293 web. Gnash already work with a lot of Flash sites using the old AVM1
17294 format, but more and more sites are using the AVM2 format these
17295 days. The project web page is available from
17296 http://www.getgnash.org/ . Gnash is a free software implementation
17297 of Adobe Flash, allowing those of us that do not accept the terms of
17298 the Adobe Flash license to get access to Flash sites.&lt;/p&gt;
17299
17300 &lt;p&gt;The project need funding to get developers to put aside enough
17301 time to develop the AVM2 support, and this pledge is my way to try
17302 to get this to happen.&lt;/p&gt;
17303
17304 &lt;p&gt;The project accept donations via the OpenMediaNow foundation,
17305 &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;
17306
17307 &lt;/blockquote&gt;&lt;/p&gt;
17308
17309 &lt;p&gt;I hope you will support this effort too. I hope more than 10
17310 people will participate to make this happen. The more money the
17311 project gets, the more features it can develop using these funds.
17312 :)&lt;/p&gt;
17313 </description>
17314 </item>
17315
17316 <item>
17317 <title>First version of a Perl library to control the Spykee robot</title>
17318 <link>http://people.skolelinux.org/pere/blog/First_version_of_a_Perl_library_to_control_the_Spykee_robot.html</link>
17319 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_version_of_a_Perl_library_to_control_the_Spykee_robot.html</guid>
17320 <pubDate>Sat, 9 Oct 2010 14:00:00 +0200</pubDate>
17321 <description>&lt;p&gt;This summer I got the chance to buy cheap Spykee robots, and since
17322 then I have worked on getting Linux software in place to control them.
17323 The firmware for the robot is available from the producer, and using
17324 that source it was trivial to figure out the protocol specification.
17325 I&#39;ve started on a perl library to control it, and made some demo
17326 programs using this perl library to allow one to control the
17327 robots.&lt;/p&gt;
17328
17329 &lt;p&gt;The library is quite functional already, and capable of controlling
17330 the driving, fetching video, uploading MP3s and play them. There are
17331 a few less important features too.&lt;/p&gt;
17332
17333 &lt;p&gt;Since a few weeks ago, I ran out of time to spend on this project,
17334 but I never got around to releasing the current source. I decided
17335 today that it was time to do something about it, and uploaded the
17336 source to my Debian package store at people.skolelinux.org.&lt;/p&gt;
17337
17338 &lt;p&gt;Because it was simpler for me, I made a Debian package and
17339 published the source and deb. If you got a spykee robot, grab the
17340 source or binary package:&lt;/p&gt;
17341
17342 &lt;p&gt;&lt;ul&gt;
17343 &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;
17344 &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;
17345 &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;
17346 &lt;/ul&gt;&lt;/p&gt;
17347
17348 &lt;p&gt;If you are interested in helping out with developing this library,
17349 please let me know.&lt;/p&gt;
17350 </description>
17351 </item>
17352
17353 <item>
17354 <title>Links for 2010-10-03</title>
17355 <link>http://people.skolelinux.org/pere/blog/Links_for_2010_10_03.html</link>
17356 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Links_for_2010_10_03.html</guid>
17357 <pubDate>Sun, 3 Oct 2010 22:30:00 +0200</pubDate>
17358 <description>&lt;p&gt;&lt;ul&gt;
17359
17360 &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
17361 is no Plan B: why the IPv4-to-IPv6 transition will be ugly&lt;/a&gt;&lt;/li&gt;
17362
17363 &lt;li&gt;Scanner looking under clothes
17364 &lt;a href=&quot;http://www.dagbladet.no/2010/10/03/nyheter/utenriks/reise/overvakingskamera/flyplasser/13667192/&quot;&gt;has
17365 already been misused at Heathrow&lt;/a&gt;.&lt;/li&gt;
17366
17367 &lt;li&gt;&lt;a href=&quot;http://wiki.softwarelivre.org/Landell&quot;&gt;Landell
17368 Webcasting&lt;/a&gt; - interesting alternative for
17369 &lt;ahref=&quot;http://dvswitch.alioth.debian.org/wiki/&quot;&gt;DVSwitch&lt;/a&gt; with
17370 simple setup.
17371
17372 &lt;/ul&gt;&lt;/p&gt;
17373 </description>
17374 </item>
17375
17376 <item>
17377 <title>Terms of use for video produced by a Canon IXUS 130 digital camera</title>
17378 <link>http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html</link>
17379 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Terms_of_use_for_video_produced_by_a_Canon_IXUS_130_digital_camera.html</guid>
17380 <pubDate>Thu, 9 Sep 2010 23:55:00 +0200</pubDate>
17381 <description>&lt;p&gt;A few days ago I had the mixed pleasure of bying a new digital
17382 camera, a Canon IXUS 130. It was instructive and very disturbing to
17383 be able to verify that also this camera producer have the nerve to
17384 specify how I can or can not use the videos produced with the camera.
17385 Even thought I was aware of the issue, the options with new cameras
17386 are limited and I ended up bying the camera anyway. What is the
17387 problem, you might ask? It is software patents, MPEG-4, H.264 and the
17388 MPEG-LA that is the problem, and our right to record our experiences
17389 without asking for permissions that is at risk.
17390
17391 &lt;p&gt;On page 27 of the Danish instruction manual, this section is
17392 written:&lt;/p&gt;
17393
17394 &lt;blockquote&gt;
17395 &lt;p&gt;This product is licensed under AT&amp;T patents for the MPEG-4 standard
17396 and may be used for encoding MPEG-4 compliant video and/or decoding
17397 MPEG-4 compliant video that was encoded only (1) for a personal and
17398 non-commercial purpose or (2) by a video provider licensed under the
17399 AT&amp;T patents to provide MPEG-4 compliant video.&lt;/p&gt;
17400
17401 &lt;p&gt;No license is granted or implied for any other use for MPEG-4
17402 standard.&lt;/p&gt;
17403 &lt;/blockquote&gt;
17404
17405 &lt;p&gt;In short, the camera producer have chosen to use technology
17406 (MPEG-4/H.264) that is only provided if I used it for personal and
17407 non-commercial purposes, or ask for permission from the organisations
17408 holding the knowledge monopoly (patent) for technology used.&lt;/p&gt;
17409
17410 &lt;p&gt;This issue has been brewing for a while, and I recommend you to
17411 read
17412 &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
17413 Our Civilization&#39;s Video Art and Culture is Threatened by the
17414 MPEG-LA&lt;/a&gt;&quot; by Eugenia Loli-Queru and
17415 &quot;&lt;a href=&quot;http://webmink.com/2010/09/03/h-264-and-foss/&quot;&gt;H.264 Is Not
17416 The Sort Of Free That Matters&lt;/a&gt;&quot; by Simon Phipps to learn more about
17417 the issue. The solution is to support the
17418 &lt;a href=&quot;http://www.digistan.org/open-standard:definition&quot;&gt;free and
17419 open standards&lt;/a&gt; for video, like &lt;a href=&quot;http://www.theora.org/&quot;&gt;Ogg
17420 Theora&lt;/a&gt;, and avoid MPEG-4 and H.264 if you can.&lt;/p&gt;
17421 </description>
17422 </item>
17423
17424 <item>
17425 <title>Some notes on Flash in Debian and Debian Edu</title>
17426 <link>http://people.skolelinux.org/pere/blog/Some_notes_on_Flash_in_Debian_and_Debian_Edu.html</link>
17427 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Some_notes_on_Flash_in_Debian_and_Debian_Edu.html</guid>
17428 <pubDate>Sat, 4 Sep 2010 10:10:00 +0200</pubDate>
17429 <description>&lt;p&gt;In the &lt;a href=&quot;http://popcon.debian.org/unknown/by_vote&quot;&gt;Debian
17430 popularity-contest numbers&lt;/a&gt;, the adobe-flashplugin package the
17431 second most popular used package that is missing in Debian. The sixth
17432 most popular is flashplayer-mozilla. This is a clear indication that
17433 working flash is important for Debian users. Around 10 percent of the
17434 users submitting data to popcon.debian.org have this package
17435 installed.&lt;/p&gt;
17436
17437 &lt;p&gt;In the report written by Lars Risan in August 2008
17438&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
17439 i bruk – Rapport for Hurum kommune, Universitetet i Agder og
17440 stiftelsen SLX Debian Labs&lt;/a&gt;»), one of the most important problems
17441 schools experienced with &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian
17442 Edu/Skolelinux&lt;/a&gt; was the lack of working Flash. A lot of educational
17443 web sites require Flash to work, and lacking working Flash support in
17444 the web browser and the problems with installing it was perceived as a
17445 good reason to stay with Windows.&lt;/p&gt;
17446
17447 &lt;p&gt;I once saw a funny and sad comment in a web forum, where Linux was
17448 said to be the retarded cousin that did not really understand
17449 everything you told him but could work fairly well. This was a
17450 comment regarding the problems Linux have with proprietary formats and
17451 non-standard web pages, and is sad because it exposes a fairly common
17452 understanding of whose fault it is if web pages that only work in for
17453 example Internet Explorer 6 fail to work on Firefox, and funny because
17454 it explain very well how annoying it is for users when Linux
17455 distributions do not work with the documents they receive or the web
17456 pages they want to visit.&lt;/p&gt;
17457
17458 &lt;p&gt;This is part of the reason why I believe it is important for Debian
17459 and Debian Edu to have a well working Flash implementation in the
17460 distribution, to get at least popular sites as Youtube and Google
17461 Video to working out of the box. For Squeeze, Debian have the chance
17462 to include the latest version of Gnash that will make this happen, as
17463 the new release 0.8.8 was published a few weeks ago and is resting in
17464 unstable. The new version work with more sites that version 0.8.7.
17465 The Gnash maintainers have asked for a freeze exception, but the
17466 release team have not had time to reply to it yet. I hope they agree
17467 with me that Flash is important for the Debian desktop users, and thus
17468 accept the new package into Squeeze.&lt;/p&gt;
17469 </description>
17470 </item>
17471
17472 <item>
17473 <title>My first perl GUI application - controlling a Spykee robot</title>
17474 <link>http://people.skolelinux.org/pere/blog/My_first_perl_GUI_application___controlling_a_Spykee_robot.html</link>
17475 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/My_first_perl_GUI_application___controlling_a_Spykee_robot.html</guid>
17476 <pubDate>Wed, 1 Sep 2010 21:00:00 +0200</pubDate>
17477 <description>&lt;p&gt;This evening I made my first Perl GUI application. The last few
17478 days I have worked on a Perl module for controlling my recently
17479 aquired Spykee robots, and the module is now getting complete enought
17480 that it is possible to use it to control the robot driving at least.
17481 It was now time to figure out how to use it to create some GUI to
17482 allow me to drive the robot around. I picked PerlQt as I have had
17483 positive experiences with the Qt API before, and spent a few minutes
17484 browsing the web for examples. Using Qt Designer seemed like a short
17485 cut, so I ended up writing the perl GUI using Qt Designer and
17486 compiling it into a perl program using the puic program from
17487 libqt-perl. Nothing fancy yet, but it got buttons to connect and
17488 drive around.&lt;/p&gt;
17489
17490 &lt;p&gt;The perl module I have written provide a object oriented API for
17491 controlling the robot. Here is an small example on how to use it:&lt;/p&gt;
17492
17493 &lt;p&gt;&lt;pre&gt;
17494 use Spykee;
17495 Spykee::discover(sub {$robot{$_[0]} = $_[1]});
17496 my $host = (keys %robot)[0];
17497 my $spykee = Spykee-&gt;new();
17498 $spykee-&gt;contact($host, &quot;admin&quot;, &quot;admin&quot;);
17499 $spykee-&gt;left();
17500 sleep 2;
17501 $spykee-&gt;right();
17502 sleep 2;
17503 $spykee-&gt;forward();
17504 sleep 2;
17505 $spykee-&gt;back();
17506 sleep 2;
17507 $spykee-&gt;stop();
17508 &lt;/pre&gt;&lt;/p&gt;
17509
17510 &lt;p&gt;Thanks to the release of the source of the robot firmware, I could
17511 peek into the implementation at the other end to figure out how to
17512 implement the protocol used by the robot. I&#39;ve implemented several of
17513 the commands the robot understand, but is still missing the camera
17514 support to make it possible to control the robot from remote. First I
17515 want to implement support for uploading new firmware and configuring
17516 the wireless network, to make it possible to bootstrap a Spykee robot
17517 without the producers Windows and MacOSX software (I only have Linux,
17518 so I had to ask a friend to come over to get the robot testing
17519 going. :).&lt;/p&gt;
17520
17521 &lt;p&gt;Will release the source to the public soon, but need to figure out
17522 where to make it available first. I will add a link to
17523 &lt;a href=&quot;http://wiki.nuug.no/grupper/robot/&quot;&gt;the NUUG wiki&lt;/a&gt; for
17524 those that want to check back later to find it.&lt;/p&gt;
17525 </description>
17526 </item>
17527
17528 <item>
17529 <title>Broken hard link handling with sshfs</title>
17530 <link>http://people.skolelinux.org/pere/blog/Broken_hard_link_handling_with_sshfs.html</link>
17531 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Broken_hard_link_handling_with_sshfs.html</guid>
17532 <pubDate>Mon, 30 Aug 2010 19:30:00 +0200</pubDate>
17533 <description>&lt;p&gt;Just got an email from Tobias Gruetzmacher as a followup on my
17534 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Broken_umask_handling_with_sshfs.html&quot;&gt;previous
17535 post about sshfs&lt;/a&gt;. He reported another problem with sshfs. It
17536 fail to handle hard links properly. A simple way to spot this is to
17537 look at the . and .. entries in the directory tree. These should have
17538 a link count &gt;1, but on sshfs the count is 1. I just tested to see
17539 what happen when trying to hardlink, and this fail as well:&lt;/p&gt;
17540
17541 &lt;pre&gt;
17542 % ln foo bar
17543 ln: creating hard link `bar&#39; =&gt; `foo&#39;: Function not implemented
17544 %
17545 &lt;/pre&gt;
17546
17547 &lt;p&gt;I have not yet found time to implement a test for this in my file
17548 system test code, but believe having working hard links is useful to
17549 avoid surprised unix programs. Not as useful as working file locking
17550 and symlinks, which are required to get a working desktop, but useful
17551 nevertheless. :)&lt;/p&gt;
17552
17553 &lt;p&gt;The latest version of the file system test code is available via
17554 git from
17555 &lt;a href=&quot;http://github.com/gebi/fs-test&quot;&gt;http://github.com/gebi/fs-test&lt;/a&gt;&lt;/p&gt;
17556 </description>
17557 </item>
17558
17559 <item>
17560 <title>Broken umask handling with sshfs</title>
17561 <link>http://people.skolelinux.org/pere/blog/Broken_umask_handling_with_sshfs.html</link>
17562 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Broken_umask_handling_with_sshfs.html</guid>
17563 <pubDate>Thu, 26 Aug 2010 13:30:00 +0200</pubDate>
17564 <description>&lt;p&gt;My file system sematics program
17565 &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
17566 a few days ago&lt;/a&gt; is very useful to verify that a file system can
17567 work as a unix home directory,and today I had to extend it a bit. I&#39;m
17568 looking into alternatives for home directory access here at the
17569 University of Oslo, and one of the options is sshfs. My friend
17570 Finn-Arne mentioned a while back that they had used sshfs with Debian
17571 Edu, but stopped because of problems. I asked today what the problems
17572 where, and he mentioned that sshfs failed to handle umask properly.
17573 Trying to detect the problem I wrote this addition to my fs testing
17574 script:&lt;/p&gt;
17575
17576 &lt;pre&gt;
17577 mode_t touch_get_mode(const char *name, mode_t mode) {
17578 mode_t retval = 0;
17579 int fd = open(name, O_RDWR|O_CREAT|O_LARGEFILE, mode);
17580 if (-1 != fd) {
17581 unlink(name);
17582 struct stat statbuf;
17583 if (-1 != fstat(fd, &amp;statbuf)) {
17584 retval = statbuf.st_mode &amp; 0x1ff;
17585 }
17586 close(fd);
17587 }
17588 return retval;
17589 }
17590
17591 /* Try to detect problem discovered using sshfs */
17592 int test_umask(void) {
17593 printf(&quot;info: testing umask effect on file creation\n&quot;);
17594
17595 mode_t orig_umask = umask(000);
17596 mode_t newmode;
17597 if (0666 != (newmode = touch_get_mode(&quot;foobar&quot;, 0666))) {
17598 printf(&quot; error: Wrong file mode %o when creating using mode 666 and umask 000\n&quot;,
17599 newmode);
17600 }
17601 umask(007);
17602 if (0660 != (newmode = touch_get_mode(&quot;foobar&quot;, 0666))) {
17603 printf(&quot; error: Wrong file mode %o when creating using mode 666 and umask 007\n&quot;,
17604 newmode);
17605 }
17606
17607 umask (orig_umask);
17608 return 0;
17609 }
17610
17611 int main(int argc, char **argv) {
17612 [...]
17613 test_umask();
17614 return 0;
17615 }
17616 &lt;/pre&gt;
17617
17618 &lt;p&gt;Sure enough. On NFS to a netapp, I get this result:&lt;/p&gt;
17619
17620 &lt;pre&gt;
17621 Testing POSIX/Unix sematics on file system
17622 info: testing symlink creation
17623 info: testing subdirectory creation
17624 info: testing fcntl locking
17625 Read-locking 1 byte from 1073741824
17626 Read-locking 510 byte from 1073741826
17627 Unlocking 1 byte from 1073741824
17628 Write-locking 1 byte from 1073741824
17629 Write-locking 510 byte from 1073741826
17630 Unlocking 2 byte from 1073741824
17631 info: testing umask effect on file creation
17632 &lt;/pre&gt;
17633
17634 &lt;p&gt;When mounting the same directory using sshfs, I get this
17635 result:&lt;/p&gt;
17636
17637 &lt;pre&gt;
17638 Testing POSIX/Unix sematics on file system
17639 info: testing symlink creation
17640 info: testing subdirectory creation
17641 info: testing fcntl locking
17642 Read-locking 1 byte from 1073741824
17643 Read-locking 510 byte from 1073741826
17644 Unlocking 1 byte from 1073741824
17645 Write-locking 1 byte from 1073741824
17646 Write-locking 510 byte from 1073741826
17647 Unlocking 2 byte from 1073741824
17648 info: testing umask effect on file creation
17649 error: Wrong file mode 644 when creating using mode 666 and umask 000
17650 error: Wrong file mode 640 when creating using mode 666 and umask 007
17651 &lt;/pre&gt;
17652
17653 &lt;p&gt;So, I can conclude that sshfs is better than smb to a Netapp or a
17654 Windows server, but not good enough to be used as a home
17655 directory.&lt;/p&gt;
17656
17657 &lt;p&gt;Update 2010-08-26: Reported the issue in
17658 &lt;a href=&quot;http://bugs.debian.org/594498&quot;&gt;BTS report #594498&lt;/a&gt;&lt;/p&gt;
17659
17660 &lt;p&gt;Update 2010-08-27: Michael Gebetsroither report that he found the
17661 script so useful that he created a GIT repository and stored it in
17662 &lt;a href=&quot;http://github.com/gebi/fs-test&quot;&gt;http://github.com/gebi/fs-test&lt;/a&gt;.&lt;/p&gt;
17663 </description>
17664 </item>
17665
17666 <item>
17667 <title>Rob Weir: How to Crush Dissent</title>
17668 <link>http://people.skolelinux.org/pere/blog/Rob_Weir__How_to_Crush_Dissent.html</link>
17669 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Rob_Weir__How_to_Crush_Dissent.html</guid>
17670 <pubDate>Sun, 15 Aug 2010 22:20:00 +0200</pubDate>
17671 <description>&lt;p&gt;I found the notes from Rob Weir on
17672 &lt;a href=&quot;http://feedproxy.google.com/~r/robweir/antic-atom/~3/VGb23-kta8c/how-to-crush-dissent.html&quot;&gt;how
17673 to crush dissent&lt;/a&gt; matching my own thoughts on the matter quite
17674 well. Highly recommended for those wondering which road our society
17675 should go down. In my view we have been heading the wrong way for a
17676 long time.&lt;/p&gt;
17677 </description>
17678 </item>
17679
17680 <item>
17681 <title>No hardcoded config on Debian Edu clients</title>
17682 <link>http://people.skolelinux.org/pere/blog/No_hardcoded_config_on_Debian_Edu_clients.html</link>
17683 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/No_hardcoded_config_on_Debian_Edu_clients.html</guid>
17684 <pubDate>Mon, 9 Aug 2010 20:15:00 +0200</pubDate>
17685 <description>&lt;p&gt;As reported earlier, the last few days I have looked at how Debian
17686 Edu clients are configured, and tried to get rid of all hardcoded
17687 configuration settings on the clients. I believe the work to be
17688 mostly done, and the clients seem to work just fine with dynamically
17689 generated configuration.&lt;/p&gt;
17690
17691 &lt;p&gt;What is the point, you might ask? The point is to allow a Debian
17692 Edu desktop to integrate into an existing network infrastructure
17693 without any manual configuration.&lt;/p&gt;
17694
17695 &lt;p&gt;This is what happens when installing a Debian Edu client here at
17696 the University of Oslo using PXE. With the PXE installation, I am
17697 asked for language (Norwegian Bokmål), locality (Norway) and keyboard
17698 layout (no-latin1), Debian Edu profile (Roaming Workstation), if I
17699 accept to reformat the hard drive (yes), if I want to submit info to
17700 popcon.debian.org (no) and root password (secret). After answering
17701 these questions, the installer goes ahead and does its thing, and
17702 after around 50 minutes it is done. I press enter to finish the
17703 installation, and the machine reboots into KDE. When the machine is
17704 ready and kdm asks for login information, I enter my university
17705 username and password, am told by kdm that a local home directory has
17706 been created and that I must log in again, and finally log in with the
17707 same username and password to the KDE 4.4 desktop. At no point during
17708 this process did it ask for university specific settings, and all the
17709 required configuration was dynamically detected using information
17710 fetched via DHCP and DNS. The roaming workstation is now ready for
17711 use.&lt;/p&gt;
17712
17713 &lt;p&gt;How was this done, you might wonder? First of all, here is the
17714 list of things that need to be configured on the client to get it
17715 working properly out of the box:&lt;/p&gt;
17716
17717 &lt;ul&gt;
17718 &lt;li&gt;IP address/netmask and DNS server.&lt;/li&gt;
17719 &lt;li&gt;Web proxy URL.&lt;/li&gt;
17720 &lt;li&gt;LDAP server for NSS directory information (user, group, etc).&lt;/li&gt;
17721 &lt;li&gt;Kerberos server for PAM password checking.&lt;/li&gt;
17722 &lt;li&gt;SMB mount point to access the network home directory. (*)&lt;/li&gt;
17723 &lt;li&gt;Central syslog server to send syslog messages to. (*)&lt;/li&gt;
17724 &lt;li&gt;Sitesummary collector URL to submit info to central server. (*)&lt;/li&gt;
17725 &lt;/ul&gt;
17726
17727 &lt;p&gt;(Hm, did I forget anything? Let me knew if I did.)&lt;/p&gt;
17728
17729 &lt;p&gt;The points marked (*) are not required to be able to use the
17730 machine, but needed to provide central storage and allowing system
17731 administrators to track their machines. Since yesterday, everything
17732 but the sitesummary collector URL is dynamically discovered at boot
17733 and installation time in the svn version of Debian Edu.&lt;/p&gt;
17734
17735 &lt;p&gt;The IP and DNS setup is fetched during boot using DHCP as usual.
17736 When a DHCP update arrives, the proxy setup is updated by looking for
17737 http://wpat/wpad.dat and using the content of this WPAD file to
17738 configure the http and ftp proxy in /etc/environment and
17739 /etc/apt/apt.conf. I decided to update the proxy setup using a DHCP
17740 hook to ensure that the client stops using the Debian Edu proxy when
17741 it is moved outside the Debian Edu network, and instead uses any local
17742 proxy present on the new network when it moves around.&lt;/p&gt;
17743
17744 &lt;p&gt;The DNS names of the LDAP, Kerberos and syslog server and related
17745 configuration are generated using DNS information at boot. First the
17746 installer looks for a host named ldap in the current DNS domain. If
17747 not found, it looks for _ldap._tcp SRV records in DNS instead. If an
17748 LDAP server is found, its root DSE entry is requested and the
17749 attributes namingContexts and defaultNamingContext are used to
17750 determine which LDAP base to use for NSS. If there are several
17751 namingContexts attibutes and the defaultNamingContext is present, that
17752 LDAP subtree is used as the base. If defaultNamingContext is missing,
17753 the subtrees listed as namingContexts are searched in sequence for any
17754 object with class posixAccount or posixGroup, and the first one with
17755 such an object is used as the LDAP base. For Kerberos, a similar
17756 search is done by first looking for a host named kerberos, and then
17757 for the _kerberos._tcp SRV record. I&#39;ve been unable to find a way to
17758 look up the Kerberos realm, so for this the upper case string of the
17759 current DNS domain is used.&lt;/p&gt;
17760
17761 &lt;p&gt;For the syslog server, the hosts syslog and loghost are searched
17762 for, and the _syslog._udp SRV record is consulted if no such host is
17763 found. This algorithm works for both Debian Edu and the University of
17764 Oslo. A similar strategy would work for locating the sitesummary
17765 server, but have not been implemented yet. I decided to fetch and
17766 save these settings during installation, to make sure moving to a
17767 different network does not change the set of users being allowed to
17768 log in nor the passwords required to log in. Usernames and passwords
17769 will be cached by sssd when the user logs in on the Debian Edu
17770 network, and will not change as the laptop move around. For a
17771 non-roaming machine, there is no caching, but given that it is
17772 supposed to stay in place it should not matter much. Perhaps we
17773 should switch those to use sssd too?&lt;/p&gt;
17774
17775 &lt;p&gt;The user&#39;s SMB mount point for the network home directory is
17776 located when the user logs in for the first time. The LDAP server is
17777 consulted to look for the user&#39;s LDAP object and the sambaHomePath
17778 attribute is used if found. If it isn&#39;t found, the home directory
17779 path fetched from NSS is used instead. Assuming the path is of the
17780 form /site/server/directory/username, the second part is looked up in
17781 DNS and used to generate a SMB URL of the form
17782 smb://server.domain/username. This algorithm works for both Debian
17783 edu and the University of Oslo. Perhaps there are better attributes
17784 to use or a better algorithm that works for more sites, but this will
17785 do for now. :)&lt;/p&gt;
17786
17787 &lt;p&gt;This work should make it easier to integrate the Debian Edu clients
17788 into any LDAP/Kerberos infrastructure, and make the current setup even
17789 more flexible than before. I suspect it will also work for thin
17790 client servers, allowing one to easily set up LTSP and hook it into a
17791 existing network infrastructure, but I have not had time to test this
17792 yet.&lt;/p&gt;
17793
17794 &lt;p&gt;If you want to help out with implementing these things for Debian
17795 Edu, please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
17796
17797 &lt;p&gt;Update 2010-08-09: Simon Farnsworth gave me a heads-up on how to
17798 detect Kerberos realm from DNS, by looking for _kerberos TXT entries
17799 before falling back to the upper case DNS domain name. Will have to
17800 implement it for Debian Edu. :)&lt;/p&gt;
17801 </description>
17802 </item>
17803
17804 <item>
17805 <title>Testing if a file system can be used for home directories...</title>
17806 <link>http://people.skolelinux.org/pere/blog/Testing_if_a_file_system_can_be_used_for_home_directories___.html</link>
17807 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Testing_if_a_file_system_can_be_used_for_home_directories___.html</guid>
17808 <pubDate>Sun, 8 Aug 2010 21:20:00 +0200</pubDate>
17809 <description>&lt;p&gt;A few years ago, I was involved in a project planning to use
17810 Windows file servers as home directory servers for Debian
17811 Edu/Skolelinux machines. This was thought to be no problem, as the
17812 access would be through the SMB network file system protocol, and we
17813 knew other sites used SMB with unix and samba as the file server to
17814 mount home directories without any problems. But, after months of
17815 struggling, we had to conclude that our goal was impossible.&lt;/p&gt;
17816
17817 &lt;p&gt;The reason is simply that while SMB can be used for home
17818 directories when the file server is Samba running on Unix, this only
17819 work because of Samba have some extensions and the fact that the
17820 underlying file system is a unix file system. When using a Windows
17821 file server, the underlying file system do not have POSIX semantics,
17822 and several programs will fail if the users home directory where they
17823 want to store their configuration lack POSIX semantics.&lt;/p&gt;
17824
17825 &lt;p&gt;As part of this work, I wrote a small C program I want to share
17826 with you all, to replicate a few of the problematic applications (like
17827 OpenOffice.org and GCompris) and see if the file system was working as
17828 it should. If you find yourself in spooky file system land, it might
17829 help you find your way out again. This is the fs-test.c source:&lt;/p&gt;
17830
17831 &lt;pre&gt;
17832 /*
17833 * Some tests to check the file system sematics. Used to verify that
17834 * CIFS from a windows server do not work properly as a linux home
17835 * directory.
17836 * License: GPL v2 or later
17837 *
17838 * needs libsqlite3-dev and build-essential installed
17839 * compile with: gcc -Wall -lsqlite3 -DTEST_SQLITE fs-test.c -o fs-test
17840 */
17841
17842 #define _FILE_OFFSET_BITS 64
17843 #define _LARGEFILE_SOURCE 1
17844 #define _LARGEFILE64_SOURCE 1
17845
17846 #define _GNU_SOURCE /* for asprintf() */
17847
17848 #include &amp;lt;errno.h&gt;
17849 #include &amp;lt;fcntl.h&gt;
17850 #include &amp;lt;stdio.h&gt;
17851 #include &amp;lt;string.h&gt;
17852 #include &amp;lt;stdlib.h&gt;
17853 #include &amp;lt;sys/file.h&gt;
17854 #include &amp;lt;sys/stat.h&gt;
17855 #include &amp;lt;sys/types.h&gt;
17856 #include &amp;lt;unistd.h&gt;
17857
17858 #ifdef TEST_SQLITE
17859 /*
17860 * Test sqlite open, as done by gcompris require the libsqlite3-dev
17861 * package and linking with -lsqlite3. A more low level test is
17862 * below.
17863 * See also &amp;lt;URL: http://www.sqlite.org./faq.html#q5 &gt;.
17864 */
17865 #include &amp;lt;sqlite3.h&gt;
17866 #define CREATE_TABLE_USERS \
17867 &quot;CREATE TABLE users (user_id INT UNIQUE, login TEXT, lastname TEXT, firstname TEXT, birthdate TEXT, class_id INT ); &quot;
17868 int test_sqlite_open(void) {
17869 char *zErrMsg;
17870 char *name = &quot;testsqlite.db&quot;;
17871 sqlite3 *db=NULL;
17872 unlink(name);
17873 int rc = sqlite3_open(name, &amp;db);
17874 if( rc ){
17875 printf(&quot;error: sqlite open of %s failed: %s\n&quot;, name, sqlite3_errmsg(db));
17876 sqlite3_close(db);
17877 return -1;
17878 }
17879
17880 /* create tables */
17881 rc = sqlite3_exec(db,CREATE_TABLE_USERS, NULL, 0, &amp;zErrMsg);
17882 if( rc != SQLITE_OK ){
17883 printf(&quot;error: sqlite table create failed: %s\n&quot;, zErrMsg);
17884 sqlite3_close(db);
17885 return -1;
17886 }
17887 printf(&quot;info: sqlite worked\n&quot;);
17888 sqlite3_close(db);
17889 return 0;
17890 }
17891 #endif /* TEST_SQLITE */
17892
17893 /*
17894 * Demonstrate locking issue found in gcompris using sqlite3. This
17895 * work with ext3, but not with cifs server on Windows 2003. This is
17896 * done in the sqlite3 library.
17897 * See also
17898 * &amp;lt;URL:http://www.cygwin.com/ml/cygwin/2001-08/msg00854.html&gt; and the
17899 * POSIX specification
17900 * &amp;lt;URL:http://www.opengroup.org/onlinepubs/009695399/functions/fcntl.html&gt;.
17901 */
17902 int test_gcompris_locking(void) {
17903 struct flock fl;
17904 char *name = &quot;testsqlite.db&quot;;
17905 unlink(name);
17906 int fd = open(name, O_RDWR|O_CREAT|O_LARGEFILE, 0644);
17907 printf(&quot;info: testing fcntl locking\n&quot;);
17908
17909 fl.l_whence = SEEK_SET;
17910 fl.l_pid = getpid();
17911 printf(&quot; Read-locking 1 byte from 1073741824&quot;);
17912 fl.l_start = 1073741824;
17913 fl.l_len = 1;
17914 fl.l_type = F_RDLCK;
17915 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
17916
17917 printf(&quot; Read-locking 510 byte from 1073741826&quot;);
17918 fl.l_start = 1073741826;
17919 fl.l_len = 510;
17920 fl.l_type = F_RDLCK;
17921 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
17922
17923 printf(&quot; Unlocking 1 byte from 1073741824&quot;);
17924 fl.l_start = 1073741824;
17925 fl.l_len = 1;
17926 fl.l_type = F_UNLCK;
17927 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
17928
17929 printf(&quot; Write-locking 1 byte from 1073741824&quot;);
17930 fl.l_start = 1073741824;
17931 fl.l_len = 1;
17932 fl.l_type = F_WRLCK;
17933 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
17934
17935 printf(&quot; Write-locking 510 byte from 1073741826&quot;);
17936 fl.l_start = 1073741826;
17937 fl.l_len = 510;
17938 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
17939
17940 printf(&quot; Unlocking 2 byte from 1073741824&quot;);
17941 fl.l_start = 1073741824;
17942 fl.l_len = 2;
17943 fl.l_type = F_UNLCK;
17944 if (0 != fcntl(fd, F_SETLK, &amp;fl) ) printf(&quot; - error!\n&quot;); else printf(&quot;\n&quot;);
17945
17946 close(fd);
17947 return 0;
17948 }
17949
17950 /*
17951 * Test if permissions of freshly created directories allow entries
17952 * below them. This was a problem with OpenOffice.org and gcompris.
17953 * Mounting with option &#39;sync&#39; seem to solve this problem while
17954 * slowing down file operations.
17955 */
17956 int test_subdirectory_creation(void) {
17957 #define LEVELS 5
17958 char *path = strdup(&quot;test&quot;);
17959 char *dirs[LEVELS];
17960 int level;
17961 printf(&quot;info: testing subdirectory creation\n&quot;);
17962 for (level = 0; level &amp;lt; LEVELS; level++) {
17963 char *newpath = NULL;
17964 if (-1 == mkdir(path, 0777)) {
17965 printf(&quot; error: Unable to create directory &#39;%s&#39;: %s\n&quot;,
17966 path, strerror(errno));
17967 break;
17968 }
17969 asprintf(&amp;newpath, &quot;%s/%s&quot;, path, &quot;test&quot;);
17970 free(path);
17971 path = newpath;
17972 }
17973 return 0;
17974 }
17975
17976 /*
17977 * Test if symlinks can be created. This was a problem detected with
17978 * KDE.
17979 */
17980 int test_symlinks(void) {
17981 printf(&quot;info: testing symlink creation\n&quot;);
17982 unlink(&quot;symlink&quot;);
17983 if (-1 == symlink(&quot;file&quot;, &quot;symlink&quot;))
17984 printf(&quot; error: Unable to create symlink\n&quot;);
17985 return 0;
17986 }
17987
17988 int main(int argc, char **argv) {
17989 printf(&quot;Testing POSIX/Unix sematics on file system\n&quot;);
17990 test_symlinks();
17991 test_subdirectory_creation();
17992 #ifdef TEST_SQLITE
17993 test_sqlite_open();
17994 #endif /* TEST_SQLITE */
17995 test_gcompris_locking();
17996 return 0;
17997 }
17998 &lt;/pre&gt;
17999
18000 &lt;p&gt;When everything is working, it should print something like
18001 this:&lt;/p&gt;
18002
18003 &lt;pre&gt;
18004 Testing POSIX/Unix sematics on file system
18005 info: testing symlink creation
18006 info: testing subdirectory creation
18007 info: sqlite worked
18008 info: testing fcntl locking
18009 Read-locking 1 byte from 1073741824
18010 Read-locking 510 byte from 1073741826
18011 Unlocking 1 byte from 1073741824
18012 Write-locking 1 byte from 1073741824
18013 Write-locking 510 byte from 1073741826
18014 Unlocking 2 byte from 1073741824
18015 &lt;/pre&gt;
18016
18017 &lt;p&gt;I do not remember the exact details of the problems we saw, but one
18018 of them was with locking, where if I remember correctly, POSIX allow a
18019 read-only lock to be upgraded to a read-write lock without unlocking
18020 the read-only lock (while Windows do not). Another was a bug in the
18021 CIFS/SMB client implementation in the Linux kernel where directory
18022 meta information would be wrong for a fraction of a second, making
18023 OpenOffice.org fail to create its deep directory tree because it was
18024 not allowed to create files in its freshly created directory.&lt;/p&gt;
18025
18026 &lt;p&gt;Anyway, here is a nice tool for your tool box, might you never need
18027 it. :)&lt;/p&gt;
18028
18029 &lt;p&gt;Update 2010-08-27: Michael Gebetsroither report that he found the
18030 script so useful that he created a GIT repository and stored it in
18031 &lt;a href=&quot;http://github.com/gebi/fs-test&quot;&gt;http://github.com/gebi/fs-test&lt;/a&gt;.&lt;/p&gt;
18032 </description>
18033 </item>
18034
18035 <item>
18036 <title>Autodetecting Client setup for roaming workstations in Debian Edu</title>
18037 <link>http://people.skolelinux.org/pere/blog/Autodetecting_Client_setup_for_roaming_workstations_in_Debian_Edu.html</link>
18038 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Autodetecting_Client_setup_for_roaming_workstations_in_Debian_Edu.html</guid>
18039 <pubDate>Sat, 7 Aug 2010 14:45:00 +0200</pubDate>
18040 <description>&lt;p&gt;A few days ago, I
18041 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Debian_Edu_roaming_workstation___at_the_university_of_Oslo.html&quot;&gt;tried
18042 to install&lt;/a&gt; a Roaming workation profile from Debian Edu/Squeeze
18043 while on the university network here at the University of Oslo, and
18044 noticed how much had to change to get it operational using the
18045 university infrastructure. It was fairly easy, but it occured to me
18046 that Debian Edu would improve a lot if I could get the client to
18047 connect without any changes at all, and thus let the client configure
18048 itself during installation and first boot to use the infrastructure
18049 around it. Now I am a huge step further along that road.&lt;/p&gt;
18050
18051 &lt;p&gt;With our current squeeze-test packages, I can select the roaming
18052 workstation profile and get a working laptop connecting to the
18053 university LDAP server for user and group and our active directory
18054 servers for Kerberos authentication. All this without any
18055 configuration at all during installation. My users home directory got
18056 a bookmark in the KDE menu to mount it via SMB, with the correct URL.
18057 In short, openldap and sssd is correctly configured. In addition to
18058 this, the client look for http://wpad/wpad.dat to configure a web
18059 proxy, and when it fail to find it no proxy settings are stored in
18060 /etc/environment and /etc/apt/apt.conf. Iceweasel and KDE is
18061 configured to look for the same wpad configuration and also do not use
18062 a proxy when at the university network. If the machine is moved to a
18063 network with such wpad setup, it would automatically use it when DHCP
18064 gave it a IP address.&lt;/p&gt;
18065
18066 &lt;p&gt;The LDAP server is located using DNS, by first looking for the DNS
18067 entry ldap.$domain. If this do not exist, it look for the
18068 _ldap._tcp.$domain SRV records and use the first one as the LDAP
18069 server. Next, it connects to the LDAP server and search all
18070 namingContexts entries for posixAccount or posixGroup objects, and
18071 pick the first one as the LDAP base. For Kerberos, a similar
18072 algorithm is used to locate the LDAP server, and the realm is the
18073 uppercase version of $domain.&lt;/p&gt;
18074
18075 &lt;p&gt;So, what is not working, you might ask. SMB mounting my home
18076 directory do not work. No idea why, but suspected the incorrect
18077 Kerberos settings in /etc/krb5.conf and /etc/samba/smb.conf might be
18078 the cause. These are not properly configured during installation, and
18079 had to be hand-edited to get the correct Kerberos realm and server,
18080 but SMB mounting still do not work. :(&lt;/p&gt;
18081
18082 &lt;p&gt;With this automatic configuration in place, I expect a Debian Edu
18083 roaming profile installation would be able to automatically detect and
18084 connect to any site using LDAP and Kerberos for NSS directory and PAM
18085 authentication. It should also work out of the box in a Active
18086 Directory environment providing posixAccount and posixGroup objects
18087 with UID and GID values.&lt;/p&gt;
18088
18089 &lt;p&gt;If you want to help out with implementing these things for Debian
18090 Edu, please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
18091 </description>
18092 </item>
18093
18094 <item>
18095 <title>Debian Edu roaming workstation - at the university of Oslo</title>
18096 <link>http://people.skolelinux.org/pere/blog/Debian_Edu_roaming_workstation___at_the_university_of_Oslo.html</link>
18097 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu_roaming_workstation___at_the_university_of_Oslo.html</guid>
18098 <pubDate>Tue, 3 Aug 2010 23:30:00 +0200</pubDate>
18099 <description>&lt;p&gt;The new roaming workstation profile in Debian Edu/Squeeze is fairly
18100 similar to the laptop setup am I working on using Ubuntu for the
18101 University of Oslo, and just for the heck of it, I tested today how
18102 hard it would be to integrate that profile into the university
18103 infrastructure. In this case, it is the university LDAP server,
18104 Active Directory Kerberos server and SMB mounting from the Netapp file
18105 servers.&lt;/p&gt;
18106
18107 &lt;p&gt;I was pleasantly surprised that the only three files needed to be
18108 changed (/etc/sssd/sssd.conf, /etc/ldap.conf and
18109 /etc/mklocaluser.d/20-debian-edu-config) and one file had to be added
18110 (/usr/share/perl5/Debian/Edu_Local.pm), to get the client working.
18111 Most of the changes were to get the client to use the university LDAP
18112 for NSS and Kerberos server for PAM, but one was to change a hard
18113 coded DNS domain name in the mklocaluser hook from .intern to
18114 .uio.no.&lt;/p&gt;
18115
18116 &lt;p&gt;This testing was so encouraging, that I went ahead and adjusted the
18117 Debian Edu scripts and setup in subversion to centralise the roaming
18118 workstation setup a bit more and avoid the hardcoded DNS domain name,
18119 so that when I test this tomorrow, I expect to get away with modifying
18120 only /etc/sssd/sssd.conf and /etc/ldap.conf to get it to use the
18121 university servers.&lt;/p&gt;
18122
18123 &lt;p&gt;My goal is to get the clients to have no hardcoded settings and
18124 fetch all their initial setup during installation and first boot, to
18125 allow them to be inserted also into environments where the default
18126 setup in Debian Edu has been changed or as with the university, where
18127 the environment is different but provides the protocols Debian Edu
18128 uses.&lt;/p&gt;
18129 </description>
18130 </item>
18131
18132 <item>
18133 <title>Circular package dependencies harms apt recovery</title>
18134 <link>http://people.skolelinux.org/pere/blog/Circular_package_dependencies_harms_apt_recovery.html</link>
18135 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Circular_package_dependencies_harms_apt_recovery.html</guid>
18136 <pubDate>Tue, 27 Jul 2010 23:50:00 +0200</pubDate>
18137 <description>&lt;p&gt;I discovered this while doing
18138 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Automatic_upgrade_testing_from_Lenny_to_Squeeze.html&quot;&gt;automated
18139 testing of upgrades from Debian Lenny to Squeeze&lt;/a&gt;. A few packages
18140 in Debian still got circular dependencies, and it is often claimed
18141 that apt and aptitude should be able to handle this just fine, but
18142 some times these dependency loops causes apt to fail.&lt;/p&gt;
18143
18144 &lt;p&gt;An example is from todays
18145 &lt;a href=&quot;http://people.skolelinux.org/~pere/debian-upgrade-testing//test-20100727-lenny-squeeze-kde-aptitude.txt&quot;&gt;upgrade
18146 of KDE using aptitude&lt;/a&gt;. In it, a bug in kdebase-workspace-data
18147 causes perl-modules to fail to upgrade. The cause is simple. If a
18148 package fail to unpack, then only part of packages with the circular
18149 dependency might end up being unpacked when unpacking aborts, and the
18150 ones already unpacked will fail to configure in the recovery phase
18151 because its dependencies are unavailable.&lt;/p&gt;
18152
18153 &lt;p&gt;In this log, the problem manifest itself with this error:&lt;/p&gt;
18154
18155 &lt;blockquote&gt;&lt;pre&gt;
18156 dpkg: dependency problems prevent configuration of perl-modules:
18157 perl-modules depends on perl (&gt;= 5.10.1-1); however:
18158 Version of perl on system is 5.10.0-19lenny2.
18159 dpkg: error processing perl-modules (--configure):
18160 dependency problems - leaving unconfigured
18161 &lt;/pre&gt;&lt;/blockquote&gt;
18162
18163 &lt;p&gt;The perl/perl-modules circular dependency is already
18164 &lt;a href=&quot;http://bugs.debian.org/527917&quot;&gt;reported as a bug&lt;/a&gt;, and will
18165 hopefully be solved as soon as possible, but it is not the only one,
18166 and each one of these loops in the dependency tree can cause similar
18167 failures. Of course, they only occur when there are bugs in other
18168 packages causing the unpacking to fail, but it is rather nasty when
18169 the failure of one package causes the problem to become worse because
18170 of dependency loops.&lt;/p&gt;
18171
18172 &lt;p&gt;Thanks to
18173 &lt;a href=&quot;http://lists.debian.org/debian-devel/2010/06/msg00116.html&quot;&gt;the
18174 tireless effort by Bill Allombert&lt;/a&gt;, the number of circular
18175 dependencies
18176 &lt;a href=&quot;http://debian.semistable.com/debgraph.out.html&quot;&gt;left in Debian
18177 is dropping&lt;/a&gt;, and perhaps it will reach zero one day. :)&lt;/p&gt;
18178
18179 &lt;p&gt;Todays testing also exposed a bug in
18180 &lt;a href=&quot;http://bugs.debian.org/590605&quot;&gt;update-notifier&lt;/a&gt; and
18181 &lt;a href=&quot;http://bugs.debian.org/590604&quot;&gt;different behaviour&lt;/a&gt; between
18182 apt-get and aptitude, the latter possibly caused by some circular
18183 dependency. Reported both to BTS to try to get someone to look at
18184 it.&lt;/p&gt;
18185 </description>
18186 </item>
18187
18188 <item>
18189 <title>First Debian Edu test release (alpha0) based on Squeeze is released</title>
18190 <link>http://people.skolelinux.org/pere/blog/First_Debian_Edu_test_release__alpha0__based_on_Squeeze_is_released.html</link>
18191 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/First_Debian_Edu_test_release__alpha0__based_on_Squeeze_is_released.html</guid>
18192 <pubDate>Tue, 27 Jul 2010 17:45:00 +0200</pubDate>
18193 <description>&lt;p&gt;I just posted this announcement culminating several months of work
18194 with the next Debian Edu release. Not nearly done, but one major step
18195 completed.&lt;/p&gt;
18196
18197 &lt;blockquote&gt;
18198 &lt;p&gt;This is the first test release based on Squeeze. The focus of this
18199 release is to test the user application selection. To have a look,
18200 install the standalone profile and let the developers know if the set
18201 of installed packages i.e. applications should be modified. If some
18202 user application is missing, or if there are some applications that no
18203 longer make sense to be included in Debian Edu, please let us know.
18204 Also, if a useful application is missing the translation for your
18205 language of choice, please let us know too.&lt;/p&gt;
18206
18207 &lt;p&gt;In addition, feedback and help to polish the desktop (menus,
18208 artwork, starters, etc.) is appreciated. We would like to ship a nice
18209 and handy KDE4 desktop targeted for schools out of the box.&lt;/p&gt;
18210
18211 &lt;p&gt;The other profiles should be installable, but there is a lot more
18212 work left to be done before they are ready, so do not expect to
18213 much.&lt;/p&gt;
18214
18215 &lt;p&gt;Changes compared to the lenny based version&lt;/p&gt;
18216
18217 &lt;ul&gt;
18218 &lt;li&gt;Everything from Debian Squeeze
18219 &lt;ul&gt;
18220 &lt;li&gt;Desktop environment KDE 4.4 =&gt; the new KDE desktop in
18221 combination with some new artwork
18222 &lt;li&gt;Web browser Iceweasel 3.5
18223 &lt;li&gt;OpenOffice.org 3.2
18224 &lt;li&gt;Educational toolbox GCompris 9.3
18225 &lt;li&gt;Music creator Rosegarden 10.04.2
18226 &lt;li&gt;Image editor Gimp 2.6.10
18227 &lt;li&gt;Virtual universe Celestia 1.6.0
18228 &lt;li&gt;Virtual stargazer Stellarium 0.10.4
18229 &lt;li&gt;3D modeler Blender 2.49.2 (new application)
18230 &lt;li&gt;Video editor Kdenlive 0.7.7 (new application)
18231 &lt;/ul&gt;&lt;/li&gt;
18232 &lt;li&gt;Now using Kerberos for password checking (migration not finished).
18233 Enabled for:
18234 &lt;ul&gt;
18235 &lt;li&gt;PAM
18236 &lt;li&gt;LDAP
18237 &lt;li&gt;IMAP
18238 &lt;li&gt;SMTP (sender verification)
18239 &lt;/ul&gt;
18240 &lt;/li&gt;
18241 &lt;li&gt;New experimental roaming workstation profile for laptops.&lt;/li&gt;
18242 &lt;li&gt;Show welcome page to users when they first log in. The URL is
18243 fetched from LDAP.&lt;/li&gt;
18244 &lt;li&gt;New LXDE desktop option, in addition to KDE (default) and Gnome.&lt;/li&gt;
18245 &lt;li&gt;General cleanup (not finished)&lt;/li&gt;
18246 &lt;/ul&gt;
18247 &lt;p&gt;The following features are not working as they should&lt;/p&gt;
18248
18249 &lt;ul&gt;
18250 &lt;li&gt;No web based administration tool for creating users and groups. The
18251 scripts ldap-createuser-krb and ldap-add-user-to-group can be used
18252 for testing.&lt;/li&gt;
18253 &lt;li&gt;DVD installs are missing debian-installer images for the PXE boot,
18254 and do not set up the PXE menu on eth0 because of this. LTSP
18255 clients should still boot from eth1 on thin client servers.&lt;/li&gt;
18256 &lt;li&gt;The restructured KDE menu is not implemented.&lt;/li&gt;
18257 &lt;li&gt;The LDAP server setup need to be reviewed for security.&lt;/li&gt;
18258 &lt;li&gt;The LDAP directory structure need to be reworked.&lt;/li&gt;
18259 &lt;li&gt;Different sets of packages are installed when using the DVD and the
18260 netinst CD. More packages are installed using the netinst CD.&lt;/li&gt;
18261 &lt;li&gt;The jackd package fail to install. This is believed to be caused by
18262 some ongoing transition, and hopefully should be solved soon. The
18263 jackd1 package can be installed manually for those that need it.&lt;/li&gt;
18264 &lt;li&gt;Some packages lack translations. See
18265 http://wiki.debian.org/DebianEdu/Status/Squeeze for updated status,
18266 and help out with translations.&lt;/li&gt;
18267 &lt;/ul&gt;
18268
18269 &lt;p&gt;To download this multiarch netinstall release you can use&lt;/p&gt;
18270
18271 &lt;ul&gt;
18272 &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;
18273 &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;
18274 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-CD.iso&lt;/li&gt;
18275 &lt;/ul&gt;
18276 &lt;p&gt;To download this multiarch dvd release you can use&lt;/p&gt;
18277
18278 &lt;ul&gt;
18279 &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;
18280 &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;
18281 &lt;li&gt;rsync -avzP ftp.skolelinux.org::skolelinux-cd/squeeze-alpha/debian-edu-6.0.0+edua0-DVD.iso&lt;/li&gt;
18282 &lt;/ul&gt;
18283
18284 &lt;p&gt;There is no source DVD available yet. It will be prepared when we
18285 get closer to the final release.&lt;/p&gt;
18286
18287 &lt;p&gt;The MD5SUM of these images are&lt;/p&gt;
18288
18289 &lt;ul&gt;
18290 &lt;li&gt;3dbf45d59f42a53518b6e3c9ec3b5eb6 debian-edu-6.0.0+edua0-CD.iso&lt;/li&gt;
18291 &lt;li&gt;22f2cbfce281d1c6e478be452638675d debian-edu-6.0.0+edua0-DVD.iso&lt;/li&gt;
18292 &lt;/ul&gt;
18293
18294 &lt;p&gt;The SHA1SUM of these images are&lt;/p&gt;
18295 &lt;ul&gt;
18296 &lt;li&gt;c53d1b69b40cf37cd27aefaf33f6f6a3821bedf0 debian-edu-6.0.0+edua0-CD.iso&lt;/li&gt;
18297 &lt;li&gt;2ec29d7db676d59d32197b05c277ffe16348376c debian-edu-6.0.0+edua0-DVD.iso&lt;/li&gt;
18298 &lt;/ul&gt;
18299 &lt;p&gt;How to report bugs:
18300 http://wiki.debian.org/DebianEdu/HowTo/ReportBugsInBugzilla&lt;/p&gt;
18301
18302 &lt;p&gt;Please direct replies to debian-edu@lists.debian.org&lt;/p&gt;
18303 &lt;/blockquote&gt;
18304 </description>
18305 </item>
18306
18307 <item>
18308 <title>One step closer to single signon in Debian Edu</title>
18309 <link>http://people.skolelinux.org/pere/blog/One_step_closer_to_single_signon_in_Debian_Edu.html</link>
18310 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/One_step_closer_to_single_signon_in_Debian_Edu.html</guid>
18311 <pubDate>Sun, 25 Jul 2010 10:00:00 +0200</pubDate>
18312 <description>&lt;p&gt;The last few months me and the other Debian Edu developers have
18313 been working hard to get the Debian/Squeeze based version of Debian
18314 Edu/Skolelinux into shape. This future version will use Kerberos for
18315 authentication, and services are slowly migrated to single signon,
18316 getting rid of password questions one at the time.&lt;/p&gt;
18317
18318 &lt;p&gt;It will also feature a roaming workstation profile with local home
18319 directory, for laptops that are only some times on the Skolelinux
18320 network, and for this profile a shortcut is created in Gnome and KDE
18321 to gain access to the users home directory on the file server. This
18322 shortcut uses SMB at the moment, and yesterday I had time to test if
18323 SMB mounting had started working in KDE after we added the cifs-utils
18324 package. I was pleasantly surprised how well it worked.&lt;/p&gt;
18325
18326 &lt;p&gt;Thanks to the recent changes to our samba configuration to get it
18327 to use Kerberos for authentication, there were no question about user
18328 password when mounting the SMB volume. A simple click on the shortcut
18329 in the KDE menu, and a window with the home directory popped
18330 up. :)&lt;/p&gt;
18331
18332 &lt;p&gt;One step closer to a single signon solution out of the box in
18333 Debian Edu. We already had PAM, LDAP, IMAP and SMTP in place, and now
18334 also Samba. Next step is Cups and hopefully also NFS.&lt;/p&gt;
18335
18336 &lt;p&gt;We had planned a alpha0 release of Debian Edu for today, but thanks
18337 to the autobuilder administrators for some architectures being slow to
18338 sign packages, we are still missing the fixed LTSP package we need for
18339 the release. It was uploaded three days ago with urgency=high, and if
18340 it had entered testing yesterday we would have been able to test it in
18341 time for a alpha0 release today. As the binaries for ia64 and powerpc
18342 still not uploaded to the Debian archive, we need to delay the alpha
18343 release another day.&lt;/p&gt;
18344
18345 &lt;p&gt;If you want to help out with implementing Kerberos for Debian Edu,
18346 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
18347 </description>
18348 </item>
18349
18350 <item>
18351 <title>OpenStreetmap one step closer to having routing on its front page</title>
18352 <link>http://people.skolelinux.org/pere/blog/OpenStreetmap_one_step_closer_to_having_routing_on_its_front_page.html</link>
18353 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/OpenStreetmap_one_step_closer_to_having_routing_on_its_front_page.html</guid>
18354 <pubDate>Sun, 18 Jul 2010 16:45:00 +0200</pubDate>
18355 <description>&lt;p&gt;Thanks to
18356 &lt;a href=&quot;http://feedproxy.google.com/~r/Opengeodata/~3/wUTCzDZk3lc/project-of-the-week-which-way-home&quot;&gt;todays
18357 opengeodata blog entry&lt;/a&gt;, I just discovered that the
18358 OpenStreetmap.org site have gotten
18359 &lt;a href=&quot;http://nroets.dev.openstreetmap.org/demo/index.html?layers=B000FTFTT&quot;&gt;support
18360 for calculating routes&lt;/a&gt;. The support is still experimental and
18361 only available from the development server, until more experience is
18362 gathered on the user interface and any scalability issues.&lt;/p&gt;
18363
18364 &lt;p&gt;Earlier, the routing I knew about using the OpenStreetmap.org data
18365 was provided by &lt;a href=&quot;http://maps.cloudmade.com/&quot;&gt;Cloudmade&lt;/a&gt;,
18366 but having it on the main page is required to make everyone aware of
18367 the issue. I&#39;ve had people reject Openstreetmap.org as a viable
18368 alternative for them because the front page lacked routing support,
18369 and I hope their needs will be catered for when routing show up on the
18370 www.openstreetmap.org front page.&lt;/p&gt;
18371 </description>
18372 </item>
18373
18374 <item>
18375 <title>What are they searching for - PowerDNS and ISC DHCP in LDAP</title>
18376 <link>http://people.skolelinux.org/pere/blog/What_are_they_searching_for___PowerDNS_and_ISC_DHCP_in_LDAP.html</link>
18377 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/What_are_they_searching_for___PowerDNS_and_ISC_DHCP_in_LDAP.html</guid>
18378 <pubDate>Sat, 17 Jul 2010 21:00:00 +0200</pubDate>
18379 <description>&lt;p&gt;This is a
18380 &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;
18381 on my
18382 &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
18383 work&lt;/a&gt; on
18384 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Combining_PowerDNS_and_ISC_DHCP_LDAP_objects.html&quot;&gt;merging
18385 all&lt;/a&gt; the computer related LDAP objects in Debian Edu.&lt;/p&gt;
18386
18387 &lt;p&gt;As a step to try to see if it possible to merge the DNS and DHCP
18388 LDAP objects, I have had a look at how the packages pdns-backend-ldap
18389 and dhcp3-server-ldap in Debian use the LDAP server. The two
18390 implementations are quite different in how they use LDAP.&lt;/p&gt;
18391
18392 To get this information, I started slapd with debugging enabled and
18393 dumped the debug output to a file to get the LDAP searches performed
18394 on a Debian Edu main-server. Here is a summary.
18395
18396 &lt;p&gt;&lt;strong&gt;powerdns&lt;/strong&gt;&lt;/p&gt;
18397
18398 &lt;a href=&quot;http://www.linuxnetworks.de/doc/index.php/PowerDNS_LDAP_Backend&quot;&gt;Clues
18399 on how to&lt;/a&gt; set up PowerDNS to use a LDAP backend is available on
18400 the web.
18401
18402 &lt;p&gt;PowerDNS have two modes of operation using LDAP as its backend.
18403 One &quot;strict&quot; mode where the forward and reverse DNS lookups are done
18404 using the same LDAP objects, and a &quot;tree&quot; mode where the forward and
18405 reverse entries are in two different subtrees in LDAP with a structure
18406 based on the DNS names, as in tjener.intern and
18407 2.2.0.10.in-addr.arpa.&lt;/p&gt;
18408
18409 &lt;p&gt;In tree mode, the server is set up to use a LDAP subtree as its
18410 base, and uses a &quot;base&quot; scoped search for the DNS name by adding
18411 &quot;dc=tjener,dc=intern,&quot; to the base with a filter for
18412 &quot;(associateddomain=tjener.intern)&quot; for the forward entry and
18413 &quot;dc=2,dc=2,dc=0,dc=10,dc=in-addr,dc=arpa,&quot; with a filter for
18414 &quot;(associateddomain=2.2.0.10.in-addr.arpa)&quot; for the reverse entry. For
18415 forward entries, it is looking for attributes named dnsttl, arecord,
18416 nsrecord, cnamerecord, soarecord, ptrrecord, hinforecord, mxrecord,
18417 txtrecord, rprecord, afsdbrecord, keyrecord, aaaarecord, locrecord,
18418 srvrecord, naptrrecord, kxrecord, certrecord, dsrecord, sshfprecord,
18419 ipseckeyrecord, rrsigrecord, nsecrecord, dnskeyrecord, dhcidrecord,
18420 spfrecord and modifytimestamp. For reverse entries it is looking for
18421 the attributes dnsttl, arecord, nsrecord, cnamerecord, soarecord,
18422 ptrrecord, hinforecord, mxrecord, txtrecord, rprecord, aaaarecord,
18423 locrecord, srvrecord, naptrrecord and modifytimestamp. The equivalent
18424 ldapsearch commands could look like this:&lt;/p&gt;
18425
18426 &lt;blockquote&gt;&lt;pre&gt;
18427 ldapsearch -h ldap \
18428 -b dc=tjener,dc=intern,ou=hosts,dc=skole,dc=skolelinux,dc=no \
18429 -s base -x &#39;(associateddomain=tjener.intern)&#39; dNSTTL aRecord nSRecord \
18430 cNAMERecord sOARecord pTRRecord hInfoRecord mXRecord tXTRecord \
18431 rPRecord aFSDBRecord KeyRecord aAAARecord lOCRecord sRVRecord \
18432 nAPTRRecord kXRecord certRecord dSRecord sSHFPRecord iPSecKeyRecord \
18433 rRSIGRecord nSECRecord dNSKeyRecord dHCIDRecord sPFRecord modifyTimestamp
18434
18435 ldapsearch -h ldap \
18436 -b dc=2,dc=2,dc=0,dc=10,dc=in-addr,dc=arpa,ou=hosts,dc=skole,dc=skolelinux,dc=no \
18437 -s base -x &#39;(associateddomain=2.2.0.10.in-addr.arpa)&#39;
18438 dnsttl, arecord, nsrecord, cnamerecord soarecord ptrrecord \
18439 hinforecord mxrecord txtrecord rprecord aaaarecord locrecord \
18440 srvrecord naptrrecord modifytimestamp
18441 &lt;/pre&gt;&lt;/blockquote&gt;
18442
18443 &lt;p&gt;In Debian Edu/Lenny, the PowerDNS tree mode is used with
18444 ou=hosts,dc=skole,dc=skolelinux,dc=no as the base, and these are two
18445 example LDAP objects used there. In addition to these objects, the
18446 parent objects all th way up to ou=hosts,dc=skole,dc=skolelinux,dc=no
18447 also exist.&lt;/p&gt;
18448
18449 &lt;blockquote&gt;&lt;pre&gt;
18450 dn: dc=tjener,dc=intern,ou=hosts,dc=skole,dc=skolelinux,dc=no
18451 objectclass: top
18452 objectclass: dnsdomain
18453 objectclass: domainrelatedobject
18454 dc: tjener
18455 arecord: 10.0.2.2
18456 associateddomain: tjener.intern
18457
18458 dn: dc=2,dc=2,dc=0,dc=10,dc=in-addr,dc=arpa,ou=hosts,dc=skole,dc=skolelinux,dc=no
18459 objectclass: top
18460 objectclass: dnsdomain2
18461 objectclass: domainrelatedobject
18462 dc: 2
18463 ptrrecord: tjener.intern
18464 associateddomain: 2.2.0.10.in-addr.arpa
18465 &lt;/pre&gt;&lt;/blockquote&gt;
18466
18467 &lt;p&gt;In strict mode, the server behaves differently. When looking for
18468 forward DNS entries, it is doing a &quot;subtree&quot; scoped search with the
18469 same base as in the tree mode for a object with filter
18470 &quot;(associateddomain=tjener.intern)&quot; and requests the attributes dnsttl,
18471 arecord, nsrecord, cnamerecord, soarecord, ptrrecord, hinforecord,
18472 mxrecord, txtrecord, rprecord, aaaarecord, locrecord, srvrecord,
18473 naptrrecord and modifytimestamp. For reverse entires it also do a
18474 subtree scoped search but this time the filter is &quot;(arecord=10.0.2.2)&quot;
18475 and the requested attributes are associateddomain, dnsttl and
18476 modifytimestamp. In short, in strict mode the objects with ptrrecord
18477 go away, and the arecord attribute in the forward object is used
18478 instead.&lt;/p&gt;
18479
18480 &lt;p&gt;The forward and reverse searches can be simulated using ldapsearch
18481 like this:&lt;/p&gt;
18482
18483 &lt;blockquote&gt;&lt;pre&gt;
18484 ldapsearch -h ldap -b ou=hosts,dc=skole,dc=skolelinux,dc=no -s sub -x \
18485 &#39;(associateddomain=tjener.intern)&#39; dNSTTL aRecord nSRecord \
18486 cNAMERecord sOARecord pTRRecord hInfoRecord mXRecord tXTRecord \
18487 rPRecord aFSDBRecord KeyRecord aAAARecord lOCRecord sRVRecord \
18488 nAPTRRecord kXRecord certRecord dSRecord sSHFPRecord iPSecKeyRecord \
18489 rRSIGRecord nSECRecord dNSKeyRecord dHCIDRecord sPFRecord modifyTimestamp
18490
18491 ldapsearch -h ldap -b ou=hosts,dc=skole,dc=skolelinux,dc=no -s sub -x \
18492 &#39;(arecord=10.0.2.2)&#39; associateddomain dnsttl modifytimestamp
18493 &lt;/pre&gt;&lt;/blockquote&gt;
18494
18495 &lt;p&gt;In addition to the forward and reverse searches , there is also a
18496 search for SOA records, which behave similar to the forward and
18497 reverse lookups.&lt;/p&gt;
18498
18499 &lt;p&gt;A thing to note with the PowerDNS behaviour is that it do not
18500 specify any objectclass names, and instead look for the attributes it
18501 need to generate a DNS reply. This make it able to work with any
18502 objectclass that provide the needed attributes.&lt;/p&gt;
18503
18504 &lt;p&gt;The attributes are normally provided in the cosine (RFC 1274) and
18505 dnsdomain2 schemas. The latter is used for reverse entries like
18506 ptrrecord and recent DNS additions like aaaarecord and srvrecord.&lt;/p&gt;
18507
18508 &lt;p&gt;In Debian Edu, we have created DNS objects using the object classes
18509 dcobject (for dc), dnsdomain or dnsdomain2 (structural, for the DNS
18510 attributes) and domainrelatedobject (for associatedDomain). The use
18511 of structural object classes make it impossible to combine these
18512 classes with the object classes used by DHCP.&lt;/p&gt;
18513
18514 &lt;p&gt;There are other schemas that could be used too, for example the
18515 dnszone structural object class used by Gosa and bind-sdb for the DNS
18516 attributes combined with the domainrelatedobject object class, but in
18517 this case some unused attributes would have to be included as well
18518 (zonename and relativedomainname).&lt;/p&gt;
18519
18520 &lt;p&gt;My proposal for Debian Edu would be to switch PowerDNS to strict
18521 mode and not use any of the existing objectclasses (dnsdomain,
18522 dnsdomain2 and dnszone) when one want to combine the DNS information
18523 with DHCP information, and instead create a auxiliary object class
18524 defined something like this (using the attributes defined for
18525 dnsdomain and dnsdomain2 or dnszone):&lt;/p&gt;
18526
18527 &lt;blockquote&gt;&lt;pre&gt;
18528 objectclass ( some-oid NAME &#39;dnsDomainAux&#39;
18529 SUP top
18530 AUXILIARY
18531 MAY ( ARecord $ MDRecord $ MXRecord $ NSRecord $ SOARecord $ CNAMERecord $
18532 DNSTTL $ DNSClass $ PTRRecord $ HINFORecord $ MINFORecord $
18533 TXTRecord $ SIGRecord $ KEYRecord $ AAAARecord $ LOCRecord $
18534 NXTRecord $ SRVRecord $ NAPTRRecord $ KXRecord $ CERTRecord $
18535 A6Record $ DNAMERecord
18536 ))
18537 &lt;/pre&gt;&lt;/blockquote&gt;
18538
18539 &lt;p&gt;This will allow any object to become a DNS entry when combined with
18540 the domainrelatedobject object class, and allow any entity to include
18541 all the attributes PowerDNS wants. I&#39;ve sent an email to the PowerDNS
18542 developers asking for their view on this schema and if they are
18543 interested in providing such schema with PowerDNS, and I hope my
18544 message will be accepted into their mailing list soon.&lt;/p&gt;
18545
18546 &lt;p&gt;&lt;strong&gt;ISC dhcp&lt;/strong&gt;&lt;/p&gt;
18547
18548 &lt;p&gt;The DHCP server searches for specific objectclass and requests all
18549 the object attributes, and then uses the attributes it want. This
18550 make it harder to figure out exactly what attributes are used, but
18551 thanks to the working example in Debian Edu I can at least get an idea
18552 what is needed without having to read the source code.&lt;/p&gt;
18553
18554 &lt;p&gt;In the DHCP server configuration, the LDAP base to use and the
18555 search filter to use to locate the correct dhcpServer entity is
18556 stored. These are the relevant entries from
18557 /etc/dhcp3/dhcpd.conf:&lt;/p&gt;
18558
18559 &lt;blockquote&gt;&lt;pre&gt;
18560 ldap-base-dn &quot;dc=skole,dc=skolelinux,dc=no&quot;;
18561 ldap-dhcp-server-cn &quot;dhcp&quot;;
18562 &lt;/pre&gt;&lt;/blockquote&gt;
18563
18564 &lt;p&gt;The DHCP server uses this information to nest all the DHCP
18565 configuration it need. The cn &quot;dhcp&quot; is located using the given LDAP
18566 base and the filter &quot;(&amp;(objectClass=dhcpServer)(cn=dhcp))&quot;. The
18567 search result is this entry:&lt;/p&gt;
18568
18569 &lt;blockquote&gt;&lt;pre&gt;
18570 dn: cn=dhcp,dc=skole,dc=skolelinux,dc=no
18571 cn: dhcp
18572 objectClass: top
18573 objectClass: dhcpServer
18574 dhcpServiceDN: cn=DHCP Config,dc=skole,dc=skolelinux,dc=no
18575 &lt;/pre&gt;&lt;/blockquote&gt;
18576
18577 &lt;p&gt;The content of the dhcpServiceDN attribute is next used to locate the
18578 subtree with DHCP configuration. The DHCP configuration subtree base
18579 is located using a base scope search with base &quot;cn=DHCP
18580 Config,dc=skole,dc=skolelinux,dc=no&quot; and filter
18581 &quot;(&amp;(objectClass=dhcpService)(|(dhcpPrimaryDN=cn=dhcp,dc=skole,dc=skolelinux,dc=no)(dhcpSecondaryDN=cn=dhcp,dc=skole,dc=skolelinux,dc=no)))&quot;.
18582 The search result is this entry:&lt;/p&gt;
18583
18584 &lt;blockquote&gt;&lt;pre&gt;
18585 dn: cn=DHCP Config,dc=skole,dc=skolelinux,dc=no
18586 cn: DHCP Config
18587 objectClass: top
18588 objectClass: dhcpService
18589 objectClass: dhcpOptions
18590 dhcpPrimaryDN: cn=dhcp, dc=skole,dc=skolelinux,dc=no
18591 dhcpStatements: ddns-update-style none
18592 dhcpStatements: authoritative
18593 dhcpOption: smtp-server code 69 = array of ip-address
18594 dhcpOption: www-server code 72 = array of ip-address
18595 dhcpOption: wpad-url code 252 = text
18596 &lt;/pre&gt;&lt;/blockquote&gt;
18597
18598 &lt;p&gt;Next, the entire subtree is processed, one level at the time. When
18599 all the DHCP configuration is loaded, it is ready to receive requests.
18600 The subtree in Debian Edu contain objects with object classes
18601 top/dhcpService/dhcpOptions, top/dhcpSharedNetwork/dhcpOptions,
18602 top/dhcpSubnet, top/dhcpGroup and top/dhcpHost. These provide options
18603 and information about netmasks, dynamic range etc. Leaving out the
18604 details here because it is not relevant for the focus of my
18605 investigation, which is to see if it is possible to merge dns and dhcp
18606 related computer objects.&lt;/p&gt;
18607
18608 &lt;p&gt;When a DHCP request come in, LDAP is searched for the MAC address
18609 of the client (00:00:00:00:00:00 in this example), using a subtree
18610 scoped search with &quot;cn=DHCP Config,dc=skole,dc=skolelinux,dc=no&quot; as
18611 the base and &quot;(&amp;(objectClass=dhcpHost)(dhcpHWAddress=ethernet
18612 00:00:00:00:00:00))&quot; as the filter. This is what a host object look
18613 like:&lt;/p&gt;
18614
18615 &lt;blockquote&gt;&lt;pre&gt;
18616 dn: cn=hostname,cn=group1,cn=THINCLIENTS,cn=DHCP Config,dc=skole,dc=skolelinux,dc=no
18617 cn: hostname
18618 objectClass: top
18619 objectClass: dhcpHost
18620 dhcpHWAddress: ethernet 00:00:00:00:00:00
18621 dhcpStatements: fixed-address hostname
18622 &lt;/pre&gt;&lt;/blockquote&gt;
18623
18624 &lt;p&gt;There is less flexiblity in the way LDAP searches are done here.
18625 The object classes need to have fixed names, and the configuration
18626 need to be stored in a fairly specific LDAP structure. On the
18627 positive side, the invidiual dhcpHost entires can be anywhere without
18628 the DN pointed to by the dhcpServer entries. The latter should make
18629 it possible to group all host entries in a subtree next to the
18630 configuration entries, and this subtree can also be shared with the
18631 DNS server if the schema proposed above is combined with the dhcpHost
18632 structural object class.
18633
18634 &lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;/p&gt;
18635
18636 &lt;p&gt;The PowerDNS implementation seem to be very flexible when it come
18637 to which LDAP schemas to use. While its &quot;tree&quot; mode is rigid when it
18638 come to the the LDAP structure, the &quot;strict&quot; mode is very flexible,
18639 allowing DNS objects to be stored anywhere under the base cn specified
18640 in the configuration.&lt;/p&gt;
18641
18642 &lt;p&gt;The DHCP implementation on the other hand is very inflexible, both
18643 regarding which LDAP schemas to use and which LDAP structure to use.
18644 I guess one could implement ones own schema, as long as the
18645 objectclasses and attributes have the names used, but this do not
18646 really help when the DHCP subtree need to have a fairly fixed
18647 structure.&lt;/p&gt;
18648
18649 &lt;p&gt;Based on the observed behaviour, I suspect a LDAP structure like
18650 this might work for Debian Edu:&lt;/p&gt;
18651
18652 &lt;blockquote&gt;&lt;pre&gt;
18653 ou=services
18654 cn=machine-info (dhcpService) - dhcpServiceDN points here
18655 cn=dhcp (dhcpServer)
18656 cn=dhcp-internal (dhcpSharedNetwork/dhcpOptions)
18657 cn=10.0.2.0 (dhcpSubnet)
18658 cn=group1 (dhcpGroup/dhcpOptions)
18659 cn=dhcp-thinclients (dhcpSharedNetwork/dhcpOptions)
18660 cn=192.168.0.0 (dhcpSubnet)
18661 cn=group1 (dhcpGroup/dhcpOptions)
18662 ou=machines - PowerDNS base points here
18663 cn=hostname (dhcpHost/domainrelatedobject/dnsDomainAux)
18664 &lt;/pre&gt;&lt;/blockquote&gt;
18665
18666 &lt;P&gt;This is not tested yet. If the DHCP server require the dhcpHost
18667 entries to be in the dhcpGroup subtrees, the entries can be stored
18668 there instead of a common machines subtree, and the PowerDNS base
18669 would have to be moved one level up to the machine-info subtree.&lt;/p&gt;
18670
18671 &lt;p&gt;The combined object under the machines subtree would look something
18672 like this:&lt;/p&gt;
18673
18674 &lt;blockquote&gt;&lt;pre&gt;
18675 dn: dc=hostname,ou=machines,cn=machine-info,dc=skole,dc=skolelinux,dc=no
18676 dc: hostname
18677 objectClass: top
18678 objectClass: dhcpHost
18679 objectclass: domainrelatedobject
18680 objectclass: dnsDomainAux
18681 associateddomain: hostname.intern
18682 arecord: 10.11.12.13
18683 dhcpHWAddress: ethernet 00:00:00:00:00:00
18684 dhcpStatements: fixed-address hostname.intern
18685 &lt;/pre&gt;&lt;/blockquote&gt;
18686
18687 &lt;/p&gt;One could even add the LTSP configuration associated with a given
18688 machine, as long as the required attributes are available in a
18689 auxiliary object class.&lt;/p&gt;
18690 </description>
18691 </item>
18692
18693 <item>
18694 <title>Combining PowerDNS and ISC DHCP LDAP objects</title>
18695 <link>http://people.skolelinux.org/pere/blog/Combining_PowerDNS_and_ISC_DHCP_LDAP_objects.html</link>
18696 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Combining_PowerDNS_and_ISC_DHCP_LDAP_objects.html</guid>
18697 <pubDate>Wed, 14 Jul 2010 23:45:00 +0200</pubDate>
18698 <description>&lt;p&gt;For a while now, I have wanted to find a way to change the DNS and
18699 DHCP services in Debian Edu to use the same LDAP objects for a given
18700 computer, to avoid the possibility of having a inconsistent state for
18701 a computer in LDAP (as in DHCP but no DNS entry or the other way
18702 around) and make it easier to add computers to LDAP.&lt;/p&gt;
18703
18704 &lt;p&gt;I&#39;ve looked at how powerdns and dhcpd is using LDAP, and using this
18705 information finally found a solution that seem to work.&lt;/p&gt;
18706
18707 &lt;p&gt;The old setup required three LDAP objects for a given computer.
18708 One forward DNS entry, one reverse DNS entry and one DHCP entry. If
18709 we switch powerdns to use its strict LDAP method (ldap-method=strict
18710 in pdns-debian-edu.conf), the forward and reverse DNS entries are
18711 merged into one while making it impossible to transfer the reverse map
18712 to a slave DNS server.&lt;/p&gt;
18713
18714 &lt;p&gt;If we also replace the object class used to get the DNS related
18715 attributes to one allowing these attributes to be combined with the
18716 dhcphost object class, we can merge the DNS and DHCP entries into one.
18717 I&#39;ve written such object class in the dnsdomainaux.schema file (need
18718 proper OIDs, but that is a minor issue), and tested the setup. It
18719 seem to work.&lt;/p&gt;
18720
18721 &lt;p&gt;With this test setup in place, we can get away with one LDAP object
18722 for both DNS and DHCP, and even the LTSP configuration I suggested in
18723 an earlier email. The combined LDAP object will look something like
18724 this:&lt;/p&gt;
18725
18726 &lt;blockquote&gt;&lt;pre&gt;
18727 dn: cn=hostname,cn=group1,cn=THINCLIENTS,cn=DHCP Config,dc=skole,dc=skolelinux,dc=no
18728 cn: hostname
18729 objectClass: dhcphost
18730 objectclass: domainrelatedobject
18731 objectclass: dnsdomainaux
18732 associateddomain: hostname.intern
18733 arecord: 10.11.12.13
18734 dhcphwaddress: ethernet 00:00:00:00:00:00
18735 dhcpstatements: fixed-address hostname
18736 ldapconfigsound: Y
18737 &lt;/pre&gt;&lt;/blockquote&gt;
18738
18739 &lt;p&gt;The DNS server uses the associateddomain and arecord entries, while
18740 the DHCP server uses the dhcphwaddress and dhcpstatements entries
18741 before asking DNS to resolve the fixed-adddress. LTSP will use
18742 dhcphwaddress or associateddomain and the ldapconfig* attributes.&lt;/p&gt;
18743
18744 &lt;p&gt;I am not yet sure if I can get the DHCP server to look for its
18745 dhcphost in a different location, to allow us to put the objects
18746 outside the &quot;DHCP Config&quot; subtree, but hope to figure out a way to do
18747 that. If I can&#39;t figure out a way to do that, we can still get rid of
18748 the hosts subtree and move all its content into the DHCP Config tree
18749 (which probably should be renamed to be more related to the new
18750 content. I suspect cn=dnsdhcp,ou=services or something like that
18751 might be a good place to put it.&lt;/p&gt;
18752
18753 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
18754 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
18755 </description>
18756 </item>
18757
18758 <item>
18759 <title>Idea for storing LTSP configuration in LDAP</title>
18760 <link>http://people.skolelinux.org/pere/blog/Idea_for_storing_LTSP_configuration_in_LDAP.html</link>
18761 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Idea_for_storing_LTSP_configuration_in_LDAP.html</guid>
18762 <pubDate>Sun, 11 Jul 2010 22:00:00 +0200</pubDate>
18763 <description>&lt;p&gt;Vagrant mentioned on IRC today that ltsp_config now support
18764 sourcing files from /usr/share/ltsp/ltsp_config.d/ on the thin
18765 clients, and that this can be used to fetch configuration from LDAP if
18766 Debian Edu choose to store configuration there.&lt;/p&gt;
18767
18768 &lt;p&gt;Armed with this information, I got inspired and wrote a test module
18769 to get configuration from LDAP. The idea is to look up the MAC
18770 address of the client in LDAP, and look for attributes on the form
18771 ltspconfigsetting=value, and use this to export SETTING=value to the
18772 LTSP clients.&lt;/p&gt;
18773
18774 &lt;p&gt;The goal is to be able to store the LTSP configuration attributes
18775 in a &quot;computer&quot; LDAP object used by both DNS and DHCP, and thus
18776 allowing us to store all information about a computer in one place.&lt;/p&gt;
18777
18778 &lt;p&gt;This is a untested draft implementation, and I welcome feedback on
18779 this approach. A real LDAP schema for the ltspClientAux objectclass
18780 need to be written. Comments, suggestions, etc?&lt;/p&gt;
18781
18782 &lt;blockquote&gt;&lt;pre&gt;
18783 # Store in /opt/ltsp/$arch/usr/share/ltsp/ltsp_config.d/ldap-config
18784 #
18785 # Fetch LTSP client settings from LDAP based on MAC address
18786 #
18787 # Uses ethernet address as stored in the dhcpHost objectclass using
18788 # the dhcpHWAddress attribute or ethernet address stored in the
18789 # ieee802Device objectclass with the macAddress attribute.
18790 #
18791 # This module is written to be schema agnostic, and only depend on the
18792 # existence of attribute names.
18793 #
18794 # The LTSP configuration variables are saved directly using a
18795 # ltspConfig prefix and uppercasing the rest of the attribute name.
18796 # To set the SERVER variable, set the ltspConfigServer attribute.
18797 #
18798 # Some LDAP schema should be created with all the relevant
18799 # configuration settings. Something like this should work:
18800 #
18801 # objectclass ( 1.1.2.2 NAME &#39;ltspClientAux&#39;
18802 # SUP top
18803 # AUXILIARY
18804 # MAY ( ltspConfigServer $ ltsConfigSound $ ... )
18805
18806 LDAPSERVER=$(debian-edu-ldapserver)
18807 if [ &quot;$LDAPSERVER&quot; ] ; then
18808 LDAPBASE=$(debian-edu-ldapserver -b)
18809 for MAC in $(LANG=C ifconfig |grep -i hwaddr| awk &#39;{print $5}&#39;|sort -u) ; do
18810 filter=&quot;(|(dhcpHWAddress=ethernet $MAC)(macAddress=$MAC))&quot;
18811 ldapsearch -h &quot;$LDAPSERVER&quot; -b &quot;$LDAPBASE&quot; -v -x &quot;$filter&quot; | \
18812 grep &#39;^ltspConfig&#39; | while read attr value ; do
18813 # Remove prefix and convert to upper case
18814 attr=$(echo $attr | sed &#39;s/^ltspConfig//i&#39; | tr a-z A-Z)
18815 # bass value on to clients
18816 eval &quot;$attr=$value; export $attr&quot;
18817 done
18818 done
18819 fi
18820 &lt;/pre&gt;&lt;/blockquote&gt;
18821
18822 &lt;p&gt;I&#39;m not sure this shell construction will work, because I suspect
18823 the while block might end up in a subshell causing the variables set
18824 there to not show up in ltsp-config, but if that is the case I am sure
18825 the code can be restructured to make sure the variables are passed on.
18826 I expect that can be solved with some testing. :)&lt;/p&gt;
18827
18828 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
18829 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
18830
18831 &lt;p&gt;Update 2010-07-17: I am aware of another effort to store LTSP
18832 configuration in LDAP that was created around year 2000 by
18833 &lt;a href=&quot;http://www.pcxperience.com/thinclient/documentation/ldap.html&quot;&gt;PC
18834 Xperience, Inc., 2000&lt;/a&gt;. I found its
18835 &lt;a href=&quot;http://people.redhat.com/alikins/ltsp/ldap/&quot;&gt;files&lt;/a&gt; on a
18836 personal home page over at redhat.com.&lt;/p&gt;
18837 </description>
18838 </item>
18839
18840 <item>
18841 <title>jXplorer, a very nice LDAP GUI</title>
18842 <link>http://people.skolelinux.org/pere/blog/jXplorer__a_very_nice_LDAP_GUI.html</link>
18843 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/jXplorer__a_very_nice_LDAP_GUI.html</guid>
18844 <pubDate>Fri, 9 Jul 2010 12:55:00 +0200</pubDate>
18845 <description>&lt;p&gt;Since
18846 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/LUMA__a_very_nice_LDAP_GUI.html&quot;&gt;my
18847 last post&lt;/a&gt; about available LDAP tools in Debian, I was told about a
18848 LDAP GUI that is even better than luma. The java application
18849 &lt;a href=&quot;http://jxplorer.org/&quot;&gt;jXplorer&lt;/a&gt; is claimed to be capable of
18850 moving LDAP objects and subtrees using drag-and-drop, and can
18851 authenticate using Kerberos. I have only tested the Kerberos
18852 authentication, but do not have a LDAP setup allowing me to rewrite
18853 LDAP with my test user yet. It is
18854 &lt;a href=&quot;http://packages.qa.debian.org/j/jxplorer.html&quot;&gt;available in
18855 Debian&lt;/a&gt; testing and unstable at the moment. The only problem I
18856 have with it is how it handle errors. If something go wrong, its
18857 non-intuitive behaviour require me to go through some query work list
18858 and remove the failing query. Nothing big, but very annoying.&lt;/p&gt;
18859 </description>
18860 </item>
18861
18862 <item>
18863 <title>Lenny-&gt;Squeeze upgrades, apt vs aptitude with the Gnome desktop</title>
18864 <link>http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__apt_vs_aptitude_with_the_Gnome_desktop.html</link>
18865 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__apt_vs_aptitude_with_the_Gnome_desktop.html</guid>
18866 <pubDate>Sat, 3 Jul 2010 23:55:00 +0200</pubDate>
18867 <description>&lt;p&gt;Here is a short update on my &lt;a
18868 href=&quot;http://people.skolelinux.org/~pere/debian-upgrade-testing/&quot;&gt;my
18869 Debian Lenny-&gt;Squeeze upgrade testing&lt;/a&gt;. Here is a summary of the
18870 difference for Gnome when it is upgraded by apt-get and aptitude. I&#39;m
18871 not reporting the status for KDE, because the upgrade crashes when
18872 aptitude try because of missing conflicts
18873 (&lt;a href=&quot;http://bugs.debian.org/584861&quot;&gt;#584861&lt;/a&gt; and
18874 &lt;a href=&quot;http://bugs.debian.org/585716&quot;&gt;#585716&lt;/a&gt;).&lt;/p&gt;
18875
18876 &lt;p&gt;At the end of the upgrade test script, dpkg -l is executed to get a
18877 complete list of the installed packages. Based on this I see these
18878 differences when I did a test run today. As usual, I do not really
18879 know what the correct set of packages would be, but thought it best to
18880 publish the difference.&lt;/p&gt;
18881
18882 &lt;p&gt;Installed using apt-get, missing with aptitude&lt;/p&gt;
18883
18884 &lt;blockquote&gt;&lt;p&gt;
18885 at-spi cpp-4.3 finger gnome-spell gstreamer0.10-gnomevfs
18886 libatspi1.0-0 libcupsys2 libeel2-data libgail-common libgdl-1-common
18887 libgnomeprint2.2-data libgnomeprintui2.2-common libgnomevfs2-bin
18888 libgtksourceview-common libpt-1.10.10-plugins-alsa
18889 libpt-1.10.10-plugins-v4l libservlet2.4-java libxalan2-java
18890 libxerces2-java openoffice.org-writer2latex openssl-blacklist p7zip
18891 python-4suite-xml python-eggtrayicon python-gtkhtml2
18892 python-gtkmozembed svgalibg1 xserver-xephyr zip
18893 &lt;/p&gt;&lt;/blockquote&gt;
18894
18895 &lt;p&gt;Installed using apt-get, removed with aptitude&lt;/p&gt;
18896
18897 &lt;blockquote&gt;&lt;p&gt;
18898 bluez-utils dhcdbd djvulibre-desktop epiphany-gecko
18899 gnome-app-install gnome-mount gnome-vfs-obexftp gnome-volume-manager
18900 libao2 libavahi-compat-libdnssd1 libavahi-core5 libbind9-50
18901 libbluetooth2 libcamel1.2-11 libcdio7 libcucul0 libcurl3
18902 libdirectfb-1.0-0 libdvdread3 libedata-cal1.2-6 libedataserver1.2-9
18903 libeel2-2.20 libepc-1.0-1 libepc-ui-1.0-1 libexchange-storage1.2-3
18904 libfaad0 libgd2-noxpm libgda3-3 libgda3-common libggz2 libggzcore9
18905 libggzmod4 libgksu1.2-0 libgksuui1.0-1 libgmyth0 libgnome-desktop-2
18906 libgnome-pilot2 libgnomecups1.0-1 libgnomeprint2.2-0
18907 libgnomeprintui2.2-0 libgpod3 libgraphviz4 libgtkhtml2-0
18908 libgtksourceview1.0-0 libgucharmap6 libhesiod0 libicu38 libisccc50
18909 libisccfg50 libiw29 libkpathsea4 libltdl3 liblwres50 libmagick++10
18910 libmagick10 libmalaga7 libmtp7 libmysqlclient15off libnautilus-burn4
18911 libneon27 libnm-glib0 libnm-util0 libopal-2.2 libosp5
18912 libparted1.8-10 libpisock9 libpisync1 libpoppler-glib3 libpoppler3
18913 libpt-1.10.10 libraw1394-8 libsensors3 libsmbios2 libsoup2.2-8
18914 libssh2-1 libsuitesparse-3.1.0 libswfdec-0.6-90 libtalloc1
18915 libtotem-plparser10 libtrackerclient0 libvoikko1 libxalan2-java-gcj
18916 libxerces2-java-gcj libxklavier12 libxtrap6 libxxf86misc1 libzephyr3
18917 mysql-common swfdec-gnome totem-gstreamer wodim
18918 &lt;/p&gt;&lt;/blockquote&gt;
18919
18920 &lt;p&gt;Installed using aptitude, missing with apt-get&lt;/p&gt;
18921
18922 &lt;blockquote&gt;&lt;p&gt;
18923 gnome gnome-desktop-environment hamster-applet python-gnomeapplet
18924 python-gnomekeyring python-wnck rhythmbox-plugins xorg
18925 xserver-xorg-input-all xserver-xorg-input-evdev
18926 xserver-xorg-input-kbd xserver-xorg-input-mouse
18927 xserver-xorg-input-synaptics xserver-xorg-video-all
18928 xserver-xorg-video-apm xserver-xorg-video-ark xserver-xorg-video-ati
18929 xserver-xorg-video-chips xserver-xorg-video-cirrus
18930 xserver-xorg-video-dummy xserver-xorg-video-fbdev
18931 xserver-xorg-video-glint xserver-xorg-video-i128
18932 xserver-xorg-video-i740 xserver-xorg-video-mach64
18933 xserver-xorg-video-mga xserver-xorg-video-neomagic
18934 xserver-xorg-video-nouveau xserver-xorg-video-nv
18935 xserver-xorg-video-r128 xserver-xorg-video-radeon
18936 xserver-xorg-video-radeonhd xserver-xorg-video-rendition
18937 xserver-xorg-video-s3 xserver-xorg-video-s3virge
18938 xserver-xorg-video-savage xserver-xorg-video-siliconmotion
18939 xserver-xorg-video-sis xserver-xorg-video-sisusb
18940 xserver-xorg-video-tdfx xserver-xorg-video-tga
18941 xserver-xorg-video-trident xserver-xorg-video-tseng
18942 xserver-xorg-video-vesa xserver-xorg-video-vmware
18943 xserver-xorg-video-voodoo
18944 &lt;/p&gt;&lt;/blockquote&gt;
18945
18946 &lt;p&gt;Installed using aptitude, removed with apt-get&lt;/p&gt;
18947
18948 &lt;blockquote&gt;&lt;p&gt;
18949 deskbar-applet xserver-xorg xserver-xorg-core
18950 xserver-xorg-input-wacom xserver-xorg-video-intel
18951 xserver-xorg-video-openchrome
18952 &lt;/p&gt;&lt;/blockquote&gt;
18953
18954 &lt;p&gt;I was told on IRC that the xorg-xserver package was
18955 &lt;a href=&quot;http://git.debian.org/?p=pkg-xorg/xserver/xorg-server.git;a=commit;h=9c8080d06c457932d3bfec021c69ac000aa60120&quot;&gt;changed
18956 in git&lt;/a&gt; today to try to get apt-get to not remove xorg completely.
18957 No idea when it hits Squeeze, but when it does I hope it will reduce
18958 the difference somewhat.
18959 </description>
18960 </item>
18961
18962 <item>
18963 <title>Caching password, user and group on a roaming Debian laptop</title>
18964 <link>http://people.skolelinux.org/pere/blog/Caching_password__user_and_group_on_a_roaming_Debian_laptop.html</link>
18965 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Caching_password__user_and_group_on_a_roaming_Debian_laptop.html</guid>
18966 <pubDate>Thu, 1 Jul 2010 11:40:00 +0200</pubDate>
18967 <description>&lt;p&gt;For a laptop, centralized user directories and password checking is
18968 a bit troubling. Laptops are typically used also when not connected
18969 to the network, and it is vital for a user to be able to log in or
18970 unlock the screen saver also when a central server is unavailable.
18971 This is possible by caching passwords and directory information (user
18972 and group attributes) locally, and the packages to do so are available
18973 in Debian. Here follow two recipes to set this up in Debian/Squeeze.
18974 It is also possible to set up in Debian/Lenny, but require more manual
18975 setup there because pam-auth-update is missing in Lenny.&lt;/p&gt;
18976
18977 &lt;h2&gt;LDAP/Kerberos + nscd + libpam-ccreds + libpam-mklocaluser/pam_mkhomedir&lt;/h2&gt;
18978
18979 This is the traditional method with a twist. The password caching is
18980 provided by libpam-ccreds (version 10-4 or later is needed on
18981 Squeeze), and the directory caching is done by nscd. The directory
18982 lookup and password checking is done using LDAP. If one want to use
18983 Kerberos for password checking the libpam-ldapd package can be
18984 replaced with libpam-krb5 or libpam-heimdal. If one is happy having a
18985 local home directory with the path listed in LDAP, one can use the
18986 pam_mkhomedir module from pam-modules to make this happen instead of
18987 using libpam-mklocaluser. A setup for pam-auth-update to enable
18988 pam_mkhomedir will have to be written until a fix for
18989 &lt;a href=&quot;http://bugs.debian.org/568577&quot;&gt;bug #568577&lt;/a&gt; is in the
18990 archive. Because I believe it is a bad idea to have local home
18991 directories using misleading paths like /site/server/partition/, I
18992 prefer to create a local user with the home directory in /home/. This
18993 is done using the libpam-mklocaluser package.&lt;/p&gt;
18994
18995 &lt;p&gt;These packages need to be installed and configured&lt;/p&gt;
18996
18997 &lt;blockquote&gt;&lt;pre&gt;
18998 libnss-ldapd libpam-ldapd nscd libpam-ccreds libpam-mklocaluser
18999 &lt;/pre&gt;&lt;/blockquote&gt;
19000
19001 &lt;p&gt;The ldapd packages will ask for LDAP connection information, and
19002 one have to fill in the values that fits ones own site. Make sure the
19003 PAM part uses encrypted connections, to make sure the password is not
19004 sent in clear text to the LDAP server. I&#39;ve been unable to get TLS
19005 certificate checking for a self signed certificate working, which make
19006 LDAP authentication unsafe for Debian Edu (nslcd is not checking if it
19007 is talking to the correct LDAP server), and very much welcome feedback
19008 on how to get this working.&lt;/p&gt;
19009
19010 &lt;p&gt;Because nscd do not have a default configuration fit for offline
19011 caching until &lt;a href=&quot;http://bugs.debian.org/485282&quot;&gt;bug #485282&lt;/a&gt;
19012 is fixed, this configuration should be used instead of the one
19013 currently in /etc/nscd.conf. The changes are in the fields
19014 reload-count and positive-time-to-live, and is based on the
19015 instructions I found in the
19016 &lt;a href=&quot;http://www.flyn.org/laptopldap/&quot;&gt;LDAP for Mobile Laptops&lt;/a&gt;
19017 instructions by Flyn Computing.&lt;/p&gt;
19018
19019 &lt;blockquote&gt;&lt;pre&gt;
19020 debug-level 0
19021 reload-count unlimited
19022 paranoia no
19023
19024 enable-cache passwd yes
19025 positive-time-to-live passwd 2592000
19026 negative-time-to-live passwd 20
19027 suggested-size passwd 211
19028 check-files passwd yes
19029 persistent passwd yes
19030 shared passwd yes
19031 max-db-size passwd 33554432
19032 auto-propagate passwd yes
19033
19034 enable-cache group yes
19035 positive-time-to-live group 2592000
19036 negative-time-to-live group 20
19037 suggested-size group 211
19038 check-files group yes
19039 persistent group yes
19040 shared group yes
19041 max-db-size group 33554432
19042 auto-propagate group yes
19043
19044 enable-cache hosts no
19045 positive-time-to-live hosts 2592000
19046 negative-time-to-live hosts 20
19047 suggested-size hosts 211
19048 check-files hosts yes
19049 persistent hosts yes
19050 shared hosts yes
19051 max-db-size hosts 33554432
19052
19053 enable-cache services yes
19054 positive-time-to-live services 2592000
19055 negative-time-to-live services 20
19056 suggested-size services 211
19057 check-files services yes
19058 persistent services yes
19059 shared services yes
19060 max-db-size services 33554432
19061 &lt;/pre&gt;&lt;/blockquote&gt;
19062
19063 &lt;p&gt;While we wait for a mechanism to update /etc/nsswitch.conf
19064 automatically like the one provided in
19065 &lt;a href=&quot;http://bugs.debian.org/496915&quot;&gt;bug #496915&lt;/a&gt;, the file
19066 content need to be manually replaced to ensure LDAP is used as the
19067 directory service on the machine. /etc/nsswitch.conf should normally
19068 look like this:&lt;/p&gt;
19069
19070 &lt;blockquote&gt;&lt;pre&gt;
19071 passwd: files ldap
19072 group: files ldap
19073 shadow: files ldap
19074 hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4
19075 networks: files
19076 protocols: files
19077 services: files
19078 ethers: files
19079 rpc: files
19080 netgroup: files ldap
19081 &lt;/pre&gt;&lt;/blockquote&gt;
19082
19083 &lt;p&gt;The important parts are that ldap is listed last for passwd, group,
19084 shadow and netgroup.&lt;/p&gt;
19085
19086 &lt;p&gt;With these changes in place, any user in LDAP will be able to log
19087 in locally on the machine using for example kdm, get a local home
19088 directory created and have the password as well as user and group
19089 attributes cached.
19090
19091 &lt;h2&gt;LDAP/Kerberos + nss-updatedb + libpam-ccreds +
19092 libpam-mklocaluser/pam_mkhomedir&lt;/h2&gt;
19093
19094 &lt;p&gt;Because nscd have had its share of problems, and seem to have
19095 problems doing proper caching, I&#39;ve seen suggestions and recipes to
19096 use nss-updatedb to copy parts of the LDAP database locally when the
19097 LDAP database is available. I have not tested such setup, because I
19098 discovered sssd.&lt;/p&gt;
19099
19100 &lt;h2&gt;LDAP/Kerberos + sssd + libpam-mklocaluser&lt;/h2&gt;
19101
19102 &lt;p&gt;A more flexible and robust setup than the nscd combination
19103 mentioned earlier that has shown up recently, is the
19104 &lt;a href=&quot;https://fedorahosted.org/sssd/&quot;&gt;sssd&lt;/a&gt; package from Redhat.
19105 It is part of the &lt;a href=&quot;http://www.freeipa.org/&quot;&gt;FreeIPA&lt;/A&gt; project
19106 to provide a Active Directory like directory service for Linux
19107 machines. The sssd system combines the caching of passwords and user
19108 information into one package, and remove the need for nscd and
19109 libpam-ccreds. It support LDAP and Kerberos, but not NIS. Version
19110 1.2 do not support netgroups, but it is said that it will support this
19111 in version 1.5 expected to show up later in 2010. Because the
19112 &lt;a href=&quot;http://packages.qa.debian.org/s/sssd.html&quot;&gt;sssd package&lt;/a&gt;
19113 was missing in Debian, I ended up co-maintaining it with Werner, and
19114 version 1.2 is now in testing.
19115
19116 &lt;p&gt;These packages need to be installed and configured to get the
19117 roaming setup I want&lt;/p&gt;
19118
19119 &lt;blockquote&gt;&lt;pre&gt;
19120 libpam-sss libnss-sss libpam-mklocaluser
19121 &lt;/pre&gt;&lt;/blockquote&gt;
19122
19123 The complete setup of sssd is done by editing/creating
19124 &lt;tt&gt;/etc/sssd/sssd.conf&lt;/tt&gt;.
19125
19126 &lt;blockquote&gt;&lt;pre&gt;
19127 [sssd]
19128 config_file_version = 2
19129 reconnection_retries = 3
19130 sbus_timeout = 30
19131 services = nss, pam
19132 domains = INTERN
19133
19134 [nss]
19135 filter_groups = root
19136 filter_users = root
19137 reconnection_retries = 3
19138
19139 [pam]
19140 reconnection_retries = 3
19141
19142 [domain/INTERN]
19143 enumerate = false
19144 cache_credentials = true
19145
19146 id_provider = ldap
19147 auth_provider = ldap
19148 chpass_provider = ldap
19149
19150 ldap_uri = ldap://ldap
19151 ldap_search_base = dc=skole,dc=skolelinux,dc=no
19152 ldap_tls_reqcert = never
19153 ldap_tls_cacert = /etc/ssl/certs/ca-certificates.crt
19154 &lt;/pre&gt;&lt;/blockquote&gt;
19155
19156 &lt;p&gt;I got the same problem here with certificate checking. Had to set
19157 &quot;ldap_tls_reqcert = never&quot; to get it working.&lt;/p&gt;
19158
19159 &lt;p&gt;With the libnss-sss package in testing at the moment, the
19160 nsswitch.conf file is update automatically, so there is no need to
19161 modify it manually.&lt;/p&gt;
19162
19163 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
19164 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
19165 </description>
19166 </item>
19167
19168 <item>
19169 <title>LUMA, a very nice LDAP GUI</title>
19170 <link>http://people.skolelinux.org/pere/blog/LUMA__a_very_nice_LDAP_GUI.html</link>
19171 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/LUMA__a_very_nice_LDAP_GUI.html</guid>
19172 <pubDate>Mon, 28 Jun 2010 00:30:00 +0200</pubDate>
19173 <description>&lt;p&gt;The last few days I have been looking into the status of the LDAP
19174 directory in Debian Edu, and in the process I started to miss a GUI
19175 tool to browse the LDAP tree. The only one I was able to find in
19176 Debian/Squeeze and Lenny is
19177 &lt;a href=&quot;http://luma.sourceforge.net/&quot;&gt;LUMA&lt;/a&gt;, which has proved to
19178 be a great tool to get a overview of the current LDAP directory
19179 populated by default in Skolelinux. Thanks to it, I have been able to
19180 find empty and obsolete subtrees, misplaced objects and duplicate
19181 objects. It will be installed by default in Debian/Squeeze. If you
19182 are working with LDAP, give it a go. :)&lt;/p&gt;
19183
19184 &lt;p&gt;I did notice one problem with it I have not had time to report to
19185 the BTS yet. There is no .desktop file in the package, so the tool do
19186 not show up in the Gnome and KDE menus, but only deep down in in the
19187 Debian submenu in KDE. I hope that can be fixed before Squeeze is
19188 released.&lt;/p&gt;
19189
19190 &lt;p&gt;I have not yet been able to get it to modify the tree yet. I would
19191 like to move objects and remove subtrees directly in the GUI, but have
19192 not found a way to do that with LUMA yet. So in the mean time, I use
19193 &lt;a href=&quot;http://www.lichteblau.com/ldapvi/&quot;&gt;ldapvi&lt;/a&gt; for that.&lt;/p&gt;
19194
19195 &lt;p&gt;If you have tips on other GUI tools for LDAP that might be useful
19196 in Debian Edu, please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
19197
19198 &lt;p&gt;Update 2010-06-29: Ross Reedstrom tipped us about the
19199 &lt;a href=&quot;http://packages.qa.debian.org/g/gq.html&quot;&gt;gq&lt;/a&gt; package as a
19200 useful GUI alternative. It seem like a good tool, but is unmaintained
19201 in Debian and got a RC bug keeping it out of Squeeze. Unless that
19202 changes, it will not be an option for Debian Edu based on Squeeze.&lt;/p&gt;
19203 </description>
19204 </item>
19205
19206 <item>
19207 <title>Idea for a change to LDAP schemas allowing DNS and DHCP info to be combined into one object</title>
19208 <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>
19209 <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>
19210 <pubDate>Thu, 24 Jun 2010 00:35:00 +0200</pubDate>
19211 <description>&lt;p&gt;A while back, I
19212 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Time_for_new__LDAP_schemas_replacing_RFC_2307_.html&quot;&gt;complained
19213 about the fact&lt;/a&gt; that it is not possible with the provided schemas
19214 for storing DNS and DHCP information in LDAP to combine the two sets
19215 of information into one LDAP object representing a computer.&lt;/p&gt;
19216
19217 &lt;p&gt;In the mean time, I discovered that a simple fix would be to make
19218 the dhcpHost object class auxiliary, to allow it to be combined with
19219 the dNSDomain object class, and thus forming one object for one
19220 computer when storing both DHCP and DNS information in LDAP.&lt;/p&gt;
19221
19222 &lt;p&gt;If I understand this correctly, it is not safe to do this change
19223 without also changing the assigned number for the object class, and I
19224 do not know enough about LDAP schema design to do that properly for
19225 Debian Edu.&lt;/p&gt;
19226
19227 &lt;p&gt;Anyway, for future reference, this is how I believe we could change
19228 the
19229 &lt;a href=&quot;http://tools.ietf.org/html/draft-ietf-dhc-ldap-schema-00&quot;&gt;DHCP
19230 schema&lt;/a&gt; to solve at least part of the problem with the LDAP schemas
19231 available today from IETF.&lt;/p&gt;
19232
19233 &lt;pre&gt;
19234 --- dhcp.schema (revision 65192)
19235 +++ dhcp.schema (working copy)
19236 @@ -376,7 +376,7 @@
19237 objectclass ( 2.16.840.1.113719.1.203.6.6
19238 NAME &#39;dhcpHost&#39;
19239 DESC &#39;This represents information about a particular client&#39;
19240 - SUP top
19241 + SUP top AUXILIARY
19242 MUST cn
19243 MAY (dhcpLeaseDN $ dhcpHWAddress $ dhcpOptionsDN $ dhcpStatements $ dhcpComments $ dhcpOption)
19244 X-NDS_CONTAINMENT (&#39;dhcpService&#39; &#39;dhcpSubnet&#39; &#39;dhcpGroup&#39;) )
19245 &lt;/pre&gt;
19246
19247 &lt;p&gt;I very much welcome clues on how to do this properly for Debian
19248 Edu/Squeeze. We provide the DHCP schema in our debian-edu-config
19249 package, and should thus be free to rewrite it as we see fit.&lt;/p&gt;
19250
19251 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
19252 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
19253 </description>
19254 </item>
19255
19256 <item>
19257 <title>Calling tasksel like the installer, while still getting useful output</title>
19258 <link>http://people.skolelinux.org/pere/blog/Calling_tasksel_like_the_installer__while_still_getting_useful_output.html</link>
19259 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Calling_tasksel_like_the_installer__while_still_getting_useful_output.html</guid>
19260 <pubDate>Wed, 16 Jun 2010 14:55:00 +0200</pubDate>
19261 <description>&lt;p&gt;A few times I have had the need to simulate the way tasksel
19262 installs packages during the normal debian-installer run. Until now,
19263 I have ended up letting tasksel do the work, with the annoying problem
19264 of not getting any feedback at all when something fails (like a
19265 conffile question from dpkg or a download that fails), using code like
19266 this:
19267
19268 &lt;blockquote&gt;&lt;pre&gt;
19269 export DEBIAN_FRONTEND=noninteractive
19270 tasksel --new-install
19271 &lt;/pre&gt;&lt;/blockquote&gt;
19272
19273 This would invoke tasksel, let its automatic task selection pick the
19274 tasks to install, and continue to install the requested tasks without
19275 any output what so ever.
19276
19277 Recently I revisited this problem while working on the automatic
19278 package upgrade testing, because tasksel would some times hang without
19279 any useful feedback, and I want to see what is going on when it
19280 happen. Then it occured to me, I can parse the output from tasksel
19281 when asked to run in test mode, and use that aptitude command line
19282 printed by tasksel then to simulate the tasksel run. I ended up using
19283 code like this:
19284
19285 &lt;blockquote&gt;&lt;pre&gt;
19286 export DEBIAN_FRONTEND=noninteractive
19287 cmd=&quot;$(in_target tasksel -t --new-install | sed &#39;s/debconf-apt-progress -- //&#39;)&quot;
19288 $cmd
19289 &lt;/pre&gt;&lt;/blockquote&gt;
19290
19291 &lt;p&gt;The content of $cmd is typically something like &quot;&lt;tt&gt;aptitude -q
19292 --without-recommends -o APT::Install-Recommends=no -y install
19293 ~t^desktop$ ~t^gnome-desktop$ ~t^laptop$ ~pstandard ~prequired
19294 ~pimportant&lt;/tt&gt;&quot;, which will install the gnome desktop task, the
19295 laptop task and all packages with priority standard , required and
19296 important, just like tasksel would have done it during
19297 installation.&lt;/p&gt;
19298
19299 &lt;p&gt;A better approach is probably to extend tasksel to be able to
19300 install packages without using debconf-apt-progress, for use cases
19301 like this.&lt;/p&gt;
19302 </description>
19303 </item>
19304
19305 <item>
19306 <title>Officeshots taking shape</title>
19307 <link>http://people.skolelinux.org/pere/blog/Officeshots_taking_shape.html</link>
19308 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Officeshots_taking_shape.html</guid>
19309 <pubDate>Sun, 13 Jun 2010 11:40:00 +0200</pubDate>
19310 <description>&lt;p&gt;For those of us caring about document exchange and
19311 interoperability, &lt;a href=&quot;http://www.officeshots.org/&quot;&gt;OfficeShots&lt;/a&gt;
19312 is a great service. It is to ODF documents what
19313 &lt;a href=&quot;http://browsershots.org/&quot;&gt;BrowserShots&lt;/a&gt; is for web
19314 pages.&lt;/p&gt;
19315
19316 &lt;p&gt;A while back, I was contacted by Knut Yrvin at the part of Nokia
19317 that used to be Trolltech, who wanted to help the OfficeShots project
19318 and wondered if the University of Oslo where I work would be
19319 interested in supporting the project. I helped him to navigate his
19320 request to the right people at work, and his request was answered with
19321 a spot in the machine room with power and network connected, and Knut
19322 arranged funding for a machine to fill the spot. The machine is
19323 administrated by the OfficeShots people, so I do not have daily
19324 contact with its progress, and thus from time to time check back to
19325 see how the project is doing.&lt;/p&gt;
19326
19327 &lt;p&gt;Today I had a look, and was happy to see that the Dell box in our
19328 machine room now is the host for several virtual machines running as
19329 OfficeShots factories, and the project is able to render ODF documents
19330 in 17 different document processing implementation on Linux and
19331 Windows. This is great.&lt;/p&gt;
19332 </description>
19333 </item>
19334
19335 <item>
19336 <title>Lenny-&gt;Squeeze upgrades, removals by apt and aptitude</title>
19337 <link>http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__removals_by_apt_and_aptitude.html</link>
19338 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Lenny__Squeeze_upgrades__removals_by_apt_and_aptitude.html</guid>
19339 <pubDate>Sun, 13 Jun 2010 09:05:00 +0200</pubDate>
19340 <description>&lt;p&gt;My
19341 &lt;a href=&quot;http://people.skolelinux.org/pere/blog/Automatic_upgrade_testing_from_Lenny_to_Squeeze.html&quot;&gt;testing
19342 of Debian upgrades&lt;/a&gt; from Lenny to Squeeze continues, and I&#39;ve
19343 finally made the upgrade logs available from
19344 &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;.
19345 I am now testing dist-upgrade of Gnome and KDE in a chroot using both
19346 apt and aptitude, and found their differences interesting. This time
19347 I will only focus on their removal plans.&lt;/p&gt;
19348
19349 &lt;p&gt;After installing a Gnome desktop and the laptop task, apt-get wants
19350 to remove 72 packages when dist-upgrading from Lenny to Squeeze. The
19351 surprising part is that it want to remove xorg and all
19352 xserver-xorg-video* drivers. Clearly not a good choice, but I am not
19353 sure why. When asking aptitude to do the same, it want to remove 129
19354 packages, but most of them are library packages I suspect are no
19355 longer needed. Both of them want to remove bluetooth packages, which
19356 I do not know. Perhaps these bluetooth packages are obsolete?&lt;/p&gt;
19357
19358 &lt;p&gt;For KDE, apt-get want to remove 82 packages, among them kdebase
19359 which seem like a bad idea and xorg the same way as with Gnome. Asking
19360 aptitude for the same, it wants to remove 192 packages, none which are
19361 too surprising.&lt;/p&gt;
19362
19363 &lt;p&gt;I guess the removal of xorg during upgrades should be investigated
19364 and avoided, and perhaps others as well. Here are the complete list
19365 of planned removals. The complete logs is available from the URL
19366 above. Note if you want to repeat these tests, that the upgrade test
19367 for kde+apt-get hung in the tasksel setup because of dpkg asking
19368 conffile questions. No idea why. I worked around it by using
19369 &#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
19370 continue.&lt;/p&gt;
19371
19372 &lt;p&gt;&lt;b&gt;apt-get gnome 72&lt;/b&gt;
19373 &lt;br&gt;bluez-gnome cupsddk-drivers deskbar-applet gnome
19374 gnome-desktop-environment gnome-network-admin gtkhtml3.14
19375 iceweasel-gnome-support libavcodec51 libdatrie0 libgdl-1-0
19376 libgnomekbd2 libgnomekbdui2 libmetacity0 libslab0 libxcb-xlib0
19377 nautilus-cd-burner python-gnome2-desktop python-gnome2-extras
19378 serpentine swfdec-mozilla update-manager xorg xserver-xorg
19379 xserver-xorg-core xserver-xorg-input-all xserver-xorg-input-evdev
19380 xserver-xorg-input-kbd xserver-xorg-input-mouse
19381 xserver-xorg-input-synaptics xserver-xorg-input-wacom
19382 xserver-xorg-video-all xserver-xorg-video-apm xserver-xorg-video-ark
19383 xserver-xorg-video-ati xserver-xorg-video-chips
19384 xserver-xorg-video-cirrus xserver-xorg-video-cyrix
19385 xserver-xorg-video-dummy xserver-xorg-video-fbdev
19386 xserver-xorg-video-glint xserver-xorg-video-i128
19387 xserver-xorg-video-i740 xserver-xorg-video-imstt
19388 xserver-xorg-video-intel xserver-xorg-video-mach64
19389 xserver-xorg-video-mga xserver-xorg-video-neomagic
19390 xserver-xorg-video-nsc xserver-xorg-video-nv
19391 xserver-xorg-video-openchrome xserver-xorg-video-r128
19392 xserver-xorg-video-radeon xserver-xorg-video-radeonhd
19393 xserver-xorg-video-rendition xserver-xorg-video-s3
19394 xserver-xorg-video-s3virge xserver-xorg-video-savage
19395 xserver-xorg-video-siliconmotion xserver-xorg-video-sis
19396 xserver-xorg-video-sisusb xserver-xorg-video-tdfx
19397 xserver-xorg-video-tga xserver-xorg-video-trident
19398 xserver-xorg-video-tseng xserver-xorg-video-v4l
19399 xserver-xorg-video-vesa xserver-xorg-video-vga
19400 xserver-xorg-video-vmware xserver-xorg-video-voodoo xulrunner-1.9
19401 xulrunner-1.9-gnome-support&lt;/p&gt;
19402
19403 &lt;p&gt;&lt;b&gt;aptitude gnome 129&lt;/b&gt;
19404
19405 &lt;br&gt;bluez-gnome bluez-utils cpp-4.3 cupsddk-drivers dhcdbd
19406 djvulibre-desktop finger gnome-app-install gnome-mount
19407 gnome-network-admin gnome-spell gnome-vfs-obexftp
19408 gnome-volume-manager gstreamer0.10-gnomevfs gtkhtml3.14 libao2
19409 libavahi-compat-libdnssd1 libavahi-core5 libavcodec51 libbluetooth2
19410 libcamel1.2-11 libcdio7 libcucul0 libcupsys2 libcurl3 libdatrie0
19411 libdirectfb-1.0-0 libdvdread3 libedataserver1.2-9 libeel2-2.20
19412 libeel2-data libepc-1.0-1 libepc-ui-1.0-1 libfaad0 libgail-common
19413 libgd2-noxpm libgda3-3 libgda3-common libgdl-1-0 libgdl-1-common
19414 libggz2 libggzcore9 libggzmod4 libgksu1.2-0 libgksuui1.0-1 libgmyth0
19415 libgnomecups1.0-1 libgnomekbd2 libgnomekbdui2 libgnomeprint2.2-0
19416 libgnomeprint2.2-data libgnomeprintui2.2-0 libgnomeprintui2.2-common
19417 libgnomevfs2-bin libgpod3 libgraphviz4 libgtkhtml2-0
19418 libgtksourceview-common libgtksourceview1.0-0 libgucharmap6
19419 libhesiod0 libicu38 libiw29 libkpathsea4 libltdl3 libmagick++10
19420 libmagick10 libmalaga7 libmetacity0 libmtp7 libmysqlclient15off
19421 libnautilus-burn4 libneon27 libnm-glib0 libnm-util0 libopal-2.2
19422 libosp5 libparted1.8-10 libpoppler-glib3 libpoppler3 libpt-1.10.10
19423 libpt-1.10.10-plugins-alsa libpt-1.10.10-plugins-v4l libraw1394-8
19424 libsensors3 libslab0 libsmbios2 libsoup2.2-8 libssh2-1
19425 libsuitesparse-3.1.0 libswfdec-0.6-90 libtalloc1 libtotem-plparser10
19426 libtrackerclient0 libxalan2-java libxalan2-java-gcj libxcb-xlib0
19427 libxerces2-java libxerces2-java-gcj libxklavier12 libxtrap6
19428 libxxf86misc1 libzephyr3 mysql-common nautilus-cd-burner
19429 openoffice.org-writer2latex openssl-blacklist p7zip
19430 python-4suite-xml python-eggtrayicon python-gnome2-desktop
19431 python-gnome2-extras python-gtkhtml2 python-gtkmozembed
19432 python-numeric python-sexy serpentine svgalibg1 swfdec-gnome
19433 swfdec-mozilla totem-gstreamer update-manager wodim
19434 xserver-xorg-video-cyrix xserver-xorg-video-imstt
19435 xserver-xorg-video-nsc xserver-xorg-video-v4l xserver-xorg-video-vga
19436 zip&lt;/p&gt;
19437
19438 &lt;p&gt;&lt;b&gt;apt-get kde 82&lt;/b&gt;
19439
19440 &lt;br&gt;cupsddk-drivers karm kaudiocreator kcoloredit kcontrol kde kde-core
19441 kdeaddons kdeartwork kdebase kdebase-bin kdebase-bin-kde3
19442 kdebase-kio-plugins kdesktop kdeutils khelpcenter kicker
19443 kicker-applets knewsticker kolourpaint konq-plugins konqueror korn
19444 kpersonalizer kscreensaver ksplash libavcodec51 libdatrie0 libkiten1
19445 libxcb-xlib0 quanta superkaramba texlive-base-bin xorg xserver-xorg
19446 xserver-xorg-core xserver-xorg-input-all xserver-xorg-input-evdev
19447 xserver-xorg-input-kbd xserver-xorg-input-mouse
19448 xserver-xorg-input-synaptics xserver-xorg-input-wacom
19449 xserver-xorg-video-all xserver-xorg-video-apm xserver-xorg-video-ark
19450 xserver-xorg-video-ati xserver-xorg-video-chips
19451 xserver-xorg-video-cirrus xserver-xorg-video-cyrix
19452 xserver-xorg-video-dummy xserver-xorg-video-fbdev
19453 xserver-xorg-video-glint xserver-xorg-video-i128
19454 xserver-xorg-video-i740 xserver-xorg-video-imstt
19455 xserver-xorg-video-intel xserver-xorg-video-mach64
19456 xserver-xorg-video-mga xserver-xorg-video-neomagic
19457 xserver-xorg-video-nsc xserver-xorg-video-nv
19458 xserver-xorg-video-openchrome xserver-xorg-video-r128
19459 xserver-xorg-video-radeon xserver-xorg-video-radeonhd
19460 xserver-xorg-video-rendition xserver-xorg-video-s3
19461 xserver-xorg-video-s3virge xserver-xorg-video-savage
19462 xserver-xorg-video-siliconmotion xserver-xorg-video-sis
19463 xserver-xorg-video-sisusb xserver-xorg-video-tdfx
19464 xserver-xorg-video-tga xserver-xorg-video-trident
19465 xserver-xorg-video-tseng xserver-xorg-video-v4l
19466 xserver-xorg-video-vesa xserver-xorg-video-vga
19467 xserver-xorg-video-vmware xserver-xorg-video-voodoo xulrunner-1.9&lt;/p&gt;
19468
19469 &lt;p&gt;&lt;b&gt;aptitude kde 192&lt;/b&gt;
19470 &lt;br&gt;bluez-utils cpp-4.3 cupsddk-drivers cvs dcoprss dhcdbd
19471 djvulibre-desktop dosfstools eyesapplet fifteenapplet finger gettext
19472 ghostscript-x imlib-base imlib11 indi kandy karm kasteroids
19473 kaudiocreator kbackgammon kbstate kcoloredit kcontrol kcron kdat
19474 kdeadmin-kfile-plugins kdeartwork-misc kdeartwork-theme-window
19475 kdebase-bin-kde3 kdebase-kio-plugins kdeedu-data
19476 kdegraphics-kfile-plugins kdelirc kdemultimedia-kappfinder-data
19477 kdemultimedia-kfile-plugins kdenetwork-kfile-plugins
19478 kdepim-kfile-plugins kdepim-kio-plugins kdeprint kdesktop kdessh
19479 kdict kdnssd kdvi kedit keduca kenolaba kfax kfaxview kfouleggs
19480 kghostview khelpcenter khexedit kiconedit kitchensync klatin
19481 klickety kmailcvt kmenuedit kmid kmilo kmoon kmrml kodo kolourpaint
19482 kooka korn kpager kpdf kpercentage kpf kpilot kpoker kpovmodeler
19483 krec kregexpeditor ksayit ksim ksirc ksirtet ksmiletris ksmserver
19484 ksnake ksokoban ksplash ksvg ksysv ktip ktnef kuickshow kverbos
19485 kview kviewshell kvoctrain kwifimanager kwin kwin4 kworldclock
19486 kxsldbg libakode2 libao2 libarts1-akode libarts1-audiofile
19487 libarts1-mpeglib libarts1-xine libavahi-compat-libdnssd1
19488 libavahi-core5 libavc1394-0 libavcodec51 libbluetooth2
19489 libboost-python1.34.1 libcucul0 libcurl3 libcvsservice0 libdatrie0
19490 libdirectfb-1.0-0 libdjvulibre21 libdvdread3 libfaad0 libfreebob0
19491 libgail-common libgd2-noxpm libgraphviz4 libgsmme1c2a libgtkhtml2-0
19492 libicu38 libiec61883-0 libindex0 libiw29 libk3b3 libkcal2b libkcddb1
19493 libkdeedu3 libkdepim1a libkgantt0 libkiten1 libkleopatra1 libkmime2
19494 libkpathsea4 libkpimexchange1 libkpimidentities1 libkscan1
19495 libksieve0 libktnef1 liblockdev1 libltdl3 libmagick10 libmimelib1c2a
19496 libmozjs1d libmpcdec3 libneon27 libnm-util0 libopensync0 libpisock9
19497 libpoppler-glib3 libpoppler-qt2 libpoppler3 libraw1394-8 libsmbios2
19498 libssh2-1 libsuitesparse-3.1.0 libtalloc1 libtiff-tools
19499 libxalan2-java libxalan2-java-gcj libxcb-xlib0 libxerces2-java
19500 libxerces2-java-gcj libxtrap6 mpeglib networkstatus
19501 openoffice.org-writer2latex pmount poster psutils quanta quanta-data
19502 superkaramba svgalibg1 tex-common texlive-base texlive-base-bin
19503 texlive-common texlive-doc-base texlive-fonts-recommended
19504 xserver-xorg-video-cyrix xserver-xorg-video-imstt
19505 xserver-xorg-video-nsc xserver-xorg-video-v4l xserver-xorg-video-vga
19506 xulrunner-1.9&lt;/p&gt;
19507
19508 </description>
19509 </item>
19510
19511 <item>
19512 <title>Automatic upgrade testing from Lenny to Squeeze</title>
19513 <link>http://people.skolelinux.org/pere/blog/Automatic_upgrade_testing_from_Lenny_to_Squeeze.html</link>
19514 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatic_upgrade_testing_from_Lenny_to_Squeeze.html</guid>
19515 <pubDate>Fri, 11 Jun 2010 22:50:00 +0200</pubDate>
19516 <description>&lt;p&gt;The last few days I have done some upgrade testing in Debian, to
19517 see if the upgrade from Lenny to Squeeze will go smoothly. A few bugs
19518 have been discovered and reported in the process
19519 (&lt;a href=&quot;http://bugs.debian.org/585410&quot;&gt;#585410&lt;/a&gt; in nagios3-cgi,
19520 &lt;a href=&quot;http://bugs.debian.org/584879&quot;&gt;#584879&lt;/a&gt; already fixed in
19521 enscript and &lt;a href=&quot;http://bugs.debian.org/584861&quot;&gt;#584861&lt;/a&gt; in
19522 kdebase-workspace-data), and to get a more regular testing going on, I
19523 am working on a script to automate the test.&lt;/p&gt;
19524
19525 &lt;p&gt;The idea is to create a Lenny chroot and use tasksel to install a
19526 Gnome or KDE desktop installation inside the chroot before upgrading
19527 it. To ensure no services are started in the chroot, a policy-rc.d
19528 script is inserted. To make sure tasksel believe it is to install a
19529 desktop on a laptop, the tasksel tests are replaced in the chroot
19530 (only acceptable because this is a throw-away chroot).&lt;/p&gt;
19531
19532 &lt;p&gt;A naive upgrade from Lenny to Squeeze using aptitude dist-upgrade
19533 currently always fail because udev refuses to upgrade with the kernel
19534 in Lenny, so to avoid that problem the file /etc/udev/kernel-upgrade
19535 is created. The bug report
19536 &lt;a href=&quot;http://bugs.debian.org/566000&quot;&gt;#566000&lt;/a&gt; make me suspect
19537 this problem do not trigger in a chroot, but I touch the file anyway
19538 to make sure the upgrade go well. Testing on virtual and real
19539 hardware have failed me because of udev so far, and creating this file
19540 do the trick in such settings anyway. This is a
19541 &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
19542 issue&lt;/a&gt; and the current udev behaviour is intended by the udev
19543 maintainer because he lack the resources to rewrite udev to keep
19544 working with old kernels or something like that. I really wish the
19545 udev upstream would keep udev backwards compatible, to avoid such
19546 upgrade problem, but given that they fail to do so, I guess
19547 documenting the way out of this mess is the best option we got for
19548 Debian Squeeze.&lt;/p&gt;
19549
19550 &lt;p&gt;Anyway, back to the task at hand, testing upgrades. This test
19551 script, which I call &lt;tt&gt;upgrade-test&lt;/tt&gt; for now, is doing the
19552 trick:&lt;/p&gt;
19553
19554 &lt;blockquote&gt;&lt;pre&gt;
19555 #!/bin/sh
19556 set -ex
19557
19558 if [ &quot;$1&quot; ] ; then
19559 desktop=$1
19560 else
19561 desktop=gnome
19562 fi
19563
19564 from=lenny
19565 to=squeeze
19566
19567 exec &amp;lt; /dev/null
19568 unset LANG
19569 mirror=http://ftp.skolelinux.org/debian
19570 tmpdir=chroot-$from-upgrade-$to-$desktop
19571 fuser -mv .
19572 debootstrap $from $tmpdir $mirror
19573 chroot $tmpdir aptitude update
19574 cat &gt; $tmpdir/usr/sbin/policy-rc.d &amp;lt;&amp;lt;EOF
19575 #!/bin/sh
19576 exit 101
19577 EOF
19578 chmod a+rx $tmpdir/usr/sbin/policy-rc.d
19579 exit_cleanup() {
19580 umount $tmpdir/proc
19581 }
19582 mount -t proc proc $tmpdir/proc
19583 # Make sure proc is unmounted also on failure
19584 trap exit_cleanup EXIT INT
19585
19586 chroot $tmpdir aptitude -y install debconf-utils
19587
19588 # Make sure tasksel autoselection trigger. It need the test scripts
19589 # to return the correct answers.
19590 echo tasksel tasksel/desktop multiselect $desktop | \
19591 chroot $tmpdir debconf-set-selections
19592
19593 # Include the desktop and laptop task
19594 for test in desktop laptop ; do
19595 echo &gt; $tmpdir/usr/lib/tasksel/tests/$test &amp;lt;&amp;lt;EOF
19596 #!/bin/sh
19597 exit 2
19598 EOF
19599 chmod a+rx $tmpdir/usr/lib/tasksel/tests/$test
19600 done
19601
19602 DEBIAN_FRONTEND=noninteractive
19603 DEBIAN_PRIORITY=critical
19604 export DEBIAN_FRONTEND DEBIAN_PRIORITY
19605 chroot $tmpdir tasksel --new-install
19606
19607 echo deb $mirror $to main &gt; $tmpdir/etc/apt/sources.list
19608 chroot $tmpdir aptitude update
19609 touch $tmpdir/etc/udev/kernel-upgrade
19610 chroot $tmpdir aptitude -y dist-upgrade
19611 fuser -mv
19612 &lt;/pre&gt;&lt;/blockquote&gt;
19613
19614 &lt;p&gt;I suspect it would be useful to test upgrades with both apt-get and
19615 with aptitude, but I have not had time to look at how they behave
19616 differently so far. I hope to get a cron job running to do the test
19617 regularly and post the result on the web. The Gnome upgrade currently
19618 work, while the KDE upgrade fail because of the bug in
19619 kdebase-workspace-data&lt;/p&gt;
19620
19621 &lt;p&gt;I am not quite sure what kind of extract from the huge upgrade logs
19622 (KDE 167 KiB, Gnome 516 KiB) it make sense to include in this blog
19623 post, so I will refrain from trying. I can report that for Gnome,
19624 aptitude report 760 packages upgraded, 448 newly installed, 129 to
19625 remove and 1 not upgraded and 1024MB need to be downloaded while for
19626 KDE the same numbers are 702 packages upgraded, 507 newly installed,
19627 193 to remove and 0 not upgraded and 1117MB need to be downloaded&lt;/p&gt;
19628
19629 &lt;p&gt;I am very happy to notice that the Gnome desktop + laptop upgrade
19630 is able to migrate to dependency based boot sequencing and parallel
19631 booting without a hitch. Was unsure if there were still bugs with
19632 packages failing to clean up their obsolete init.d script during
19633 upgrades, and no such problem seem to affect the Gnome desktop+laptop
19634 packages.&lt;/p&gt;
19635 </description>
19636 </item>
19637
19638 <item>
19639 <title>Upstart or sysvinit - as init.d scripts see it</title>
19640 <link>http://people.skolelinux.org/pere/blog/Upstart_or_sysvinit___as_init_d_scripts_see_it.html</link>
19641 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Upstart_or_sysvinit___as_init_d_scripts_see_it.html</guid>
19642 <pubDate>Sun, 6 Jun 2010 23:55:00 +0200</pubDate>
19643 <description>&lt;p&gt;If Debian is to migrate to upstart on Linux, I expect some init.d
19644 scripts to migrate (some of) their operations to upstart job while
19645 keeping the init.d for hurd and kfreebsd. The packages with such
19646 needs will need a way to get their init.d scripts to behave
19647 differently when used with sysvinit and with upstart. Because of
19648 this, I had a look at the environment variables set when a init.d
19649 script is running under upstart, and when it is not.&lt;/p&gt;
19650
19651 &lt;p&gt;With upstart, I notice these environment variables are set when a
19652 script is started from rcS.d/ (ignoring some irrelevant ones like
19653 COLUMNS):&lt;/p&gt;
19654
19655 &lt;blockquote&gt;&lt;pre&gt;
19656 DEFAULT_RUNLEVEL=2
19657 previous=N
19658 PREVLEVEL=
19659 RUNLEVEL=
19660 runlevel=S
19661 UPSTART_EVENTS=startup
19662 UPSTART_INSTANCE=
19663 UPSTART_JOB=rc-sysinit
19664 &lt;/pre&gt;&lt;/blockquote&gt;
19665
19666 &lt;p&gt;With sysvinit, these environment variables are set for the same
19667 script.&lt;/p&gt;
19668
19669 &lt;blockquote&gt;&lt;pre&gt;
19670 INIT_VERSION=sysvinit-2.88
19671 previous=N
19672 PREVLEVEL=N
19673 RUNLEVEL=S
19674 runlevel=S
19675 &lt;/pre&gt;&lt;/blockquote&gt;
19676
19677 &lt;p&gt;The RUNLEVEL and PREVLEVEL environment variables passed on from
19678 sysvinit are not set by upstart. Not sure if it is intentional or not
19679 to not be compatible with sysvinit in this regard.&lt;/p&gt;
19680
19681 &lt;p&gt;For scripts needing to behave differently when upstart is used,
19682 looking for the UPSTART_JOB environment variable seem to be a good
19683 choice.&lt;/p&gt;
19684 </description>
19685 </item>
19686
19687 <item>
19688 <title>A manual for standards wars...</title>
19689 <link>http://people.skolelinux.org/pere/blog/A_manual_for_standards_wars___.html</link>
19690 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/A_manual_for_standards_wars___.html</guid>
19691 <pubDate>Sun, 6 Jun 2010 14:15:00 +0200</pubDate>
19692 <description>&lt;p&gt;Via the
19693 &lt;a href=&quot;http://feedproxy.google.com/~r/robweir/antic-atom/~3/QzU4RgoAGMg/weekly-links-10.html&quot;&gt;blog
19694 of Rob Weir&lt;/a&gt; I came across the very interesting essay named
19695 &lt;a href=&quot;http://faculty.haas.berkeley.edu/shapiro/wars.pdf&quot;&gt;The Art of
19696 Standards Wars&lt;/a&gt; (PDF 25 pages). I recommend it for everyone
19697 following the standards wars of today.&lt;/p&gt;
19698 </description>
19699 </item>
19700
19701 <item>
19702 <title>Sitesummary tip: Listing computer hardware models used at site</title>
19703 <link>http://people.skolelinux.org/pere/blog/Sitesummary_tip__Listing_computer_hardware_models_used_at_site.html</link>
19704 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Sitesummary_tip__Listing_computer_hardware_models_used_at_site.html</guid>
19705 <pubDate>Thu, 3 Jun 2010 12:05:00 +0200</pubDate>
19706 <description>&lt;p&gt;When using sitesummary at a site to track machines, it is possible
19707 to get a list of the machine types in use thanks to the DMI
19708 information extracted from each machine. The script to do so is
19709 included in the sitesummary package, and here is example output from
19710 the Skolelinux build servers:&lt;/p&gt;
19711
19712 &lt;blockquote&gt;&lt;pre&gt;
19713 maintainer:~# /usr/lib/sitesummary/hardware-model-summary
19714 vendor count
19715 Dell Computer Corporation 1
19716 PowerEdge 1750 1
19717 IBM 1
19718 eserver xSeries 345 -[8670M1X]- 1
19719 Intel 2
19720 [no-dmi-info] 3
19721 maintainer:~#
19722 &lt;/pre&gt;&lt;/blockquote&gt;
19723
19724 &lt;p&gt;The quality of the report depend on the quality of the DMI tables
19725 provided in each machine. Here there are Intel machines without model
19726 information listed with Intel as vendor and no model, and virtual Xen
19727 machines listed as [no-dmi-info]. One can add -l as a command line
19728 option to list the individual machines.&lt;/p&gt;
19729
19730 &lt;p&gt;A larger list is
19731 &lt;a href=&quot;http://narvikskolen.no/sitesummary/&quot;&gt;available from the the
19732 city of Narvik&lt;/a&gt;, which uses Skolelinux on all their shools and also
19733 provide the basic sitesummary report publicly. In their report there
19734 are ~1400 machines. I know they use both Ubuntu and Skolelinux on
19735 their machines, and as sitesummary is available in both distributions,
19736 it is trivial to get all of them to report to the same central
19737 collector.&lt;/p&gt;
19738 </description>
19739 </item>
19740
19741 <item>
19742 <title>KDM fail at boot with NVidia cards - and no one try to fix it?</title>
19743 <link>http://people.skolelinux.org/pere/blog/KDM_fail_at_boot_with_NVidia_cards___and_no_one_try_to_fix_it_.html</link>
19744 <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>
19745 <pubDate>Tue, 1 Jun 2010 17:05:00 +0200</pubDate>
19746 <description>&lt;p&gt;It is strange to watch how a bug in Debian causing KDM to fail to
19747 start at boot when an NVidia video card is used is handled. The
19748 problem seem to be that the nvidia X.org driver uses a long time to
19749 initialize, and this duration is longer than kdm is configured to
19750 wait.&lt;/p&gt;
19751
19752 &lt;p&gt;I came across two bugs related to this issue,
19753 &lt;a href=&quot;http://bugs.debian.org/583312&quot;&gt;#583312&lt;/a&gt; initially filed
19754 against initscripts and passed on to nvidia-glx when it became obvious
19755 that the nvidia drivers were involved, and
19756 &lt;a href=&quot;http://bugs.debian.org/524751&quot;&gt;#524751&lt;/a&gt; initially filed against
19757 kdm and passed on to src:nvidia-graphics-drivers for unknown reasons.&lt;/p&gt;
19758
19759 &lt;p&gt;To me, it seem that no-one is interested in actually solving the
19760 problem nvidia video card owners experience and make sure the Debian
19761 distribution work out of the box for these users. The nvidia driver
19762 maintainers expect kdm to be set up to wait longer, while kdm expect
19763 the nvidia driver maintainers to fix the driver to start faster, and
19764 while they wait for each other I guess the users end up switching to a
19765 distribution that work for them. I have no idea what the solution is,
19766 but I am pretty sure that waiting for each other is not it.&lt;/p&gt;
19767
19768 &lt;p&gt;I wonder why we end up handling bugs this way.&lt;/p&gt;
19769 </description>
19770 </item>
19771
19772 <item>
19773 <title>Parallellized boot seem to hold up well in Debian/testing</title>
19774 <link>http://people.skolelinux.org/pere/blog/Parallellized_boot_seem_to_hold_up_well_in_Debian_testing.html</link>
19775 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Parallellized_boot_seem_to_hold_up_well_in_Debian_testing.html</guid>
19776 <pubDate>Thu, 27 May 2010 23:55:00 +0200</pubDate>
19777 <description>&lt;p&gt;A few days ago, parallel booting was enabled in Debian/testing.
19778 The feature seem to hold up pretty well, but three fairly serious
19779 issues are known and should be solved:
19780
19781 &lt;p&gt;&lt;ul&gt;
19782
19783 &lt;li&gt;The wicd package seen to
19784 &lt;a href=&quot;http://bugs.debian.org/508289&quot;&gt;break NFS mounting&lt;/a&gt; and
19785 &lt;a href=&quot;http://bugs.debian.org/581586&quot;&gt;network setup&lt;/a&gt; when
19786 parallel booting is enabled. No idea why, but the wicd maintainer
19787 seem to be on the case.&lt;/li&gt;
19788
19789 &lt;li&gt;The nvidia X driver seem to
19790 &lt;a href=&quot;http://bugs.debian.org/583312&quot;&gt;have a race condition&lt;/a&gt;
19791 triggered more easily when parallel booting is in effect. The
19792 maintainer is on the case.&lt;/li&gt;
19793
19794 &lt;li&gt;The sysv-rc package fail to properly enable dependency based boot
19795 sequencing (the shutdown is broken) when old file-rc users
19796 &lt;a href=&quot;http://bugs.debian.org/575080&quot;&gt;try to switch back&lt;/a&gt; to
19797 sysv-rc. One way to solve it would be for file-rc to create
19798 /etc/init.d/.legacy-bootordering, and another is to try to make
19799 sysv-rc more robust. Will investigate some more and probably upload a
19800 workaround in sysv-rc to help those trying to move from file-rc to
19801 sysv-rc get a working shutdown.&lt;/li&gt;
19802
19803 &lt;/ul&gt;&lt;/p&gt;
19804
19805 &lt;p&gt;All in all not many surprising issues, and all of them seem
19806 solvable before Squeeze is released. In addition to these there are
19807 some packages with bugs in their dependencies and run level settings,
19808 which I expect will be fixed in a reasonable time span.&lt;/p&gt;
19809
19810 &lt;p&gt;If you report any problems with dependencies in init.d scripts to
19811 the BTS, please usertag the report to get it to show up at
19812 &lt;a href=&quot;http://bugs.debian.org/cgi-bin/pkgreport.cgi?users=initscripts-ng-devel@lists.alioth.debian.org&quot;&gt;the
19813 list of usertagged bugs related to this&lt;/a&gt;.&lt;/p&gt;
19814
19815 &lt;p&gt;Update: Correct bug number to file-rc issue.&lt;/p&gt;
19816 </description>
19817 </item>
19818
19819 <item>
19820 <title>More flexible firmware handling in debian-installer</title>
19821 <link>http://people.skolelinux.org/pere/blog/More_flexible_firmware_handling_in_debian_installer.html</link>
19822 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/More_flexible_firmware_handling_in_debian_installer.html</guid>
19823 <pubDate>Sat, 22 May 2010 21:30:00 +0200</pubDate>
19824 <description>&lt;p&gt;After a long break from debian-installer development, I finally
19825 found time today to return to the project. Having to spend less time
19826 working dependency based boot in debian, as it is almost complete now,
19827 definitely helped freeing some time.&lt;/p&gt;
19828
19829 &lt;p&gt;A while back, I ran into a problem while working on Debian Edu. We
19830 include some firmware packages on the Debian Edu CDs, those needed to
19831 get disk and network controllers working. Without having these
19832 firmware packages available during installation, it is impossible to
19833 install Debian Edu on the given machine, and because our target group
19834 are non-technical people, asking them to provide firmware packages on
19835 an external medium is a support pain. Initially, I expected it to be
19836 enough to include the firmware packages on the CD to get
19837 debian-installer to find and use them. This proved to be wrong.
19838 Next, I hoped it was enough to symlink the relevant firmware packages
19839 to some useful location on the CD (tried /cdrom/ and
19840 /cdrom/firmware/). This also proved to not work, and at this point I
19841 found time to look at the debian-installer code to figure out what was
19842 going to work.&lt;/p&gt;
19843
19844 &lt;p&gt;The firmware loading code is in the hw-detect package, and a closer
19845 look revealed that it would only look for firmware packages outside
19846 the installation media, so the CD was never checked for firmware
19847 packages. It would only check USB sticks, floppies and other
19848 &quot;external&quot; media devices. Today I changed it to also look in the
19849 /cdrom/firmware/ directory on the mounted CD or DVD, which should
19850 solve the problem I ran into with Debian edu. I also changed it to
19851 look in /firmware/, to make sure the installer also find firmware
19852 provided in the initrd when booting the installer via PXE, to allow us
19853 to provide the same feature in the PXE setup included in Debian
19854 Edu.&lt;/p&gt;
19855
19856 &lt;p&gt;To make sure firmware deb packages with a license questions are not
19857 activated without asking if the license is accepted, I extended
19858 hw-detect to look for preinst scripts in the firmware packages, and
19859 run these before activating the firmware during installation. The
19860 license question is asked using debconf in the preinst, so this should
19861 solve the issue for the firmware packages I have looked at so far.&lt;/p&gt;
19862
19863 &lt;p&gt;If you want to discuss the details of these features, please
19864 contact us on debian-boot@lists.debian.org.&lt;/p&gt;
19865 </description>
19866 </item>
19867
19868 <item>
19869 <title>Pieces of the roaming laptop puzzle in Debian</title>
19870 <link>http://people.skolelinux.org/pere/blog/Pieces_of_the_roaming_laptop_puzzle_in_Debian.html</link>
19871 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Pieces_of_the_roaming_laptop_puzzle_in_Debian.html</guid>
19872 <pubDate>Wed, 19 May 2010 19:00:00 +0200</pubDate>
19873 <description>&lt;p&gt;Today, the last piece of the puzzle for roaming laptops in Debian
19874 Edu finally entered the Debian archive. Today, the new
19875 &lt;a href=&quot;http://packages.qa.debian.org/libp/libpam-mklocaluser.html&quot;&gt;libpam-mklocaluser&lt;/a&gt;
19876 package was accepted. Two days ago, two other pieces was accepted
19877 into unstable. The
19878 &lt;a href=&quot;http://packages.qa.debian.org/p/pam-python.html&quot;&gt;pam-python&lt;/a&gt;
19879 package needed by libpam-mklocaluser, and the
19880 &lt;a href=&quot;http://packages.qa.debian.org/s/sssd.html&quot;&gt;sssd&lt;/a&gt; package
19881 passed NEW on Monday. In addition, the
19882 &lt;a href=&quot;http://packages.qa.debian.org/libp/libpam-ccreds.html&quot;&gt;libpam-ccreds&lt;/a&gt;
19883 package we need is in experimental (version 10-4) since Saturday, and
19884 hopefully will be moved to unstable soon.&lt;/p&gt;
19885
19886 &lt;p&gt;This collection of packages allow for two different setups for
19887 roaming laptops. The traditional setup would be using libpam-ccreds,
19888 nscd and libpam-mklocaluser with LDAP or Kerberos authentication,
19889 which should work out of the box if the configuration changes proposed
19890 for nscd in &lt;a href=&quot;http://bugs.debian.org/485282&quot;&gt;BTS report
19891 #485282&lt;/a&gt; is implemented. The alternative setup is to use sssd with
19892 libpam-mklocaluser to connect to LDAP or Kerberos and let sssd take
19893 care of the caching of passwords and group information.&lt;/p&gt;
19894
19895 &lt;p&gt;I have so far been unable to get sssd to work with the LDAP server
19896 at the University, but suspect the issue is some SSL/GnuTLS related
19897 problem with the server certificate. I plan to update the Debian
19898 package to version 1.2, which is scheduled for next week, and hope to
19899 find time to make sure the next release will include both the
19900 Debian/Ubuntu specific patches. Upstream is friendly and responsive,
19901 and I am sure we will find a good solution.&lt;/p&gt;
19902
19903 &lt;p&gt;The idea is to set up the roaming laptops to authenticate using
19904 LDAP or Kerberos and create a local user with home directory in /home/
19905 when a usre in LDAP logs in via KDM or GDM for the first time, and
19906 cache the password for offline checking, as well as caching group
19907 memberhips and other relevant LDAP information. The
19908 libpam-mklocaluser package was created to make sure the local home
19909 directory is in /home/, instead of /site/server/directory/ which would
19910 be the home directory if pam_mkhomedir was used. To avoid confusion
19911 with support requests and configuration, we do not want local laptops
19912 to have users in a path that is used for the same users home directory
19913 on the home directory servers.&lt;/p&gt;
19914
19915 &lt;p&gt;One annoying problem with gdm is that it do not show the PAM
19916 message passed to the user from libpam-mklocaluser when the local user
19917 is created. Instead gdm simply reject the login with some generic
19918 message. The message is shown in kdm, ssh and login, so I guess it is
19919 a bug in gdm. Have not investigated if there is some other message
19920 type that can be used instead to get gdm to also show the message.&lt;/p&gt;
19921
19922 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
19923 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
19924 </description>
19925 </item>
19926
19927 <item>
19928 <title>Parallellized boot is now the default in Debian/unstable</title>
19929 <link>http://people.skolelinux.org/pere/blog/Parallellized_boot_is_now_the_default_in_Debian_unstable.html</link>
19930 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Parallellized_boot_is_now_the_default_in_Debian_unstable.html</guid>
19931 <pubDate>Fri, 14 May 2010 22:40:00 +0200</pubDate>
19932 <description>&lt;p&gt;Since this evening, parallel booting is the default in
19933 Debian/unstable for machines using dependency based boot sequencing.
19934 Apparently the testing of concurrent booting has been wider than
19935 expected, if I am to believe the
19936 &lt;a href=&quot;http://lists.debian.org/debian-devel/2010/05/msg00122.html&quot;&gt;input
19937 on debian-devel@&lt;/a&gt;, and I concluded a few days ago to move forward
19938 with the feature this weekend, to give us some time to detect any
19939 remaining problems before Squeeze is frozen. If serious problems are
19940 detected, it is simple to change the default back to sequential boot.
19941 The upload of the new sysvinit package also activate a new upstream
19942 version.&lt;/p&gt;
19943
19944 More information about
19945 &lt;a href=&quot;http://wiki.debian.org/LSBInitScripts/DependencyBasedBoot&quot;&gt;dependency
19946 based boot sequencing&lt;/a&gt; is available from the Debian wiki. It is
19947 currently possible to disable parallel booting when one run into
19948 problems caused by it, by adding this line to /etc/default/rcS:&lt;/p&gt;
19949
19950 &lt;blockquote&gt;&lt;pre&gt;
19951 CONCURRENCY=none
19952 &lt;/pre&gt;&lt;/blockquote&gt;
19953
19954 &lt;p&gt;If you report any problems with dependencies in init.d scripts to
19955 the BTS, please usertag the report to get it to show up at
19956 &lt;a href=&quot;http://bugs.debian.org/cgi-bin/pkgreport.cgi?users=initscripts-ng-devel@lists.alioth.debian.org&quot;&gt;the
19957 list of usertagged bugs related to this&lt;/a&gt;.&lt;/p&gt;
19958 </description>
19959 </item>
19960
19961 <item>
19962 <title>Sitesummary tip: Listing MAC address of all clients</title>
19963 <link>http://people.skolelinux.org/pere/blog/Sitesummary_tip__Listing_MAC_address_of_all_clients.html</link>
19964 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Sitesummary_tip__Listing_MAC_address_of_all_clients.html</guid>
19965 <pubDate>Fri, 14 May 2010 21:10:00 +0200</pubDate>
19966 <description>&lt;p&gt;In the recent Debian Edu versions, the
19967 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/HowTo/SiteSummary&quot;&gt;sitesummary
19968 system&lt;/a&gt; is used to keep track of the machines in the school
19969 network. Each machine will automatically report its status to the
19970 central server after boot and once per night. The network setup is
19971 also reported, and using this information it is possible to get the
19972 MAC address of all network interfaces in the machines. This is useful
19973 to update the DHCP configuration.&lt;/p&gt;
19974
19975 &lt;p&gt;To give some idea how to use sitesummary, here is a one-liner to
19976 ist all MAC addresses of all machines reporting to sitesummary. Run
19977 this on the collector host:&lt;/p&gt;
19978
19979 &lt;blockquote&gt;&lt;pre&gt;
19980 perl -MSiteSummary -e &#39;for_all_hosts(sub { print join(&quot; &quot;, get_macaddresses(shift)), &quot;\n&quot;; });&#39;
19981 &lt;/pre&gt;&lt;/blockquote&gt;
19982
19983 &lt;p&gt;This will list all MAC addresses assosiated with all machine, one
19984 line per machine and with space between the MAC addresses.&lt;/p&gt;
19985
19986 &lt;p&gt;To allow system administrators easier job at adding static DHCP
19987 addresses for hosts, it would be possible to extend this to fetch
19988 machine information from sitesummary and update the DHCP and DNS
19989 tables in LDAP using this information. Such tool is unfortunately not
19990 written yet.&lt;/p&gt;
19991 </description>
19992 </item>
19993
19994 <item>
19995 <title>systemd, an interesting alternative to upstart</title>
19996 <link>http://people.skolelinux.org/pere/blog/systemd__an_interesting_alternative_to_upstart.html</link>
19997 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/systemd__an_interesting_alternative_to_upstart.html</guid>
19998 <pubDate>Thu, 13 May 2010 22:20:00 +0200</pubDate>
19999 <description>&lt;p&gt;The last few days a new boot system called
20000 &lt;a href=&quot;http://www.freedesktop.org/wiki/Software/systemd&quot;&gt;systemd&lt;/a&gt;
20001 has been
20002 &lt;a href=&quot;http://0pointer.de/blog/projects/systemd.html&quot;&gt;introduced&lt;/a&gt;
20003
20004 to the free software world. I have not yet had time to play around
20005 with it, but it seem to be a very interesting alternative to
20006 &lt;a href=&quot;http://upstart.ubuntu.com/&quot;&gt;upstart&lt;/a&gt;, and might prove to be
20007 a good alternative for Debian when we are able to switch to an event
20008 based boot system. Tollef is
20009 &lt;a href=&quot;http://bugs.debian.org/580814&quot;&gt;in the process&lt;/a&gt; of getting
20010 systemd into Debian, and I look forward to seeing how well it work. I
20011 like the fact that systemd handles init.d scripts with dependency
20012 information natively, allowing them to run in parallel where upstart
20013 at the moment do not.&lt;/p&gt;
20014
20015 &lt;p&gt;Unfortunately do systemd have the same problem as upstart regarding
20016 platform support. It only work on recent Linux kernels, and also need
20017 some new kernel features enabled to function properly. This means
20018 kFreeBSD and Hurd ports of Debian will need a port or a different boot
20019 system. Not sure how that will be handled if systemd proves to be the
20020 way forward.&lt;/p&gt;
20021
20022 &lt;p&gt;In the mean time, based on the
20023 &lt;a href=&quot;http://lists.debian.org/debian-devel/2010/05/msg00122.html&quot;&gt;input
20024 on debian-devel@&lt;/a&gt; regarding parallel booting in Debian, I have
20025 decided to enable full parallel booting as the default in Debian as
20026 soon as possible (probably this weekend or early next week), to see if
20027 there are any remaining serious bugs in the init.d dependencies. A
20028 new version of the sysvinit package implementing this change is
20029 already in experimental. If all go well, Squeeze will be released
20030 with parallel booting enabled by default.&lt;/p&gt;
20031 </description>
20032 </item>
20033
20034 <item>
20035 <title>Parallellizing the boot in Debian Squeeze - ready for wider testing</title>
20036 <link>http://people.skolelinux.org/pere/blog/Parallellizing_the_boot_in_Debian_Squeeze___ready_for_wider_testing.html</link>
20037 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Parallellizing_the_boot_in_Debian_Squeeze___ready_for_wider_testing.html</guid>
20038 <pubDate>Thu, 6 May 2010 23:25:00 +0200</pubDate>
20039 <description>&lt;p&gt;These days, the init.d script dependencies in Squeeze are quite
20040 complete, so complete that it is actually possible to run all the
20041 init.d scripts in parallell based on these dependencies. If you want
20042 to test your Squeeze system, make sure
20043 &lt;a href=&quot;http://wiki.debian.org/LSBInitScripts/DependencyBasedBoot&quot;&gt;dependency
20044 based boot sequencing&lt;/a&gt; is enabled, and add this line to
20045 /etc/default/rcS:&lt;/p&gt;
20046
20047 &lt;blockquote&gt;&lt;pre&gt;
20048 CONCURRENCY=makefile
20049 &lt;/pre&gt;&lt;/blockquote&gt;
20050
20051 &lt;p&gt;That is it. It will cause sysv-rc to use the startpar tool to run
20052 scripts in parallel using the dependency information stored in
20053 /etc/init.d/.depend.boot, /etc/init.d/.depend.start and
20054 /etc/init.d/.depend.stop to order the scripts. Startpar is configured
20055 to try to start the kdm and gdm scripts as early as possible, and will
20056 start the facilities required by kdm or gdm as early as possible to
20057 make this happen.&lt;/p&gt;
20058
20059 &lt;p&gt;Give it a try, and see if you like the result. If some services
20060 fail to start properly, it is most likely because they have incomplete
20061 init.d script dependencies in their startup script (or some of their
20062 dependent scripts have incomplete dependencies). Report bugs and get
20063 the package maintainers to fix it. :)&lt;/p&gt;
20064
20065 &lt;p&gt;Running scripts in parallel could be the default in Debian when we
20066 manage to get the init.d script dependencies complete and correct. I
20067 expect we will get there in Squeeze+1, if we get manage to test and
20068 fix the remaining issues.&lt;/p&gt;
20069
20070 &lt;p&gt;If you report any problems with dependencies in init.d scripts to
20071 the BTS, please usertag the report to get it to show up at
20072 &lt;a href=&quot;http://bugs.debian.org/cgi-bin/pkgreport.cgi?users=initscripts-ng-devel@lists.alioth.debian.org&quot;&gt;the
20073 list of usertagged bugs related to this&lt;/a&gt;.&lt;/p&gt;
20074 </description>
20075 </item>
20076
20077 <item>
20078 <title>Forcing new users to change their password on first login</title>
20079 <link>http://people.skolelinux.org/pere/blog/Forcing_new_users_to_change_their_password_on_first_login.html</link>
20080 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Forcing_new_users_to_change_their_password_on_first_login.html</guid>
20081 <pubDate>Sun, 2 May 2010 13:47:00 +0200</pubDate>
20082 <description>&lt;p&gt;One interesting feature in Active Directory, is the ability to
20083 create a new user with an expired password, and thus force the user to
20084 change the password on the first login attempt.&lt;/p&gt;
20085
20086 &lt;p&gt;I&#39;m not quite sure how to do that with the LDAP setup in Debian
20087 Edu, but did some initial testing with a local account. The account
20088 and password aging information is available in /etc/shadow, but
20089 unfortunately, it is not possible to specify an expiration time for
20090 passwords, only a maximum age for passwords.&lt;/p&gt;
20091
20092 &lt;p&gt;A freshly created account (using adduser test) will have these
20093 settings in /etc/shadow:&lt;/p&gt;
20094
20095 &lt;blockquote&gt;&lt;pre&gt;
20096 root@tjener:~# chage -l test
20097 Last password change : May 02, 2010
20098 Password expires : never
20099 Password inactive : never
20100 Account expires : never
20101 Minimum number of days between password change : 0
20102 Maximum number of days between password change : 99999
20103 Number of days of warning before password expires : 7
20104 root@tjener:~#
20105 &lt;/pre&gt;&lt;/blockquote&gt;
20106
20107 &lt;p&gt;The only way I could come up with to create a user with an expired
20108 account, is to change the date of the last password change to the
20109 lowest value possible (January 1th 1970), and the maximum password age
20110 to the difference in days between that date and today. To make it
20111 simple, I went for 30 years (30 * 365 = 10950) and January 2th (to
20112 avoid testing if 0 is a valid value).&lt;/p&gt;
20113
20114 &lt;p&gt;After using these commands to set it up, it seem to work as
20115 intended:&lt;/p&gt;
20116
20117 &lt;blockquote&gt;&lt;pre&gt;
20118 root@tjener:~# chage -d 1 test; chage -M 10950 test
20119 root@tjener:~# chage -l test
20120 Last password change : Jan 02, 1970
20121 Password expires : never
20122 Password inactive : never
20123 Account expires : never
20124 Minimum number of days between password change : 0
20125 Maximum number of days between password change : 10950
20126 Number of days of warning before password expires : 7
20127 root@tjener:~#
20128 &lt;/pre&gt;&lt;/blockquote&gt;
20129
20130 &lt;p&gt;So far I have tested this with ssh and console, and kdm (in
20131 Squeeze) login, and all ask for a new password before login in the
20132 user (with ssh, I was thrown out and had to log in again).&lt;/p&gt;
20133
20134 &lt;p&gt;Perhaps we should set up something similar for Debian Edu, to make
20135 sure only the user itself have the account password?&lt;/p&gt;
20136
20137 &lt;p&gt;If you want to comment on or help out with implementing this for
20138 Debian Edu, please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
20139
20140 &lt;p&gt;Update 2010-05-02 17:20: Paul Tötterman tells me on IRC that the
20141 shadow(8) page in Debian/testing now state that setting the date of
20142 last password change to zero (0) will force the password to be changed
20143 on the first login. This was not mentioned in the manual in Lenny, so
20144 I did not notice this in my initial testing. I have tested it on
20145 Squeeze, and &#39;&lt;tt&gt;chage -d 0 username&lt;/tt&gt;&#39; do work there. I have not
20146 tested it on Lenny yet.&lt;/p&gt;
20147
20148 &lt;p&gt;Update 2010-05-02-19:05: Jim Paris tells me via email that an
20149 equivalent command to expire a password is &#39;&lt;tt&gt;passwd -e
20150 username&lt;/tt&gt;&#39;, which insert zero into the date of the last password
20151 change.&lt;/p&gt;
20152 </description>
20153 </item>
20154
20155 <item>
20156 <title>Thoughts on roaming laptop setup for Debian Edu</title>
20157 <link>http://people.skolelinux.org/pere/blog/Thoughts_on_roaming_laptop_setup_for_Debian_Edu.html</link>
20158 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Thoughts_on_roaming_laptop_setup_for_Debian_Edu.html</guid>
20159 <pubDate>Wed, 28 Apr 2010 20:40:00 +0200</pubDate>
20160 <description>&lt;p&gt;For some years now, I have wondered how we should handle laptops in
20161 Debian Edu. The Debian Edu infrastructure is mostly designed to
20162 handle stationary computers, and less suited for computers that come
20163 and go.&lt;/p&gt;
20164
20165 &lt;p&gt;Now I finally believe I have an sensible idea on how to adjust
20166 Debian Edu for laptops, by introducing a new profile for them, for
20167 example called Roaming Workstations. Here are my thought on this.
20168 The setup would consist of the following:&lt;/p&gt;
20169
20170 &lt;ul&gt;
20171
20172 &lt;li&gt;During installation, the user name of the owner / primary user of
20173 the laptop is requested and a local home directory is set up for
20174 the user, with uid and gid information fetched from the LDAP
20175 server. This allow the user to work also when offline. The
20176 central home directory can be available in a subdirectory on
20177 request, for example mounted via CIFS. It could be mounted
20178 automatically when a user log in while on the Debian Edu network,
20179 and unmounted when the machine is taken away (network down,
20180 hibernate, etc), it can be set up to do automatic mounting on
20181 request (using autofs), or perhaps some GUI button on the desktop
20182 can be used to access it when needed. Perhaps it is enough to use
20183 the fish protocol in KDE?&lt;/li&gt;
20184
20185 &lt;li&gt;Password checking is set up to use LDAP or Kerberos
20186 authentication when the machine is on the Debian Edu network, and
20187 to cache the password for offline checking when the machine unable
20188 to reach the LDAP or Kerberos server. This can be done using
20189 &lt;a href=&quot;http://www.padl.com/OSS/pam_ccreds.html&quot;&gt;libpam-ccreds&lt;/a&gt;
20190 or the Fedora developed
20191 &lt;a href=&quot;https://fedoraproject.org/wiki/Features/SSSD&quot;&gt;System
20192 Security Services Daemon&lt;/a&gt; packages.&lt;/li&gt;
20193
20194 &lt;li&gt;File synchronisation with the central home directory is set up
20195 using a shared directory in both the local and the central home
20196 directory, using unison.&lt;/li&gt;
20197
20198 &lt;li&gt;Printing should be set up to print to all printers broadcasting
20199 their existence on the local network, and should then work out of
20200 the box with CUPS. For sites needing accurate printer quotas, some
20201 system with Kerberos authentication or printing via ssh could be
20202 implemented.&lt;/li&gt;
20203
20204 &lt;li&gt;For users that should have local root access to their laptop,
20205 sudo should be used to allow this to the local user.&lt;/li&gt;
20206
20207 &lt;li&gt;It would be nice if user and group information from LDAP is
20208 cached on the client, but given that there are entries for the
20209 local user and primary group in /etc/, it should not be needed.&lt;/li&gt;
20210
20211 &lt;/ul&gt;
20212
20213 &lt;p&gt;I believe all the pieces to implement this are in Debian/testing at
20214 the moment. If we work quickly, we should be able to get this ready
20215 in time for the Squeeze release to freeze. Some of the pieces need
20216 tweaking, like libpam-ccreds should get support for pam-auth-update
20217 (&lt;a href=&quot;http://bugs.debian.org/566718&quot;&gt;#566718&lt;/a&gt;) and nslcd (or
20218 perhaps debian-edu-config) should get some integration code to stop
20219 its daemon when the LDAP server is unavailable to avoid long timeouts
20220 when disconnected from the net. If we get Kerberos enabled, we need
20221 to make sure we avoid long timeouts there too.&lt;/p&gt;
20222
20223 &lt;p&gt;If you want to help out with implementing this for Debian Edu,
20224 please contact us on debian-edu@lists.debian.org.&lt;/p&gt;
20225 </description>
20226 </item>
20227
20228 <item>
20229 <title>Great book: &quot;Content: Selected Essays on Technology, Creativity, Copyright, and the Future of the Future&quot;</title>
20230 <link>http://people.skolelinux.org/pere/blog/Great_book___Content__Selected_Essays_on_Technology__Creativity__Copyright__and_the_Future_of_the_Future_.html</link>
20231 <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>
20232 <pubDate>Mon, 19 Apr 2010 17:10:00 +0200</pubDate>
20233 <description>&lt;p&gt;The last few weeks i have had the pleasure of reading a
20234 thought-provoking collection of essays by Cory Doctorow, on topics
20235 touching copyright, virtual worlds, the future of man when the
20236 conscience mind can be duplicated into a computer and many more. The
20237 book titled &quot;Content: Selected Essays on Technology, Creativity,
20238 Copyright, and the Future of the Future&quot; is available with few
20239 restrictions on the web, for example from
20240 &lt;a href=&quot;http://craphound.com/content/&quot;&gt;his own site&lt;/a&gt;. I read the
20241 epub-version from
20242 &lt;a href=&quot;http://www.feedbooks.com/book/2883&quot;&gt;feedbooks&lt;/a&gt; using
20243 &lt;a href=&quot;http://www.fbreader.org/&quot;&gt;fbreader&lt;/a&gt; and my N810. I
20244 strongly recommend this book.&lt;/p&gt;
20245 </description>
20246 </item>
20247
20248 <item>
20249 <title>Kerberos for Debian Edu/Squeeze?</title>
20250 <link>http://people.skolelinux.org/pere/blog/Kerberos_for_Debian_Edu_Squeeze_.html</link>
20251 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Kerberos_for_Debian_Edu_Squeeze_.html</guid>
20252 <pubDate>Wed, 14 Apr 2010 17:20:00 +0200</pubDate>
20253 <description>&lt;p&gt;&lt;a href=&quot;http://www.nuug.no/aktiviteter/20100413-kerberos/&quot;&gt;Yesterdays
20254 NUUG presentation&lt;/a&gt; about Kerberos was inspiring, and reminded me
20255 about the need to start using Kerberos in Skolelinux. Setting up a
20256 Kerberos server seem to be straight forward, and if we get this in
20257 place a long time before the Squeeze version of Debian freezes, we
20258 have a chance to migrate Skolelinux away from NFSv3 for the home
20259 directories, and over to an architecture where the infrastructure do
20260 not have to trust IP addresses and machines, and instead can trust
20261 users and cryptographic keys instead.&lt;/p&gt;
20262
20263 &lt;p&gt;A challenge will be integration and administration. Is there a
20264 Kerberos implementation for Debian where one can control the
20265 administration access in Kerberos using LDAP groups? With it, the
20266 school administration will have to maintain access control using flat
20267 files on the main server, which give a huge potential for errors.&lt;/p&gt;
20268
20269 &lt;p&gt;A related question I would like to know is how well Kerberos and
20270 pam-ccreds (offline password check) work together. Anyone know?&lt;/p&gt;
20271
20272 &lt;p&gt;Next step will be to use Kerberos for access control in Lwat and
20273 Nagios. I have no idea how much work that will be to implement. We
20274 would also need to document how to integrate with Windows AD, as such
20275 shared network will require two Kerberos realms that need to cooperate
20276 to work properly.&lt;/p&gt;
20277
20278 &lt;p&gt;I believe a good start would be to start using Kerberos on the
20279 skolelinux.no machines, and this way get ourselves experience with
20280 configuration and integration. A natural starting point would be
20281 setting up ldap.skolelinux.no as the Kerberos server, and migrate the
20282 rest of the machines from PAM via LDAP to PAM via Kerberos one at the
20283 time.&lt;/p&gt;
20284
20285 &lt;p&gt;If you would like to contribute to get this working in Skolelinux,
20286 I recommend you to see the video recording from yesterdays NUUG
20287 presentation, and start using Kerberos at home. The video show show
20288 up in a few days.&lt;/p&gt;
20289 </description>
20290 </item>
20291
20292 <item>
20293 <title>After 6 years of waiting, the Xreset.d feature is implemented</title>
20294 <link>http://people.skolelinux.org/pere/blog/After_6_years_of_waiting__the_Xreset_d_feature_is_implemented.html</link>
20295 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/After_6_years_of_waiting__the_Xreset_d_feature_is_implemented.html</guid>
20296 <pubDate>Sat, 6 Mar 2010 18:15:00 +0100</pubDate>
20297 <description>&lt;p&gt;6 years ago, as part of the Debian Edu development I am involved
20298 in, I asked for a hook in the kdm and gdm setup to run scripts as root
20299 when the user log out. A bug was submitted against the xfree86-common
20300 package in 2004 (&lt;a href=&quot;http://bugs.debian.org/230422&quot;&gt;#230422&lt;/a&gt;),
20301 and revisited every time Debian Edu was working on a new release.
20302 Today, this finally paid off.&lt;/p&gt;
20303
20304 &lt;p&gt;The framework for this feature was today commited to the git
20305 repositry for the xorg package, and the git repository for xdm has
20306 been updated to use this framework. Next on my agenda is to make sure
20307 kdm and gdm also add code to use this framework.&lt;/p&gt;
20308
20309 &lt;p&gt;In Debian Edu, we want to ability to run commands as root when the
20310 user log out, to get rid of runaway processes and do general cleanup
20311 after a user. With this framework in place, we finally can do that in
20312 a generic way that work with all display managers using this
20313 framework. My goal is to get all display managers in Debian use it,
20314 similar to how they use the Xsession.d framework today.&lt;p&gt;
20315 </description>
20316 </item>
20317
20318 <item>
20319 <title>Debian Edu / Skolelinux based on Lenny released, work continues</title>
20320 <link>http://people.skolelinux.org/pere/blog/Debian_Edu___Skolelinux_based_on_Lenny_released__work_continues.html</link>
20321 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_Edu___Skolelinux_based_on_Lenny_released__work_continues.html</guid>
20322 <pubDate>Thu, 11 Feb 2010 17:15:00 +0100</pubDate>
20323 <description>&lt;p&gt;On Tuesday, the Debian/Lenny based version of
20324 &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Skolelinux&lt;/a&gt; was finally
20325 shipped. This was a major leap forward for the project, and I am very
20326 pleased that we finally got the release wrapped up. Work on the first
20327 point release starts imediately, as we plan to get that one out a
20328 month after the major release, to include all fixes for bugs we found
20329 and fixed too late in the release process to include last Tuesday.&lt;/p&gt;
20330
20331 &lt;p&gt;Perhaps it even is time for some partying?&lt;/p&gt;
20332
20333 &lt;p&gt;After this first point release, my plan is to focus again on the
20334 next major release, based on Squeeze. We will try to get as many of
20335 the fixes we need into the official Debian packages before the freeze,
20336 and have just a few weeks or months to make it happen.&lt;/p&gt;
20337 </description>
20338 </item>
20339
20340 <item>
20341 <title>Automatic Munin and Nagios configuration</title>
20342 <link>http://people.skolelinux.org/pere/blog/Automatic_Munin_and_Nagios_configuration.html</link>
20343 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Automatic_Munin_and_Nagios_configuration.html</guid>
20344 <pubDate>Wed, 27 Jan 2010 15:15:00 +0100</pubDate>
20345 <description>&lt;p&gt;One of the new features in the next Debian/Lenny based release of
20346 Debian Edu/Skolelinux, which is scheduled for release in the next few
20347 days, is automatic configuration of the service monitoring system
20348 Nagios. The previous release had automatic configuration of trend
20349 analysis using Munin, and this Lenny based release take that a step
20350 further.&lt;/p&gt;
20351
20352 &lt;p&gt;When installing a Debian Edu Main-server, it is automatically
20353 configured as a Munin and Nagios server. In addition, it is
20354 configured to be a server for the
20355 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/HowTo/SiteSummary&quot;&gt;SiteSummary
20356 system&lt;/a&gt; I have written for use in Debian Edu. The SiteSummary
20357 system is inspired by a system used by the University of Oslo where I
20358 work. In short, the system provide a centralised collector of
20359 information about the computers on the network, and a client on each
20360 computer submitting information to this collector. This allow for
20361 automatic information on which packages are installed on each machine,
20362 which kernel the machines are using, what kind of configuration the
20363 packages got etc. This also allow us to automatically generate Munin
20364 and Nagios configuration.&lt;/p&gt;
20365
20366 &lt;p&gt;All computers reporting to the sitesummary collector with the
20367 munin-node package installed is automatically enabled as a Munin
20368 client and graphs from the statistics collected from that machine show
20369 up automatically on http://www/munin/ on the Main-server.&lt;/p&gt;
20370
20371 &lt;p&gt;All non-laptop computers reporting to the sitesummary collector are
20372 automatically monitored for network presence (ping and any network
20373 services detected). In addition, all computers (also laptops) with
20374 the nagios-nrpe-server package installed and configured the way
20375 sitesummary would configure it, are monitored for full disks, software
20376 raid status, swap free and other checks that need to run locally on
20377 the machine.&lt;/p&gt;
20378
20379 &lt;p&gt;The result is that the administrator on a school using Debian Edu
20380 based on Lenny will be able to check the health of his installation
20381 with one look at the Nagios settings, without having to spend any time
20382 keeping the Nagios configuration up-to-date.&lt;/p&gt;
20383
20384 &lt;p&gt;The only configuration one need to do to get Nagios up and running
20385 is to set the password used to get access via HTTP. The system
20386 administrator need to run &quot;&lt;tt&gt;htpasswd /etc/nagios3/htpasswd.users
20387 nagiosadmin&lt;/tt&gt;&quot; to create a nagiosadmin user and set a password for
20388 it to be able to log into the Nagios web pages. After that,
20389 everything is taken care of.&lt;/p&gt;
20390 </description>
20391 </item>
20392
20393 <item>
20394 <title>Relative popularity of document formats (MS Office vs. ODF)</title>
20395 <link>http://people.skolelinux.org/pere/blog/Relative_popularity_of_document_formats__MS_Office_vs__ODF_.html</link>
20396 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Relative_popularity_of_document_formats__MS_Office_vs__ODF_.html</guid>
20397 <pubDate>Wed, 12 Aug 2009 15:50:00 +0200</pubDate>
20398 <description>&lt;p&gt;Just for fun, I did a search right now on Google for a few file ODF
20399 and MS Office based formats (not to be mistaken for ISO or ECMA
20400 OOXML), to get an idea of their relative usage. I searched using
20401 &#39;filetype:odt&#39; and equvalent terms, and got these results:&lt;/P&gt;
20402
20403 &lt;table&gt;
20404 &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;
20405 &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;
20406 &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;
20407 &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;
20408 &lt;/table&gt;
20409
20410 &lt;p&gt;Next, I added a &#39;site:no&#39; limit to get the numbers for Norway, and
20411 got these numbers:&lt;/p&gt;
20412
20413 &lt;table&gt;
20414 &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;
20415 &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;
20416 &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;
20417 &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;
20418 &lt;/table&gt;
20419
20420 &lt;p&gt;I wonder how these numbers change over time.&lt;/p&gt;
20421
20422 &lt;p&gt;I am aware of Google returning different results and numbers based
20423 on where the search is done, so I guess these numbers will differ if
20424 they are conduced in another country. Because of this, I did the same
20425 search from a machine in California, USA, a few minutes after the
20426 search done from a machine here in Norway.&lt;/p&gt;
20427
20428
20429 &lt;table&gt;
20430 &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;
20431 &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;
20432 &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;
20433 &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;
20434 &lt;/table&gt;
20435
20436 &lt;p&gt;And with &#39;site:no&#39;:
20437
20438 &lt;table&gt;
20439 &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;
20440 &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;
20441 &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;
20442 &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;
20443 &lt;/table&gt;
20444
20445 &lt;p&gt;Interesting difference, not sure what to conclude from these
20446 numbers.&lt;/p&gt;
20447 </description>
20448 </item>
20449
20450 <item>
20451 <title>ISO still hope to fix OOXML</title>
20452 <link>http://people.skolelinux.org/pere/blog/ISO_still_hope_to_fix_OOXML.html</link>
20453 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/ISO_still_hope_to_fix_OOXML.html</guid>
20454 <pubDate>Sat, 8 Aug 2009 14:00:00 +0200</pubDate>
20455 <description>&lt;p&gt;According to &lt;a
20456 href=&quot;http://twerner.blogspot.com/2009/08/defects-of-office-open-xml.html&quot;&gt;a
20457 blog post from Torsten Werner&lt;/a&gt;, the current defect report for ISO
20458 29500 (ISO OOXML) is 809 pages. His interesting point is that the
20459 defect report is 71 pages more than the full ODF 1.1 specification.
20460 Personally I find it more interesting that ISO still believe ISO OOXML
20461 can be fixed in ISO. Personally, I believe it is broken beyon repair,
20462 and I completely lack any trust in ISO for being able to get anywhere
20463 close to solving the problems. I was part of the Norwegian committee
20464 involved in the OOXML fast track process, and was not impressed with
20465 Standard Norway and ISO in how they handled it.&lt;/p&gt;
20466
20467 &lt;p&gt;These days I focus on ODF instead, which seem like a specification
20468 with the future ahead of it. We are working in NUUG to organise a ODF
20469 seminar this autumn.&lt;/p&gt;
20470 </description>
20471 </item>
20472
20473 <item>
20474 <title>Debian has switched to dependency based boot sequencing</title>
20475 <link>http://people.skolelinux.org/pere/blog/Debian_has_switched_to_dependency_based_boot_sequencing.html</link>
20476 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_has_switched_to_dependency_based_boot_sequencing.html</guid>
20477 <pubDate>Mon, 27 Jul 2009 23:50:00 +0200</pubDate>
20478 <description>&lt;p&gt;Since this evening, with the upload of sysvinit version 2.87dsf-2,
20479 and the upload of insserv version 1.12.0-10 yesterday, Debian unstable
20480 have been migrated to using dependency based boot sequencing. This
20481 conclude work me and others have been doing for the last three days.
20482 It feels great to see this finally part of the default Debian
20483 installation. Now we just need to weed out the last few problems that
20484 are bound to show up, to get everything ready for Squeeze.&lt;/p&gt;
20485
20486 &lt;p&gt;The next step is migrating /sbin/init from sysvinit to upstart, and
20487 fixing the more fundamental problem of handing the event based
20488 non-predictable kernel in the early boot.&lt;/p&gt;
20489 </description>
20490 </item>
20491
20492 <item>
20493 <title>Taking over sysvinit development</title>
20494 <link>http://people.skolelinux.org/pere/blog/Taking_over_sysvinit_development.html</link>
20495 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Taking_over_sysvinit_development.html</guid>
20496 <pubDate>Wed, 22 Jul 2009 23:00:00 +0200</pubDate>
20497 <description>&lt;p&gt;After several years of frustration with the lack of activity from
20498 the existing sysvinit upstream developer, I decided a few weeks ago to
20499 take over the package and become the new upstream. The number of
20500 patches to track for the Debian package was becoming a burden, and the
20501 lack of synchronization between the distribution made it hard to keep
20502 the package up to date.&lt;/p&gt;
20503
20504 &lt;p&gt;On the new sysvinit team is the SuSe maintainer Dr. Werner Fink,
20505 and my Debian co-maintainer Kel Modderman. About 10 days ago, I made
20506 a new upstream tarball with version number 2.87dsf (for Debian, SuSe
20507 and Fedora), based on the patches currently in use in these
20508 distributions. We Debian maintainers plan to move to this tarball as
20509 the new upstream as soon as we find time to do the merge. Since the
20510 new tarball was created, we agreed with Werner at SuSe to make a new
20511 upstream project at &lt;a href=&quot;http://savannah.nongnu.org/&quot;&gt;Savannah&lt;/a&gt;, and continue
20512 development there. The project is registered and currently waiting
20513 for approval by the Savannah administrators, and as soon as it is
20514 approved, we will import the old versions from svn and continue
20515 working on the future release.&lt;/p&gt;
20516
20517 &lt;p&gt;It is a bit ironic that this is done now, when some of the involved
20518 distributions are moving to upstart as a syvinit replacement.&lt;/p&gt;
20519 </description>
20520 </item>
20521
20522 <item>
20523 <title>Debian boots quicker and quicker</title>
20524 <link>http://people.skolelinux.org/pere/blog/Debian_boots_quicker_and_quicker.html</link>
20525 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Debian_boots_quicker_and_quicker.html</guid>
20526 <pubDate>Wed, 24 Jun 2009 21:40:00 +0200</pubDate>
20527 <description>&lt;p&gt;I spent Monday and tuesday this week in London with a lot of the
20528 people involved in the boot system on Debian and Ubuntu, to see if we
20529 could find more ways to speed up the boot system. This was an Ubuntu
20530 funded
20531 &lt;a href=&quot;https://wiki.ubuntu.com/FoundationsTeam/BootPerformance/DebianUbuntuSprint&quot;&gt;developer
20532 gathering&lt;/a&gt;. It was quite productive. We also discussed the future
20533 of boot systems, and ways to handle the increasing number of boot
20534 issues introduced by the Linux kernel becoming more and more
20535 asynchronous and event base. The Ubuntu approach using udev and
20536 upstart might be a good way forward. Time will show.&lt;/p&gt;
20537
20538 &lt;p&gt;Anyway, there are a few ways at the moment to speed up the boot
20539 process in Debian. All of these should be applied to get a quick
20540 boot:&lt;/p&gt;
20541
20542 &lt;ul&gt;
20543
20544 &lt;li&gt;Use dash as /bin/sh.&lt;/li&gt;
20545
20546 &lt;li&gt;Disable the init.d/hwclock*.sh scripts and make sure the hardware
20547 clock is in UTC.&lt;/li&gt;
20548
20549 &lt;li&gt;Install and activate the insserv package to enable
20550 &lt;a href=&quot;http://wiki.debian.org/LSBInitScripts/DependencyBasedBoot&quot;&gt;dependency
20551 based boot sequencing&lt;/a&gt;, and enable concurrent booting.&lt;/li&gt;
20552
20553 &lt;/ul&gt;
20554
20555 These points are based on the Google summer of code work done by
20556 &lt;a href=&quot;http://initscripts-ng.alioth.debian.org/soc2006-bootsystem/&quot;&gt;Carlos
20557 Villegas&lt;/a&gt;.
20558
20559 &lt;p&gt;Support for makefile-style concurrency during boot was uploaded to
20560 unstable yesterday. When we tested it, we were able to cut 6 seconds
20561 from the boot sequence. It depend on very correct dependency
20562 declaration in all init.d scripts, so I expect us to find edge cases
20563 where the dependences in some scripts are slightly wrong when we start
20564 using this.&lt;/p&gt;
20565
20566 &lt;p&gt;On our IRC channel for this effort, #pkg-sysvinit, a new idea was
20567 introduced by Raphael Geissert today, one that could affect the
20568 startup speed as well. Instead of starting some scripts concurrently
20569 from rcS.d/ and another set of scripts from rc2.d/, it would be
20570 possible to run a of them in the same process. A quick way to test
20571 this would be to enable insserv and run &#39;mv /etc/rc2.d/S* /etc/rcS.d/;
20572 insserv&#39;. Will need to test if that work. :)&lt;/p&gt;
20573 </description>
20574 </item>
20575
20576 <item>
20577 <title>Two projects that have improved the quality of free software a lot</title>
20578 <link>http://people.skolelinux.org/pere/blog/Two_projects_that_have_improved_the_quality_of_free_software_a_lot.html</link>
20579 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Two_projects_that_have_improved_the_quality_of_free_software_a_lot.html</guid>
20580 <pubDate>Sat, 2 May 2009 15:00:00 +0200</pubDate>
20581 <description>&lt;p&gt;There are two software projects that have had huge influence on the
20582 quality of free software, and I wanted to mention both in case someone
20583 do not yet know them.&lt;/p&gt;
20584
20585 &lt;p&gt;The first one is &lt;a href=&quot;http://valgrind.org/&quot;&gt;valgrind&lt;/a&gt;, a
20586 tool to detect and expose errors in the memory handling of programs.
20587 It is easy to use, all one need to do is to run &#39;valgrind program&#39;,
20588 and it will report any problems on stdout. It is even better if the
20589 program include debug information. With debug information, it is able
20590 to report the source file name and line number where the problem
20591 occurs. It can report things like &#39;reading past memory block in file
20592 X line N, the memory block was allocated in file Y, line M&#39;, and
20593 &#39;using uninitialised value in control logic&#39;. This tool has made it
20594 trivial to investigate reproducible crash bugs in programs, and have
20595 reduced the number of this kind of bugs in free software a lot.
20596
20597 &lt;p&gt;The second one is
20598 &lt;a href=&quot;http://en.wikipedia.org/wiki/Coverity&quot;&gt;Coverity&lt;/a&gt; which is
20599 a source code checker. It is able to process the source of a program
20600 and find problems in the logic without running the program. It
20601 started out as the Stanford Checker and became well known when it was
20602 used to find bugs in the Linux kernel. It is now a commercial tool
20603 and the company behind it is running
20604 &lt;a href=&quot;http://www.scan.coverity.com/&quot;&gt;a community service&lt;/a&gt; for the
20605 free software community, where a lot of free software projects get
20606 their source checked for free. Several thousand defects have been
20607 found and fixed so far. It can find errors like &#39;lock L taken in file
20608 X line N is never released if exiting in line M&#39;, or &#39;the code in file
20609 Y lines O to P can never be executed&#39;. The projects included in the
20610 community service project have managed to get rid of a lot of
20611 reliability problems thanks to Coverity.&lt;/p&gt;
20612
20613 &lt;p&gt;I believe tools like this, that are able to automatically find
20614 errors in the source, are vital to improve the quality of software and
20615 make sure we can get rid of the crashing and failing software we are
20616 surrounded by today.&lt;/p&gt;
20617 </description>
20618 </item>
20619
20620 <item>
20621 <title>No patch is not better than a useless patch</title>
20622 <link>http://people.skolelinux.org/pere/blog/No_patch_is_not_better_than_a_useless_patch.html</link>
20623 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/No_patch_is_not_better_than_a_useless_patch.html</guid>
20624 <pubDate>Tue, 28 Apr 2009 09:30:00 +0200</pubDate>
20625 <description>&lt;p&gt;Julien Blache
20626 &lt;a href=&quot;http://blog.technologeek.org/2009/04/12/214&quot;&gt;claim that no
20627 patch is better than a useless patch&lt;/a&gt;. I completely disagree, as a
20628 patch allow one to discuss a concrete and proposed solution, and also
20629 prove that the issue at hand is important enough for someone to spent
20630 time on fixing it. No patch do not provide any of these positive
20631 properties.&lt;/p&gt;
20632 </description>
20633 </item>
20634
20635 <item>
20636 <title>Recording video from cron using VLC</title>
20637 <link>http://people.skolelinux.org/pere/blog/Recording_video_from_cron_using_VLC.html</link>
20638 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Recording_video_from_cron_using_VLC.html</guid>
20639 <pubDate>Sun, 5 Apr 2009 10:00:00 +0200</pubDate>
20640 <description>&lt;p&gt;One think I have wanted to figure out for a along time is how to
20641 run vlc from cron to do recording of video streams on the net. The
20642 task is trivial with mplayer, but I do not really trust the security
20643 of mplayer (it crashes too often on strange input), and thus prefer
20644 vlc. I finally found a way to do it today. I spent an hour or so
20645 searching the web for recipes and reading the documentation. The
20646 hardest part was to get rid of the GUI window, but after finding the
20647 dummy interface, the command line finally presented itself:&lt;/p&gt;
20648
20649 &lt;blockquote&gt;&lt;pre&gt;URL=http://www.ping.uio.no/video/rms-oslo_2009.ogg
20650 SAVEFILE=rms.ogg
20651 DISPLAY= vlc -q $URL \
20652 --sout=&quot;#duplicate{dst=std{access=file,url=&#39;$SAVEFILE&#39;},dst=nodisplay}&quot; \
20653 --intf=dummy&lt;/pre&gt;&lt;/blockquote&gt;
20654
20655 &lt;p&gt;The command stream the URL and store it in the SAVEFILE by
20656 duplicating the output stream to &quot;nodisplay&quot; and the file, using the
20657 dummy interface. The dummy interface and the nodisplay output make
20658 sure no X interface is needed.&lt;/p&gt;
20659
20660 &lt;p&gt;The cron job then need to start this job with the appropriate URL
20661 and file name to save, sleep for the duration wanted, and then kill
20662 the vlc process with SIGTERM. Here is a complete script
20663 &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;
20664
20665 &lt;blockquote&gt;&lt;pre&gt;#!/bin/sh
20666 set -e
20667 URL=&quot;$1&quot;
20668 SAVEFILE=&quot;$2&quot;
20669 DURATION=&quot;$3&quot;
20670 DISPLAY= vlc -q &quot;$URL&quot; \
20671 --sout=&quot;#duplicate{dst=std{access=file,url=&#39;$SAVEFILE&#39;},dst=nodisplay}&quot; \
20672 --intf=dummy &lt; /dev/null &gt; /dev/null 2&gt;&amp;1 &amp;
20673 pid=$!
20674 sleep $DURATION
20675 kill $pid
20676 wait $pid&lt;/pre&gt;&lt;/blockquote&gt;
20677 </description>
20678 </item>
20679
20680 <item>
20681 <title>Standardize on protocols and formats, not vendors and applications</title>
20682 <link>http://people.skolelinux.org/pere/blog/Standardize_on_protocols_and_formats__not_vendors_and_applications.html</link>
20683 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Standardize_on_protocols_and_formats__not_vendors_and_applications.html</guid>
20684 <pubDate>Mon, 30 Mar 2009 11:50:00 +0200</pubDate>
20685 <description>&lt;p&gt;Where I work at the University of Oslo, one decision stand out as a
20686 very good one to form a long lived computer infrastructure. It is the
20687 simple one, lost by many in todays computer industry: Standardize on
20688 open network protocols and open exchange/storage formats, not applications.
20689 Applications come and go, while protocols and files tend to stay, and
20690 thus one want to make it easy to change application and vendor, while
20691 avoiding conversion costs and locking users to a specific platform or
20692 application.&lt;/p&gt;
20693
20694 &lt;p&gt;This approach make it possible to replace the client applications
20695 independently of the server applications. One can even allow users to
20696 use several different applications as long as they handle the selected
20697 protocol and format. In the normal case, only one client application
20698 is recommended and users only get help if they choose to use this
20699 application, but those that want to deviate from the easy path are not
20700 blocked from doing so.&lt;/p&gt;
20701
20702 &lt;p&gt;It also allow us to replace the server side without forcing the
20703 users to replace their applications, and thus allow us to select the
20704 best server implementation at any moment, when scale and resouce
20705 requirements change.&lt;/p&gt;
20706
20707 &lt;p&gt;I strongly recommend standardizing - on open network protocols and
20708 open formats, but I would never recommend standardizing on a single
20709 application that do not use open network protocol or open formats.&lt;/p&gt;
20710 </description>
20711 </item>
20712
20713 <item>
20714 <title>Returning from Skolelinux developer gathering</title>
20715 <link>http://people.skolelinux.org/pere/blog/Returning_from_Skolelinux_developer_gathering.html</link>
20716 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Returning_from_Skolelinux_developer_gathering.html</guid>
20717 <pubDate>Sun, 29 Mar 2009 21:00:00 +0200</pubDate>
20718 <description>&lt;p&gt;I&#39;m sitting on the train going home from this weekends Debian
20719 Edu/Skolelinux development gathering. I got a bit done tuning the
20720 desktop, and looked into the dynamic service location protocol
20721 implementation avahi. It look like it could be useful for us. Almost
20722 30 people participated, and I believe it was a great environment to
20723 get to know the Skolelinux system. Walter Bender, involved in the
20724 development of the Sugar educational platform, presented his stuff and
20725 also helped me improve my OLPC installation. He also showed me that
20726 his Turtle Art application can be used in standalone mode, and we
20727 agreed that I would help getting it packaged for Debian. As a
20728 standalone application it would be great for Debian Edu. We also
20729 tried to get the video conferencing working with two OLPCs, but that
20730 proved to be too hard for us. The application seem to need more work
20731 before it is ready for me. I look forward to getting home and relax
20732 now. :)&lt;/p&gt;
20733 </description>
20734 </item>
20735
20736 <item>
20737 <title>Time for new LDAP schemas replacing RFC 2307?</title>
20738 <link>http://people.skolelinux.org/pere/blog/Time_for_new__LDAP_schemas_replacing_RFC_2307_.html</link>
20739 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Time_for_new__LDAP_schemas_replacing_RFC_2307_.html</guid>
20740 <pubDate>Sun, 29 Mar 2009 20:30:00 +0200</pubDate>
20741 <description>&lt;p&gt;The state of standardized LDAP schemas on Linux is far from
20742 optimal. There is RFC 2307 documenting one way to store NIS maps in
20743 LDAP, and a modified version of this normally called RFC 2307bis, with
20744 some modifications to be compatible with Active Directory. The RFC
20745 specification handle the content of a lot of system databases, but do
20746 not handle DNS zones and DHCP configuration.&lt;/p&gt;
20747
20748 &lt;p&gt;In &lt;a href=&quot;http://www.skolelinux.org/&quot;&gt;Debian Edu/Skolelinux&lt;/a&gt;,
20749 we would like to store information about users, SMB clients/hosts,
20750 filegroups, netgroups (users and hosts), DHCP and DNS configuration,
20751 and LTSP configuration in LDAP. These objects have a lot in common,
20752 but with the current LDAP schemas it is not possible to have one
20753 object per entity. For example, one need to have at least three LDAP
20754 objects for a given computer, one with the SMB related stuff, one with
20755 DNS information and another with DHCP information. The schemas
20756 provided for DNS and DHCP are impossible to combine into one LDAP
20757 object. In addition, it is impossible to implement quick queries for
20758 netgroup membership, because of the way NIS triples are implemented.
20759 It just do not scale. I believe it is time for a few RFC
20760 specifications to cleam up this mess.&lt;/p&gt;
20761
20762 &lt;p&gt;I would like to have one LDAP object representing each computer in
20763 the network, and this object can then keep the SMB (ie host key), DHCP
20764 (mac address/name) and DNS (name/IP address) settings in one place.
20765 It need to be efficently stored to make sure it scale well.&lt;/p&gt;
20766
20767 &lt;p&gt;I would also like to have a quick way to map from a user or
20768 computer and to the net group this user or computer is a member.&lt;/p&gt;
20769
20770 &lt;p&gt;Active Directory have done a better job than unix heads like myself
20771 in this regard, and the unix side need to catch up. Time to start a
20772 new IETF work group?&lt;/p&gt;
20773 </description>
20774 </item>
20775
20776 <item>
20777 <title>Checking server hardware support status for Dell, HP and IBM servers</title>
20778 <link>http://people.skolelinux.org/pere/blog/Checking_server_hardware_support_status_for_Dell__HP_and_IBM_servers.html</link>
20779 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Checking_server_hardware_support_status_for_Dell__HP_and_IBM_servers.html</guid>
20780 <pubDate>Sat, 28 Feb 2009 23:50:00 +0100</pubDate>
20781 <description>&lt;p&gt;At work, we have a few hundred Linux servers, and with that amount
20782 of hardware it is important to keep track of when the hardware support
20783 contract expire for each server. We have a machine (and service)
20784 register, which until recently did not contain much useful besides the
20785 machine room location and contact information for the system owner for
20786 each machine. To make it easier for us to track support contract
20787 status, I&#39;ve recently spent time on extending the machine register to
20788 include information about when the support contract expire, and to tag
20789 machines with expired contracts to make it easy to get a list of such
20790 machines. I extended a perl script already being used to import
20791 information about machines into the register, to also do some screen
20792 scraping off the sites of Dell, HP and IBM (our majority of machines
20793 are from these vendors), and automatically check the support status
20794 for the relevant machines. This make the support status information
20795 easily available and I hope it will make it easier for the computer
20796 owner to know when to get new hardware or renew the support contract.
20797 The result of this work documented that 27% of the machines in the
20798 registry is without a support contract, and made it very easy to find
20799 them. 27% might seem like a lot, but I see it more as the case of us
20800 using machines a bit longer than the 3 years a normal support contract
20801 last, to have test machines and a platform for less important
20802 services. After all, the machines without a contract are working fine
20803 at the moment and the lack of contract is only a problem if any of
20804 them break down. When that happen, we can either fix it using spare
20805 parts from other machines or move the service to another old
20806 machine.&lt;/p&gt;
20807
20808 &lt;p&gt;I believe the code for screen scraping the Dell site was originally
20809 written by Trond Hasle Amundsen, and later adjusted by me and Morten
20810 Werner Forsbring. The HP scraping was written by me after reading a
20811 nice article in ;login: about how to use WWW::Mechanize, and the IBM
20812 scraping was written by me based on the Dell code. I know the HTML
20813 parsing could be done using nice libraries, but did not want to
20814 introduce more dependencies. This is the current incarnation:&lt;/p&gt;
20815
20816 &lt;pre&gt;
20817 use LWP::Simple;
20818 use POSIX;
20819 use WWW::Mechanize;
20820 use Date::Parse;
20821 [...]
20822 sub get_support_info {
20823 my ($machine, $model, $serial, $productnumber) = @_;
20824 my $str;
20825
20826 if ( $model =~ m/^Dell / ) {
20827 # fetch website from Dell support
20828 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;;
20829 my $webpage = get($url);
20830 return undef unless ($webpage);
20831
20832 my $daysleft = -1;
20833 my @lines = split(/\n/, $webpage);
20834 foreach my $line (@lines) {
20835 next unless ($line =~ m/Beskrivelse/);
20836 $line =~ s/&amp;lt;[^&gt;]+?&gt;/;/gm;
20837 $line =~ s/^.+?;(Beskrivelse;)/$1/;
20838
20839 my @f = split(/\;/, $line);
20840 @f = @f[13 .. $#f];
20841 my $lastend = &quot;&quot;;
20842 while ($f[3] eq &quot;DELL&quot;) {
20843 my ($type, $startstr, $endstr, $days) = @f[0, 5, 7, 10];
20844
20845 my $start = POSIX::strftime(&quot;%Y-%m-%d&quot;,
20846 localtime(str2time($startstr)));
20847 my $end = POSIX::strftime(&quot;%Y-%m-%d&quot;,
20848 localtime(str2time($endstr)));
20849 $str .= &quot;$type $start -&gt; $end &quot;;
20850 @f = @f[14 .. $#f];
20851 $lastend = $end if ($end gt $lastend);
20852 }
20853 my $today = POSIX::strftime(&quot;%Y-%m-%d&quot;, localtime(time));
20854 tag_machine_unsupported($machine)
20855 if ($lastend lt $today);
20856 }
20857 } elsif ( $model =~ m/^HP / ) {
20858 my $mech = WWW::Mechanize-&gt;new();
20859 my $url =
20860 &#39;http://www1.itrc.hp.com/service/ewarranty/warrantyInput.do&#39;;
20861 $mech-&gt;get($url);
20862 my $fields = {
20863 &#39;BODServiceID&#39; =&gt; &#39;NA&#39;,
20864 &#39;RegisteredPurchaseDate&#39; =&gt; &#39;&#39;,
20865 &#39;country&#39; =&gt; &#39;NO&#39;,
20866 &#39;productNumber&#39; =&gt; $productnumber,
20867 &#39;serialNumber1&#39; =&gt; $serial,
20868 };
20869 $mech-&gt;submit_form( form_number =&gt; 2,
20870 fields =&gt; $fields );
20871 # Next step is screen scraping
20872 my $content = $mech-&gt;content();
20873
20874 $content =~ s/&amp;lt;[^&gt;]+?&gt;/;/gm;
20875 $content =~ s/\s+/ /gm;
20876 $content =~ s/;\s*;/;;/gm;
20877 $content =~ s/;[\s;]+/;/gm;
20878
20879 my $today = POSIX::strftime(&quot;%Y-%m-%d&quot;, localtime(time));
20880
20881 while ($content =~ m/;Warranty Type;/) {
20882 my ($type, $status, $startstr, $stopstr) = $content =~
20883 m/;Warranty Type;([^;]+);.+?;Status;(\w+);Start Date;([^;]+);End Date;([^;]+);/;
20884 $content =~ s/^.+?;Warranty Type;//;
20885 my $start = POSIX::strftime(&quot;%Y-%m-%d&quot;,
20886 localtime(str2time($startstr)));
20887 my $end = POSIX::strftime(&quot;%Y-%m-%d&quot;,
20888 localtime(str2time($stopstr)));
20889
20890 $str .= &quot;$type ($status) $start -&gt; $end &quot;;
20891
20892 tag_machine_unsupported($machine)
20893 if ($end lt $today);
20894 }
20895 } elsif ( $model =~ m/^IBM / ) {
20896 # This code ignore extended support contracts.
20897 my ($producttype) = $model =~ m/.*-\[(.{4}).+\]-/;
20898 if ($producttype &amp;amp;&amp;amp; $serial) {
20899 my $content =
20900 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;);
20901 if ($content) {
20902 $content =~ s/&amp;lt;[^&gt;]+?&gt;/;/gm;
20903 $content =~ s/\s+/ /gm;
20904 $content =~ s/;\s*;/;;/gm;
20905 $content =~ s/;[\s;]+/;/gm;
20906
20907 $content =~ s/^.+?;Warranty status;//;
20908 my ($status, $end) = $content =~ m/;Warranty status;([^;]+)\s*;Expiration date;(\S+) ;/;
20909
20910 $str .= &quot;($status) -&gt; $end &quot;;
20911
20912 my $today = POSIX::strftime(&quot;%Y-%m-%d&quot;, localtime(time));
20913 tag_machine_unsupported($machine)
20914 if ($end lt $today);
20915 }
20916 }
20917 }
20918 return $str;
20919 }
20920 &lt;/pre&gt;
20921
20922 &lt;p&gt;Here are some examples on how to use the function, using fake
20923 serial numbers. The information passed in as arguments are fetched
20924 from dmidecode.&lt;/p&gt;
20925
20926 &lt;pre&gt;
20927 print get_support_info(&quot;hp.host&quot;, &quot;HP ProLiant BL460c G1&quot;, &quot;1234567890&quot;
20928 &quot;447707-B21&quot;);
20929 print get_support_info(&quot;dell.host&quot;, &quot;Dell Inc. PowerEdge 2950&quot;, &quot;1234567&quot;);
20930 print get_support_info(&quot;ibm.host&quot;, &quot;IBM eserver xSeries 345 -[867061X]-&quot;,
20931 &quot;1234567&quot;);
20932 &lt;/pre&gt;
20933
20934 &lt;p&gt;I would recommend this approach for tracking support contracts for
20935 everyone with more than a few computers to administer. :)&lt;/p&gt;
20936
20937 &lt;p&gt;Update 2009-03-06: The IBM page do not include extended support
20938 contracts, so it is useless in that case. The original Dell code do
20939 not handle extended support contracts either, but has been updated to
20940 do so.&lt;/p&gt;
20941 </description>
20942 </item>
20943
20944 <item>
20945 <title>Using bar codes at a computing center</title>
20946 <link>http://people.skolelinux.org/pere/blog/Using_bar_codes_at_a_computing_center.html</link>
20947 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Using_bar_codes_at_a_computing_center.html</guid>
20948 <pubDate>Fri, 20 Feb 2009 08:50:00 +0100</pubDate>
20949 <description>&lt;p&gt;At work with the University of Oslo, we have several hundred computers
20950 in our computing center. This give us a challenge in tracking the
20951 location and cabling of the computers, when they are added, moved and
20952 removed. Some times the location register is not updated when a
20953 computer is inserted or moved and we then have to search the room for
20954 the &quot;missing&quot; computer.&lt;/p&gt;
20955
20956 &lt;p&gt;In the last issue of Linux Journal, I came across a project
20957 &lt;a href=&quot;http://www.libdmtx.org/&quot;&gt;libdmtx&lt;/a&gt; to write and read bar
20958 code blocks as defined in the
20959 &lt;a href=&quot;http://en.wikipedia.org/wiki/Data_Matrix&quot;&gt;The Data Matrix
20960 Standard&lt;/a&gt;. This is bar codes that can be read with a normal
20961 digital camera, for example that on a cell phone, and several such bar
20962 codes can be read by libdmtx from one picture. The bar code standard
20963 allow up to 2 KiB to be written in the tag. There is another project
20964 with &lt;a href=&quot;http://www.terryburton.co.uk/barcodewriter/&quot;&gt;a bar code
20965 writer written in postscript&lt;/a&gt; capable of creating such bar codes,
20966 but this was the first time I found a tool to read these bar
20967 codes.&lt;/p&gt;
20968
20969 &lt;p&gt;It occurred to me that this could be used to tag and track the
20970 machines in our computing center. If both racks and computers are
20971 tagged this way, we can use a picture of the rack and all its
20972 computers to detect the rack location of any computer in that rack.
20973 If we do this regularly for the entire room, we will find all
20974 locations, and can detect movements and removals.&lt;/p&gt;
20975
20976 &lt;p&gt;I decided to test if this would work in practice, and picked a
20977 random rack and tagged all the machines with their names. Next, I
20978 took pictures with my digital camera, and gave the dmtxread program
20979 these JPEG pictures to see how many tags it could read. This worked
20980 fairly well. If the pictures was well focused and not taken from the
20981 side, all tags in the image could be read. Because of limited space
20982 between the racks, I was unable to get a good picture of the entire
20983 rack, but could without problem read all tags from a picture covering
20984 about half the rack. I had to limit the search time used by dmtxread
20985 to 60000 ms to make sure it terminated in a reasonable time frame.&lt;/p&gt;
20986
20987 &lt;p&gt;My conclusion is that this could work, and we should probably look
20988 at adjusting our computer tagging procedures to use bar codes for
20989 easier automatic tracking of computers.&lt;/p&gt;
20990 </description>
20991 </item>
20992
20993 <item>
20994 <title>When web browser developers make a video player...</title>
20995 <link>http://people.skolelinux.org/pere/blog/When_web_browser_developers_make_a_video_player___.html</link>
20996 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/When_web_browser_developers_make_a_video_player___.html</guid>
20997 <pubDate>Sat, 17 Jan 2009 18:50:00 +0100</pubDate>
20998 <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;
20999 to publish video recordings of our monthly presentations, we provide a
21000 page with embedded video for easy access to the recording. Putting a
21001 good set of HTML tags together to get working embedded video in all
21002 browsers and across all operating systems is not easy. I hope this
21003 will become easier when the &amp;lt;video&amp;gt; tag is implemented in all
21004 browsers, but I am not sure. We provide the recordings in several
21005 formats, MPEG1, Ogg Theora, H.264 and Quicktime, and want the
21006 browser/media plugin to pick one it support and use it to play the
21007 recording, using whatever embed mechanism the browser understand.
21008 There is at least four different tags to use for this, the new HTML5
21009 &amp;lt;video&amp;gt; tag, the &amp;lt;object&amp;gt; tag, the &amp;lt;embed&amp;gt; tag and
21010 the &amp;lt;applet&amp;gt; tag. All of these take a lot of options, and
21011 finding the best options is a major challenge.&lt;/p&gt;
21012
21013 &lt;p&gt;I just tested the experimental Opera browser available from &lt;a
21014 href=&quot;http://labs.opera.com&quot;&gt;labs.opera.com&lt;/a&gt;, to see how it handled
21015 a &amp;lt;video&amp;gt; tag with a few video sources and no extra attributes.
21016 I was not very impressed. The browser start by fetching a picture
21017 from the video stream. Not sure if it is the first frame, but it is
21018 definitely very early in the recording. So far, so good. Next,
21019 instead of streaming the 76 MiB video file, it start to download all
21020 of it, but do not start to play the video. This mean I have to wait
21021 for several minutes for the downloading to finish. When the download
21022 is done, the playing of the video do not start! Waiting for the
21023 download, but I do not get to see the video? Some testing later, I
21024 discover that I have to add the controls=&quot;true&quot; attribute to be able
21025 to get a play button to pres to start the video. Adding
21026 autoplay=&quot;true&quot; did not help. I sure hope this is a misfeature of the
21027 test version of Opera, and that future implementations of the
21028 &amp;lt;video&amp;gt; tag will stream recordings by default, or at least start
21029 playing when the download is done.&lt;/p&gt;
21030
21031 &lt;p&gt;The test page I used (since changed to add more attributes) is
21032 &lt;a href=&quot;http://www.nuug.no/aktiviteter/20090113-foredrag-om-foredrag/&quot;&gt;available
21033 from the nuug site&lt;/a&gt;. Will have to test it with the new Firefox
21034 too.&lt;/p&gt;
21035
21036 &lt;p&gt;In the test process, I discovered a missing feature. I was unable
21037 to find a way to get the URL of the playing video out of Opera, so I
21038 am not quite sure it picked the Ogg Theora version of the video. I
21039 sure hope it was using the announced Ogg Theora support. :)&lt;/p&gt;
21040 </description>
21041 </item>
21042
21043 <item>
21044 <title>Software video mixer on a USB stick</title>
21045 <link>http://people.skolelinux.org/pere/blog/Software_video_mixer_on_a_USB_stick.html</link>
21046 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Software_video_mixer_on_a_USB_stick.html</guid>
21047 <pubDate>Sun, 28 Dec 2008 15:40:00 +0100</pubDate>
21048 <description>&lt;p&gt;The &lt;a href=&quot;http://www.nuug.no/&quot;&gt;Norwegian Unix User Group&lt;/a&gt; is
21049 recording our montly presentation on video, and recently we have
21050 worked on improving the quality of the recordings by mixing the slides
21051 directly with the video stream. For this, we use the
21052 &lt;a href=&quot;http://dvswitch.alioth.debian.org/&quot;&gt;dvswitch&lt;/a&gt; package from
21053 the Debian video team. As this require quite one computer per video
21054 source, and NUUG do not have enough laptops available, we need to
21055 borrow laptops. And to avoid having to install extra software on
21056 these borrwed laptops, I have wrapped up all the programs needed on a
21057 bootable USB stick. The software required is dvswitch with assosiated
21058 source, sink and mixer applications and
21059 &lt;a href=&quot;http://www.kinodv.org/&quot;&gt;dvgrab&lt;/a&gt;. To allow this setup to
21060 work without any configuration, I&#39;ve patched dvswitch to use
21061 &lt;a href=&quot;http://www.avahi.org/&quot;&gt;avahi&lt;/a&gt; to connect the various parts
21062 together. And to allow us to use laptops without firewire plugs, I
21063 upgraded dvgrab to the one from Debian/unstable to get one that work
21064 with USB sources. We have not yet tested this setup in a production
21065 setup, but I hope it will work properly, and allow us to set up a
21066 video mixer in a very short time frame. We will need it for
21067 &lt;a href=&quot;http://www.goopen.no/&quot;&gt;Go Open 2009&lt;/a&gt;.&lt;/p&gt;
21068
21069 &lt;p&gt;&lt;a href=&quot;http://www.nuug.no/pub/video/bin/usbstick-dvswitch.img.gz&quot;&gt;The
21070 USB image&lt;/a&gt; is for a 1 GB memory stick, but can be used on any
21071 larger stick as well.&lt;/p&gt;
21072 </description>
21073 </item>
21074
21075 <item>
21076 <title>Devcamp brought us closer to the Lenny based Debian Edu release</title>
21077 <link>http://people.skolelinux.org/pere/blog/Devcamp_brought_us_closer_to_the_Lenny_based_Debian_Edu_release.html</link>
21078 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/Devcamp_brought_us_closer_to_the_Lenny_based_Debian_Edu_release.html</guid>
21079 <pubDate>Sun, 7 Dec 2008 12:00:00 +0100</pubDate>
21080 <description>&lt;p&gt;This weekend we had a small developer gathering for Debian Edu in
21081 Oslo. Most of Saturday was used for the general assemly for the
21082 member organization, but the rest of the weekend I used to tune the
21083 LTSP installation. LTSP now work out of the box on the 10-network.
21084 Acer Aspire One proved to be a very nice thin client, with both
21085 screen, mouse and keybard in a small box. Was working on getting the
21086 diskless workstation setup configured out of the box, but did not
21087 finish it before the weekend was up.&lt;/p&gt;
21088
21089 &lt;p&gt;Did not find time to look at the 4 VGA cards in one box we got from
21090 the Brazilian group, so that will have to wait for the next
21091 development gathering. Would love to have the Debian Edu installer
21092 automatically detect and configure a multiseat setup when it find one
21093 of these cards.&lt;/p&gt;
21094 </description>
21095 </item>
21096
21097 <item>
21098 <title>The sorry state of multimedia browser plugins in Debian</title>
21099 <link>http://people.skolelinux.org/pere/blog/The_sorry_state_of_multimedia_browser_plugins_in_Debian.html</link>
21100 <guid isPermaLink="true">http://people.skolelinux.org/pere/blog/The_sorry_state_of_multimedia_browser_plugins_in_Debian.html</guid>
21101 <pubDate>Tue, 25 Nov 2008 00:10:00 +0100</pubDate>
21102 <description>&lt;p&gt;Recently I have spent some time evaluating the multimedia browser
21103 plugins available in Debian Lenny, to see which one we should use by
21104 default in Debian Edu. We need an embedded video playing plugin with
21105 control buttons to pause or stop the video, and capable of streaming
21106 all the multimedia content available on the web. The test results and
21107 notes are available on
21108 &lt;a href=&quot;http://wiki.debian.org/DebianEdu/BrowserMultimedia&quot;&gt;the
21109 Debian wiki&lt;/a&gt;. I was surprised how few of the plugins are able to
21110 fill this need. My personal video player favorite, VLC, has a really
21111 bad plugin which fail on a lot of the test pages. A lot of the MIME
21112 types I would expect to work with any free software player (like
21113 video/ogg), just do not work. And simple formats like the
21114 audio/x-mplegurl format (m3u playlists), just isn&#39;t supported by the
21115 totem and vlc plugins. I hope the situation will improve soon. No
21116 wonder sites use the proprietary Adobe flash to play video.&lt;/p&gt;
21117
21118 &lt;p&gt;For Lenny, we seem to end up with the mplayer plugin. It seem to
21119 be the only one fitting our needs. :/&lt;/p&gt;
21120 </description>
21121 </item>
21122
21123 </channel>
21124 </rss>