]> pere.pagekite.me Git - homepage.git/blob - blog/archive/2014/10/index.html
Generated.
[homepage.git] / blog / archive / 2014 / 10 / index.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
4 <head>
5 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
6 <title>Petter Reinholdtsen: entries from October 2014</title>
7 <link rel="stylesheet" type="text/css" media="screen" href="http://people.skolelinux.org/pere/blog/style.css" />
8 <link rel="stylesheet" type="text/css" media="screen" href="http://people.skolelinux.org/pere/blog/vim.css" />
9 <link rel="alternate" title="RSS Feed" href="10.rss" type="application/rss+xml" />
10 </head>
11 <body>
12 <!-- XML FEED -->
13 <div class="title">
14 <h1>
15 <a href="http://people.skolelinux.org/pere/blog/">Petter Reinholdtsen</a>
16
17 </h1>
18
19 </div>
20
21
22 <h3>Entries from October 2014.</h3>
23
24 <div class="entry">
25 <div class="title">
26 <a href="http://people.skolelinux.org/pere/blog/I_spent_last_weekend_recording_MakerCon_Nordic.html">I spent last weekend recording MakerCon Nordic</a>
27 </div>
28 <div class="date">
29 23rd October 2014
30 </div>
31 <div class="body">
32 <p>I spent last weekend at <a href="http://www.makercon.no/">Makercon
33 Nordic</a>, a great conference and workshop for makers in Norway and
34 the surrounding countries. I had volunteered on behalf of the
35 Norwegian Unix Users Group (NUUG) to video record the talks, and we
36 had a great and exhausting time recording the entire day, two days in
37 a row. There were only two of us, Hans-Petter and me, and we used the
38 regular video equipment for NUUG, with a
39 <a href="http://dvswitch.alioth.debian.org/wiki/">dvswitch</a>, a
40 camera and a VGA to DV convert box, and mixed video and slides
41 live.</p>
42
43 <p>Hans-Petter did the post-processing, consisting of uploading the
44 around 180 GiB of raw video to Youtube, and the result is
45 <a href="https://www.youtube.com/user/MakerConNordic/">now becoming
46 public</a> on the MakerConNordic account. The videos have the license
47 NUUG always use on our recordings, which is
48 <a href="http://creativecommons.org/licenses/by-sa/3.0/no/">Creative
49 Commons Navngivelse-Del på samme vilkår 3.0 Norge</a>. Many great
50 talks available. Check it out! :)</p>
51
52 </div>
53 <div class="tags">
54
55
56 Tags: <a href="http://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="http://people.skolelinux.org/pere/blog/tags/nuug">nuug</a>, <a href="http://people.skolelinux.org/pere/blog/tags/video">video</a>.
57
58
59 </div>
60 </div>
61 <div class="padding"></div>
62
63 <div class="entry">
64 <div class="title">
65 <a href="http://people.skolelinux.org/pere/blog/listadmin__the_quick_way_to_moderate_mailman_lists___nice_free_software.html">listadmin, the quick way to moderate mailman lists - nice free software</a>
66 </div>
67 <div class="date">
68 22nd October 2014
69 </div>
70 <div class="body">
71 <p>If you ever had to moderate a mailman list, like the ones on
72 alioth.debian.org, you know the web interface is fairly slow to
73 operate. First you visit one web page, enter the moderation password
74 and get a new page shown with a list of all the messages to moderate
75 and various options for each email address. This take a while for
76 every list you moderate, and you need to do it regularly to do a good
77 job as a list moderator. But there is a quick alternative,
78 <a href="http://heim.ifi.uio.no/kjetilho/hacks/#listadmin">the
79 listadmin program</a>. It allow you to check lists for new messages
80 to moderate in a fraction of a second. Here is a test run on two
81 lists I recently took over:</p>
82
83 <p><blockquote><pre>
84 % time listadmin xiph
85 fetching data for pkg-xiph-commits@lists.alioth.debian.org ... nothing in queue
86 fetching data for pkg-xiph-maint@lists.alioth.debian.org ... nothing in queue
87
88 real 0m1.709s
89 user 0m0.232s
90 sys 0m0.012s
91 %
92 </pre></blockquote></p>
93
94 <p>In 1.7 seconds I had checked two mailing lists and confirmed that
95 there are no message in the moderation queue. Every morning I
96 currently moderate 68 mailman lists, and it normally take around two
97 minutes. When I took over the two pkg-xiph lists above a few days
98 ago, there were 400 emails waiting in the moderator queue. It took me
99 less than 15 minutes to process them all using the listadmin
100 program.</p>
101
102 <p>If you install
103 <a href="https://tracker.debian.org/pkg/listadmin">the listadmin
104 package</a> from Debian and create a file <tt>~/.listadmin.ini</tt>
105 with content like this, the moderation task is a breeze:</p>
106
107 <p><blockquote><pre>
108 username@example.org
109 spamlevel 23
110 default discard
111 discard_if_reason "Posting restricted to members only. Remove us from your mail list."
112
113 password secret
114 adminurl https://{domain}/mailman/admindb/{list}
115 mailman-list@lists.example.com
116
117 password hidden
118 other-list@otherserver.example.org
119 </pre></blockquote></p>
120
121 <p>There are other options to set as well. Check the manual page to
122 learn the details.</p>
123
124 <p>If you are forced to moderate lists on a mailman installation where
125 the SSL certificate is self signed or not properly signed by a
126 generally accepted signing authority, you can set a environment
127 variable when calling listadmin to disable SSL verification:</p>
128
129 <p><blockquote><pre>
130 PERL_LWP_SSL_VERIFY_HOSTNAME=0 listadmin
131 </pre></blockquote></p>
132
133 <p>If you want to moderate a subset of the lists you take care of, you
134 can provide an argument to the listadmin script like I do in the
135 initial screen dump (the xiph argument). Using an argument, only
136 lists matching the argument string will be processed. This make it
137 quick to accept messages if you notice the moderation request in your
138 email.</p>
139
140 <p>Without the listadmin program, I would never be the moderator of 68
141 mailing lists, as I simply do not have time to spend on that if the
142 process was any slower. The listadmin program have saved me hours of
143 time I could spend elsewhere over the years. It truly is nice free
144 software.</p>
145
146 <p>As usual, if you use Bitcoin and want to show your support of my
147 activities, please send Bitcoin donations to my address
148 <b><a href="bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&label=PetterReinholdtsenBlog">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b</a></b>.</p>
149
150 </div>
151 <div class="tags">
152
153
154 Tags: <a href="http://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="http://people.skolelinux.org/pere/blog/tags/english">english</a>.
155
156
157 </div>
158 </div>
159 <div class="padding"></div>
160
161 <div class="entry">
162 <div class="title">
163 <a href="http://people.skolelinux.org/pere/blog/Debian_Jessie__PXE_and_automatic_firmware_installation.html">Debian Jessie, PXE and automatic firmware installation</a>
164 </div>
165 <div class="date">
166 17th October 2014
167 </div>
168 <div class="body">
169 <p>When PXE installing laptops with Debian, I often run into the
170 problem that the WiFi card require some firmware to work properly.
171 And it has been a pain to fix this using preseeding in Debian.
172 Normally something more is needed. But thanks to
173 <a href="https://packages.qa.debian.org/i/isenkram.html">my isenkram
174 package</a> and its recent tasksel extension, it has now become easy
175 to do this using simple preseeding.</p>
176
177 <p>The isenkram-cli package provide tasksel tasks which will install
178 firmware for the hardware found in the machine (actually, requested by
179 the kernel modules for the hardware). (It can also install user space
180 programs supporting the hardware detected, but that is not the focus
181 of this story.)</p>
182
183 <p>To get this working in the default installation, two preeseding
184 values are needed. First, the isenkram-cli package must be installed
185 into the target chroot (aka the hard drive) before tasksel is executed
186 in the pkgsel step of the debian-installer system. This is done by
187 preseeding the base-installer/includes debconf value to include the
188 isenkram-cli package. The package name is next passed to debootstrap
189 for installation. With the isenkram-cli package in place, tasksel
190 will automatically use the isenkram tasks to detect hardware specific
191 packages for the machine being installed and install them, because
192 isenkram-cli contain tasksel tasks.</p>
193
194 <p>Second, one need to enable the non-free APT repository, because
195 most firmware unfortunately is non-free. This is done by preseeding
196 the apt-mirror-setup step. This is unfortunate, but for a lot of
197 hardware it is the only option in Debian.</p>
198
199 <p>The end result is two lines needed in your preseeding file to get
200 firmware installed automatically by the installer:</p>
201
202 <p><blockquote><pre>
203 base-installer base-installer/includes string isenkram-cli
204 apt-mirror-setup apt-setup/non-free boolean true
205 </pre></blockquote></p>
206
207 <p>The current version of isenkram-cli in testing/jessie will install
208 both firmware and user space packages when using this method. It also
209 do not work well, so use version 0.15 or later. Installing both
210 firmware and user space packages might give you a bit more than you
211 want, so I decided to split the tasksel task in two, one for firmware
212 and one for user space programs. The firmware task is enabled by
213 default, while the one for user space programs is not. This split is
214 implemented in the package currently in unstable.</p>
215
216 <p>If you decide to give this a go, please let me know (via email) how
217 this recipe work for you. :)</p>
218
219 <p>So, I bet you are wondering, how can this work. First and
220 foremost, it work because tasksel is modular, and driven by whatever
221 files it find in /usr/lib/tasksel/ and /usr/share/tasksel/. So the
222 isenkram-cli package place two files for tasksel to find. First there
223 is the task description file (/usr/share/tasksel/descs/isenkram.desc):</p>
224
225 <p><blockquote><pre>
226 Task: isenkram-packages
227 Section: hardware
228 Description: Hardware specific packages (autodetected by isenkram)
229 Based on the detected hardware various hardware specific packages are
230 proposed.
231 Test-new-install: show show
232 Relevance: 8
233 Packages: for-current-hardware
234
235 Task: isenkram-firmware
236 Section: hardware
237 Description: Hardware specific firmware packages (autodetected by isenkram)
238 Based on the detected hardware various hardware specific firmware
239 packages are proposed.
240 Test-new-install: mark show
241 Relevance: 8
242 Packages: for-current-hardware-firmware
243 </pre></blockquote></p>
244
245 <p>The key parts are Test-new-install which indicate how the task
246 should be handled and the Packages line referencing to a script in
247 /usr/lib/tasksel/packages/. The scripts use other scripts to get a
248 list of packages to install. The for-current-hardware-firmware script
249 look like this to list relevant firmware for the machine:
250
251 <p><blockquote><pre>
252 #!/bin/sh
253 #
254 PATH=/usr/sbin:$PATH
255 export PATH
256 isenkram-autoinstall-firmware -l
257 </pre></blockquote></p>
258
259 <p>With those two pieces in place, the firmware is installed by
260 tasksel during the normal d-i run. :)</p>
261
262 <p>If you want to test what tasksel will install when isenkram-cli is
263 installed, run <tt>DEBIAN_PRIORITY=critical tasksel --test
264 --new-install</tt> to get the list of packages that tasksel would
265 install.</p>
266
267 <p><a href="https://wiki.debian.org/DebianEdu/">Debian Edu</a> will be
268 pilots in testing this feature, as isenkram is used there now to
269 install firmware, replacing the earlier scripts.</p>
270
271 </div>
272 <div class="tags">
273
274
275 Tags: <a href="http://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="http://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="http://people.skolelinux.org/pere/blog/tags/isenkram">isenkram</a>, <a href="http://people.skolelinux.org/pere/blog/tags/sysadmin">sysadmin</a>.
276
277
278 </div>
279 </div>
280 <div class="padding"></div>
281
282 <div class="entry">
283 <div class="title">
284 <a href="http://people.skolelinux.org/pere/blog/Ubuntu_used_to_show_the_bread_prizes_at_ICA_Storo.html">Ubuntu used to show the bread prizes at ICA Storo</a>
285 </div>
286 <div class="date">
287 4th October 2014
288 </div>
289 <div class="body">
290 <p>Today I came across an unexpected Ubuntu boot screen. Above the
291 bread shelf on the ICA shop at Storo in Oslo, the grub menu of Ubuntu
292 with Linux kernel 3.2.0-23 (ie probably version 12.04 LTS) was stuck
293 on a screen normally showing the bread types and prizes:</p>
294
295 <p align="center"><img width="70%" src="http://people.skolelinux.org/pere/blog/images/2014-10-04-ubuntu-ica-storo-crop.jpeg"></p>
296
297 <p>If it had booted as it was supposed to, I would never had known
298 about this hidden Linux installation. It is interesting what
299 <a href="http://revealingerrors.com/">errors can reveal</a>.</p>
300
301 </div>
302 <div class="tags">
303
304
305 Tags: <a href="http://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="http://people.skolelinux.org/pere/blog/tags/english">english</a>.
306
307
308 </div>
309 </div>
310 <div class="padding"></div>
311
312 <div class="entry">
313 <div class="title">
314 <a href="http://people.skolelinux.org/pere/blog/New_lsdvd_release_version_0_17_is_ready.html">New lsdvd release version 0.17 is ready</a>
315 </div>
316 <div class="date">
317 4th October 2014
318 </div>
319 <div class="body">
320 <p>The <a href="https://sourceforge.net/p/lsdvd/">lsdvd project</a>
321 got a new set of developers a few weeks ago, after the original
322 developer decided to step down and pass the project to fresh blood.
323 This project is now maintained by Petter Reinholdtsen and Steve
324 Dibb.</p>
325
326 <p>I just wrapped up
327 <a href="https://sourceforge.net/p/lsdvd/mailman/message/32896061/">a
328 new lsdvd release</a>, available in git or from
329 <a href="https://sourceforge.net/projects/lsdvd/files/lsdvd/">the
330 download page</a>. This is the changelog dated 2014-10-03 for version
331 0.17.</p>
332
333 <ul>
334
335 <li>Ignore 'phantom' audio, subtitle tracks</li>
336 <li>Check for garbage in the program chains, which indicate that a track is
337 non-existant, to work around additional copy protection</li>
338 <li>Fix displaying content type for audio tracks, subtitles</li>
339 <li>Fix pallete display of first entry</li>
340 <li>Fix include orders</li>
341 <li>Ignore read errors in titles that would not be displayed anyway</li>
342 <li>Fix the chapter count</li>
343 <li>Make sure the array size and the array limit used when initialising
344 the palette size is the same.</li>
345 <li>Fix array printing.</li>
346 <li>Correct subsecond calculations.</li>
347 <li>Add sector information to the output format.</li>
348 <li>Clean up code to be closer to ANSI C and compile without warnings
349 with more GCC compiler warnings.</li>
350
351 </ul>
352
353 <p>This change bring together patches for lsdvd in use in various
354 Linux and Unix distributions, as well as patches submitted to the
355 project the last nine years. Please check it out. :)</p>
356
357 </div>
358 <div class="tags">
359
360
361 Tags: <a href="http://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="http://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="http://people.skolelinux.org/pere/blog/tags/lsdvd">lsdvd</a>, <a href="http://people.skolelinux.org/pere/blog/tags/multimedia">multimedia</a>.
362
363
364 </div>
365 </div>
366 <div class="padding"></div>
367
368 <p style="text-align: right;"><a href="10.rss"><img src="http://people.skolelinux.org/pere/blog/xml.gif" alt="RSS Feed" width="36" height="14" /></a></p>
369 <div id="sidebar">
370
371
372
373 <h2>Archive</h2>
374 <ul>
375
376 <li>2014
377 <ul>
378
379 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/01/">January (2)</a></li>
380
381 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/02/">February (3)</a></li>
382
383 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/03/">March (8)</a></li>
384
385 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/04/">April (7)</a></li>
386
387 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/05/">May (1)</a></li>
388
389 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/06/">June (2)</a></li>
390
391 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/07/">July (2)</a></li>
392
393 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/08/">August (2)</a></li>
394
395 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/09/">September (5)</a></li>
396
397 <li><a href="http://people.skolelinux.org/pere/blog/archive/2014/10/">October (5)</a></li>
398
399 </ul></li>
400
401 <li>2013
402 <ul>
403
404 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/01/">January (11)</a></li>
405
406 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/02/">February (9)</a></li>
407
408 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/03/">March (9)</a></li>
409
410 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/04/">April (6)</a></li>
411
412 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/05/">May (9)</a></li>
413
414 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/06/">June (10)</a></li>
415
416 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/07/">July (7)</a></li>
417
418 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/08/">August (3)</a></li>
419
420 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/09/">September (5)</a></li>
421
422 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/10/">October (7)</a></li>
423
424 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/11/">November (9)</a></li>
425
426 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/12/">December (3)</a></li>
427
428 </ul></li>
429
430 <li>2012
431 <ul>
432
433 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/01/">January (7)</a></li>
434
435 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/02/">February (10)</a></li>
436
437 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/03/">March (17)</a></li>
438
439 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/04/">April (12)</a></li>
440
441 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/05/">May (12)</a></li>
442
443 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/06/">June (20)</a></li>
444
445 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/07/">July (17)</a></li>
446
447 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/08/">August (6)</a></li>
448
449 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/09/">September (9)</a></li>
450
451 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/10/">October (17)</a></li>
452
453 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/11/">November (10)</a></li>
454
455 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/12/">December (7)</a></li>
456
457 </ul></li>
458
459 <li>2011
460 <ul>
461
462 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/01/">January (16)</a></li>
463
464 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/02/">February (6)</a></li>
465
466 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/03/">March (6)</a></li>
467
468 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/04/">April (7)</a></li>
469
470 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/05/">May (3)</a></li>
471
472 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/06/">June (2)</a></li>
473
474 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/07/">July (7)</a></li>
475
476 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/08/">August (6)</a></li>
477
478 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/09/">September (4)</a></li>
479
480 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/10/">October (2)</a></li>
481
482 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/11/">November (3)</a></li>
483
484 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/12/">December (1)</a></li>
485
486 </ul></li>
487
488 <li>2010
489 <ul>
490
491 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/01/">January (2)</a></li>
492
493 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/02/">February (1)</a></li>
494
495 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/03/">March (3)</a></li>
496
497 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/04/">April (3)</a></li>
498
499 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/05/">May (9)</a></li>
500
501 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/06/">June (14)</a></li>
502
503 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/07/">July (12)</a></li>
504
505 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/08/">August (13)</a></li>
506
507 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/09/">September (7)</a></li>
508
509 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/10/">October (9)</a></li>
510
511 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/11/">November (13)</a></li>
512
513 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/12/">December (12)</a></li>
514
515 </ul></li>
516
517 <li>2009
518 <ul>
519
520 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/01/">January (8)</a></li>
521
522 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/02/">February (8)</a></li>
523
524 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/03/">March (12)</a></li>
525
526 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/04/">April (10)</a></li>
527
528 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/05/">May (9)</a></li>
529
530 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/06/">June (3)</a></li>
531
532 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/07/">July (4)</a></li>
533
534 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/08/">August (3)</a></li>
535
536 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/09/">September (1)</a></li>
537
538 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/10/">October (2)</a></li>
539
540 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/11/">November (3)</a></li>
541
542 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/12/">December (3)</a></li>
543
544 </ul></li>
545
546 <li>2008
547 <ul>
548
549 <li><a href="http://people.skolelinux.org/pere/blog/archive/2008/11/">November (5)</a></li>
550
551 <li><a href="http://people.skolelinux.org/pere/blog/archive/2008/12/">December (7)</a></li>
552
553 </ul></li>
554
555 </ul>
556
557
558
559 <h2>Tags</h2>
560 <ul>
561
562 <li><a href="http://people.skolelinux.org/pere/blog/tags/3d-printer">3d-printer (13)</a></li>
563
564 <li><a href="http://people.skolelinux.org/pere/blog/tags/amiga">amiga (1)</a></li>
565
566 <li><a href="http://people.skolelinux.org/pere/blog/tags/aros">aros (1)</a></li>
567
568 <li><a href="http://people.skolelinux.org/pere/blog/tags/bankid">bankid (4)</a></li>
569
570 <li><a href="http://people.skolelinux.org/pere/blog/tags/bitcoin">bitcoin (8)</a></li>
571
572 <li><a href="http://people.skolelinux.org/pere/blog/tags/bootsystem">bootsystem (14)</a></li>
573
574 <li><a href="http://people.skolelinux.org/pere/blog/tags/bsa">bsa (2)</a></li>
575
576 <li><a href="http://people.skolelinux.org/pere/blog/tags/chrpath">chrpath (2)</a></li>
577
578 <li><a href="http://people.skolelinux.org/pere/blog/tags/debian">debian (107)</a></li>
579
580 <li><a href="http://people.skolelinux.org/pere/blog/tags/debian edu">debian edu (150)</a></li>
581
582 <li><a href="http://people.skolelinux.org/pere/blog/tags/digistan">digistan (10)</a></li>
583
584 <li><a href="http://people.skolelinux.org/pere/blog/tags/dld">dld (15)</a></li>
585
586 <li><a href="http://people.skolelinux.org/pere/blog/tags/docbook">docbook (12)</a></li>
587
588 <li><a href="http://people.skolelinux.org/pere/blog/tags/drivstoffpriser">drivstoffpriser (4)</a></li>
589
590 <li><a href="http://people.skolelinux.org/pere/blog/tags/english">english (260)</a></li>
591
592 <li><a href="http://people.skolelinux.org/pere/blog/tags/fiksgatami">fiksgatami (21)</a></li>
593
594 <li><a href="http://people.skolelinux.org/pere/blog/tags/fildeling">fildeling (12)</a></li>
595
596 <li><a href="http://people.skolelinux.org/pere/blog/tags/freeculture">freeculture (13)</a></li>
597
598 <li><a href="http://people.skolelinux.org/pere/blog/tags/freedombox">freedombox (8)</a></li>
599
600 <li><a href="http://people.skolelinux.org/pere/blog/tags/frikanalen">frikanalen (11)</a></li>
601
602 <li><a href="http://people.skolelinux.org/pere/blog/tags/intervju">intervju (41)</a></li>
603
604 <li><a href="http://people.skolelinux.org/pere/blog/tags/isenkram">isenkram (10)</a></li>
605
606 <li><a href="http://people.skolelinux.org/pere/blog/tags/kart">kart (19)</a></li>
607
608 <li><a href="http://people.skolelinux.org/pere/blog/tags/ldap">ldap (9)</a></li>
609
610 <li><a href="http://people.skolelinux.org/pere/blog/tags/lenker">lenker (8)</a></li>
611
612 <li><a href="http://people.skolelinux.org/pere/blog/tags/lsdvd">lsdvd (2)</a></li>
613
614 <li><a href="http://people.skolelinux.org/pere/blog/tags/ltsp">ltsp (1)</a></li>
615
616 <li><a href="http://people.skolelinux.org/pere/blog/tags/mesh network">mesh network (8)</a></li>
617
618 <li><a href="http://people.skolelinux.org/pere/blog/tags/multimedia">multimedia (31)</a></li>
619
620 <li><a href="http://people.skolelinux.org/pere/blog/tags/norsk">norsk (248)</a></li>
621
622 <li><a href="http://people.skolelinux.org/pere/blog/tags/nuug">nuug (163)</a></li>
623
624 <li><a href="http://people.skolelinux.org/pere/blog/tags/offentlig innsyn">offentlig innsyn (11)</a></li>
625
626 <li><a href="http://people.skolelinux.org/pere/blog/tags/open311">open311 (2)</a></li>
627
628 <li><a href="http://people.skolelinux.org/pere/blog/tags/opphavsrett">opphavsrett (48)</a></li>
629
630 <li><a href="http://people.skolelinux.org/pere/blog/tags/personvern">personvern (75)</a></li>
631
632 <li><a href="http://people.skolelinux.org/pere/blog/tags/raid">raid (1)</a></li>
633
634 <li><a href="http://people.skolelinux.org/pere/blog/tags/reactos">reactos (1)</a></li>
635
636 <li><a href="http://people.skolelinux.org/pere/blog/tags/reprap">reprap (11)</a></li>
637
638 <li><a href="http://people.skolelinux.org/pere/blog/tags/rfid">rfid (3)</a></li>
639
640 <li><a href="http://people.skolelinux.org/pere/blog/tags/robot">robot (9)</a></li>
641
642 <li><a href="http://people.skolelinux.org/pere/blog/tags/rss">rss (1)</a></li>
643
644 <li><a href="http://people.skolelinux.org/pere/blog/tags/ruter">ruter (4)</a></li>
645
646 <li><a href="http://people.skolelinux.org/pere/blog/tags/scraperwiki">scraperwiki (2)</a></li>
647
648 <li><a href="http://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet (41)</a></li>
649
650 <li><a href="http://people.skolelinux.org/pere/blog/tags/sitesummary">sitesummary (4)</a></li>
651
652 <li><a href="http://people.skolelinux.org/pere/blog/tags/skepsis">skepsis (4)</a></li>
653
654 <li><a href="http://people.skolelinux.org/pere/blog/tags/standard">standard (45)</a></li>
655
656 <li><a href="http://people.skolelinux.org/pere/blog/tags/stavekontroll">stavekontroll (3)</a></li>
657
658 <li><a href="http://people.skolelinux.org/pere/blog/tags/stortinget">stortinget (9)</a></li>
659
660 <li><a href="http://people.skolelinux.org/pere/blog/tags/surveillance">surveillance (26)</a></li>
661
662 <li><a href="http://people.skolelinux.org/pere/blog/tags/sysadmin">sysadmin (2)</a></li>
663
664 <li><a href="http://people.skolelinux.org/pere/blog/tags/valg">valg (8)</a></li>
665
666 <li><a href="http://people.skolelinux.org/pere/blog/tags/video">video (44)</a></li>
667
668 <li><a href="http://people.skolelinux.org/pere/blog/tags/vitenskap">vitenskap (4)</a></li>
669
670 <li><a href="http://people.skolelinux.org/pere/blog/tags/web">web (33)</a></li>
671
672 </ul>
673
674
675 </div>
676 <p style="text-align: right">
677 Created by <a href="http://steve.org.uk/Software/chronicle">Chronicle v4.6</a>
678 </p>
679
680 </body>
681 </html>