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 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" />
15 <a href=
"http://people.skolelinux.org/pere/blog/">Petter Reinholdtsen
</a>
22 <h3>Entries from June
2013.
</h3>
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>
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>
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>
52 echo options i915 invert_brightness=
1 | tee /etc/modprobe.d/i915.conf
53 update-initramfs -u -k all
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
68 <p>My Packard Bell EasyNote LV got this output from <tt>lspci
69 -vvnn</tt> for the video card in question:</p>
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-
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
90 <p>The resulting intel_quirks entry would then look like this:</p>
93 struct intel_quirk intel_quirks[] = {
95 /* Packard Bell EasyNote LV11HC needs invert brightness quirk */
96 { 0x0156, 0x1025, 0x0688, quirk_invert_brightness },
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
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>
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>
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>.
137 <div class="padding
"></div>
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>
147 <p>The third wheezy based alpha release of Debian Edu was wrapped up
148 today. This is the release announcement:</p>
150 <p><strong>New features for Debian Edu 7.0.0 alpha2 released
151 2013-06-10</strong></p>
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>
156 <p><strong>About Debian Edu and Skolelinux
</strong></p>
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
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>
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
179 <p><strong>Software updates
</strong></p>
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.
191 <p><strong>Other changes
</strong></p>
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.
207 <li>Update thin client and diskless workstation setup to work with
210 <li>Diskless workstations now run out of the box -- no need to set
211 them up with GOsa².
</li>
213 <li>Update IMAP server setup.
</li>
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>
221 <p><strong>Known issues
</strong></p>
225 <li>DVD binary and source images are not yet ready.
</li>
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>
231 <li>Missing artwork for the KDE desktop (and probably a few others).
</li>
233 <li>KDE Debian submenu lacks icons (Closed: #
502192: menu-xdg: invents
234 own icon names instead of using existing). This will remain
239 <p><strong>Where to get it
</strong></p>
241 <p>To download the multiarch netinstall CD release you can use
</p>
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>
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>
249 <li>rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-
7.0+edu0~a2-CD.iso .
</li>
253 <p>The MD5SUM of this image is:
27bbcace407743382f3c42c08dbe8178
254 <br>The SHA1SUM of this image is: e35f7d7908566cd3075375b3721fa10ee420d419
</p>
256 <p><strong>How to report bugs
</strong></p>
258 <p><a href=
"http://wiki.debian.org/DebianEdu/HowTo/ReportBugs">http://wiki.debian.org/DebianEdu/HowTo/ReportBugs
</a>
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>.
269 <div class=
"padding"></div>
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>
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
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>
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
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>
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>.
314 <div class=
"padding"></div>
318 <a href=
"http://people.skolelinux.org/pere/blog/Debian_Edu_interview__C_dric_Boutillier.html">Debian Edu interview: Cédric Boutillier
</a>
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>
331 <p><strong>Who are you, and how do you spend your days?
</strong></p>
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>
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>
342 <p><strong>How did you get in contact with the Skolelinux / Debian Edu
343 project?
</strong></p>
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
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>
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>
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>
372 <p><strong>What do you see as the advantages of Skolelinux / Debian
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>
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>
383 <p><strong>What do you see as the disadvantages of Skolelinux / Debian
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>
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>
401 <p><strong>Which free software do you use daily?
</strong></p>
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).
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>
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>
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
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>
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>
437 <p><strong>Which strategy do you believe is the right one to use to
438 get schools to use free software?
</strong></p>
440 <p>My suggestions would be to
</p>
444 <li>advertise the reduction of costs when free software is used.
</li>
446 <li>communicate about the quality of free software projects, using
447 well known examples like Firefox, ThunderBird and
448 OpenOffice.org/LibreOffice.
</li>
450 <li>advertise the living and strong community around the project.
</li>
452 <li>show that it is not more difficult to use than any other
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>.
466 <div class=
"padding"></div>
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>
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
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>
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>
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>
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
503 <a href=
"http://nuug.no/dokumenter/kronikk-friprog-itsikkerhet.shtml">beholde
504 kontrollen over egen infrastruktur
</a>.
</p>
506 <p>Saken har ført til endel presseoppslag så langt. Her er de jeg har
512 <a href=
"http://universitas.no/nyhet/58462/forsvarer-nytt-it-system">Forsvarer
513 nytt IT-system
</a> - Universitas
</li>
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>
521 <a href=
"http://universitas.no/nyhet/58424/protestgruppe-vil-stanse-it-system">Protestgruppe
522 vil stanse IT-system
</a> - Universitas
</li>
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>
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>.
542 <div class=
"padding"></div>
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>
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
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 -->
563 <p><strong>field::arts
</strong></p>
565 <a href='http://packages.debian.org/search?searchon=names&exact=
1&suite=all§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=all&keywords=tuxpaint'
><img src='http://people.skolelinux.org/pere/blog/images/
2013-
06-
01-debian-edu-apps/tuxpaint.png' alt='tuxpaint'
></a>
581 <p><strong>field::astronomy
</strong></p>
583 <a href='http://packages.debian.org/search?searchon=names&exact=
1&suite=all§ion=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§ion=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§ion=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§ion=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§ion=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§ion=all&keywords=xplanet'
><img src='http://people.skolelinux.org/pere/blog/images/
2013-
06-
01-debian-edu-apps/xplanet.png' alt='xplanet'
></a>
591 <p><strong>field::biology:structural
</strong></p>
593 <a href='http://packages.debian.org/search?searchon=names&exact=
1&suite=all§ion=all&keywords=pymol'
><img src='http://people.skolelinux.org/pere/blog/images/
2013-
06-
01-debian-edu-apps/pymol.png' alt='pymol'
></a>
596 <p><strong>field::chemistry
</strong></p>
598 <a href='http://packages.debian.org/search?searchon=names&exact=
1&suite=all§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=all&keywords=viewmol'
>[viewmol]
</a>
608 <a href='http://packages.debian.org/search?searchon=names&exact=
1&suite=all§ion=all&keywords=xdrawchem'
><img src='http://people.skolelinux.org/pere/blog/images/
2013-
06-
01-debian-edu-apps/xdrawchem.png' alt='xdrawchem'
></a>
611 <p><strong>field::electronics
</strong></p>
613 <a href='http://packages.debian.org/search?searchon=names&exact=
1&suite=all§ion=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§ion=all&keywords=gpsim'
>[gpsim]
</a>
617 <p><strong>field::geography
</strong></p>
619 <a href='http://packages.debian.org/search?searchon=names&exact=
1&suite=all§ion=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§ion=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§ion=all&keywords=xplanet'
><img src='http://people.skolelinux.org/pere/blog/images/
2013-
06-
01-debian-edu-apps/xplanet.png' alt='xplanet'
></a>
624 <p><strong>field::linguistics
</strong></p>
626 <a href='http://packages.debian.org/search?searchon=names&exact=
1&suite=all§ion=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§ion=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§ion=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§ion=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§ion=all&keywords=parley'
><img src='http://people.skolelinux.org/pere/blog/images/
2013-
06-
01-debian-edu-apps/parley.png' alt='parley'
></a>
633 <p><strong>field::mathematics
</strong></p>
635 <a href='http://packages.debian.org/search?searchon=names&exact=
1&suite=all§ion=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§ion=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§ion=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§ion=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§ion=all&keywords=geomview'
>[geomview]
</a>
640 <a href='http://packages.debian.org/search?searchon=names&exact=
1&suite=all§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=all&keywords=xabacus'
><img src='http://people.skolelinux.org/pere/blog/images/
2013-
06-
01-debian-edu-apps/xabacus.png' alt='xabacus'
></a>
654 <p><strong>field::physics
</strong></p>
656 <a href='http://packages.debian.org/search?searchon=names&exact=
1&suite=all§ion=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§ion=all&keywords=step'
><img src='http://people.skolelinux.org/pere/blog/images/
2013-
06-
01-debian-edu-apps/step.png' alt='step'
></a>
660 <p><strong>field::TODO
</strong></p>
662 <a href='http://packages.debian.org/search?searchon=names&exact=
1&suite=all§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=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§ion=all&keywords=scratch'
><img src='http://people.skolelinux.org/pere/blog/images/
2013-
06-
01-debian-edu-apps/scratch.png' alt='scratch'
></a>
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
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>.
691 <div class=
"padding"></div>
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>
704 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/01/">January (
11)
</a></li>
706 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/02/">February (
9)
</a></li>
708 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/03/">March (
9)
</a></li>
710 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/04/">April (
6)
</a></li>
712 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/05/">May (
9)
</a></li>
714 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2013/06/">June (
6)
</a></li>
721 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/01/">January (
7)
</a></li>
723 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/02/">February (
10)
</a></li>
725 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/03/">March (
17)
</a></li>
727 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/04/">April (
12)
</a></li>
729 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/05/">May (
12)
</a></li>
731 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/06/">June (
20)
</a></li>
733 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/07/">July (
17)
</a></li>
735 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/08/">August (
6)
</a></li>
737 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/09/">September (
9)
</a></li>
739 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/10/">October (
17)
</a></li>
741 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/11/">November (
10)
</a></li>
743 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2012/12/">December (
7)
</a></li>
750 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/01/">January (
16)
</a></li>
752 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/02/">February (
6)
</a></li>
754 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/03/">March (
6)
</a></li>
756 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/04/">April (
7)
</a></li>
758 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/05/">May (
3)
</a></li>
760 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/06/">June (
2)
</a></li>
762 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/07/">July (
7)
</a></li>
764 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/08/">August (
6)
</a></li>
766 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/09/">September (
4)
</a></li>
768 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/10/">October (
2)
</a></li>
770 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/11/">November (
3)
</a></li>
772 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2011/12/">December (
1)
</a></li>
779 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/01/">January (
2)
</a></li>
781 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/02/">February (
1)
</a></li>
783 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/03/">March (
3)
</a></li>
785 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/04/">April (
3)
</a></li>
787 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/05/">May (
9)
</a></li>
789 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/06/">June (
14)
</a></li>
791 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/07/">July (
12)
</a></li>
793 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/08/">August (
13)
</a></li>
795 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/09/">September (
7)
</a></li>
797 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/10/">October (
9)
</a></li>
799 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/11/">November (
13)
</a></li>
801 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2010/12/">December (
12)
</a></li>
808 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/01/">January (
8)
</a></li>
810 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/02/">February (
8)
</a></li>
812 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/03/">March (
12)
</a></li>
814 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/04/">April (
10)
</a></li>
816 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/05/">May (
9)
</a></li>
818 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/06/">June (
3)
</a></li>
820 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/07/">July (
4)
</a></li>
822 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/08/">August (
3)
</a></li>
824 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/09/">September (
1)
</a></li>
826 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/10/">October (
2)
</a></li>
828 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/11/">November (
3)
</a></li>
830 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2009/12/">December (
3)
</a></li>
837 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2008/11/">November (
5)
</a></li>
839 <li><a href=
"http://people.skolelinux.org/pere/blog/archive/2008/12/">December (
7)
</a></li>
850 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/3d-printer">3d-printer (
13)
</a></li>
852 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/amiga">amiga (
1)
</a></li>
854 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/aros">aros (
1)
</a></li>
856 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/bankid">bankid (
4)
</a></li>
858 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/bitcoin">bitcoin (
7)
</a></li>
860 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/bootsystem">bootsystem (
12)
</a></li>
862 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/bsa">bsa (
2)
</a></li>
864 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/debian">debian (
77)
</a></li>
866 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/debian edu">debian edu (
132)
</a></li>
868 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/digistan">digistan (
10)
</a></li>
870 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/docbook">docbook (
9)
</a></li>
872 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/drivstoffpriser">drivstoffpriser (
4)
</a></li>
874 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/english">english (
199)
</a></li>
876 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/fiksgatami">fiksgatami (
21)
</a></li>
878 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/fildeling">fildeling (
12)
</a></li>
880 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/freeculture">freeculture (
11)
</a></li>
882 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/frikanalen">frikanalen (
11)
</a></li>
884 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/intervju">intervju (
35)
</a></li>
886 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/isenkram">isenkram (
6)
</a></li>
888 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/kart">kart (
18)
</a></li>
890 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/ldap">ldap (
8)
</a></li>
892 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/lenker">lenker (
6)
</a></li>
894 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/ltsp">ltsp (
1)
</a></li>
896 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/multimedia">multimedia (
25)
</a></li>
898 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/norsk">norsk (
234)
</a></li>
900 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/nuug">nuug (
152)
</a></li>
902 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/offentlig innsyn">offentlig innsyn (
8)
</a></li>
904 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/open311">open311 (
2)
</a></li>
906 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/opphavsrett">opphavsrett (
44)
</a></li>
908 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/personvern">personvern (
65)
</a></li>
910 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/raid">raid (
1)
</a></li>
912 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/reprap">reprap (
11)
</a></li>
914 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/rfid">rfid (
2)
</a></li>
916 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/robot">robot (
7)
</a></li>
918 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/rss">rss (
1)
</a></li>
920 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/ruter">ruter (
4)
</a></li>
922 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/scraperwiki">scraperwiki (
2)
</a></li>
924 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet (
29)
</a></li>
926 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/sitesummary">sitesummary (
4)
</a></li>
928 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/skepsis">skepsis (
4)
</a></li>
930 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/standard">standard (
43)
</a></li>
932 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/stavekontroll">stavekontroll (
3)
</a></li>
934 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/stortinget">stortinget (
7)
</a></li>
936 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/surveillance">surveillance (
15)
</a></li>
938 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/sysadmin">sysadmin (
1)
</a></li>
940 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/valg">valg (
7)
</a></li>
942 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/video">video (
38)
</a></li>
944 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/vitenskap">vitenskap (
4)
</a></li>
946 <li><a href=
"http://people.skolelinux.org/pere/blog/tags/web">web (
26)
</a></li>
952 <p style=
"text-align: right">
953 Created by
<a href=
"http://steve.org.uk/Software/chronicle">Chronicle v4.6
</a>