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