]> pere.pagekite.me Git - homepage.git/blob - blog/index.html
Generated.
[homepage.git] / blog / 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</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="http://people.skolelinux.org/pere/blog/index.rss" type="application/rss+xml" />
10 </head>
11 <body>
12 <div class="title">
13 <h1>
14 <a href="http://people.skolelinux.org/pere/blog/">Petter Reinholdtsen</a>
15
16 </h1>
17
18 </div>
19
20
21
22 <div class="entry">
23 <div class="title"><a href="http://people.skolelinux.org/pere/blog/How_to_find_a_browser_plugin_supporting_a_given_MIME_type.html">How to find a browser plugin supporting a given MIME type</a></div>
24 <div class="date">18th January 2013</div>
25 <div class="body"><p>Some times I try to figure out which Iceweasel browser plugin to
26 install to get support for a given MIME type. Thanks to
27 <a href="https://wiki.ubuntu.com/MozillaTeam/Plugins">specifications
28 done by Ubuntu</a> and Mozilla, it is possible to do this in Debian.
29 Unfortunately, not very many packages provide the needed meta
30 information, Anyway, here is a small script to look up all browser
31 plugin packages announcing ther MIME support using this specification:</p>
32
33 <pre>
34 #!/usr/bin/python
35 import sys
36 import apt
37 def pkgs_handling_mimetype(mimetype):
38 cache = apt.Cache()
39 cache.open(None)
40 thepkgs = []
41 for pkg in cache:
42 version = pkg.candidate
43 if version is None:
44 version = pkg.installed
45 if version is None:
46 continue
47 record = version.record
48 if not record.has_key('Npp-MimeType'):
49 continue
50 mime_types = record['Npp-MimeType'].split(',')
51 for t in mime_types:
52 t = t.rstrip().strip()
53 if t == mimetype:
54 thepkgs.append(pkg.name)
55 return thepkgs
56 mimetype = "audio/ogg"
57 if 1 < len(sys.argv):
58 mimetype = sys.argv[1]
59 print "Browser plugin packages supporting %s:" % mimetype
60 for pkg in pkgs_handling_mimetype(mimetype):
61 print " %s" %pkg
62 </pre>
63
64 <p>It can be used like this to look up a given MIME type:</p>
65
66 <pre>
67 % ./apt-find-browserplug-for-mimetype
68 Browser plugin packages supporting audio/ogg:
69 gecko-mediaplayer
70 % ./apt-find-browserplug-for-mimetype application/x-shockwave-flash
71 Browser plugin packages supporting application/x-shockwave-flash:
72 browser-plugin-gnash
73 %
74 </pre>
75
76 <p>In Ubuntu this mechanism is combined with support in the browser
77 itself to query for plugins and propose to install the needed
78 packages. It would be great if Debian supported such feature too. Is
79 anyone working on adding it?</p>
80
81 <p><strong>Update 2013-01-18 14:20</strong>: The Debian BTS
82 request for icweasel support for this feature is
83 <a href="http://bugs.debian.org/484010">#484010</a> from 2008 (and
84 <a href="http://bugs.debian.org/698426">#698426</a> from today). Lack
85 of manpower and wish for a different design is the reason thus feature
86 is not yet in iceweasel from Debian.</p>
87 </div>
88 <div class="tags">
89
90
91 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>.
92
93
94 </div>
95 </div>
96 <div class="padding"></div>
97
98 <div class="entry">
99 <div class="title"><a href="http://people.skolelinux.org/pere/blog/What_is_the_most_supported_MIME_type_in_Debian_.html">What is the most supported MIME type in Debian?</a></div>
100 <div class="date">16th January 2013</div>
101 <div class="body"><p>The <a href="http://wiki.debian.org/AppStreamDebianProposal">DEP-11
102 proposal to add AppStream information to the Debian archive</a>, is a
103 proposal to make it possible for a Desktop application to propose to
104 the user some package to install to gain support for a given MIME
105 type, font, library etc. that is currently missing. With such
106 mechanism in place, it would be possible for the desktop to
107 automatically propose and install leocad if some LDraw file is
108 downloaded by the browser.</p>
109
110 <p>To get some idea about the current content of the archive, I decided
111 to write a simple program to extract all .desktop files from the
112 Debian archive and look up the claimed MIME support there. The result
113 can be found on the
114 <a href="http://ftp.skolelinux.org/pub/AppStreamTest">Skolelinux FTP
115 site</a>. Using the collected information, it become possible to
116 answer the question in the title. Here are the 20 most supported MIME
117 types in Debian stable (Squeeze), testing (Wheezy) and unstable (Sid).
118 The complete list is available from the link above.</p>
119
120 <p><strong>Debian Stable:</strong></p>
121
122 <pre>
123 count MIME type
124 ----- -----------------------
125 32 text/plain
126 30 audio/mpeg
127 29 image/png
128 28 image/jpeg
129 27 application/ogg
130 26 audio/x-mp3
131 25 image/tiff
132 25 image/gif
133 22 image/bmp
134 22 audio/x-wav
135 20 audio/x-flac
136 19 audio/x-mpegurl
137 18 video/x-ms-asf
138 18 audio/x-musepack
139 18 audio/x-mpeg
140 18 application/x-ogg
141 17 video/mpeg
142 17 audio/x-scpls
143 17 audio/ogg
144 16 video/x-ms-wmv
145 </pre>
146
147 <p><strong>Debian Testing:</strong></p>
148
149 <pre>
150 count MIME type
151 ----- -----------------------
152 33 text/plain
153 32 image/png
154 32 image/jpeg
155 29 audio/mpeg
156 27 image/gif
157 26 image/tiff
158 26 application/ogg
159 25 audio/x-mp3
160 22 image/bmp
161 21 audio/x-wav
162 19 audio/x-mpegurl
163 19 audio/x-mpeg
164 18 video/mpeg
165 18 audio/x-scpls
166 18 audio/x-flac
167 18 application/x-ogg
168 17 video/x-ms-asf
169 17 text/html
170 17 audio/x-musepack
171 16 image/x-xbitmap
172 </pre>
173
174 <p><strong>Debian Unstable:</strong></p>
175
176 <pre>
177 count MIME type
178 ----- -----------------------
179 31 text/plain
180 31 image/png
181 31 image/jpeg
182 29 audio/mpeg
183 28 application/ogg
184 27 image/gif
185 26 image/tiff
186 26 audio/x-mp3
187 23 audio/x-wav
188 22 image/bmp
189 21 audio/x-flac
190 20 audio/x-mpegurl
191 19 audio/x-mpeg
192 18 video/x-ms-asf
193 18 video/mpeg
194 18 audio/x-scpls
195 18 application/x-ogg
196 17 audio/x-musepack
197 16 video/x-ms-wmv
198 16 video/x-msvideo
199 </pre>
200
201 <p>I am told that PackageKit can provide an API to access the kind of
202 information mentioned in DEP-11. I have not yet had time to look at
203 it, but hope the PackageKit people in Debian are on top of these
204 issues.</p>
205
206 <p><strong>Update 2013-01-16 13:35</strong>: Updated numbers after
207 discovering a typo in my script.</p>
208 </div>
209 <div class="tags">
210
211
212 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>.
213
214
215 </div>
216 </div>
217 <div class="padding"></div>
218
219 <div class="entry">
220 <div class="title"><a href="http://people.skolelinux.org/pere/blog/Using_modalias_info_to_find_packages_handling_my_hardware.html">Using modalias info to find packages handling my hardware</a></div>
221 <div class="date">15th January 2013</div>
222 <div class="body"><p>Yesterday, I wrote about the
223 <a href="http://people.skolelinux.org/pere/blog/Modalias_strings___a_practical_way_to_map__stuff__to_hardware.html">modalias
224 values provided by the Linux kernel</a> following my hope for
225 <a href="http://people.skolelinux.org/pere/blog/Lets_make_hardware_dongles_easier_to_use_in_Debian.html">better
226 dongle support in Debian</a>. Using this knowledge, I have tested how
227 modalias values attached to package names can be used to map packages
228 to hardware. This allow the system to look up and suggest relevant
229 packages when I plug in some new hardware into my machine, and replace
230 discover and discover-data as the database used to map hardware to
231 packages.</p>
232
233 <p>I create a modaliases file with entries like the following,
234 containing package name, kernel module name (if relevant, otherwise
235 the package name) and globs matching the relevant hardware
236 modalias.</p>
237
238 <p><blockquote>
239 Package: package-name
240 <br>Modaliases: module(modaliasglob, modaliasglob, modaliasglob)</p>
241 </blockquote></p>
242
243 <p>It is fairly trivial to write code to find the relevant packages
244 for a given modalias value using this file.</p>
245
246 <p>An entry like this would suggest the video and picture application
247 cheese for many USB web cameras (interface bus class 0E01):</p>
248
249 <p><blockquote>
250 Package: cheese
251 <br>Modaliases: cheese(usb:v*p*d*dc*dsc*dp*ic0Eisc01ip*)</p>
252 </blockquote></p>
253
254 <p>An entry like this would suggest the pcmciautils package when a
255 CardBus bridge (bus class 0607) PCI device is present:</p>
256
257 <p><blockquote>
258 Package: pcmciautils
259 <br>Modaliases: pcmciautils(pci:v*d*sv*sd*bc06sc07i*)
260 </blockquote></p>
261
262 <p>An entry like this would suggest the package colorhug-client when
263 plugging in a ColorHug with USB IDs 04D8:F8DA:</p>
264
265 <p><blockquote>
266 Package: colorhug-client
267 <br>Modaliases: colorhug-client(usb:v04D8pF8DAd*)</p>
268 </blockquote></p>
269
270 <p>I believe the format is compatible with the format of the Packages
271 file in the Debian archive. Ubuntu already uses their Packages file
272 to store their mappings from packages to hardware.</p>
273
274 <p>By adding a XB-Modaliases: header in debian/control, any .deb can
275 announce the hardware it support in a way my prototype understand.
276 This allow those publishing packages in an APT source outside the
277 Debian archive as well as those backporting packages to make sure the
278 hardware mapping are included in the package meta information. I've
279 tested such header in the pymissile package, and its modalias mapping
280 is working as it should with my prototype. It even made it to Ubuntu
281 Raring.</p>
282
283 <p>To test if it was possible to look up supported hardware using only
284 the shell tools available in the Debian installer, I wrote a shell
285 implementation of the lookup code. The idea is to create files for
286 each modalias and let the shell do the matching. Please check out and
287 try the
288 <a href="http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/hw-support-lookup?view=co">hw-support-lookup</a>
289 shell script. It run without any extra dependencies and fetch the
290 hardware mappings from the Debian archive and the subversion
291 repository where I currently work on my prototype.</p>
292
293 <p>When I use it on a machine with a yubikey inserted, it suggest to
294 install yubikey-personalization:</p>
295
296 <p><blockquote>
297 % ./hw-support-lookup
298 <br>yubikey-personalization
299 <br>%
300 </blockquote></p>
301
302 <p>When I run it on my Thinkpad X40 with a PCMCIA/CardBus slot, it
303 propose to install the pcmciautils package:</p>
304
305 <p><blockquote>
306 % ./hw-support-lookup
307 <br>pcmciautils
308 <br>%
309 </blockquote></p>
310
311 <p>If you know of any hardware-package mapping that should be added to
312 <a href="http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/modaliases?view=co">my
313 database</a>, please tell me about it.</p>
314
315 <p>It could be possible to generate several of the mappings between
316 packages and hardware. One source would be to look at packages with
317 kernel modules, ie packages with *.ko files in /lib/modules/, and
318 extract their modalias information. Another would be to look at
319 packages with udev rules, ie packages with files in
320 /lib/udev/rules.d/, and extract their vendor/model information to
321 generate a modalias matching rule. I have not tested any of these to
322 see if it work.</p>
323
324 <p>If you want to help implementing a system to let us propose what
325 packages to install when new hardware is plugged into a Debian
326 machine, please send me an email or talk to me on
327 <a href="irc://irc.debian.org/%23debian-devel">#debian-devel</a>.</p>
328 </div>
329 <div class="tags">
330
331
332 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>.
333
334
335 </div>
336 </div>
337 <div class="padding"></div>
338
339 <div class="entry">
340 <div class="title"><a href="http://people.skolelinux.org/pere/blog/Modalias_strings___a_practical_way_to_map__stuff__to_hardware.html">Modalias strings - a practical way to map "stuff" to hardware</a></div>
341 <div class="date">14th January 2013</div>
342 <div class="body"><p>While looking into how to look up Debian packages based on hardware
343 information, to find the packages that support a given piece of
344 hardware, I refreshed my memory regarding modalias values, and decided
345 to document the details. Here are my findings so far, also available
346 in
347 <a href="http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/">the
348 Debian Edu subversion repository</a>:
349
350 <p><strong>Modalias decoded</strong></p>
351
352 <p>This document try to explain what the different types of modalias
353 values stands for. It is in part based on information from
354 &lt;URL: <a href="https://wiki.archlinux.org/index.php/Modalias">https://wiki.archlinux.org/index.php/Modalias</a> &gt;,
355 &lt;URL: <a href="http://unix.stackexchange.com/questions/26132/how-to-assign-usb-driver-to-device">http://unix.stackexchange.com/questions/26132/how-to-assign-usb-driver-to-device</a> &gt;,
356 &lt;URL: <a href="http://code.metager.de/source/history/linux/stable/scripts/mod/file2alias.c">http://code.metager.de/source/history/linux/stable/scripts/mod/file2alias.c</a> &gt; and
357 &lt;URL: <a href="http://cvs.savannah.gnu.org/viewvc/dmidecode/dmidecode.c?root=dmidecode&view=markup">http://cvs.savannah.gnu.org/viewvc/dmidecode/dmidecode.c?root=dmidecode&view=markup</a> &gt;.
358
359 <p>The modalias entries for a given Linux machine can be found using
360 this shell script:</p>
361
362 <pre>
363 find /sys -name modalias -print0 | xargs -0 cat | sort -u
364 </pre>
365
366 <p>The supported modalias globs for a given kernel module can be found
367 using modinfo:</p>
368
369 <pre>
370 % /sbin/modinfo psmouse | grep alias:
371 alias: serio:ty05pr*id*ex*
372 alias: serio:ty01pr*id*ex*
373 %
374 </pre>
375
376 <p><strong>PCI subtype</strong></p>
377
378 <p>A typical PCI entry can look like this. This is an Intel Host
379 Bridge memory controller:</p>
380
381 <p><blockquote>
382 pci:v00008086d00002770sv00001028sd000001ADbc06sc00i00
383 </blockquote></p>
384
385 <p>This represent these values:</p>
386
387 <pre>
388 v 00008086 (vendor)
389 d 00002770 (device)
390 sv 00001028 (subvendor)
391 sd 000001AD (subdevice)
392 bc 06 (bus class)
393 sc 00 (bus subclass)
394 i 00 (interface)
395 </pre>
396
397 <p>The vendor/device values are the same values outputted from 'lspci
398 -n' as 8086:2770. The bus class/subclass is also shown by lspci as
399 0600. The 0600 class is a host bridge. Other useful bus values are
400 0300 (VGA compatible card) and 0200 (Ethernet controller).</p>
401
402 <p>Not sure how to figure out the interface value, nor what it
403 means.</p>
404
405 <p><strong>USB subtype</strong></p>
406
407 <p>Some typical USB entries can look like this. This is an internal
408 USB hub in a laptop:</p>
409
410 <p><blockquote>
411 usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00
412 </blockquote></p>
413
414 <p>Here is the values included in this alias:</p>
415
416 <pre>
417 v 1D6B (device vendor)
418 p 0001 (device product)
419 d 0206 (bcddevice)
420 dc 09 (device class)
421 dsc 00 (device subclass)
422 dp 00 (device protocol)
423 ic 09 (interface class)
424 isc 00 (interface subclass)
425 ip 00 (interface protocol)
426 </pre>
427
428 <p>The 0900 device class/subclass means hub. Some times the relevant
429 class is in the interface class section. For a simple USB web camera,
430 these alias entries show up:</p>
431
432 <p><blockquote>
433 usb:v0AC8p3420d5000dcEFdsc02dp01ic01isc01ip00
434 <br>usb:v0AC8p3420d5000dcEFdsc02dp01ic01isc02ip00
435 <br>usb:v0AC8p3420d5000dcEFdsc02dp01ic0Eisc01ip00
436 <br>usb:v0AC8p3420d5000dcEFdsc02dp01ic0Eisc02ip00
437 </blockquote></p>
438
439 <p>Interface class 0E01 is video control, 0E02 is video streaming (aka
440 camera), 0101 is audio control device and 0102 is audio streaming (aka
441 microphone). Thus this is a camera with microphone included.</p>
442
443 <p><strong>ACPI subtype</strong></p>
444
445 <p>The ACPI type is used for several non-PCI/USB stuff. This is an IR
446 receiver in a Thinkpad X40:</p>
447
448 <p><blockquote>
449 acpi:IBM0071:PNP0511:
450 </blockquote></p>
451
452 <p>The values between the colons are IDs.</p>
453
454 <p><strong>DMI subtype</strong></p>
455
456 <p>The DMI table contain lots of information about the computer case
457 and model. This is an entry for a IBM Thinkpad X40, fetched from
458 /sys/devices/virtual/dmi/id/modalias:</p>
459
460 <p><blockquote>
461 dmi:bvnIBM:bvr1UETB6WW(1.66):bd06/15/2005:svnIBM:pn2371H4G:pvrThinkPadX40:rvnIBM:rn2371H4G:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
462 </blockquote></p>
463
464 <p>The values present are</p>
465
466 <pre>
467 bvn IBM (BIOS vendor)
468 bvr 1UETB6WW(1.66) (BIOS version)
469 bd 06/15/2005 (BIOS date)
470 svn IBM (system vendor)
471 pn 2371H4G (product name)
472 pvr ThinkPadX40 (product version)
473 rvn IBM (board vendor)
474 rn 2371H4G (board name)
475 rvr NotAvailable (board version)
476 cvn IBM (chassis vendor)
477 ct 10 (chassis type)
478 cvr NotAvailable (chassis version)
479 </pre>
480
481 <p>The chassis type 10 is Notebook. Other interesting values can be
482 found in the dmidecode source:</p>
483
484 <pre>
485 3 Desktop
486 4 Low Profile Desktop
487 5 Pizza Box
488 6 Mini Tower
489 7 Tower
490 8 Portable
491 9 Laptop
492 10 Notebook
493 11 Hand Held
494 12 Docking Station
495 13 All In One
496 14 Sub Notebook
497 15 Space-saving
498 16 Lunch Box
499 17 Main Server Chassis
500 18 Expansion Chassis
501 19 Sub Chassis
502 20 Bus Expansion Chassis
503 21 Peripheral Chassis
504 22 RAID Chassis
505 23 Rack Mount Chassis
506 24 Sealed-case PC
507 25 Multi-system
508 26 CompactPCI
509 27 AdvancedTCA
510 28 Blade
511 29 Blade Enclosing
512 </pre>
513
514 <p>The chassis type values are not always accurately set in the DMI
515 table. For example my home server is a tower, but the DMI modalias
516 claim it is a desktop.</p>
517
518 <p><strong>SerIO subtype</strong></p>
519
520 <p>This type is used for PS/2 mouse plugs. One example is from my
521 test machine:</p>
522
523 <p><blockquote>
524 serio:ty01pr00id00ex00
525 </blockquote></p>
526
527 <p>The values present are</p>
528
529 <pre>
530 ty 01 (type)
531 pr 00 (prototype)
532 id 00 (id)
533 ex 00 (extra)
534 </pre>
535
536 <p>This type is supported by the psmouse driver. I am not sure what
537 the valid values are.</p>
538
539 <p><strong>Other subtypes</strong></p>
540
541 <p>There are heaps of other modalias subtypes according to
542 file2alias.c. There is the rest of the list from that source: amba,
543 ap, bcma, ccw, css, eisa, hid, i2c, ieee1394, input, ipack, isapnp,
544 mdio, of, parisc, pcmcia, platform, scsi, sdio, spi, ssb, vio, virtio,
545 vmbus, x86cpu and zorro. I did not spend time documenting all of
546 these, as they do not seem relevant for my intended use with mapping
547 hardware to packages when new stuff is inserted during run time.</p>
548
549 <p><strong>Looking up kernel modules using modalias values</strong></p>
550
551 <p>To check which kernel modules provide support for a given modalias,
552 one can use the following shell script:</p>
553
554 <pre>
555 for id in $(find /sys -name modalias -print0 | xargs -0 cat | sort -u); do \
556 echo "$id" ; \
557 /sbin/modprobe --show-depends "$id"|sed 's/^/ /' ; \
558 done
559 </pre>
560
561 <p>The output can look like this (only the first few entries as the
562 list is very long on my test machine):</p>
563
564 <pre>
565 acpi:ACPI0003:
566 insmod /lib/modules/2.6.32-5-686/kernel/drivers/acpi/ac.ko
567 acpi:device:
568 FATAL: Module acpi:device: not found.
569 acpi:IBM0068:
570 insmod /lib/modules/2.6.32-5-686/kernel/drivers/char/nvram.ko
571 insmod /lib/modules/2.6.32-5-686/kernel/drivers/leds/led-class.ko
572 insmod /lib/modules/2.6.32-5-686/kernel/net/rfkill/rfkill.ko
573 insmod /lib/modules/2.6.32-5-686/kernel/drivers/platform/x86/thinkpad_acpi.ko
574 acpi:IBM0071:PNP0511:
575 insmod /lib/modules/2.6.32-5-686/kernel/lib/crc-ccitt.ko
576 insmod /lib/modules/2.6.32-5-686/kernel/net/irda/irda.ko
577 insmod /lib/modules/2.6.32-5-686/kernel/drivers/net/irda/nsc-ircc.ko
578 [...]
579 </pre>
580
581 <p>If you want to help implementing a system to let us propose what
582 packages to install when new hardware is plugged into a Debian
583 machine, please send me an email or talk to me on
584 <a href="irc://irc.debian.org/%23debian-devel">#debian-devel</a>.</p>
585
586 <p><strong>Update 2013-01-15:</strong> Rewrite "cat $(find ...)" to
587 "find ... -print0 | xargs -0 cat" to make sure it handle directories
588 in /sys/ with space in them.</p>
589 </div>
590 <div class="tags">
591
592
593 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>.
594
595
596 </div>
597 </div>
598 <div class="padding"></div>
599
600 <div class="entry">
601 <div class="title"><a href="http://people.skolelinux.org/pere/blog/Moved_the_pymissile_Debian_packaging_to_collab_maint.html">Moved the pymissile Debian packaging to collab-maint</a></div>
602 <div class="date">10th January 2013</div>
603 <div class="body"><p>As part of my investigation on how to improve the support in Debian
604 for hardware dongles, I dug up my old Mark and Spencer USB Rocket
605 Launcher and updated the Debian package
606 <a href="http://packages.qa.debian.org/pymissile">pymissile</a> to make
607 sure udev will fix the device permissions when it is plugged in. I
608 also added a "Modaliases" header to test it in the Debian archive and
609 hopefully make the package be proposed by jockey in Ubuntu when a user
610 plug in his rocket launcher. In the process I moved the source to a
611 git repository under collab-maint, to make it easier for any DD to
612 contribute. <a href="http://code.google.com/p/pymissile/">Upstream</a>
613 is not very active, but the software still work for me even after five
614 years of relative silence. The new git repository is not listed in
615 the uploaded package yet, because I want to test the other changes a
616 bit more before I upload the new version. If you want to check out
617 the new version with a .desktop file included, visit the
618 <a href="http://anonscm.debian.org/gitweb/?p=collab-maint/pymissile.git">gitweb
619 view</a> or use "<tt>git clone
620 git://anonscm.debian.org/collab-maint/pymissile.git</tt>".</p>
621 </div>
622 <div class="tags">
623
624
625 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/robot">robot</a>.
626
627
628 </div>
629 </div>
630 <div class="padding"></div>
631
632 <div class="entry">
633 <div class="title"><a href="http://people.skolelinux.org/pere/blog/Lets_make_hardware_dongles_easier_to_use_in_Debian.html">Lets make hardware dongles easier to use in Debian</a></div>
634 <div class="date"> 9th January 2013</div>
635 <div class="body"><p>One thing that annoys me with Debian and Linux distributions in
636 general, is that there is a great package management system with the
637 ability to automatically install software packages by downloading them
638 from the distribution mirrors, but no way to get it to automatically
639 install the packages I need to use the hardware I plug into my
640 machine. Even if the package to use it is easily available from the
641 Linux distribution. When I plug in a LEGO Mindstorms NXT, it could
642 suggest to automatically install the python-nxt, nbc and t2n packages
643 I need to talk to it. When I plug in a Yubikey, it could propose the
644 yubikey-personalization package. The information required to do this
645 is available, but no-one have pulled all the pieces together.</p>
646
647 <p>Some years ago, I proposed to
648 <a href="http://lists.debian.org/debian-devel/2010/05/msg01206.html">use
649 the discover subsystem to implement this</a>. The idea is fairly
650 simple:
651
652 <ul>
653
654 <li>Add a desktop entry in /usr/share/autostart/ pointing to a program
655 starting when a user log in.</li>
656
657 <li>Set this program up to listen for kernel events emitted when new
658 hardware is inserted into the computer.</li>
659
660 <li>When new hardware is inserted, look up the hardware ID in a
661 database mapping to packages, and take note of any non-installed
662 packages.</li>
663
664 <li>Show a message to the user proposing to install the discovered
665 package, and make it easy to install it.</li>
666
667 </ul>
668
669 <p>I am not sure what the best way to implement this is, but my
670 initial idea was to use dbus events to discover new hardware, the
671 discover database to find packages and
672 <a href="http://www.packagekit.org/">PackageKit</a> to install
673 packages.</p>
674
675 <p>Yesterday, I found time to try to implement this idea, and the
676 draft package is now checked into
677 <a href="http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/">the
678 Debian Edu subversion repository</a>. In the process, I updated the
679 <a href="http://packages.qa.debian.org/d/discover-data.html">discover-data</a>
680 package to map the USB ids of LEGO Mindstorms and Yubikey devices to
681 the relevant packages in Debian, and uploaded a new version
682 2.2013.01.09 to unstable. I also discovered that the current
683 <a href="http://packages.qa.debian.org/d/discover.html">discover</a>
684 package in Debian no longer discovered any USB devices, because
685 /proc/bus/usb/devices is no longer present. I ported it to use
686 libusb as a fall back option to get it working. The fixed package
687 version 2.1.2-6 is now in experimental (didn't upload it to unstable
688 because of the freeze).</p>
689
690 <p>With this prototype in place, I can insert my Yubikey, and get this
691 desktop notification to show up (only once, the first time it is
692 inserted):</p>
693
694 <p align="center"><img src="http://people.skolelinux.org/pere/blog/images/2013-01-09-hw-autoinstall.png"></p>
695
696 <p>For this prototype to be really useful, some way to automatically
697 install the proposed packages by pressing the "Please install
698 program(s)" button should to be implemented.</p>
699
700 <p>If this idea seem useful to you, and you want to help make it
701 happen, please help me update the discover-data database with mappings
702 from hardware to Debian packages. Check if 'discover-pkginstall -l'
703 list the package you would like to have installed when a given
704 hardware device is inserted into your computer, and report bugs using
705 reportbug if it isn't. Or, if you know of a better way to provide
706 such mapping, please let me know.</p>
707
708 <p>This prototype need more work, and there are several questions that
709 should be considered before it is ready for production use. Is dbus
710 the correct way to detect new hardware? At the moment I look for HAL
711 dbus events on the system bus, because that is the events I could see
712 on my Debian Squeeze KDE desktop. Are there better events to use?
713 How should the user be notified? Is the desktop notification
714 mechanism the best option, or should the background daemon raise a
715 popup instead? How should packages be installed? When should they
716 not be installed?</p>
717
718 <p>If you want to help getting such feature implemented in Debian,
719 please send me an email. :)</p>
720 </div>
721 <div class="tags">
722
723
724 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>.
725
726
727 </div>
728 </div>
729 <div class="padding"></div>
730
731 <div class="entry">
732 <div class="title"><a href="http://people.skolelinux.org/pere/blog/New_IRC_channel_for_LEGO_designers_using_Debian.html">New IRC channel for LEGO designers using Debian</a></div>
733 <div class="date"> 2nd January 2013</div>
734 <div class="body"><p>During Christmas, I have worked a bit on the Debian support for
735 <a href="http://mindstorms.lego.com/en-us/Default.aspx">LEGO Mindstorm
736 NXT</a>. My son and I have played a bit with my NXT set, and I
737 discovered I had to build all the tools myself because none were
738 already in Debian Squeeze. If Debian support for LEGO is something
739 you care about, please join me on the IRC channel
740 <a href="irc://irc.debian.org/%23debian-lego">#debian-lego</a> (server
741 irc.debian.org). There is a lot that could be done to improve the
742 Debian support for LEGO designers. For example both CAD software
743 and Mindstorm compilers are missing. :)</p>
744
745 <p>Update 2012-01-03: A
746 <a href="http://wiki.debian.org/LegoDesigners">project page</a>
747 including links to Lego related packages is now available.</p>
748 </div>
749 <div class="tags">
750
751
752 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/robot">robot</a>.
753
754
755 </div>
756 </div>
757 <div class="padding"></div>
758
759 <div class="entry">
760 <div class="title"><a href="http://people.skolelinux.org/pere/blog/Lenker_for_2013_01_01.html">Lenker for 2013-01-01</a></div>
761 <div class="date"> 1st January 2013</div>
762 <div class="body"><p>Her er noen lenker til tekster jeg har satt pris på å lese den
763 siste måneden.</p>
764
765 <ul>
766
767 <li>2012-12-07
768 <a href="http://www.idg.no/computerworld/article262047.ece">Myter og
769 FUD om fri programvare</a> av min venn Christer Gundersen som
770 kommenterer noen av de påstandene som er spredt via Computerworld
771 Norge de siste månedene.</li>
772
773 <li>BankID er et opplegg der utsteder (dvs. banken eller dens
774 leverandør) sitter på alt som trengs for å bruke BankID, men har
775 lovet å ikke bruke den unntatt på oppdrag fra deg. Det er greit nok
776 for banktjenester, der banken allerede har full kontroll over
777 resultatet, men problematisk når det gjelder tilgang til
778 helseopplysninger og avtaleinngåelse med andre enn banken. Jeg
779 håper protestene brer om seg.
780
781 <ul>
782
783 <li>2012-12-11 <a href="http://www.aftenposten.no/meninger/debatt/BankID-blottlegger-helseopplysninger-7067148.html">BankID
784 blottlegger helseopplysninger</a></li>
785
786 <li>2012-12-07 <a href="http://www.nrk.no/nyheter/norge/1.9695027">-
787 Helseopplysningene ikke sikre med Bank-ID</a></li>
788
789 <li>2012-12-07
790 <a href="https://www.bankid.no/Presse-og-nyheter/Nyhetsarkiv/2012/Papeker-alvorlige-men-kjente-utfordringer/">PÃ¥peker
791 alvorlige, men kjente utfordringer</a> er den offisielle
792 holdningen til de som lager BankID.</li>
793
794 <li>2012-12-08
795 <a href="http://www.tnp.no/norway/panorama/3419-ntnu-researcher-warns-against-security-of-bank-id-password">NTNU
796 Researcher Warns against Security of Bank ID Password</a>
797
798 </ul>
799
800 <li>2012-12-11 <a href="http://www.aftenposten.no/nyheter/iriks/Norske-elever-er-darligst-i-Europa-pa-algebra-7066752.html">Norske elever er dårligst i Europa på algebra</a>
801
802 <li>2012-12-11
803 <a href="http://www.aftenposten.no/meninger/debatt/Realfagsdodaren-7067173.html">Realfagsdødaren</a>
804
805 <li>2012-12-21
806 <a href="http://www.bt.no/nyheter/innenriks/112/--Forventningene-er-for-hoye-2816450.html">-
807 Noen må bli skuffet</a> - Politiet i Bergen forteller hvor lavt de
808 prioriterer hverdagskriminalitet.</li>
809
810 <li>2012-05-03
811 <a href="http://e24.no/jobb/kripos-ansatt-doemt-for-snoking-for-venn/20208585">
812 Kripos-ansatt dømt for snoking for venn</A> - viser hvor svak
813 reaksjonen blir når politiet misbruker innsamlet informasjon. En
814 forvarsel på konsekvensene av nasjonal brev- og besøkskontroll -
815 ofte kalt Datalagringsdirektivet.</li>
816
817 <li>2012-12-14
818 <a href="http://www.dagbladet.no/2012/12/14/kultur/debatt/kronikk/jul/ensomhet/24838541/">Ã…
819 smøre en forskjell</a> - om ensomhet og jul.</li>
820
821 <li>2012-12-18
822 <a href="http://www.aftenposten.no/meninger/kronikker/n-krise-av-gangen_-takk-7072452.html">Én
823 krise av gangen, takk!</a>
824
825
826 <li>2012-12-17
827 <a href="http://www.aftenposten.no/meninger/NAV-Et-mangehodet-monster--7072165.html">NAV:
828 Et mangehodet monster</a></li>
829
830 <li>2011-01-12
831 <a href="http://www.dagbladet.no/2011/01/12/kultur/debatt/kronikk/personvern/15027203/">Pasienter
832 uten vern</a> - forteller litt om hvordan Norsk Pasientregister og
833 andre helseregister raderer bort pasienters privatsfære.</li>
834
835
836 <li>2012-12-19
837 <a href="http://www.aftenposten.no/meninger/debatt/Hvorfor-er-barnefamilier-fattige-7073951.html">Hvorfor
838 er barnefamilier fattige?</a></li>
839
840 <li>2012-12-25
841 <a href="http://www.aftenposten.no/meninger/spaltister/Den-skjulte-minoriteten--konservative-kristne-i-Norge-7075518.html">Den
842 skjulte minoriteten – konservative kristne i Norge</a> - kronikk av
843 Bjørn Stærk fra aftenposten</li>
844
845 <li>2009-05-04
846 <a href="http://deltemeninger.no/-/bulletin/show/303429_folkebiblioteket-2-0?ref=checkpoint">Folkebiblioteket
847 2.0</a> - Min venn Sturle om opphavsrett og Internett, i debatt med
848 Olav Torvund.</li>
849
850 </ul>
851
852 <p>Og et godt nytt år til dere alle!</p>
853 </div>
854 <div class="tags">
855
856
857 Tags: <a href="http://people.skolelinux.org/pere/blog/tags/bankid">bankid</a>, <a href="http://people.skolelinux.org/pere/blog/tags/lenker">lenker</a>, <a href="http://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="http://people.skolelinux.org/pere/blog/tags/opphavsrett">opphavsrett</a>, <a href="http://people.skolelinux.org/pere/blog/tags/personvern">personvern</a>.
858
859
860 </div>
861 </div>
862 <div class="padding"></div>
863
864 <div class="entry">
865 <div class="title"><a href="http://people.skolelinux.org/pere/blog/A_Christmas_present_for_Skolelinux___Debian_Edu.html">A Christmas present for Skolelinux / Debian Edu</a></div>
866 <div class="date">28th December 2012</div>
867 <div class="body"><p>I was happy to discover a few days ago that the
868 <a href="http://www.skolelinux.org/">Skolelinux / Debian Edu</a>
869 project also this year received a Christmas present from Another
870 Agency in Trondheim. NOK 1000,- showed up on our donation account
871 December 24th. I want to express our thanks for this very welcome
872 present. As the Debian Edu / Skolelinux project is very short on
873 funding these days, and thus lack the money to do regular developer
874 gatherings, this donation was most welcome. One developer gathering
875 cost around NOK 15&nbsp;000,-, so we need quite a lot more to keep the
876 development pace we want. Thus, I hope their example this year is
877 followed by many others. :)</p>
878
879 <p>The public list of donors can be found on
880 <a href="http://www.linuxiskolen.no/slxdebianlabs/donations.html">the
881 donation page</a> for the project, which also contain instructions if
882 you want to donate to the project.</p>
883 </div>
884 <div class="tags">
885
886
887 Tags: <a href="http://people.skolelinux.org/pere/blog/tags/debian edu">debian edu</a>, <a href="http://people.skolelinux.org/pere/blog/tags/english">english</a>.
888
889
890 </div>
891 </div>
892 <div class="padding"></div>
893
894 <div class="entry">
895 <div class="title"><a href="http://people.skolelinux.org/pere/blog/How_to_backport_bitcoin_qt_version_0_7_2_2_to_Debian_Squeeze.html">How to backport bitcoin-qt version 0.7.2-2 to Debian Squeeze</a></div>
896 <div class="date">25th December 2012</div>
897 <div class="body"><p>Let me start by wishing you all marry Christmas and a happy new
898 year! I hope next year will prove to be a good year.</p>
899
900 <p><a href="http://www.bitcoin.org/">Bitcoin</a>, the digital
901 decentralised "currency" that allow people to transfer bitcoins
902 between each other with minimal overhead, is a very interesting
903 experiment. And as I wrote a few days ago, the bitcoin situation in
904 <a href="http://www.debian.org/">Debian</a> is about to improve a bit.
905 The <a href="http://packages.qa.debian.org/bitcoin">new debian source
906 package</a> (version 0.7.2-2) was uploaded yesterday, and is waiting
907 in <a href="http://ftp-master.debian.org/new.html">the NEW queue</A>
908 for one of the ftpmasters to approve the new bitcoin-qt package
909 name.</p>
910
911 <p>And thanks to the great work of Jonas and the rest of the bitcoin
912 team in Debian, you can easily test the package in Debian Squeeze
913 using the following steps to get a set of working packages:</p>
914
915 <blockquote><pre>
916 git clone git://git.debian.org/git/collab-maint/bitcoin
917 cd bitcoin
918 DEB_MAINTAINER_MODE=1 DEB_BUILD_OPTIONS=noupnp fakeroot debian/rules clean
919 DEB_BUILD_OPTIONS=noupnp git-buildpackage --git-ignore-new
920 </pre></blockquote>
921
922 <p>You might have to install some build dependencies as well. The
923 list of commands should give you two packages, bitcoind and
924 bitcoin-qt, ready for use in a Squeeze environment. Note that the
925 client will download the complete set of bitcoin "blocks", which need
926 around 5.6 GiB of data on my machine at the moment. Make sure your
927 ~/.bitcoin/ directory have lots of spare room if you want to download
928 all the blocks. The client will warn if the disk is getting full, so
929 there is not really a problem if you got too little room, but you will
930 not be able to get all the features out of the client.</p>
931
932 <p>As usual, if you use bitcoin and want to show your support of my
933 activities, please send Bitcoin donations to my address
934 <b><a href="bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&label=PetterReinholdtsenBlog">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b</a></b>.</p>
935 </div>
936 <div class="tags">
937
938
939 Tags: <a href="http://people.skolelinux.org/pere/blog/tags/bitcoin">bitcoin</a>, <a href="http://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="http://people.skolelinux.org/pere/blog/tags/english">english</a>.
940
941
942 </div>
943 </div>
944 <div class="padding"></div>
945
946 <p style="text-align: right;"><a href="index.rss"><img src="http://people.skolelinux.org/pere/blog/xml.gif" alt="RSS feed" width="36" height="14" /></a></p>
947 <div id="sidebar">
948
949
950
951 <h2>Archive</h2>
952 <ul>
953
954 <li>2013
955 <ul>
956
957 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/01/">January (8)</a></li>
958
959 </ul></li>
960
961 <li>2012
962 <ul>
963
964 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/01/">January (7)</a></li>
965
966 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/02/">February (10)</a></li>
967
968 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/03/">March (17)</a></li>
969
970 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/04/">April (12)</a></li>
971
972 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/05/">May (12)</a></li>
973
974 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/06/">June (20)</a></li>
975
976 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/07/">July (17)</a></li>
977
978 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/08/">August (6)</a></li>
979
980 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/09/">September (9)</a></li>
981
982 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/10/">October (17)</a></li>
983
984 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/11/">November (10)</a></li>
985
986 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/12/">December (7)</a></li>
987
988 </ul></li>
989
990 <li>2011
991 <ul>
992
993 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/01/">January (16)</a></li>
994
995 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/02/">February (6)</a></li>
996
997 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/03/">March (6)</a></li>
998
999 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/04/">April (7)</a></li>
1000
1001 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/05/">May (3)</a></li>
1002
1003 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/06/">June (2)</a></li>
1004
1005 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/07/">July (7)</a></li>
1006
1007 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/08/">August (6)</a></li>
1008
1009 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/09/">September (4)</a></li>
1010
1011 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/10/">October (2)</a></li>
1012
1013 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/11/">November (3)</a></li>
1014
1015 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/12/">December (1)</a></li>
1016
1017 </ul></li>
1018
1019 <li>2010
1020 <ul>
1021
1022 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/01/">January (2)</a></li>
1023
1024 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/02/">February (1)</a></li>
1025
1026 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/03/">March (3)</a></li>
1027
1028 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/04/">April (3)</a></li>
1029
1030 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/05/">May (9)</a></li>
1031
1032 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/06/">June (14)</a></li>
1033
1034 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/07/">July (12)</a></li>
1035
1036 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/08/">August (13)</a></li>
1037
1038 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/09/">September (7)</a></li>
1039
1040 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/10/">October (9)</a></li>
1041
1042 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/11/">November (13)</a></li>
1043
1044 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/12/">December (12)</a></li>
1045
1046 </ul></li>
1047
1048 <li>2009
1049 <ul>
1050
1051 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/01/">January (8)</a></li>
1052
1053 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/02/">February (8)</a></li>
1054
1055 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/03/">March (12)</a></li>
1056
1057 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/04/">April (10)</a></li>
1058
1059 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/05/">May (9)</a></li>
1060
1061 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/06/">June (3)</a></li>
1062
1063 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/07/">July (4)</a></li>
1064
1065 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/08/">August (3)</a></li>
1066
1067 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/09/">September (1)</a></li>
1068
1069 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/10/">October (2)</a></li>
1070
1071 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/11/">November (3)</a></li>
1072
1073 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/12/">December (3)</a></li>
1074
1075 </ul></li>
1076
1077 <li>2008
1078 <ul>
1079
1080 <li><a href="http://people.skolelinux.org/pere/blog/archive/2008/11/">November (5)</a></li>
1081
1082 <li><a href="http://people.skolelinux.org/pere/blog/archive/2008/12/">December (7)</a></li>
1083
1084 </ul></li>
1085
1086 </ul>
1087
1088
1089
1090 <h2>Tags</h2>
1091 <ul>
1092
1093 <li><a href="http://people.skolelinux.org/pere/blog/tags/3d-printer">3d-printer (13)</a></li>
1094
1095 <li><a href="http://people.skolelinux.org/pere/blog/tags/amiga">amiga (1)</a></li>
1096
1097 <li><a href="http://people.skolelinux.org/pere/blog/tags/aros">aros (1)</a></li>
1098
1099 <li><a href="http://people.skolelinux.org/pere/blog/tags/bankid">bankid (4)</a></li>
1100
1101 <li><a href="http://people.skolelinux.org/pere/blog/tags/bitcoin">bitcoin (5)</a></li>
1102
1103 <li><a href="http://people.skolelinux.org/pere/blog/tags/bootsystem">bootsystem (12)</a></li>
1104
1105 <li><a href="http://people.skolelinux.org/pere/blog/tags/bsa">bsa (2)</a></li>
1106
1107 <li><a href="http://people.skolelinux.org/pere/blog/tags/debian">debian (66)</a></li>
1108
1109 <li><a href="http://people.skolelinux.org/pere/blog/tags/debian edu">debian edu (118)</a></li>
1110
1111 <li><a href="http://people.skolelinux.org/pere/blog/tags/digistan">digistan (9)</a></li>
1112
1113 <li><a href="http://people.skolelinux.org/pere/blog/tags/docbook">docbook (7)</a></li>
1114
1115 <li><a href="http://people.skolelinux.org/pere/blog/tags/drivstoffpriser">drivstoffpriser (4)</a></li>
1116
1117 <li><a href="http://people.skolelinux.org/pere/blog/tags/english">english (172)</a></li>
1118
1119 <li><a href="http://people.skolelinux.org/pere/blog/tags/fiksgatami">fiksgatami (21)</a></li>
1120
1121 <li><a href="http://people.skolelinux.org/pere/blog/tags/fildeling">fildeling (12)</a></li>
1122
1123 <li><a href="http://people.skolelinux.org/pere/blog/tags/freeculture">freeculture (10)</a></li>
1124
1125 <li><a href="http://people.skolelinux.org/pere/blog/tags/frikanalen">frikanalen (9)</a></li>
1126
1127 <li><a href="http://people.skolelinux.org/pere/blog/tags/intervju">intervju (32)</a></li>
1128
1129 <li><a href="http://people.skolelinux.org/pere/blog/tags/kart">kart (17)</a></li>
1130
1131 <li><a href="http://people.skolelinux.org/pere/blog/tags/ldap">ldap (8)</a></li>
1132
1133 <li><a href="http://people.skolelinux.org/pere/blog/tags/lenker">lenker (6)</a></li>
1134
1135 <li><a href="http://people.skolelinux.org/pere/blog/tags/ltsp">ltsp (1)</a></li>
1136
1137 <li><a href="http://people.skolelinux.org/pere/blog/tags/multimedia">multimedia (25)</a></li>
1138
1139 <li><a href="http://people.skolelinux.org/pere/blog/tags/norsk">norsk (219)</a></li>
1140
1141 <li><a href="http://people.skolelinux.org/pere/blog/tags/nuug">nuug (148)</a></li>
1142
1143 <li><a href="http://people.skolelinux.org/pere/blog/tags/offentlig innsyn">offentlig innsyn (6)</a></li>
1144
1145 <li><a href="http://people.skolelinux.org/pere/blog/tags/open311">open311 (2)</a></li>
1146
1147 <li><a href="http://people.skolelinux.org/pere/blog/tags/opphavsrett">opphavsrett (41)</a></li>
1148
1149 <li><a href="http://people.skolelinux.org/pere/blog/tags/personvern">personvern (61)</a></li>
1150
1151 <li><a href="http://people.skolelinux.org/pere/blog/tags/raid">raid (1)</a></li>
1152
1153 <li><a href="http://people.skolelinux.org/pere/blog/tags/reprap">reprap (11)</a></li>
1154
1155 <li><a href="http://people.skolelinux.org/pere/blog/tags/rfid">rfid (2)</a></li>
1156
1157 <li><a href="http://people.skolelinux.org/pere/blog/tags/robot">robot (6)</a></li>
1158
1159 <li><a href="http://people.skolelinux.org/pere/blog/tags/rss">rss (1)</a></li>
1160
1161 <li><a href="http://people.skolelinux.org/pere/blog/tags/ruter">ruter (4)</a></li>
1162
1163 <li><a href="http://people.skolelinux.org/pere/blog/tags/scraperwiki">scraperwiki (2)</a></li>
1164
1165 <li><a href="http://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet (28)</a></li>
1166
1167 <li><a href="http://people.skolelinux.org/pere/blog/tags/sitesummary">sitesummary (4)</a></li>
1168
1169 <li><a href="http://people.skolelinux.org/pere/blog/tags/skepsis">skepsis (4)</a></li>
1170
1171 <li><a href="http://people.skolelinux.org/pere/blog/tags/standard">standard (39)</a></li>
1172
1173 <li><a href="http://people.skolelinux.org/pere/blog/tags/stavekontroll">stavekontroll (3)</a></li>
1174
1175 <li><a href="http://people.skolelinux.org/pere/blog/tags/stortinget">stortinget (5)</a></li>
1176
1177 <li><a href="http://people.skolelinux.org/pere/blog/tags/surveillance">surveillance (12)</a></li>
1178
1179 <li><a href="http://people.skolelinux.org/pere/blog/tags/sysadmin">sysadmin (1)</a></li>
1180
1181 <li><a href="http://people.skolelinux.org/pere/blog/tags/valg">valg (7)</a></li>
1182
1183 <li><a href="http://people.skolelinux.org/pere/blog/tags/video">video (35)</a></li>
1184
1185 <li><a href="http://people.skolelinux.org/pere/blog/tags/vitenskap">vitenskap (4)</a></li>
1186
1187 <li><a href="http://people.skolelinux.org/pere/blog/tags/web">web (26)</a></li>
1188
1189 </ul>
1190
1191
1192 </div>
1193 <p style="text-align: right">
1194 Created by <a href="http://steve.org.uk/Software/chronicle">Chronicle v4.4</a>
1195 </p>
1196
1197 </body>
1198 </html>