]> pere.pagekite.me Git - homepage.git/blob - blog/archive/2013/06/index.html
Generated.
[homepage.git] / blog / archive / 2013 / 06 / index.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr">
4 <head>
5 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
6 <title>Petter Reinholdtsen: entries from June 2013</title>
7 <link rel="stylesheet" type="text/css" media="screen" href="http://people.skolelinux.org/pere/blog/style.css" />
8 <link rel="stylesheet" type="text/css" media="screen" href="http://people.skolelinux.org/pere/blog/vim.css" />
9 <link rel="alternate" title="RSS Feed" href="06.rss" type="application/rss+xml" />
10 </head>
11 <body>
12 <!-- XML FEED -->
13 <div class="title">
14 <h1>
15 <a href="http://people.skolelinux.org/pere/blog/">Petter Reinholdtsen</a>
16
17 </h1>
18
19 </div>
20
21
22 <h3>Entries from June 2013.</h3>
23
24 <div class="entry">
25 <div class="title">
26 <a href="http://people.skolelinux.org/pere/blog/Fixing_the_Linux_black_screen_of_death_on_machines_with_Intel_HD_video.html">Fixing the Linux black screen of death on machines with Intel HD video</a>
27 </div>
28 <div class="date">
29 11th June 2013
30 </div>
31 <div class="body">
32 <p>When installing RedHat, Fedora, Debian and Ubuntu on some machines,
33 the screen just turn black when Linux boot, either during installation
34 or on first boot from the hard disk. I've seen it once in a while the
35 last few years, but only recently understood the cause. I've seen it
36 on HP laptops, and on my latest acquaintance the Packard Bell laptop.
37 The reason seem to be in the wiring of some laptops. The system to
38 control the screen background light is inverted, so when Linux try to
39 turn the brightness fully on, it end up turning it off instead. I do
40 not know which Linux drivers are affected, but this post is about the
41 i915 driver used by the
42 <a href="http://www.linlap.com/packard_bell_easynote_lv">Packard Bell
43 EasyNote LV</a>, Thinkpad X40 and many other laptops.</p>
44
45 <p>The problem can be worked around two ways. Either by adding
46 i915.invert_brightness=1 as a kernel option, or by adding a file in
47 /etc/modprobe.d/ to tell modprobe to add the invert_brightness=1
48 option when it load the i915 kernel module. On Debian and Ubuntu, it
49 can be done by running these commands as root:</p>
50
51 <pre>
52 echo options i915 invert_brightness=1 | tee /etc/modprobe.d/i915.conf
53 update-initramfs -u -k all
54 </pre>
55
56 <p>Since March 2012 there is
57 <a href="http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=4dca20efb1a9c2efefc28ad2867e5d6c3f5e1955">a
58 mechanism in the Linux kernel</a> to tell the i915 driver which
59 hardware have this problem, and get the driver to invert the
60 brightness setting automatically. To use it, one need to add a row in
61 <a href="http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/tree/drivers/gpu/drm/i915/intel_display.c">the
62 intel_quirks array</a> in the driver source
63 <tt>drivers/gpu/drm/i915/intel_display.c</tt> (look for "<tt>static
64 struct intel_quirk intel_quirks</tt>"), specifying the PCI device
65 number (vendor number 8086 is assumed) and subdevice vendor and device
66 number.</p>
67
68 <p>My Packard Bell EasyNote LV got this output from <tt>lspci
69 -vvnn</tt> for the video card in question:</p>
70
71 <p><pre>
72 00:02.0 VGA compatible controller [0300]: Intel Corporation \
73 3rd Gen Core processor Graphics Controller [8086:0156] \
74 (rev 09) (prog-if 00 [VGA controller])
75 Subsystem: Acer Incorporated [ALI] Device [1025:0688]
76 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- \
77 ParErr- Stepping- SE RR- FastB2B- DisINTx+
78 Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- \
79 <TAbort- <MAbort->SERR- <PERR- INTx-
80 Latency: 0
81 Interrupt: pin A routed to IRQ 42
82 Region 0: Memory at c2000000 (64-bit, non-prefetchable) [size=4M]
83 Region 2: Memory at b0000000 (64-bit, prefetchable) [size=256M]
84 Region 4: I/O ports at 4000 [size=64]
85 Expansion ROM at <unassigned> [disabled]
86 Capabilities: <access denied>
87 Kernel driver in use: i915
88 </pre></p>
89
90 <p>The resulting intel_quirks entry would then look like this:</p>
91
92 <p><pre>
93 struct intel_quirk intel_quirks[] = {
94 ...
95 /* Packard Bell EasyNote LV11HC needs invert brightness quirk */
96 { 0x0156, 0x1025, 0x0688, quirk_invert_brightness },
97 ...
98 }
99 </pre></p>
100
101 <p>According to the kernel module instructions (as seen using
102 <tt>modinfo i915</tt>), information about hardware needing the
103 invert_brightness flag should be sent to the
104 <a href="http://lists.freedesktop.org/mailman/listinfo/dri-devel">dri-devel
105 (at) lists.freedesktop.org</a> mailing list to reach the kernel
106 developers. But my email about the laptop sent 2013-06-03 have not
107 yet shown up in
108 <a href="http://lists.freedesktop.org/archives/dri-devel/2013-June/thread.html">the
109 web archive for the mailing list</a>, so I suspect they do not accept
110 emails from non-subscribers. Because of this, I sent my patch also to
111 the Debian bug tracking system instead as
112 <a href="http://bugs.debian.org/710938">BTS report #710938</a>, to make
113 sure the patch is not lost.</p>
114
115 <p>Unfortunately, it is not enough to fix the kernel to get Laptops
116 with this problem working properly with Linux. If you use Gnome, your
117 worries should be over at this point. But if you use KDE, there is
118 something in KDE ignoring the invert_brightness setting and turning on
119 the screen during login. I've reported it to Debian as
120 <a href="http://bugs.debian.org/711237">BTS report #711237</a>, and
121 have no idea yet how to figure out exactly what subsystem is doing
122 this. Perhaps you can help? Perhaps you know what the Gnome
123 developers did to handle this, and this can give a clue to the KDE
124 developers? Or you know where in KDE the screen brightness is changed
125 during login? If so, please update the BTS report (or get in touch if
126 you do not know how to update BTS).</p>
127
128 </div>
129 <div class="tags">
130
131
132 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>.
133
134
135 </div>
136 </div>
137 <div class="padding"></div>
138
139 <div class="entry">
140 <div class="title">
141 <a href="http://people.skolelinux.org/pere/blog/Third_alpha_release_of_Debian_Edu___Skolelinux_based_on_Debian_Wheezy.html">Third alpha release of Debian Edu / Skolelinux based on Debian Wheezy</a>
142 </div>
143 <div class="date">
144 10th June 2013
145 </div>
146 <div class="body">
147 <p>The third wheezy based alpha release of Debian Edu was wrapped up
148 today. This is the release announcement:</p>
149
150 <p><strong>New features for Debian Edu 7.0.0 alpha2 released
151 2013-06-10</strong></p>
152
153 <p>This is the release notes for for Debian Edu / Skolelinux 7.0.0 edu
154 alpha2, based on Debian with codename "Wheezy".</p>
155
156 <p><strong>About Debian Edu and Skolelinux</strong></p>
157
158 <p><a href="http://www.skolelinux.org/">Debian Edu, also known as
159 Skolelinux</a>, is a Linux distribution based on Debian providing an
160 out-of-the box environment of a completely configured school
161 network. Immediately after installation a school server running all
162 services needed for a school network is set up just waiting for users
163 and machines being added via GOsa², a comfortable Web-UI. A netbooting
164 environment is prepared using PXE, so after initial installation of
165 the main server from CD, DVD or USB stick all other machines can be
166 installed via the network. The provided school server provides LDAP
167 database and Kerberos authentication service, centralized home
168 directories, DHCP server, web proxy and many other services. The
169 desktop contains
170 <a href="http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html">more
171 than 60 educational software packages</a> and more are available from
172 the Debian archive, and schools can choose between KDE, Gnome, LXDE
173 and Xfce desktop environment.</p>
174
175 <p>This is the third test release based on Debian Wheezy. Basically
176 this is an updated and slightly improved version compared to the
177 Squeeze release.</p>
178
179 <p><strong>Software updates</strong></p>
180
181 <ul>
182
183 <li>Iceweasel was updated from 10 to 17. (DSA 2699-1)
184 <li>Updated libxv (DSA-2674), libxvmc (DSA-2675), libxfixes (DSA-2676), libxrender (DSA-2677), mesa (DSA-2678), xserver-xorg-video-openchrome (DSA-2679), libxt (DSA-2680), libxcursor (DSA-2681), libxext (DSA-2682), libxi (DSA-2683), libxrandr (DSA-2684), libxp (DSA-2685), libxcb (DSA-2686), libfs (DSA-2687), libxres (DSA-2688), libxtst (DSA-2689), libxxf86dga (DSA-2690), libxinerama (DSA-2691), libxxf86vm (DSA-2692), libx11 (DSA-2693), chromium-browser (DSA-2695), gnutls26 (DSA-2697), wireshark (DSA-2700), krb5 (DSA-2701), telepathy-gabble (DSA-2702) and subversion (DSA-2703).
185 <li>Switched xrdp on thin client servers to use tightvncserver instead of xvnc4.
186 <li>Now install software oscilloscope xoscope by default.
187 <li>Now install music tools gtick, lingot and pianobooster by default.
188
189 </ul>
190
191 <p><strong>Other changes</strong></p>
192
193 <ul>
194
195 <li>The subnet-change script is now able to change all files needing a change on the main-server when changing the IP network used.
196 <li>Updated translation of the installation.
197 <li>New Romanian translation.
198 <li>Fix security problem causing root and first user password to no longer show up in /var/cache/debconf/templates.dat.
199 <li>Fix roaming workstation setup (Closed in libpam-mklocaluser/0.8, libpam-mklocaluser/0.8~deb7u1: #706753: libpam-mklocaluser: Fail to create local user during first login).
200 <li>Made roaming workstation setup more robust in non-Debian Edu environments.
201 <li>New script debian-edu-bless to transform a Debian installation to a Debian Edu profile.
202 <li>Adjust Iceweasel setup to improve performance when $HOME is on NFS.
203 <li>More testsuite tests.
204 <li>Make automatic proxy configuration more robust.
205 <li>Adjust GOsa² GUI configuration.
206
207 <li>Update thin client and diskless workstation setup to work with
208 LTSP in Wheezy.</li>
209
210 <li>Diskless workstations now run out of the box -- no need to set
211 them up with GOsa².</li>
212
213 <li>Update IMAP server setup. </li>
214
215 <li>Fix login into Skolelinux Backup Tool (Closed in
216 slbackup-php/0.4.4-1: #700257: slbackup-php: Fails to submit correctly
217 entered password). </li>
218
219 </ul>
220
221 <p><strong>Known issues</strong></p>
222
223 <ul>
224
225 <li>DVD binary and source images are not yet ready.</li>
226
227 <li>No mass import of user account data in GOsa (ldif or csv)
228 available yet (Open in gosa/2.7.4-4: #698840: gosa-plugin-ldapmanager:
229 missing import feature).</li>
230
231 <li>Missing artwork for the KDE desktop (and probably a few others). </li>
232
233 <li>KDE Debian submenu lacks icons (Closed: #502192: menu-xdg: invents
234 own icon names instead of using existing). This will remain
235 unfixed.</li>
236
237 </ul>
238
239 <p><strong>Where to get it</strong></p>
240
241 <p>To download the multiarch netinstall CD release you can use</p>
242
243 <ul>
244
245 <li><a href="ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.0+edu0~a2-CD.iso">ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.0+edu0~a2-CD.iso</a></li>
246
247 <li><a href="http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.0+edu0~a2-CD.iso">http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.0+edu0~a2-CD.iso</a></li>
248
249 <li>rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.0+edu0~a2-CD.iso .</li>
250
251 </ul>
252
253 <p>The MD5SUM of this image is: 27bbcace407743382f3c42c08dbe8178
254 <br>The SHA1SUM of this image is: e35f7d7908566cd3075375b3721fa10ee420d419</p>
255
256 <p><strong>How to report bugs</strong></p>
257
258 <p><a href="http://wiki.debian.org/DebianEdu/HowTo/ReportBugs">http://wiki.debian.org/DebianEdu/HowTo/ReportBugs</a>
259
260 </div>
261 <div class="tags">
262
263
264 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>.
265
266
267 </div>
268 </div>
269 <div class="padding"></div>
270
271 <div class="entry">
272 <div class="title">
273 <a href="http://people.skolelinux.org/pere/blog/Is_there_a_PHP_expert_in_the_building___Debian_Edu_need_help_.html">Is there a PHP expert in the building? Debian Edu need help!</a>
274 </div>
275 <div class="date">
276 5th June 2013
277 </div>
278 <div class="body">
279 <p>Here is a call for help from the Debian Edu / Skolelinux project.
280 We have two problems blocking the release of the Wheezy version we
281 hope to get released soon. The two problems require some with PHP
282 skills, and we seem to lack anyone with both time and PHP skills in
283 the project:
284
285 <ol>
286
287 <li>It is impossible to log into the slbackup web interface
288 (slbackup-php) using the root user and password. This is
289 <a href="http://bugs.debian.org/700257">BTS report #700257</a>.
290 This used to work, but stopped working some time since Squeeze.
291 Perhaps some obsolete PHP feature was used?</li>
292
293 <li>It is not possible to "mass import" user lists in Gosa, neither
294 using ldif nor using CSV files. The feature was disabled after a
295 major rewrite of Gosa, and need to be ported to the new system.
296 This is <a href="http://bugs.debian.org/698840">BTS report
297 #698840</a>.</li>
298
299 </ol>
300
301 <p>If you can help us, please join us on IRC
302 (<a href="irc://irc.debian.org/%23debian-edu">#debian-edu on
303 irc.debian.org</a>) and provide patches via the BTS.</p>
304
305 </div>
306 <div class="tags">
307
308
309 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>.
310
311
312 </div>
313 </div>
314 <div class="padding"></div>
315
316 <div class="entry">
317 <div class="title">
318 <a href="http://people.skolelinux.org/pere/blog/Debian_Edu_interview__C_dric_Boutillier.html">Debian Edu interview: Cédric Boutillier</a>
319 </div>
320 <div class="date">
321 4th June 2013
322 </div>
323 <div class="body">
324 <p>It has been a while since my last English
325 <a href="http://www.skolelinux.org/">Debian Edu and Skolelinux</a>
326 interview last November. But the developers and translators are still
327 pulling along to get the Wheezy based release out the door, and this
328 time I managed to get an interview from one of the French translators
329 in the project, Cédric Boutillier.</p>
330
331 <p><strong>Who are you, and how do you spend your days?</strong></p>
332
333 <p>I am 34 year old. I live near Paris, France. I am an assistant
334 professor in probability theory. I spend my daytime teaching
335 mathematics at the university and doing fundamental research in
336 probability in connexion with combinatorics and statistical physics.</p>
337
338 <p>I have been involved in the Debian project for a couple of years
339 and became Debian Developer a few months ago. I am working on Ruby
340 packaging, publicity and translation.</p>
341
342 <p><strong>How did you get in contact with the Skolelinux / Debian Edu
343 project?</strong></p>
344
345 <p>I came to the Debian Edu project after a call for translation of
346 <a href="http://wiki.debian.org/DebianEdu/Documentation/Manuals">the
347 Debian Edu manual</a> for the release of Debian Edu Squeeze. Since
348 then, I have been working on updating the French translation of the
349 manual.
350
351 <p>I had the opportunity to make an installation of Debian Edu in a
352 virtual machine when I was preparing localised version of some screen
353 shots for the manual. I was amazed to see it worked out of the box and
354 how comprehensive the list of software installed by default was.</p>
355
356 <p>What amazed me was the complete network infrastructure directly
357 ready to use, which can and the nice administration interface provided
358 by <a href="https://oss.gonicus.de/labs/gosa/">GOsa²</a>. What pleased
359 me also was the fact that among the software installed by default,
360 there were many "traditional" educative software to learn languages,
361 to count, to program... but also software to develop creativity and
362 artistic skills with music (<a href="http://ardour.org/">Ardour</a>,
363 <a href="http://audacity.sourceforge.net/">Audacity</a>) and
364 movies/animation (I was especially thinking of
365 <a href="http://linuxstopmotion.sourceforge.net/">Stopmotion</a>).</p>
366
367 <p>I am following the development of Debian Edu and am hanging out on
368 <a href="irc://irc.debian.org/%23debian-edu">#debian-edu</a>.
369 Unfortunately, I don't much time to get more involved in this
370 beautiful project.</p>
371
372 <p><strong>What do you see as the advantages of Skolelinux / Debian
373 Edu?</strong></p>
374
375 <p>For me, the main advantages of Skolelinux/Debian Edu are its
376 community of experts and its precise documentation, as well as the
377 fact that it provides a solution ready to use.</p>
378
379 <p>I would add also the fact that it is based on the rock solid Debian
380 distribution, which ensures stability and provides a huge collection
381 of educational free software.</p>
382
383 <p><strong>What do you see as the disadvantages of Skolelinux / Debian
384 Edu?</strong></p>
385
386 <p>Maybe the lack of manpower to do lobbying on the
387 project. Sometimes, people who need to take decisions concerning IT do
388 not have all the elements to evaluate properly free software
389 solutions. The fact that support by a company may be difficult to find
390 is probably a problem if the school does not have IT personnel.</p>
391
392 <p>One can find support from a company by looking at
393 <a href="http://wiki.debian.org/DebianEdu/Help/ProfessionalHelp">the
394 wiki dokumentation</a>, where some countries already have a number of
395 companies providing support for Debian Edu, like Germany or
396 Norway. This list is easy to find readily from the manual. However,
397 for other countries, like France, the list is empty. I guess that
398 consultants proposing support for Debian would be able to provide some
399 support for Debian Edu as well.</p>
400
401 <p><strong>Which free software do you use daily?</strong></p>
402
403 <p>I am using the KDE Plasma Desktop. But the pieces of software I use
404 most runs in a terminal: Mutt and OfflineIMAP for emails, latex for
405 scientific documents, mpd for music. VIM is my editor of choice. I am
406 also using the mathematical software
407 <a href="http://www.scilab.org/en/scilab/about‎">Scilab</a> and
408 <a href="http://www.sagemath.org/index.html‎">Sage</a> (built from
409 source as not completely packaged for Debian, yet).
410
411 <p><strong>Do you have any suggestions for teachers interested in
412 using the free software in Debian to teach mathematics and
413 statistics?</strong></p>
414
415 <p>I do not have any "nice" recommendations for statistics. At our
416 university, we use both <a href="http://www.r-project.org/‎">R</a> and
417 Scilab to teach statistics and probabilistic simulations. For
418 geometry, there are nice programs:</p>
419
420 <ul>
421
422 <li><a href="http://www.drgeo.eu/">drgeo</a> and
423 <a href="http://edu.kde.org/applications/all/kig‎">kig</a> to do
424 constructions in planar geometry
425
426 <li><a href="http://www.geom.uiuc.edu/software/download/kali.html">kali</a>
427 to discover symmetry groups (the so-called wallpapers and frieze
428 groups), although the interface looks a bit old.</li>
429
430 </ul>
431
432 <p>I like also
433 <a href="http://edu.kde.org/applications/all/cantor">cantor</a>, which
434 provides a uniform interface to SciLab, Sage,
435 <a href="http://directory.fsf.org/wiki/Octave‎">Octave</a>, etc...</p>
436
437 <p><strong>Which strategy do you believe is the right one to use to
438 get schools to use free software?</strong></p>
439
440 <p>My suggestions would be to</p>
441
442 <ul>
443
444 <li>advertise the reduction of costs when free software is used.</li>
445
446 <li>communicate about the quality of free software projects, using
447 well known examples like Firefox, ThunderBird and
448 OpenOffice.org/LibreOffice.</li>
449
450 <li>advertise the living and strong community around the project.</li>
451
452 <li>show that it is not more difficult to use than any other
453 system.</li>
454
455 </ul>
456
457 </div>
458 <div class="tags">
459
460
461 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/intervju">intervju</a>.
462
463
464 </div>
465 </div>
466 <div class="padding"></div>
467
468 <div class="entry">
469 <div class="title">
470 <a href="http://people.skolelinux.org/pere/blog/_pent_m_te_p__onsdag_om_bruken_av_Microsoft_Exchange_ved_Universitetet_i_Oslo.html">Åpent møte på onsdag om bruken av Microsoft Exchange ved Universitetet i Oslo</a>
471 </div>
472 <div class="date">
473 3rd June 2013
474 </div>
475 <div class="body">
476 <p>Jeg jobber til daglig ved <a href="http://www.uio.no/">Universitetet
477 i Oslo</a>, en institusjon som lenge har vektlagt verdien av åpne
478 standarder og fri programvare. Men noe har endret seg, og for en
479 liten stund tilbake annonserte USIT at dagens fungerende e-postsystemet
480 basert på fri programvare skulle byttes ut med Microsoft Exchange og
481 at Microsoft Outlook skulle bli den best fungerende men antagelig ikke
482 eneste støttede e-postklienten. Annonseringen har ført til flere
483 protester og <a href="http://folk.uio.no/dssantos/nooutlookatuio/">en
484 underskriftskampanje</a>, initiert av Diana Santos, der så langt 253
485 personer har signert. Prosjektet
486 <a href="http://www.usit.uio.no/prosjekter/nike/">NIKE (Ny integrert
487 kalender/e-post)</a> ble initiert for å se på mulige løsninger med
488 utgangspunkt i at en kombinert epost/kalenderløsning var påkrevd, og
489 prosjektet
490 <a href="http://www.usit.uio.no/prosjekter/nike-implementasjon/">NIKE-implementasjon</a>
491 er igang med å rulle ut MS Exchange ved Universitetet i Oslo.</p>
492
493 <p>For kun kort tid siden ble det annonsert at det blir et åpent møte
494 med ledelsen hos universitetet i Oslo med disse planene som tema:</p>
495
496 <p>Tid: <strong>Onsdag 2013-06-05 kl. 10:00</strong>
497 <br>Sted: <strong>9. etasje i Lucy Smiths hus (admin-bygget)</strong></p>
498
499 <p> Det kan være en god plass å stille opp hvis en som meg ikke tror
500 valget av Microsoft Exchange som sentral epostinfrastruktur er et
501 heldig valg for Norges ledende forskningsuniversitet, men at en er mer
502 tjent med å selv
503 <a href="http://nuug.no/dokumenter/kronikk-friprog-itsikkerhet.shtml">beholde
504 kontrollen over egen infrastruktur</a>.</p>
505
506 <p>Saken har ført til endel presseoppslag så langt. Her er de jeg har
507 fått med meg:</p>
508
509 <ul>
510
511 <li>2013-05-29
512 <a href="http://universitas.no/nyhet/58462/forsvarer-nytt-it-system">Forsvarer
513 nytt IT-system</a> - Universitas</li>
514
515 <li>2013-05-23
516 <a href="http://www.uniforum.uio.no/nyheter/2013/05/uio-innforer-nytt-epost-og-kalendersystem.html">UiO
517 innfører nytt epost- og kalenderverktøy</a> - Uniforum</li>
518
519
520 <li>2013-05-22
521 <a href="http://universitas.no/nyhet/58424/protestgruppe-vil-stanse-it-system">Protestgruppe
522 vil stanse IT-system</a> - Universitas</li>
523
524
525 <li>2013-05-15
526 <a href="http://www.uniforum.uio.no/leserbrev/2013/uio-ma-ha-kontroll-over-sitt-eget-epostsystem.html">UiO
527 må ha kontroll over sitt eget epostsystem</a> - Uniforum</li>
528
529 </ul>
530
531
532
533 </div>
534 <div class="tags">
535
536
537 Tags: <a href="http://people.skolelinux.org/pere/blog/tags/norsk">norsk</a>, <a href="http://people.skolelinux.org/pere/blog/tags/standard">standard</a>.
538
539
540 </div>
541 </div>
542 <div class="padding"></div>
543
544 <div class="entry">
545 <div class="title">
546 <a href="http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html">Educational applications included in Debian Edu / Skolelinux (the screenshot collection :-)</a>
547 </div>
548 <div class="date">
549 1st June 2013
550 </div>
551 <div class="body">
552 <p>Included in <a href="http://www.skolelinux.org/">Debian Edu /
553 Skolelinux</a>, there are quite a lot of educational software.
554 Created to help teachers teach, and pupils learn. We have tried to
555 tag them all using debtags use::learning and role::program, and using
556 the debtags I was happy to be able to create a collage of the
557 educational software packages installed by default, sorted by the
558 debtag field. Here it is. Click on a image to learn more about the
559 program.</p>
560
561 <!-- for f in $(debtags tagcat|grep field::|awk '{print $2}'); do echo; echo "<p><strong>$f</strong></p>"; echo "<p>"; ( for p in $(debtags search --names "use::learning && interface::x11 && role::program && $f"); do img="<img src='http://screenshots.debian.net/thumbnail/$p' alt='$p'>"; if dpkg -s $p > /dev/null 2>&1; then echo "<a href='http://packages.qa.debian.org/$p'>$img</a>"; fi; done; ) | LANG=C sort; echo "</p>"; done -->
562
563 <p><strong>field::arts</strong></p>
564 <p>
565 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=audacity'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/audacity.png' alt='audacity'></a>
566 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=childsplay'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/childsplay.png' alt='childsplay'></a>
567 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=denemo'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/denemo.png' alt='denemo'></a>
568 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=freebirth'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/freebirth.png' alt='freebirth'></a>
569 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=gcompris'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gcompris.png' alt='gcompris'></a>
570 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=gimp'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gimp.png' alt='gimp'></a>
571 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=hydrogen'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/hydrogen.png' alt='hydrogen'></a>
572 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=lilypond'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/lilypond.png' alt='lilypond'></a>
573 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=lmms'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/lmms.png' alt='lmms'></a>
574 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=rosegarden'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/rosegarden.png' alt='rosegarden'></a>
575 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=scribus'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/scribus.png' alt='scribus'></a>
576 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=solfege'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/solfege.png' alt='solfege'></a>
577 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=stopmotion'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/stopmotion.png' alt='stopmotion'></a>
578 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=tuxpaint'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/tuxpaint.png' alt='tuxpaint'></a>
579 </p>
580
581 <p><strong>field::astronomy</strong></p>
582 <p>
583 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=celestia-gnome'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/celestia-gnome.png' alt='celestia-gnome'></a>
584 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=gpredict'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gpredict.png' alt='gpredict'></a>
585 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=kstars'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kstars.png' alt='kstars'></a>
586 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=planets'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/planets.png' alt='planets'></a>
587 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=stellarium'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/stellarium.png' alt='stellarium'></a>
588 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=xplanet'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/xplanet.png' alt='xplanet'></a>
589 </p>
590
591 <p><strong>field::biology:structural</strong></p>
592 <p>
593 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=pymol'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/pymol.png' alt='pymol'></a>
594 </p>
595
596 <p><strong>field::chemistry</strong></p>
597 <p>
598 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=atomix'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/atomix.png' alt='atomix'></a>
599 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=chemtool'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/chemtool.png' alt='chemtool'></a>
600 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=easychem'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/easychem.png' alt='easychem'></a>
601 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=gchempaint'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gchempaint.png' alt='gchempaint'></a>
602 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=gdis'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gdis.png' alt='gdis'></a>
603 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=ghemical'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/ghemical.png' alt='ghemical'></a>
604 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=gperiodic'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gperiodic.png' alt='gperiodic'></a>
605 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=kalzium'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kalzium.png' alt='kalzium'></a>
606 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=pymol'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/pymol.png' alt='pymol'></a>
607 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=viewmol'>[viewmol]</a>
608 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=xdrawchem'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/xdrawchem.png' alt='xdrawchem'></a>
609 </p>
610
611 <p><strong>field::electronics</strong></p>
612 <p>
613 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=gcompris'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gcompris.png' alt='gcompris'></a>
614 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=gpsim'>[gpsim]</a>
615 </p>
616
617 <p><strong>field::geography</strong></p>
618 <p>
619 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=kgeography'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kgeography.png' alt='kgeography'></a>
620 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=marble'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/marble.png' alt='marble'></a>
621 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=xplanet'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/xplanet.png' alt='xplanet'></a>
622 </p>
623
624 <p><strong>field::linguistics</strong></p>
625 <p>
626 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=gcompris'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gcompris.png' alt='gcompris'></a>
627 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=kanagram'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kanagram.png' alt='kanagram'></a>
628 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=khangman'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/khangman.png' alt='khangman'></a>
629 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=klettres'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/klettres.png' alt='klettres'></a>
630 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=parley'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/parley.png' alt='parley'></a>
631 </p>
632
633 <p><strong>field::mathematics</strong></p>
634 <p>
635 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=childsplay'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/childsplay.png' alt='childsplay'></a>
636 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=drgeo'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/drgeo.png' alt='drgeo'></a>
637 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=gcompris'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gcompris.png' alt='gcompris'></a>
638 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=geogebra'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/geogebra.png' alt='geogebra'></a>
639 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=geomview'>[geomview]</a>
640 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=grace'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/grace.png' alt='grace'></a>
641 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=graphmonkey'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/graphmonkey.png' alt='graphmonkey'></a>
642 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=graphthing'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/graphthing.png' alt='graphthing'></a>
643 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=kalgebra'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kalgebra.png' alt='kalgebra'></a>
644 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=kbruch'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kbruch.png' alt='kbruch'></a>
645 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=kig'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kig.png' alt='kig'></a>
646 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=kmplot'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/kmplot.png' alt='kmplot'></a>
647 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=mathwar'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/mathwar.png' alt='mathwar'></a>
648 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=rocs'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/rocs.png' alt='rocs'></a>
649 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=scratch'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/scratch.png' alt='scratch'></a>
650 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=tuxmath'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/tuxmath.png' alt='tuxmath'></a>
651 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=xabacus'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/xabacus.png' alt='xabacus'></a>
652 </p>
653
654 <p><strong>field::physics</strong></p>
655 <p>
656 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=gcompris'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gcompris.png' alt='gcompris'></a>
657 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=step'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/step.png' alt='step'></a>
658 </p>
659
660 <p><strong>field::TODO</strong></p>
661 <p>
662 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=blinken'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/blinken.png' alt='blinken'></a>
663 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=cgoban'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/cgoban.png' alt='cgoban'></a>
664 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=childsplay'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/childsplay.png' alt='childsplay'></a>
665 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=gcompris'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gcompris.png' alt='gcompris'></a>
666 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=gnuchess'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gnuchess.png' alt='gnuchess'></a>
667 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=gnugo'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gnugo.png' alt='gnugo'></a>
668 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=gtans'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/gtans.png' alt='gtans'></a>
669 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=ktouch'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/ktouch.png' alt='ktouch'></a>
670 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=librecad'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/librecad.png' alt='librecad'></a>
671 <a href='http://packages.debian.org/search?searchon=names&exact=1&suite=all&section=all&keywords=scratch'><img src='http://people.skolelinux.org/pere/blog/images/2013-06-01-debian-edu-apps/scratch.png' alt='scratch'></a>
672 </p>
673
674 <p>In total, 61 applications. 3 of them lacked screen shots on
675 <a href="http://screenshot.debian.net">screenshot.debian.net</a>. If
676 you know of some packages we should install by default, please let us
677 know on <a href="irc://irc.debian.org/%23debian-edu">IRC, #debian-edu
678 on irc.debian.org</a>, or our
679 <a href="http://lists.debian.org/debian-edu/">mailing list
680 debian-edu@</a>.</p>
681
682 </div>
683 <div class="tags">
684
685
686 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>.
687
688
689 </div>
690 </div>
691 <div class="padding"></div>
692
693 <p style="text-align: right;"><a href="06.rss"><img src="http://people.skolelinux.org/pere/blog/xml.gif" alt="RSS Feed" width="36" height="14" /></a></p>
694 <div id="sidebar">
695
696
697
698 <h2>Archive</h2>
699 <ul>
700
701 <li>2013
702 <ul>
703
704 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/01/">January (11)</a></li>
705
706 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/02/">February (9)</a></li>
707
708 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/03/">March (9)</a></li>
709
710 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/04/">April (6)</a></li>
711
712 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/05/">May (9)</a></li>
713
714 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/06/">June (6)</a></li>
715
716 </ul></li>
717
718 <li>2012
719 <ul>
720
721 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/01/">January (7)</a></li>
722
723 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/02/">February (10)</a></li>
724
725 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/03/">March (17)</a></li>
726
727 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/04/">April (12)</a></li>
728
729 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/05/">May (12)</a></li>
730
731 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/06/">June (20)</a></li>
732
733 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/07/">July (17)</a></li>
734
735 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/08/">August (6)</a></li>
736
737 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/09/">September (9)</a></li>
738
739 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/10/">October (17)</a></li>
740
741 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/11/">November (10)</a></li>
742
743 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/12/">December (7)</a></li>
744
745 </ul></li>
746
747 <li>2011
748 <ul>
749
750 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/01/">January (16)</a></li>
751
752 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/02/">February (6)</a></li>
753
754 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/03/">March (6)</a></li>
755
756 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/04/">April (7)</a></li>
757
758 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/05/">May (3)</a></li>
759
760 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/06/">June (2)</a></li>
761
762 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/07/">July (7)</a></li>
763
764 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/08/">August (6)</a></li>
765
766 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/09/">September (4)</a></li>
767
768 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/10/">October (2)</a></li>
769
770 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/11/">November (3)</a></li>
771
772 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/12/">December (1)</a></li>
773
774 </ul></li>
775
776 <li>2010
777 <ul>
778
779 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/01/">January (2)</a></li>
780
781 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/02/">February (1)</a></li>
782
783 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/03/">March (3)</a></li>
784
785 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/04/">April (3)</a></li>
786
787 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/05/">May (9)</a></li>
788
789 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/06/">June (14)</a></li>
790
791 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/07/">July (12)</a></li>
792
793 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/08/">August (13)</a></li>
794
795 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/09/">September (7)</a></li>
796
797 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/10/">October (9)</a></li>
798
799 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/11/">November (13)</a></li>
800
801 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/12/">December (12)</a></li>
802
803 </ul></li>
804
805 <li>2009
806 <ul>
807
808 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/01/">January (8)</a></li>
809
810 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/02/">February (8)</a></li>
811
812 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/03/">March (12)</a></li>
813
814 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/04/">April (10)</a></li>
815
816 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/05/">May (9)</a></li>
817
818 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/06/">June (3)</a></li>
819
820 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/07/">July (4)</a></li>
821
822 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/08/">August (3)</a></li>
823
824 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/09/">September (1)</a></li>
825
826 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/10/">October (2)</a></li>
827
828 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/11/">November (3)</a></li>
829
830 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/12/">December (3)</a></li>
831
832 </ul></li>
833
834 <li>2008
835 <ul>
836
837 <li><a href="http://people.skolelinux.org/pere/blog/archive/2008/11/">November (5)</a></li>
838
839 <li><a href="http://people.skolelinux.org/pere/blog/archive/2008/12/">December (7)</a></li>
840
841 </ul></li>
842
843 </ul>
844
845
846
847 <h2>Tags</h2>
848 <ul>
849
850 <li><a href="http://people.skolelinux.org/pere/blog/tags/3d-printer">3d-printer (13)</a></li>
851
852 <li><a href="http://people.skolelinux.org/pere/blog/tags/amiga">amiga (1)</a></li>
853
854 <li><a href="http://people.skolelinux.org/pere/blog/tags/aros">aros (1)</a></li>
855
856 <li><a href="http://people.skolelinux.org/pere/blog/tags/bankid">bankid (4)</a></li>
857
858 <li><a href="http://people.skolelinux.org/pere/blog/tags/bitcoin">bitcoin (7)</a></li>
859
860 <li><a href="http://people.skolelinux.org/pere/blog/tags/bootsystem">bootsystem (12)</a></li>
861
862 <li><a href="http://people.skolelinux.org/pere/blog/tags/bsa">bsa (2)</a></li>
863
864 <li><a href="http://people.skolelinux.org/pere/blog/tags/debian">debian (77)</a></li>
865
866 <li><a href="http://people.skolelinux.org/pere/blog/tags/debian edu">debian edu (132)</a></li>
867
868 <li><a href="http://people.skolelinux.org/pere/blog/tags/digistan">digistan (10)</a></li>
869
870 <li><a href="http://people.skolelinux.org/pere/blog/tags/docbook">docbook (9)</a></li>
871
872 <li><a href="http://people.skolelinux.org/pere/blog/tags/drivstoffpriser">drivstoffpriser (4)</a></li>
873
874 <li><a href="http://people.skolelinux.org/pere/blog/tags/english">english (199)</a></li>
875
876 <li><a href="http://people.skolelinux.org/pere/blog/tags/fiksgatami">fiksgatami (21)</a></li>
877
878 <li><a href="http://people.skolelinux.org/pere/blog/tags/fildeling">fildeling (12)</a></li>
879
880 <li><a href="http://people.skolelinux.org/pere/blog/tags/freeculture">freeculture (11)</a></li>
881
882 <li><a href="http://people.skolelinux.org/pere/blog/tags/frikanalen">frikanalen (11)</a></li>
883
884 <li><a href="http://people.skolelinux.org/pere/blog/tags/intervju">intervju (35)</a></li>
885
886 <li><a href="http://people.skolelinux.org/pere/blog/tags/isenkram">isenkram (6)</a></li>
887
888 <li><a href="http://people.skolelinux.org/pere/blog/tags/kart">kart (18)</a></li>
889
890 <li><a href="http://people.skolelinux.org/pere/blog/tags/ldap">ldap (8)</a></li>
891
892 <li><a href="http://people.skolelinux.org/pere/blog/tags/lenker">lenker (6)</a></li>
893
894 <li><a href="http://people.skolelinux.org/pere/blog/tags/ltsp">ltsp (1)</a></li>
895
896 <li><a href="http://people.skolelinux.org/pere/blog/tags/multimedia">multimedia (25)</a></li>
897
898 <li><a href="http://people.skolelinux.org/pere/blog/tags/norsk">norsk (234)</a></li>
899
900 <li><a href="http://people.skolelinux.org/pere/blog/tags/nuug">nuug (152)</a></li>
901
902 <li><a href="http://people.skolelinux.org/pere/blog/tags/offentlig innsyn">offentlig innsyn (8)</a></li>
903
904 <li><a href="http://people.skolelinux.org/pere/blog/tags/open311">open311 (2)</a></li>
905
906 <li><a href="http://people.skolelinux.org/pere/blog/tags/opphavsrett">opphavsrett (44)</a></li>
907
908 <li><a href="http://people.skolelinux.org/pere/blog/tags/personvern">personvern (65)</a></li>
909
910 <li><a href="http://people.skolelinux.org/pere/blog/tags/raid">raid (1)</a></li>
911
912 <li><a href="http://people.skolelinux.org/pere/blog/tags/reprap">reprap (11)</a></li>
913
914 <li><a href="http://people.skolelinux.org/pere/blog/tags/rfid">rfid (2)</a></li>
915
916 <li><a href="http://people.skolelinux.org/pere/blog/tags/robot">robot (7)</a></li>
917
918 <li><a href="http://people.skolelinux.org/pere/blog/tags/rss">rss (1)</a></li>
919
920 <li><a href="http://people.skolelinux.org/pere/blog/tags/ruter">ruter (4)</a></li>
921
922 <li><a href="http://people.skolelinux.org/pere/blog/tags/scraperwiki">scraperwiki (2)</a></li>
923
924 <li><a href="http://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet (29)</a></li>
925
926 <li><a href="http://people.skolelinux.org/pere/blog/tags/sitesummary">sitesummary (4)</a></li>
927
928 <li><a href="http://people.skolelinux.org/pere/blog/tags/skepsis">skepsis (4)</a></li>
929
930 <li><a href="http://people.skolelinux.org/pere/blog/tags/standard">standard (43)</a></li>
931
932 <li><a href="http://people.skolelinux.org/pere/blog/tags/stavekontroll">stavekontroll (3)</a></li>
933
934 <li><a href="http://people.skolelinux.org/pere/blog/tags/stortinget">stortinget (7)</a></li>
935
936 <li><a href="http://people.skolelinux.org/pere/blog/tags/surveillance">surveillance (15)</a></li>
937
938 <li><a href="http://people.skolelinux.org/pere/blog/tags/sysadmin">sysadmin (1)</a></li>
939
940 <li><a href="http://people.skolelinux.org/pere/blog/tags/valg">valg (7)</a></li>
941
942 <li><a href="http://people.skolelinux.org/pere/blog/tags/video">video (38)</a></li>
943
944 <li><a href="http://people.skolelinux.org/pere/blog/tags/vitenskap">vitenskap (4)</a></li>
945
946 <li><a href="http://people.skolelinux.org/pere/blog/tags/web">web (26)</a></li>
947
948 </ul>
949
950
951 </div>
952 <p style="text-align: right">
953 Created by <a href="http://steve.org.uk/Software/chronicle">Chronicle v4.6</a>
954 </p>
955
956 </body>
957 </html>