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: Entries Tagged sysadmin
</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=
"sysadmin.rss" type=
"application/rss+xml" />
14 <a href=
"http://people.skolelinux.org/pere/blog/">Petter Reinholdtsen
</a>
21 <h3>Entries tagged "sysadmin".
</h3>
25 <a href=
"http://people.skolelinux.org/pere/blog/Some_notes_on_fault_tolerant_storage_systems.html">Some notes on fault tolerant storage systems
</a>
31 <p>If you care about how fault tolerant your storage is, you might
32 find these articles and papers interesting. They have formed how I
33 think of when designing a storage system.
</p>
38 href=
"https://www.usenix.org/publications/login/summer2017/ganesan">Redundancy
39 Does Not Imply Fault Tolerance. Analysis of Distributed Storage
40 Reactions to Single Errors and Corruptions
</a> by Aishwarya Ganesan,
41 Ramnatthan Alagappan, Andrea C. Arpaci-Dusseau, and Remzi
42 H. Arpaci-Dusseau
</li>
45 <a href=
"http://www.zdnet.com/article/why-raid-5-stops-working-in-2009/">Why
46 RAID
5 stops working in
2009</a> by Robin Harris
</li>
49 <a href=
"http://www.zdnet.com/article/why-raid-6-stops-working-in-2019/">Why
50 RAID
6 stops working in
2019</a> by Robin Harris
</li>
53 <a href=
"http://research.google.com/archive/disk_failures.pdf">Failure
54 Trends in a Large Disk Drive Population
</a> by Eduardo Pinheiro,
55 Wolf-Dietrich Weber and Luiz AndreĢ Barroso
</li>
58 href=
"https://www.usenix.org/system/files/login/articles/hughes12-04.pdf">Data
59 Integrity. Finding Truth in a World of Guesses and Lies
</a> by Doug
63 <a href=
"https://www.usenix.org/events/fast08/tech/full_papers/bairavasundaram/bairavasundaram_html/">An
64 Analysis of Data Corruption in the Storage Stack
</a> by
65 L. N. Bairavasundaram, G. R. Goodson, B. Schroeder, A. C.
66 Arpaci-Dusseau, and R. H. Arpaci-Dusseau
</li>
69 href=
"https://www.usenix.org/legacy/events/fast07/tech/schroeder/schroeder_html/">Disk
70 failures in the real world: what does an MTTF of
1,
000,
000 hours mean
71 to you?
</a> by B. Schroeder and G. A. Gibson.
</li>
74 href=
"https://www.usenix.org/events/fast08/tech/full_papers/jiang/jiang_html/">Are
75 Disks the Dominant Contributor for Storage Failures? A Comprehensive
76 Study of Storage Subsystem Failure Characteristics
</a> by Weihang
77 Jiang, Chongfeng Hu, Yuanyuan Zhou, and Arkady Kanevsky
</li>
80 <a href=
"http://research.cs.wisc.edu/adsl/Publications/latent-sigmetrics07.pdf">An
81 analysis of latent sector errors in disk drives
</a> by
82 L. N. Bairavasundaram, G. R. Goodson, S. Pasupathy, and J. Schindler
</li>
86 <p>Several of these research papers are based on data collected from
87 hundred thousands or millions of disk, and their findings are eye
88 opening. The short story is simply do not implicitly trust RAID or
89 redundant storage systems. Details matter. And unfortunately there
90 are few options on Linux addressing all the identified issues. Both
91 ZFS and Btrfs are doing a fairly good job, but have legal and
92 practical issues on their own. I wonder how cluster file systems like
93 Ceph do in this regard. After all, there is an old saying, you know
94 you have a distributed system when the crash of a compyter you have
95 never heard of stops you from getting any work done. The same holds
96 true if fault tolerance do not work.
</p>
98 <p>Just remember, in the end, it do not matter how redundant, or how
99 fault tolerant your storage is, if you do not continuously monitor its
100 status to detect and replace failed disks.
</p>
106 Tags:
<a href=
"http://people.skolelinux.org/pere/blog/tags/english">english
</a>,
<a href=
"http://people.skolelinux.org/pere/blog/tags/raid">raid
</a>,
<a href=
"http://people.skolelinux.org/pere/blog/tags/sysadmin">sysadmin
</a>.
111 <div class=
"padding"></div>
115 <a href=
"http://people.skolelinux.org/pere/blog/Detecting_NFS_hangs_on_Linux_without_hanging_yourself___.html">Detecting NFS hangs on Linux without hanging yourself...
</a>
121 <p>Over the years, administrating thousand of NFS mounting linux
122 computers at the time, I often needed a way to detect if the machine
123 was experiencing NFS hang. If you try to use
<tt>df
</tt> or look at a
124 file or directory affected by the hang, the process (and possibly the
125 shell) will hang too. So you want to be able to detect this without
126 risking the detection process getting stuck too. It has not been
127 obvious how to do this. When the hang has lasted a while, it is
128 possible to find messages like these in dmesg:
</p>
131 nfs: server nfsserver not responding, still trying
132 <br>nfs: server nfsserver OK
135 <p>It is hard to know if the hang is still going on, and it is hard to
136 be sure looking in dmesg is going to work. If there are lots of other
137 messages in dmesg the lines might have rotated out of site before they
140 <p>While reading through the nfs client implementation in linux kernel
141 code, I came across some statistics that seem to give a way to detect
142 it. The om_timeouts sunrpc value in the kernel will increase every
143 time the above log entry is inserted into dmesg. And after digging a
144 bit further, I discovered that this value show up in
145 /proc/self/mountstats on Linux.
</p>
147 <p>The mountstats content seem to be shared between files using the
148 same file system context, so it is enough to check one of the
149 mountstats files to get the state of the mount point for the machine.
150 I assume this will not show lazy umounted NFS points, nor NFS mount
151 points in a different process context (ie with a different filesystem
152 view), but that does not worry me.
</p>
154 <p>The content for a NFS mount point look similar to this:
</p>
158 device /dev/mapper/Debian-var mounted on /var with fstype ext3
159 device nfsserver:/mnt/nfsserver/home0 mounted on /mnt/nfsserver/home0 with fstype nfs statvers=
1.1
160 opts: rw,vers=
3,rsize=
65536,wsize=
65536,namlen=
255,acregmin=
3,acregmax=
60,acdirmin=
30,acdirmax=
60,soft,nolock,proto=tcp,timeo=
600,retrans=
2,sec=sys,mountaddr=
129.240.3.145,mountvers=
3,mountport=
4048,mountproto=udp,local_lock=all
162 caps: caps=
0x3fe7,wtmult=
4096,dtsize=
8192,bsize=
0,namlen=
255
163 sec: flavor=
1,pseudoflavor=
1
164 events:
61063112 732346265 1028140 35486205 16220064 8162542 761447191 71714012 37189 3891185 45561809 110486139 4850138 420353 15449177 296502 52736725 13523379 0 52182 9016896 1231 0 0 0 0 0
165 bytes:
166253035039 219519120027 0 0 40783504807 185466229638 11677877 45561809
166 RPC iostats version:
1.0 p/v:
100003/
3 (nfs)
167 xprt: tcp
925 1 6810 0 0 111505412 111480497 109 2672418560317 0 248 53869103 22481820
169 NULL:
0 0 0 0 0 0 0 0
170 GETATTR:
61063106 61063108 0 9621383060 6839064400 453650 77291321 78926132
171 SETATTR:
463469 463470 0 92005440 66739536 63787 603235 687943
172 LOOKUP:
17021657 17021657 0 3354097764 4013442928 57216 35125459 35566511
173 ACCESS:
14281703 14290009 5 2318400592 1713803640 1709282 4865144 7130140
174 READLINK:
125 125 0 20472 18620 0 1112 1118
175 READ:
4214236 4214237 0 715608524 41328653212 89884 22622768 22806693
176 WRITE:
8479010 8494376 22 187695798568 1356087148 178264904 51506907 231671771
177 CREATE:
171708 171708 0 38084748 46702272 873 1041833 1050398
178 MKDIR:
3680 3680 0 773980 993920 26 23990 24245
179 SYMLINK:
903 903 0 233428 245488 6 5865 5917
180 MKNOD:
80 80 0 20148 21760 0 299 304
181 REMOVE:
429921 429921 0 79796004 61908192 3313 2710416 2741636
182 RMDIR:
3367 3367 0 645112 484848 22 5782 6002
183 RENAME:
466201 466201 0 130026184 121212260 7075 5935207 5961288
184 LINK:
289155 289155 0 72775556 67083960 2199 2565060 2585579
185 READDIR:
2933237 2933237 0 516506204 13973833412 10385 3190199 3297917
186 READDIRPLUS:
1652839 1652839 0 298640972 6895997744 84735 14307895 14448937
187 FSSTAT:
6144 6144 0 1010516 1032192 51 9654 10022
188 FSINFO:
2 2 0 232 328 0 1 1
189 PATHCONF:
1 1 0 116 140 0 0 0
190 COMMIT:
0 0 0 0 0 0 0 0
192 device binfmt_misc mounted on /proc/sys/fs/binfmt_misc with fstype binfmt_misc
194 </pre></blockquote></p>
196 <p>The key number to look at is the third number in the per-op list.
197 It is the number of NFS timeouts experiences per file system
198 operation. Here
22 write timeouts and
5 access timeouts. If these
199 numbers are increasing, I believe the machine is experiencing NFS
200 hang. Unfortunately the timeout value do not start to increase right
201 away. The NFS operations need to time out first, and this can take a
202 while. The exact timeout value depend on the setup. For example the
203 defaults for TCP and UDP mount points are quite different, and the
204 timeout value is affected by the soft, hard, timeo and retrans NFS
207 <p>The only way I have been able to get working on Debian and RedHat
208 Enterprise Linux for getting the timeout count is to peek in /proc/.
210 <ahref=
"http://docs.oracle.com/cd/E19253-01/816-4555/netmonitor-12/index.html">Solaris
211 10 System Administration Guide: Network Services
</a>, the 'nfsstat -c'
212 command can be used to get these timeout values. But this do not work
213 on Linux, as far as I can tell. I
214 <ahref=
"http://bugs.debian.org/857043">asked Debian about this
</a>,
215 but have not seen any replies yet.
</p>
217 <p>Is there a better way to figure out if a Linux NFS client is
218 experiencing NFS hangs? Is there a way to detect which processes are
219 affected? Is there a way to get the NFS mount going quickly once the
220 network problem causing the NFS hang has been cleared? I would very
221 much welcome some clues, as we regularly run into NFS hangs.
</p>
227 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/sysadmin">sysadmin
</a>.
232 <div class=
"padding"></div>
236 <a href=
"http://people.skolelinux.org/pere/blog/Debian_Jessie__PXE_and_automatic_firmware_installation.html">Debian Jessie, PXE and automatic firmware installation
</a>
242 <p>When PXE installing laptops with Debian, I often run into the
243 problem that the WiFi card require some firmware to work properly.
244 And it has been a pain to fix this using preseeding in Debian.
245 Normally something more is needed. But thanks to
246 <a href=
"https://packages.qa.debian.org/i/isenkram.html">my isenkram
247 package
</a> and its recent tasksel extension, it has now become easy
248 to do this using simple preseeding.
</p>
250 <p>The isenkram-cli package provide tasksel tasks which will install
251 firmware for the hardware found in the machine (actually, requested by
252 the kernel modules for the hardware). (It can also install user space
253 programs supporting the hardware detected, but that is not the focus
256 <p>To get this working in the default installation, two preeseding
257 values are needed. First, the isenkram-cli package must be installed
258 into the target chroot (aka the hard drive) before tasksel is executed
259 in the pkgsel step of the debian-installer system. This is done by
260 preseeding the base-installer/includes debconf value to include the
261 isenkram-cli package. The package name is next passed to debootstrap
262 for installation. With the isenkram-cli package in place, tasksel
263 will automatically use the isenkram tasks to detect hardware specific
264 packages for the machine being installed and install them, because
265 isenkram-cli contain tasksel tasks.
</p>
267 <p>Second, one need to enable the non-free APT repository, because
268 most firmware unfortunately is non-free. This is done by preseeding
269 the apt-mirror-setup step. This is unfortunate, but for a lot of
270 hardware it is the only option in Debian.
</p>
272 <p>The end result is two lines needed in your preseeding file to get
273 firmware installed automatically by the installer:
</p>
276 base-installer base-installer/includes string isenkram-cli
277 apt-mirror-setup apt-setup/non-free boolean true
278 </pre></blockquote></p>
280 <p>The current version of isenkram-cli in testing/jessie will install
281 both firmware and user space packages when using this method. It also
282 do not work well, so use version
0.15 or later. Installing both
283 firmware and user space packages might give you a bit more than you
284 want, so I decided to split the tasksel task in two, one for firmware
285 and one for user space programs. The firmware task is enabled by
286 default, while the one for user space programs is not. This split is
287 implemented in the package currently in unstable.
</p>
289 <p>If you decide to give this a go, please let me know (via email) how
290 this recipe work for you. :)
</p>
292 <p>So, I bet you are wondering, how can this work. First and
293 foremost, it work because tasksel is modular, and driven by whatever
294 files it find in /usr/lib/tasksel/ and /usr/share/tasksel/. So the
295 isenkram-cli package place two files for tasksel to find. First there
296 is the task description file (/usr/share/tasksel/descs/isenkram.desc):
</p>
299 Task: isenkram-packages
301 Description: Hardware specific packages (autodetected by isenkram)
302 Based on the detected hardware various hardware specific packages are
304 Test-new-install: show show
306 Packages: for-current-hardware
308 Task: isenkram-firmware
310 Description: Hardware specific firmware packages (autodetected by isenkram)
311 Based on the detected hardware various hardware specific firmware
312 packages are proposed.
313 Test-new-install: mark show
315 Packages: for-current-hardware-firmware
316 </pre></blockquote></p>
318 <p>The key parts are Test-new-install which indicate how the task
319 should be handled and the Packages line referencing to a script in
320 /usr/lib/tasksel/packages/. The scripts use other scripts to get a
321 list of packages to install. The for-current-hardware-firmware script
322 look like this to list relevant firmware for the machine:
329 isenkram-autoinstall-firmware -l
330 </pre></blockquote></p>
332 <p>With those two pieces in place, the firmware is installed by
333 tasksel during the normal d-i run. :)
</p>
335 <p>If you want to test what tasksel will install when isenkram-cli is
336 installed, run
<tt>DEBIAN_PRIORITY=critical tasksel --test
337 --new-install
</tt> to get the list of packages that tasksel would
340 <p><a href=
"https://wiki.debian.org/DebianEdu/">Debian Edu
</a> will be
341 pilots in testing this feature, as isenkram is used there now to
342 install firmware, replacing the earlier scripts.
</p>
348 Tags:
<a href=
"http://people.skolelinux.org/pere/blog/tags/debian">debian
</a>,
<a href=
"http://people.skolelinux.org/pere/blog/tags/english">english
</a>,
<a href=
"http://people.skolelinux.org/pere/blog/tags/isenkram">isenkram
</a>,
<a href=
"http://people.skolelinux.org/pere/blog/tags/sysadmin">sysadmin
</a>.
353 <div class=
"padding"></div>
357 <a href=
"http://people.skolelinux.org/pere/blog/Scripting_the_Cerebrum_bofhd_user_administration_system_using_XML_RPC.html">Scripting the Cerebrum/bofhd user administration system using XML-RPC
</a>
363 <p>Where I work at the
<a href=
"http://www.uio.no/">University of
365 <a href=
"http://sourceforge.net/projects/cerebrum/">Cerebrum user
366 administration system
</a> to maintain users, groups, DNS, DHCP, etc.
367 I've known since the system was written that the server is providing
368 an
<a href=
"http://en.wikipedia.org/wiki/XML-RPC">XML-RPC
</a> API, but
369 I have never spent time to try to figure out how to use it, as we
370 always use the bofh command line client at work. Until today. I want
371 to script the updating of DNS and DHCP to make it easier to set up
372 virtual machines. Here are a few notes on how to use it with
375 <p>I started by looking at the source of the Java
376 <a href=
"http://cerebrum.svn.sourceforge.net/viewvc/cerebrum/trunk/cerebrum/clients/jbofh/">bofh
377 client
</a>, to figure out how it connected to the API server. I also
378 googled for python examples on how to use XML-RPC, and found
379 <a href=
"http://tldp.org/HOWTO/XML-RPC-HOWTO/xmlrpc-howto-python.html">a
380 simple example in
</a> the XML-RPC howto.
</p>
382 <p>This simple example code show how to connect, get the list of
383 commands (as a JSON dump), and how to get the information about the
384 user currently logged in:
</p>
387 #!/usr/bin/env python
390 server_url = 'https://cerebrum-uio.uio.no:
8000';
391 username = getpass.getuser()
392 password = getpass.getpass()
393 server = xmlrpclib.Server(server_url);
394 #print server.get_commands(sessionid)
395 sessionid = server.login(username, password)
396 print server.run_command(sessionid, "user_info", username)
397 result = server.logout(sessionid)
401 <p>Armed with this knowledge I can now move forward and script the DNS
402 and DHCP updates I wanted to do.
</p>
408 Tags:
<a href=
"http://people.skolelinux.org/pere/blog/tags/english">english
</a>,
<a href=
"http://people.skolelinux.org/pere/blog/tags/sysadmin">sysadmin
</a>.
413 <div class=
"padding"></div>
415 <p style=
"text-align: right;"><a href=
"sysadmin.rss"><img src=
"http://people.skolelinux.org/pere/blog/xml.gif" alt=
"RSS Feed" width=
"36" height=
"14" /></a></p>
426 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/01/">January (
4)
</a></li>
428 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/02/">February (
3)
</a></li>
430 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/03/">March (
5)
</a></li>
432 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/04/">April (
2)
</a></li>
434 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/06/">June (
5)
</a></li>
436 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/07/">July (
1)
</a></li>
438 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/08/">August (
1)
</a></li>
440 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/09/">September (
3)
</a></li>
442 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/10/">October (
5)
</a></li>
444 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2017/11/">November (
1)
</a></li>
451 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/01/">January (
3)
</a></li>
453 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/02/">February (
2)
</a></li>
455 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/03/">March (
3)
</a></li>
457 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/04/">April (
8)
</a></li>
459 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/05/">May (
8)
</a></li>
461 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/06/">June (
2)
</a></li>
463 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/07/">July (
2)
</a></li>
465 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/08/">August (
5)
</a></li>
467 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/09/">September (
2)
</a></li>
469 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/10/">October (
3)
</a></li>
471 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/11/">November (
8)
</a></li>
473 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2016/12/">December (
5)
</a></li>
480 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/01/">January (
7)
</a></li>
482 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/02/">February (
6)
</a></li>
484 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/03/">March (
1)
</a></li>
486 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/04/">April (
4)
</a></li>
488 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/05/">May (
3)
</a></li>
490 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/06/">June (
4)
</a></li>
492 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/07/">July (
6)
</a></li>
494 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/08/">August (
2)
</a></li>
496 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/09/">September (
2)
</a></li>
498 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/10/">October (
9)
</a></li>
500 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/11/">November (
6)
</a></li>
502 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2015/12/">December (
3)
</a></li>
509 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/01/">January (
2)
</a></li>
511 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/02/">February (
3)
</a></li>
513 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/03/">March (
8)
</a></li>
515 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/04/">April (
7)
</a></li>
517 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/05/">May (
1)
</a></li>
519 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/06/">June (
2)
</a></li>
521 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/07/">July (
2)
</a></li>
523 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/08/">August (
2)
</a></li>
525 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/09/">September (
5)
</a></li>
527 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/10/">October (
6)
</a></li>
529 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/11/">November (
3)
</a></li>
531 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2014/12/">December (
5)
</a></li>
538 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/01/">January (
11)
</a></li>
540 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/02/">February (
9)
</a></li>
542 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/03/">March (
9)
</a></li>
544 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/04/">April (
6)
</a></li>
546 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/05/">May (
9)
</a></li>
548 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/06/">June (
10)
</a></li>
550 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/07/">July (
7)
</a></li>
552 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/08/">August (
3)
</a></li>
554 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/09/">September (
5)
</a></li>
556 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/10/">October (
7)
</a></li>
558 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/11/">November (
9)
</a></li>
560 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/12/">December (
3)
</a></li>
567 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/01/">January (
7)
</a></li>
569 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/02/">February (
10)
</a></li>
571 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/03/">March (
17)
</a></li>
573 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/04/">April (
12)
</a></li>
575 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/05/">May (
12)
</a></li>
577 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/06/">June (
20)
</a></li>
579 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/07/">July (
17)
</a></li>
581 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/08/">August (
6)
</a></li>
583 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/09/">September (
9)
</a></li>
585 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/10/">October (
17)
</a></li>
587 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/11/">November (
10)
</a></li>
589 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/12/">December (
7)
</a></li>
596 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/01/">January (
16)
</a></li>
598 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/02/">February (
6)
</a></li>
600 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/03/">March (
6)
</a></li>
602 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/04/">April (
7)
</a></li>
604 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/05/">May (
3)
</a></li>
606 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/06/">June (
2)
</a></li>
608 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/07/">July (
7)
</a></li>
610 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/08/">August (
6)
</a></li>
612 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/09/">September (
4)
</a></li>
614 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/10/">October (
2)
</a></li>
616 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/11/">November (
3)
</a></li>
618 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/12/">December (
1)
</a></li>
625 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/01/">January (
2)
</a></li>
627 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/02/">February (
1)
</a></li>
629 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/03/">March (
3)
</a></li>
631 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/04/">April (
3)
</a></li>
633 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/05/">May (
9)
</a></li>
635 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/06/">June (
14)
</a></li>
637 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/07/">July (
12)
</a></li>
639 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/08/">August (
13)
</a></li>
641 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/09/">September (
7)
</a></li>
643 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/10/">October (
9)
</a></li>
645 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/11/">November (
13)
</a></li>
647 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/12/">December (
12)
</a></li>
654 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/01/">January (
8)
</a></li>
656 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/02/">February (
8)
</a></li>
658 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/03/">March (
12)
</a></li>
660 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/04/">April (
10)
</a></li>
662 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/05/">May (
9)
</a></li>
664 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/06/">June (
3)
</a></li>
666 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/07/">July (
4)
</a></li>
668 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/08/">August (
3)
</a></li>
670 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/09/">September (
1)
</a></li>
672 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/10/">October (
2)
</a></li>
674 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/11/">November (
3)
</a></li>
676 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/12/">December (
3)
</a></li>
683 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2008/11/">November (
5)
</a></li>
685 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2008/12/">December (
7)
</a></li>
696 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/3d-printer">3d-printer (
14)
</a></li>
698 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/amiga">amiga (
1)
</a></li>
700 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/aros">aros (
1)
</a></li>
702 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/bankid">bankid (
4)
</a></li>
704 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/bitcoin">bitcoin (
9)
</a></li>
706 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/bootsystem">bootsystem (
16)
</a></li>
708 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/bsa">bsa (
2)
</a></li>
710 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/chrpath">chrpath (
2)
</a></li>
712 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/debian">debian (
154)
</a></li>
714 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/debian edu">debian edu (
158)
</a></li>
716 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/debian-handbook">debian-handbook (
4)
</a></li>
718 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/digistan">digistan (
10)
</a></li>
720 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/dld">dld (
17)
</a></li>
722 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/docbook">docbook (
24)
</a></li>
724 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/drivstoffpriser">drivstoffpriser (
4)
</a></li>
726 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/english">english (
358)
</a></li>
728 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/fiksgatami">fiksgatami (
23)
</a></li>
730 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/fildeling">fildeling (
12)
</a></li>
732 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/freeculture">freeculture (
30)
</a></li>
734 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/freedombox">freedombox (
9)
</a></li>
736 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/frikanalen">frikanalen (
18)
</a></li>
738 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/h264">h264 (
20)
</a></li>
740 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/intervju">intervju (
42)
</a></li>
742 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/isenkram">isenkram (
15)
</a></li>
744 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/kart">kart (
20)
</a></li>
746 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/ldap">ldap (
9)
</a></li>
748 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/lenker">lenker (
8)
</a></li>
750 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/lsdvd">lsdvd (
2)
</a></li>
752 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/ltsp">ltsp (
1)
</a></li>
754 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/mesh network">mesh network (
8)
</a></li>
756 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/multimedia">multimedia (
39)
</a></li>
758 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/nice free software">nice free software (
9)
</a></li>
760 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/norsk">norsk (
293)
</a></li>
762 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/nuug">nuug (
189)
</a></li>
764 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/offentlig innsyn">offentlig innsyn (
33)
</a></li>
766 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/open311">open311 (
2)
</a></li>
768 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/opphavsrett">opphavsrett (
65)
</a></li>
770 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/personvern">personvern (
104)
</a></li>
772 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/raid">raid (
2)
</a></li>
774 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/reactos">reactos (
1)
</a></li>
776 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/reprap">reprap (
11)
</a></li>
778 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/rfid">rfid (
3)
</a></li>
780 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/robot">robot (
10)
</a></li>
782 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/rss">rss (
1)
</a></li>
784 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/ruter">ruter (
5)
</a></li>
786 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/scraperwiki">scraperwiki (
2)
</a></li>
788 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet (
53)
</a></li>
790 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/sitesummary">sitesummary (
4)
</a></li>
792 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/skepsis">skepsis (
5)
</a></li>
794 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/standard">standard (
55)
</a></li>
796 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/stavekontroll">stavekontroll (
6)
</a></li>
798 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/stortinget">stortinget (
12)
</a></li>
800 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/surveillance">surveillance (
52)
</a></li>
802 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/sysadmin">sysadmin (
4)
</a></li>
804 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/usenix">usenix (
2)
</a></li>
806 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/valg">valg (
9)
</a></li>
808 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/video">video (
59)
</a></li>
810 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/vitenskap">vitenskap (
4)
</a></li>
812 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/web">web (
40)
</a></li>
818 <p style=
"text-align: right">
819 Created by
<a href=
"http://steve.org.uk/Software/chronicle">Chronicle v4.6
</a>