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">
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" />
14 <a href=
"http://people.skolelinux.org/pere/blog/">Petter Reinholdtsen
</a>
23 <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>
24 <div class=
"date">14th January
2013</div>
25 <div class=
"body"><p>While looking into how to look up Debian packages based on hardware
26 information, to find the packages that support a given piece of
27 hardware, I refreshed my memory regarding modalias values, and decided
28 to document the details. Here are my findings so far, also available
30 <a href=
"http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/">the
31 Debian Edu subversion repository
</a>:
33 <p><strong>Modalias decoded
</strong></p>
35 <p>This document try to explain what the different types of modalias
36 values stands for. It is in part based on information from
37 <URL:
<a href=
"https://wiki.archlinux.org/index.php/Modalias">https://wiki.archlinux.org/index.php/Modalias
</a> >,
38 <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> >,
39 <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> > and
40 <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> >.
42 <p>The modalias entries for a given Linux machine can be found using
43 this shell script:
</p>
46 cat $(find /sys -name modalias) | sort -u
49 <p>The supported modalias globs for a given kernel module can be found
53 % /sbin/modinfo psmouse | grep alias:
54 alias: serio:ty05pr*id*ex*
55 alias: serio:ty01pr*id*ex*
59 <p><strong>PCI subtype
</strong></p>
61 <p>A typical PCI entry can look like this. This is an Intel Host
62 Bridge memory controller:
</p>
65 pci:v00008086d00002770sv00001028sd000001ADbc06sc00i00
68 <p>This represent these values:
</p>
73 sv
00001028 (subvendor)
74 sd
000001AD (subdevice)
80 <p>The vendor/device values are the same values outputted from 'lspci
81 -n' as
8086:
2770. The bus class/subclass is also shown by lspci as
82 0600. The
0600 class is a host bridge. Other useful bus values are
83 0300 (VGA compatible card) and
0200 (Ethernet controller).
</p>
85 <p>Not sure how to figure out the interface value, nor what it
88 <p><strong>USB subtype
</strong></p>
90 <p>Some typical USB entries can look like this. This is an internal
91 USB hub in a laptop:
</p>
94 usb:v1D6Bp0001d0206dc09dsc00dp00ic09isc00ip00
97 <p>Here is the values included in this alias:
</p>
100 v
1D6B (device vendor)
101 p
0001 (device product)
104 dsc
00 (device subclass)
105 dp
00 (device protocol)
106 ic
09 (interface class)
107 isc
00 (interface subclass)
108 ip
00 (interface protocol)
111 <p>The
0900 device class/subclass means hub. Some times the relevant
112 class is in the interface class section. For a simple USB web camera,
113 these alias entries show up:
</p>
116 usb:v0AC8p3420d5000dcEFdsc02dp01ic01isc01ip00
117 <br>usb:v0AC8p3420d5000dcEFdsc02dp01ic01isc02ip00
118 <br>usb:v0AC8p3420d5000dcEFdsc02dp01ic0Eisc01ip00
119 <br>usb:v0AC8p3420d5000dcEFdsc02dp01ic0Eisc02ip00
122 <p>Interface class
0E01 is video control,
0E02 is video streaming (aka
123 camera),
0101 is audio control device and
0102 is audio streaming (aka
124 microphone). Thus this is a camera with microphone included.
</p>
126 <p><strong>ACPI subtype
</strong></p>
128 <p>The ACPI type is used for several non-PCI/USB stuff. This is an IR
129 receiver in a Thinkpad X40:
</p>
132 acpi:IBM0071:PNP0511:
135 <p>The values between the colons are IDs.
</p>
137 <p><strong>DMI subtype
</strong></p>
139 <p>The DMI table contain lots of information about the computer case
140 and model. This is an entry for a IBM Thinkpad X40, fetched from
141 /sys/devices/virtual/dmi/id/modalias:
</p>
144 dmi:bvnIBM:bvr1UETB6WW(
1.66):bd06/
15/
2005:svnIBM:pn2371H4G:pvrThinkPadX40:rvnIBM:rn2371H4G:rvrNotAvailable:cvnIBM:ct10:cvrNotAvailable:
147 <p>The values present are
</p>
150 bvn IBM (BIOS vendor)
151 bvr
1UETB
6WW(
1.66) (BIOS version)
152 bd
06/
15/
2005 (BIOS date)
153 svn IBM (system vendor)
154 pn
2371H4G (product name)
155 pvr ThinkPadX40 (product version)
156 rvn IBM (board vendor)
157 rn
2371H4G (board name)
158 rvr NotAvailable (board version)
159 cvn IBM (chassis vendor)
161 cvr NotAvailable (chassis version)
164 <p>The chassis type
10 is Notebook. Other interesting values can be
165 found in the dmidecode source:
</p>
169 4 Low Profile Desktop
182 17 Main Server Chassis
185 20 Bus Expansion Chassis
186 21 Peripheral Chassis
188 23 Rack Mount Chassis
197 <p>The chassis type values are not always accurately set in the DMI
198 table. For example my home server is a tower, but the DMI modalias
199 claim it is a desktop.
</p>
201 <p><strong>SerIO subtype
</strong></p>
203 <p>This type is used for PS/
2 mouse plugs. One example is from my
207 serio:ty01pr00id00ex00
210 <p>The values present are
</p>
219 <p>This type is supported by the psmouse driver. I am not sure what
220 the valid values are.
</p>
222 <p><strong>Other subtypes
</strong></p>
224 <p>There are heaps of other modalias subtypes according to
225 file2alias.c. There is the rest of the list from that source: amba,
226 ap, bcma, ccw, css, eisa, hid, i2c, ieee1394, input, ipack, isapnp,
227 mdio, of, parisc, pcmcia, platform, scsi, sdio, spi, ssb, vio, virtio,
228 vmbus, x86cpu and zorro. I did not spend time documenting all of
229 these, as they do not seem relevant for my intended use with mapping
230 hardware to packages when new stuff is inserted during run time.
</p>
232 <p><strong>Looking up kernel modules using modalias values
</strong></p>
234 <p>To check which kernel modules provide support for a given modalias,
235 one can use the following shell script:
</p>
238 for id in $(cat $(find /sys -name modalias)|sort -u); do \
240 /sbin/modprobe --show-depends "$id"|sed 's/^/ /' ; \
244 <p>The output can look like this (only the first few entries as the
245 list is very long on my test machine):
</p>
249 insmod /lib/modules/
2.6.32-
5-
686/kernel/drivers/acpi/ac.ko
251 FATAL: Module acpi:device: not found.
253 insmod /lib/modules/
2.6.32-
5-
686/kernel/drivers/char/nvram.ko
254 insmod /lib/modules/
2.6.32-
5-
686/kernel/drivers/leds/led-class.ko
255 insmod /lib/modules/
2.6.32-
5-
686/kernel/net/rfkill/rfkill.ko
256 insmod /lib/modules/
2.6.32-
5-
686/kernel/drivers/platform/x86/thinkpad_acpi.ko
257 acpi:IBM0071:PNP0511:
258 insmod /lib/modules/
2.6.32-
5-
686/kernel/lib/crc-ccitt.ko
259 insmod /lib/modules/
2.6.32-
5-
686/kernel/net/irda/irda.ko
260 insmod /lib/modules/
2.6.32-
5-
686/kernel/drivers/net/irda/nsc-ircc.ko
264 <p>If you want to help implementing a system to let us propose what
265 packages to install when new hardware is plugged into a Debian
266 machine, please send me an email or talk to me on
267 <a href=
"irc://irc.debian.org/%23debian-devel">#debian-devel
</a>.
</p>
272 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>.
277 <div class=
"padding"></div>
280 <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>
281 <div class=
"date">10th January
2013</div>
282 <div class=
"body"><p>As part of my investigation on how to improve the support in Debian
283 for hardware dongles, I dug up my old Mark and Spencer USB Rocket
284 Launcher and updated the Debian package
285 <a href=
"http://packages.qa.debian.org/pymissile">pymissile
</a> to make
286 sure udev will fix the device permissions when it is plugged in. I
287 also added a "Modaliases" header to test it in the Debian archive and
288 hopefully make the package be proposed by jockey in Ubuntu when a user
289 plug in his rocket launcher. In the process I moved the source to a
290 git repository under collab-maint, to make it easier for any DD to
291 contribute.
<a href=
"http://code.google.com/p/pymissile/">Upstream
</a>
292 is not very active, but the software still work for me even after five
293 years of relative silence. The new git repository is not listed in
294 the uploaded package yet, because I want to test the other changes a
295 bit more before I upload the new version. If you want to check out
296 the new version with a .desktop file included, visit the
297 <a href=
"http://anonscm.debian.org/gitweb/?p=collab-maint/pymissile.git">gitweb
298 view
</a> or use "
<tt>git clone
299 git://anonscm.debian.org/collab-maint/pymissile.git
</tt>".</p>
304 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>.
309 <div class="padding
"></div>
312 <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>
313 <div class="date
"> 9th January 2013</div>
314 <div class="body
"><p>One thing that annoys me with Debian and Linux distributions in
315 general, is that there is a great package management system with the
316 ability to automatically install software packages by downloading them
317 from the distribution mirrors, but no way to get it to automatically
318 install the packages I need to use the hardware I plug into my
319 machine. Even if the package to use it is easily available from the
320 Linux distribution. When I plug in a LEGO Mindstorms NXT, it could
321 suggest to automatically install the python-nxt, nbc and t2n packages
322 I need to talk to it. When I plug in a Yubikey, it could propose the
323 yubikey-personalization package. The information required to do this
324 is available, but no-one have pulled all the pieces together.</p>
326 <p>Some years ago, I proposed to
327 <a href="http://lists.debian.org/debian-devel/
2010/
05/msg01206.html
">use
328 the discover subsystem to implement this</a>. The idea is fairly
333 <li>Add a desktop entry in /usr/share/autostart/ pointing to a program
334 starting when a user log in.</li>
336 <li>Set this program up to listen for kernel events emitted when new
337 hardware is inserted into the computer.</li>
339 <li>When new hardware is inserted, look up the hardware ID in a
340 database mapping to packages, and take note of any non-installed
343 <li>Show a message to the user proposing to install the discovered
344 package, and make it easy to install it.</li>
348 <p>I am not sure what the best way to implement this is, but my
349 initial idea was to use dbus events to discover new hardware, the
350 discover database to find packages and
351 <a href="http://www.packagekit.org/
">PackageKit</a> to install
354 <p>Yesterday, I found time to try to implement this idea, and the
355 draft package is now checked into
356 <a href="http://anonscm.debian.org/viewvc/debian-edu/trunk/src/hw-support-handler/
">the
357 Debian Edu subversion repository</a>. In the process, I updated the
358 <a href="http://packages.qa.debian.org/d/discover-data.html
">discover-data</a>
359 package to map the USB ids of LEGO Mindstorms and Yubikey devices to
360 the relevant packages in Debian, and uploaded a new version
361 2.2013.01.09 to unstable. I also discovered that the current
362 <a href="http://packages.qa.debian.org/d/discover.html
">discover</a>
363 package in Debian no longer discovered any USB devices, because
364 /proc/bus/usb/devices is no longer present. I ported it to use
365 libusb as a fall back option to get it working. The fixed package
366 version 2.1.2-6 is now in experimental (didn't upload it to unstable
367 because of the freeze).</p>
369 <p>With this prototype in place, I can insert my Yubikey, and get this
370 desktop notification to show up (only once, the first time it is
373 <p align="center
"><img src="http://people.skolelinux.org/pere/blog/images/
2013-
01-
09-hw-autoinstall.png
"></p>
375 <p>For this prototype to be really useful, some way to automatically
376 install the proposed packages by pressing the "Please install
377 program(s)" button should to be implemented.
</p>
379 <p>If this idea seem useful to you, and you want to help make it
380 happen, please help me update the discover-data database with mappings
381 from hardware to Debian packages. Check if 'discover-pkginstall -l'
382 list the package you would like to have installed when a given
383 hardware device is inserted into your computer, and report bugs using
384 reportbug if it isn't. Or, if you know of a better way to provide
385 such mapping, please let me know.
</p>
387 <p>This prototype need more work, and there are several questions that
388 should be considered before it is ready for production use. Is dbus
389 the correct way to detect new hardware? At the moment I look for HAL
390 dbus events on the system bus, because that is the events I could see
391 on my Debian Squeeze KDE desktop. Are there better events to use?
392 How should the user be notified? Is the desktop notification
393 mechanism the best option, or should the background daemon raise a
394 popup instead? How should packages be installed? When should they
395 not be installed?
</p>
397 <p>If you want to help getting such feature implemented in Debian,
398 please send me an email. :)
</p>
403 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>.
408 <div class=
"padding"></div>
411 <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>
412 <div class=
"date"> 2nd January
2013</div>
413 <div class=
"body"><p>During Christmas, I have worked a bit on the Debian support for
414 <a href=
"http://mindstorms.lego.com/en-us/Default.aspx">LEGO Mindstorm
415 NXT
</a>. My son and I have played a bit with my NXT set, and I
416 discovered I had to build all the tools myself because none were
417 already in Debian Squeeze. If Debian support for LEGO is something
418 you care about, please join me on the IRC channel
419 <a href=
"irc://irc.debian.org/%23debian-lego">#debian-lego
</a> (server
420 irc.debian.org). There is a lot that could be done to improve the
421 Debian support for LEGO designers. For example both CAD software
422 and Mindstorm compilers are missing. :)
</p>
424 <p>Update
2012-
01-
03: A
425 <a href=
"http://wiki.debian.org/LegoDesigners">project page
</a>
426 including links to Lego related packages is now available.
</p>
431 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>.
436 <div class=
"padding"></div>
439 <div class=
"title"><a href=
"http://people.skolelinux.org/pere/blog/Lenker_for_2013_01_01.html">Lenker for
2013-
01-
01</a></div>
440 <div class=
"date"> 1st January
2013</div>
441 <div class=
"body"><p>Her er noen lenker til tekster jeg har satt pris på å lese den
447 <a href=
"http://www.idg.no/computerworld/article262047.ece">Myter og
448 FUD om fri programvare
</a> av min venn Christer Gundersen som
449 kommenterer noen av de påstandene som er spredt via Computerworld
450 Norge de siste månedene.
</li>
452 <li>BankID er et opplegg der utsteder (dvs. banken eller dens
453 leverandør) sitter på alt som trengs for å bruke BankID, men har
454 lovet å ikke bruke den unntatt på oppdrag fra deg. Det er greit nok
455 for banktjenester, der banken allerede har full kontroll over
456 resultatet, men problematisk når det gjelder tilgang til
457 helseopplysninger og avtaleinngåelse med andre enn banken. Jeg
458 håper protestene brer om seg.
462 <li>2012-
12-
11 <a href=
"http://www.aftenposten.no/meninger/debatt/BankID-blottlegger-helseopplysninger-7067148.html">BankID
463 blottlegger helseopplysninger
</a></li>
465 <li>2012-
12-
07 <a href=
"http://www.nrk.no/nyheter/norge/1.9695027">-
466 Helseopplysningene ikke sikre med Bank-ID
</a></li>
469 <a href=
"https://www.bankid.no/Presse-og-nyheter/Nyhetsarkiv/2012/Papeker-alvorlige-men-kjente-utfordringer/">PÃ¥peker
470 alvorlige, men kjente utfordringer
</a> er den offisielle
471 holdningen til de som lager BankID.
</li>
474 <a href=
"http://www.tnp.no/norway/panorama/3419-ntnu-researcher-warns-against-security-of-bank-id-password">NTNU
475 Researcher Warns against Security of Bank ID Password
</a>
479 <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>
482 <a href=
"http://www.aftenposten.no/meninger/debatt/Realfagsdodaren-7067173.html">Realfagsdødaren
</a>
485 <a href=
"http://www.bt.no/nyheter/innenriks/112/--Forventningene-er-for-hoye-2816450.html">-
486 Noen må bli skuffet
</a> - Politiet i Bergen forteller hvor lavt de
487 prioriterer hverdagskriminalitet.
</li>
490 <a href=
"http://e24.no/jobb/kripos-ansatt-doemt-for-snoking-for-venn/20208585">
491 Kripos-ansatt dømt for snoking for venn
</A> - viser hvor svak
492 reaksjonen blir når politiet misbruker innsamlet informasjon. En
493 forvarsel på konsekvensene av nasjonal brev- og besøkskontroll -
494 ofte kalt Datalagringsdirektivet.
</li>
497 <a href=
"http://www.dagbladet.no/2012/12/14/kultur/debatt/kronikk/jul/ensomhet/24838541/">Ã…
498 smøre en forskjell
</a> - om ensomhet og jul.
</li>
501 <a href=
"http://www.aftenposten.no/meninger/kronikker/n-krise-av-gangen_-takk-7072452.html">Én
502 krise av gangen, takk!
</a>
506 <a href=
"http://www.aftenposten.no/meninger/NAV-Et-mangehodet-monster--7072165.html">NAV:
507 Et mangehodet monster
</a></li>
510 <a href=
"http://www.dagbladet.no/2011/01/12/kultur/debatt/kronikk/personvern/15027203/">Pasienter
511 uten vern
</a> - forteller litt om hvordan Norsk Pasientregister og
512 andre helseregister raderer bort pasienters privatsfære.
</li>
516 <a href=
"http://www.aftenposten.no/meninger/debatt/Hvorfor-er-barnefamilier-fattige-7073951.html">Hvorfor
517 er barnefamilier fattige?
</a></li>
520 <a href=
"http://www.aftenposten.no/meninger/spaltister/Den-skjulte-minoriteten--konservative-kristne-i-Norge-7075518.html">Den
521 skjulte minoriteten – konservative kristne i Norge
</a> - kronikk av
522 Bjørn Stærk fra aftenposten
</li>
525 <a href=
"http://deltemeninger.no/-/bulletin/show/303429_folkebiblioteket-2-0?ref=checkpoint">Folkebiblioteket
526 2.0</a> - Min venn Sturle om opphavsrett og Internett, i debatt med
531 <p>Og et godt nytt år til dere alle!
</p>
536 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>.
541 <div class=
"padding"></div>
544 <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>
545 <div class=
"date">28th December
2012</div>
546 <div class=
"body"><p>I was happy to discover a few days ago that the
547 <a href=
"http://www.skolelinux.org/">Skolelinux / Debian Edu
</a>
548 project also this year received a Christmas present from Another
549 Agency in Trondheim. NOK
1000,- showed up on our donation account
550 December
24th. I want to express our thanks for this very welcome
551 present. As the Debian Edu / Skolelinux project is very short on
552 funding these days, and thus lack the money to do regular developer
553 gatherings, this donation was most welcome. One developer gathering
554 cost around NOK
15 000,-, so we need quite a lot more to keep the
555 development pace we want. Thus, I hope their example this year is
556 followed by many others. :)
</p>
558 <p>The public list of donors can be found on
559 <a href=
"http://www.linuxiskolen.no/slxdebianlabs/donations.html">the
560 donation page
</a> for the project, which also contain instructions if
561 you want to donate to the project.
</p>
566 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>.
571 <div class=
"padding"></div>
574 <div class=
"title"><a href=
"http://people.skolelinux.org/pere/blog/How_to_backport_bitcoin_qt_version_0_7_2_2_to_Debian_Squeeze.html">How to backport bitcoin-qt version
0.7.2-
2 to Debian Squeeze
</a></div>
575 <div class=
"date">25th December
2012</div>
576 <div class=
"body"><p>Let me start by wishing you all marry Christmas and a happy new
577 year! I hope next year will prove to be a good year.
</p>
579 <p><a href=
"http://www.bitcoin.org/">Bitcoin
</a>, the digital
580 decentralised "currency" that allow people to transfer bitcoins
581 between each other with minimal overhead, is a very interesting
582 experiment. And as I wrote a few days ago, the bitcoin situation in
583 <a href=
"http://www.debian.org/">Debian
</a> is about to improve a bit.
584 The
<a href=
"http://packages.qa.debian.org/bitcoin">new debian source
585 package
</a> (version
0.7.2-
2) was uploaded yesterday, and is waiting
586 in
<a href=
"http://ftp-master.debian.org/new.html">the NEW queue
</A>
587 for one of the ftpmasters to approve the new bitcoin-qt package
590 <p>And thanks to the great work of Jonas and the rest of the bitcoin
591 team in Debian, you can easily test the package in Debian Squeeze
592 using the following steps to get a set of working packages:
</p>
595 git clone git://git.debian.org/git/collab-maint/bitcoin
597 DEB_MAINTAINER_MODE=
1 DEB_BUILD_OPTIONS=noupnp fakeroot debian/rules clean
598 DEB_BUILD_OPTIONS=noupnp git-buildpackage --git-ignore-new
601 <p>You might have to install some build dependencies as well. The
602 list of commands should give you two packages, bitcoind and
603 bitcoin-qt, ready for use in a Squeeze environment. Note that the
604 client will download the complete set of bitcoin "blocks", which need
605 around
5.6 GiB of data on my machine at the moment. Make sure your
606 ~/.bitcoin/ directory have lots of spare room if you want to download
607 all the blocks. The client will warn if the disk is getting full, so
608 there is not really a problem if you got too little room, but you will
609 not be able to get all the features out of the client.
</p>
611 <p>As usual, if you use bitcoin and want to show your support of my
612 activities, please send Bitcoin donations to my address
613 <b><a href=
"bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&label=PetterReinholdtsenBlog">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a></b>.
</p>
618 Tags:
<a href=
"http://people.skolelinux.org/pere/blog/tags/bitcoin">bitcoin
</a>,
<a href=
"http://people.skolelinux.org/pere/blog/tags/debian">debian
</a>,
<a href=
"http://people.skolelinux.org/pere/blog/tags/english">english
</a>.
623 <div class=
"padding"></div>
626 <div class=
"title"><a href=
"http://people.skolelinux.org/pere/blog/A_word_on_bitcoin_support_in_Debian.html">A word on bitcoin support in Debian
</a></div>
627 <div class=
"date">21st December
2012</div>
628 <div class=
"body"><p>It has been a while since I wrote about
629 <a href=
"http://www.bitcoin.org/">bitcoin
</a>, the decentralised
630 peer-to-peer based crypto-currency, and the reason is simply that I
631 have been busy elsewhere. But two days ago, I started looking at the
632 state of
<a href=
"http://packages.qa.debian.org/bitcoin">bitcoin in
633 Debian
</a> again to try to recover my old bitcoin wallet. The package
634 is now maintained by a
635 <a href=
"https://alioth.debian.org/projects/pkg-bitcoin/">team of
636 people
</a>, and the grunt work had already been done by this team. We
637 owe a huge thank you to all these team members. :)
638 But I was sad to discover that the bitcoin client is missing in
639 Wheezy. It is only available in Sid (and an outdated client from
640 backports). The client had several RC bugs registered in BTS blocking
641 it from entering testing. To try to help the team and improve the
642 situation, I spent some time providing patches and triaging the bug
643 reports. I also had a look at the bitcoin package available from Matt
645 <a href=
"https://launchpad.net/~bitcoin/+archive/bitcoin">PPA for
646 Ubuntu
</a>, and moved the useful pieces from that version into the
649 <p>After checking with the main package maintainer Jonas Smedegaard on
650 IRC, I pushed several patches into the collab-maint git repository to
651 improve the package. It now contains fixes for the RC issues (not from
652 me, but fixed by Scott Howard), build rules for a Qt GUI client
653 package, konqueror support for the bitcoin: URI and bash completion
654 setup. As I work on Debian Squeeze, I also created
655 <a href=
"http://lists.alioth.debian.org/pipermail/pkg-bitcoin-devel/Week-of-Mon-20121217/000041.html">a
656 patch to backport
</a> the latest version. Jonas is going to look at
657 it and try to integrate it into the git repository before uploading a
658 new version to unstable.
660 <p>I would very much like bitcoin to succeed, to get rid of the
661 centralized control currently exercised in the monetary system. I
662 find it completely unacceptable that the USA government is collecting
663 transaction data for almost all international money transfers (most are done in USD and transaction logs shipped to the spooks), and
664 that the major credit card companies can block legal money
665 transactions to Wikileaks. But for bitcoin to succeed, more people
666 need to use bitcoins, and more people need to accept bitcoins when
667 they sell products and services. Improving the bitcoin support in
668 Debian is a small step in the right direction, but not enough.
669 Unfortunately the user experience when browsing the web and wanting to
670 pay with bitcoin is still not very good. The bitcoin: URI is a step
671 in the right direction, but need to work in most or every browser in
672 use. Also the bitcoin-qt client is too heavy to fire up to do a
673 quick transaction. I believe there are other clients available, but
674 have not tested them.
</p>
677 <a href=
"http://people.skolelinux.org/pere/blog/Now_accepting_bitcoins___anonymous_and_distributed_p2p_crypto_money.html">experiment
678 with bitcoins
</a> showed that at least some of my readers use bitcoin.
679 I received
20.15 BTC so far on the address I provided in my blog two
681 <a href=
"http://blockexplorer.com/address/15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b">seen
682 on the blockexplorer service
</a>. Thank you everyone for your
683 donation. The blockexplorer service demonstrates quite well that
684 bitcoin is not quite anonymous and untracked. :) I wonder if the
685 number of users have gone up since then. If you use bitcoin and want
686 to show your support of my activity, please send Bitcoin donations to
687 the same address as last time,
688 <b><a href=
"bitcoin:15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b&label=PetterReinholdtsenBlog">15oWEoG9dUPovwmUL9KWAnYRtNJEkP1u1b
</a></b>.
</p>
693 Tags:
<a href=
"http://people.skolelinux.org/pere/blog/tags/bitcoin">bitcoin
</a>,
<a href=
"http://people.skolelinux.org/pere/blog/tags/debian">debian
</a>,
<a href=
"http://people.skolelinux.org/pere/blog/tags/english">english
</a>.
698 <div class=
"padding"></div>
701 <div class=
"title"><a href=
"http://people.skolelinux.org/pere/blog/Piratpartiet_p__opphavs_retrett_.html">Piratpartiet på opphavs-retrett?
</a></div>
702 <div class=
"date">19th December
2012</div>
703 <div class=
"body"><p>Jeg ble overrasket over å se at Piratpartiet i
704 <a href=
"http://www.aftenposten.no/kultur/Piratpartiet-stiller-til-Stortingsvalget-7073298.html">Aftenposten
</a>
705 er referert på følgende:
</p>
708 NÃ¥r det gjelder retten til opphavsrett for kulturproduktene, mener
709 Piratpartiet av levetid +
14 år er tilfredsstillende.
712 <p>Det betyr en vernetid langt ut over det kommersielle livet til de
713 aller fleste opphavsrettsbeskyttede verker, og er i strid med slik i
714 hvert fall jeg har tolket punkt
5 i
715 <a href=
"http://people.opera.com/howcome/2012/piratpartiet/kjerneprogram.html">kjerneprogrammet
716 til Piratpartiet
</a>:
</p>
719 <p><strong>5: Ã…ndsverk og patenter: tilbake til start
</strong></p>
722 <tr><th>forslag:
</th><td>14 års opphavsrett og ingen
723 programvarepatenter
</td></tr>
725 <tr><th>grunn:
</th><td>Den første loven om opphavsrett spesifiserte
14
726 års vernetid. Senere har mediabransjens lobbyister stadig presset
727 loven mot lengre vern, nå er det
70 år etter forfatters død. Dette
728 gjør at mange verk glemmes og går tapt, noe som er skadelig for norsk
729 språk og kultur. Vi til tilbake til start:
14 års
730 vernetid. Patentloven sier klart at dataprogrammer ikke kan
731 patenteres. Likevel klarer patentadvokater å lure gjennom
732 programvarepatenter. Slike patenter gjør dingsene våre dyrere og kan i
733 enkelte tilfelle stoppe dem helt.
</th></tr>
737 <p>Den opprinnelige opphavsretten var på
14 år totalt, ikke
14 år
738 etter opphavspersonens død. Jeg tenkte først dette kanskje var
739 feilsitering fra Aftenposten, men jeg finner samme påstand i en
<a
740 href=
"http://piratpartietnorge.org/om-gramo-og-piratpolitikken/">bloggpost
741 fra Geir Aaslid
</a> på Piratpartietes offisielle nettsider. Der
742 skriver han følgende:
</p>
745 Hva vi gjør med opphavsretten er mer komplisert fordi den omfavner så
746 mange bransjer, med ulike behov. Enhver reform er en forbedring men
747 det er nærliggende å anta at en opphavsrett på levetid +
14 år er
748 fullt ut tilfredstillende for musikk, film, litteratur og spill.
751 <p>Det virker dermed på meg som om Piratpartiet allerede har gjort
752 retrett fra sin beundringsverdige holdning om at det holdt med
14 års
753 total vernetid, til sin nye som tar utgangspunkt i levetiden til
754 opphavspersonen. Jeg håper det baserer seg på en misforståelse hos
755 piratlederen som blir korrigert tilbake til
14 års total vernetid før
756 partiet stiller til valg.
</p>
758 <p>Hvis du lurer på hvilke problemer lang vernetid bringer med seg,
759 anbefaler jeg å lese boken
<a href=
"http://free-culture.cc/">Free
760 Culture
</a> av Lawrence Lessig. Jeg og en liten gruppe andre er igang
762 <a href=
"https://github.com/petterreinholdtsen/free-culture-lessig">oversette
763 boken til bokmål
</a> og tar gjerne imot hjelp med oversettelse og
766 <p><strong>Oppdatering
2012-
12-
20</strong>: Oppdaget at
767 <a href=
"http://piratpartietnorge.org/om-gramo-og-piratpolitikken/">bloggposten
768 til Geir Aaslid
</a> er endret siden i går, og nå inneholder følgende
769 avsnitt i stedet for det jeg siterte over:
</p>
772 Hva vi gjør med opphavsretten er mer komplisert fordi den omfavner så
773 mange bransjer, med ulike behov. Enhver reform er en forbedring men
774 det er nærliggende å anta at en opphavsrett lik levetiden, evt +
14 år
775 er fullt ut tilfredstillende for mange skapere av musikk, film,
776 litteratur og spill. Det er for det meste de store forlagene som er
780 <p>I tillegg har det dukket opp en setning nederst "Dette dokumentet
781 er et utkast til svar på et angrep på Piratpartiet fra Gramo. Det
782 endrer seg derfor over tid og den endelige versjonen er det som blir
783 publisert på Hardware.no", som tyder på at originalformuleringen ikke
784 var veloverveid og sitatet i Aftenposten kanskje var basert på en
790 Tags:
<a href=
"http://people.skolelinux.org/pere/blog/tags/freeculture">freeculture
</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>.
795 <div class=
"padding"></div>
798 <div class=
"title"><a href=
"http://people.skolelinux.org/pere/blog/Ledger___double_entry_accounting_using_text_based_storage_format.html">Ledger - double-entry accounting using text based storage format
</a></div>
799 <div class=
"date">18th December
2012</div>
800 <div class=
"body"><p>A few days ago I came across
801 <a href=
"http://joeyh.name/blog/entry/hledger/">a blog post from Joey
802 Hess
</a> describing
<a href=
"http://ledger-cli.org/">ledger
</a> and
803 hledger, a text based system for double-entry accounting. I found it
804 interesting, as I am involved with several organizations where
805 accounting is an issue, and I have not really become too friendly with
806 the different web based systems we use. I find it hard to find what I
807 look for in the menus and even harder try to get sensible data out of
808 the systems. Ledger seem different. The accounting data is kept in
809 text files that can be stored in a version control system, and there
811 are at least
<a href=
"https://github.com/ledger/ledger/wiki/Ports">five
812 different implementations
</a> able to read the format. An example
813 entry look like this, and is simple enough that it will be trivial to
814 generate entries based on CVS files fetched from the bank:
</p>
817 2004-
05-
27 Book Store
818 Expenses:Books $
20.00
822 <p>The concept seemed interesting enough for me to check it out and
823 look for others using it. I found blog posts from
824 <a href=
"http://blog.spang.cc/posts/hledger_rocks_my_world/">Christine
826 <a href=
"http://bugsplat.info/2010-05-23-keeping-finances-with-ledger.html">Pete
828 <a href=
"http://blog.andrewcantino.com/blog/2010/11/06/command-line-accounting-with-ledger-and-reckon/">Andrew
830 <a href=
"http://blog.iphoting.com/blog/2012/11/29/command-line-double-entry-accounting/">Ronald
831 Ip
</a> describing how they use it, as well as a post from
832 <a href=
"https://groups.google.com/forum/?fromgroups=#!topic/ledger-cli/r0oWjwbQ9Bo">Bradley
833 M. Kuhn
</a> at the Software Freedom Conservancy. All seemed like good
834 recommendations fitting my need.
</p>
836 <p>The
<a href=
"http://packages.qa.debian.org/l/ledger.html">ledger
</a>
837 package is available in Debian Squeeze, while the
838 <a href=
"http://packages.qa.debian.org/h/haskell-hledger.html">hledger
</a>
839 package only is available in Debian Sid. As I use Squeeze, ledger
840 seemed the best choice to get started.
</p>
842 <p>To get some real data to test on, I wrote a
843 <a href=
"http://www.nuug.no/tools/lodo2ledger">web scraper
</a> for
844 <a href=
"http://www.lodo.no/">LODO
</a>, the accounting system used by
845 the
<a href=
"http://www.nuug.no/">NUUG
</a> association, and started to
846 play with the data set. I'm not really deeply into accounting, but I
847 am able to get a simple balance and accounting status for example
848 using the "
<tt>ledger balance
</tt>" command. But I will have to
849 gather more experience before I know if the ledger way is a good fit
850 for the organisations I am involved in.</p>
855 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>, <a href="http://people.skolelinux.org/pere/blog/tags/nuug
">nuug</a>.
860 <div class="padding
"></div>
862 <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>
873 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2013/
01/
">January (5)</a></li>
880 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2012/
01/
">January (7)</a></li>
882 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2012/
02/
">February (10)</a></li>
884 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2012/
03/
">March (17)</a></li>
886 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2012/
04/
">April (12)</a></li>
888 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2012/
05/
">May (12)</a></li>
890 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2012/
06/
">June (20)</a></li>
892 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2012/
07/
">July (17)</a></li>
894 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2012/
08/
">August (6)</a></li>
896 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2012/
09/
">September (9)</a></li>
898 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2012/
10/
">October (17)</a></li>
900 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2012/
11/
">November (10)</a></li>
902 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2012/
12/
">December (7)</a></li>
909 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2011/
01/
">January (16)</a></li>
911 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2011/
02/
">February (6)</a></li>
913 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2011/
03/
">March (6)</a></li>
915 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2011/
04/
">April (7)</a></li>
917 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2011/
05/
">May (3)</a></li>
919 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2011/
06/
">June (2)</a></li>
921 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2011/
07/
">July (7)</a></li>
923 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2011/
08/
">August (6)</a></li>
925 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2011/
09/
">September (4)</a></li>
927 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2011/
10/
">October (2)</a></li>
929 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2011/
11/
">November (3)</a></li>
931 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2011/
12/
">December (1)</a></li>
938 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2010/
01/
">January (2)</a></li>
940 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2010/
02/
">February (1)</a></li>
942 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2010/
03/
">March (3)</a></li>
944 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2010/
04/
">April (3)</a></li>
946 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2010/
05/
">May (9)</a></li>
948 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2010/
06/
">June (14)</a></li>
950 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2010/
07/
">July (12)</a></li>
952 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2010/
08/
">August (13)</a></li>
954 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2010/
09/
">September (7)</a></li>
956 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2010/
10/
">October (9)</a></li>
958 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2010/
11/
">November (13)</a></li>
960 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2010/
12/
">December (12)</a></li>
967 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2009/
01/
">January (8)</a></li>
969 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2009/
02/
">February (8)</a></li>
971 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2009/
03/
">March (12)</a></li>
973 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2009/
04/
">April (10)</a></li>
975 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2009/
05/
">May (9)</a></li>
977 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2009/
06/
">June (3)</a></li>
979 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2009/
07/
">July (4)</a></li>
981 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2009/
08/
">August (3)</a></li>
983 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2009/
09/
">September (1)</a></li>
985 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2009/
10/
">October (2)</a></li>
987 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2009/
11/
">November (3)</a></li>
989 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2009/
12/
">December (3)</a></li>
996 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2008/
11/
">November (5)</a></li>
998 <li><a href="http://people.skolelinux.org/pere/blog/archive/
2008/
12/
">December (7)</a></li>
1009 <li><a href="http://people.skolelinux.org/pere/blog/tags/
3d-printer
">3d-printer (13)</a></li>
1011 <li><a href="http://people.skolelinux.org/pere/blog/tags/amiga
">amiga (1)</a></li>
1013 <li><a href="http://people.skolelinux.org/pere/blog/tags/aros
">aros (1)</a></li>
1015 <li><a href="http://people.skolelinux.org/pere/blog/tags/bankid
">bankid (4)</a></li>
1017 <li><a href="http://people.skolelinux.org/pere/blog/tags/bitcoin
">bitcoin (5)</a></li>
1019 <li><a href="http://people.skolelinux.org/pere/blog/tags/bootsystem
">bootsystem (12)</a></li>
1021 <li><a href="http://people.skolelinux.org/pere/blog/tags/bsa
">bsa (2)</a></li>
1023 <li><a href="http://people.skolelinux.org/pere/blog/tags/debian
">debian (63)</a></li>
1025 <li><a href="http://people.skolelinux.org/pere/blog/tags/debian edu
">debian edu (118)</a></li>
1027 <li><a href="http://people.skolelinux.org/pere/blog/tags/digistan
">digistan (9)</a></li>
1029 <li><a href="http://people.skolelinux.org/pere/blog/tags/docbook
">docbook (7)</a></li>
1031 <li><a href="http://people.skolelinux.org/pere/blog/tags/drivstoffpriser
">drivstoffpriser (4)</a></li>
1033 <li><a href="http://people.skolelinux.org/pere/blog/tags/english
">english (169)</a></li>
1035 <li><a href="http://people.skolelinux.org/pere/blog/tags/fiksgatami
">fiksgatami (21)</a></li>
1037 <li><a href="http://people.skolelinux.org/pere/blog/tags/fildeling
">fildeling (12)</a></li>
1039 <li><a href="http://people.skolelinux.org/pere/blog/tags/freeculture
">freeculture (10)</a></li>
1041 <li><a href="http://people.skolelinux.org/pere/blog/tags/frikanalen
">frikanalen (9)</a></li>
1043 <li><a href="http://people.skolelinux.org/pere/blog/tags/intervju
">intervju (32)</a></li>
1045 <li><a href="http://people.skolelinux.org/pere/blog/tags/kart
">kart (17)</a></li>
1047 <li><a href="http://people.skolelinux.org/pere/blog/tags/ldap
">ldap (8)</a></li>
1049 <li><a href="http://people.skolelinux.org/pere/blog/tags/lenker
">lenker (6)</a></li>
1051 <li><a href="http://people.skolelinux.org/pere/blog/tags/ltsp
">ltsp (1)</a></li>
1053 <li><a href="http://people.skolelinux.org/pere/blog/tags/multimedia
">multimedia (25)</a></li>
1055 <li><a href="http://people.skolelinux.org/pere/blog/tags/norsk
">norsk (219)</a></li>
1057 <li><a href="http://people.skolelinux.org/pere/blog/tags/nuug
">nuug (148)</a></li>
1059 <li><a href="http://people.skolelinux.org/pere/blog/tags/offentlig innsyn
">offentlig innsyn (6)</a></li>
1061 <li><a href="http://people.skolelinux.org/pere/blog/tags/open311
">open311 (2)</a></li>
1063 <li><a href="http://people.skolelinux.org/pere/blog/tags/opphavsrett
">opphavsrett (41)</a></li>
1065 <li><a href="http://people.skolelinux.org/pere/blog/tags/personvern
">personvern (61)</a></li>
1067 <li><a href="http://people.skolelinux.org/pere/blog/tags/raid
">raid (1)</a></li>
1069 <li><a href="http://people.skolelinux.org/pere/blog/tags/reprap
">reprap (11)</a></li>
1071 <li><a href="http://people.skolelinux.org/pere/blog/tags/rfid
">rfid (2)</a></li>
1073 <li><a href="http://people.skolelinux.org/pere/blog/tags/robot
">robot (6)</a></li>
1075 <li><a href="http://people.skolelinux.org/pere/blog/tags/rss
">rss (1)</a></li>
1077 <li><a href="http://people.skolelinux.org/pere/blog/tags/ruter
">ruter (4)</a></li>
1079 <li><a href="http://people.skolelinux.org/pere/blog/tags/scraperwiki
">scraperwiki (2)</a></li>
1081 <li><a href="http://people.skolelinux.org/pere/blog/tags/sikkerhet
">sikkerhet (28)</a></li>
1083 <li><a href="http://people.skolelinux.org/pere/blog/tags/sitesummary
">sitesummary (4)</a></li>
1085 <li><a href="http://people.skolelinux.org/pere/blog/tags/skepsis
">skepsis (4)</a></li>
1087 <li><a href="http://people.skolelinux.org/pere/blog/tags/standard
">standard (39)</a></li>
1089 <li><a href="http://people.skolelinux.org/pere/blog/tags/stavekontroll
">stavekontroll (3)</a></li>
1091 <li><a href="http://people.skolelinux.org/pere/blog/tags/stortinget
">stortinget (5)</a></li>
1093 <li><a href="http://people.skolelinux.org/pere/blog/tags/surveillance
">surveillance (12)</a></li>
1095 <li><a href="http://people.skolelinux.org/pere/blog/tags/sysadmin
">sysadmin (1)</a></li>
1097 <li><a href="http://people.skolelinux.org/pere/blog/tags/valg
">valg (7)</a></li>
1099 <li><a href="http://people.skolelinux.org/pere/blog/tags/video
">video (35)</a></li>
1101 <li><a href="http://people.skolelinux.org/pere/blog/tags/vitenskap
">vitenskap (4)</a></li>
1103 <li><a href="http://people.skolelinux.org/pere/blog/tags/web
">web (26)</a></li>
1109 <p style="text-align: right
">
1110 Created by <a href="http://steve.org.uk/Software/chronicle
">Chronicle v4.4</a>