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