]> pere.pagekite.me Git - homepage.git/blob - blog/archive/2013/07/index.html
Generated.
[homepage.git] / blog / archive / 2013 / 07 / 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 July 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="07.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 July 2013.</h3>
23
24 <div class="entry">
25 <div class="title">
26 <a href="http://people.skolelinux.org/pere/blog/How_to_fix_a_Thinkpad_X230_with_a_broken_180_GB_SSD_disk.html">How to fix a Thinkpad X230 with a broken 180 GB SSD disk</a>
27 </div>
28 <div class="date">
29 17th July 2013
30 </div>
31 <div class="body">
32 <p>Today I switched to
33 <a href="http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html">my
34 new laptop</a>. I've previously written about the problems I had with
35 my new Thinkpad X230, which was delivered with an
36 <a href="http://people.skolelinux.org/pere/blog/Intel_SSD_520_Series_180_GB_with_Lenovo_firmware_still_lock_up_from_sustained_writes.html">180
37 GB Intel SSD disk with Lenovo firmware</a> that did not handle
38 sustained writes. My hardware supplier have been very forthcoming in
39 trying to find a solution, and after first trying with another
40 identical 180 GB disks they decided to send me a 256 GB Samsung SSD
41 disk instead to fix it once and for all. The Samsung disk survived
42 the installation of Debian with encrypted disks (filling the disk with
43 random data during installation killed the first two), and I thus
44 decided to trust it with my data. I have installed it as a Debian Edu
45 Wheezy roaming workstation hooked up with my Debian Edu Squeeze main
46 server at home using Kerberos and LDAP, and will use it as my work
47 station from now on.</p>
48
49 <p>As this is a solid state disk with no moving parts, I believe the
50 Debian Wheezy default installation need to be tuned a bit to increase
51 performance and increase life time of the disk. The Linux kernel and
52 user space applications do not yet adjust automatically to such
53 environment. To make it easier for my self, I created a draft Debian
54 package <tt>ssd-setup</tt> to handle this tuning. The
55 <a href="http://anonscm.debian.org/gitweb/?p=collab-maint/ssd-setup.git">source
56 for the ssd-setup package</a> is available from collab-maint, and it
57 is set up to adjust the setup of the machine by just installing the
58 package. If there is any non-SSD disk in the machine, the package
59 will refuse to install, as I did not try to write any logic to sort
60 file systems in SSD and non-SSD file systems.</p>
61
62 <p>I consider the package a draft, as I am a bit unsure how to best
63 set up Debian Wheezy with an SSD. It is adjusted to my use case,
64 where I set up the machine with one large encrypted partition (in
65 addition to /boot), put LVM on top of this and set up partitions on
66 top of this again. See the README file in the package source for the
67 references I used to pick the settings. At the moment these
68 parameters are tuned:</p>
69
70 <ul>
71
72 <li>Set up cryptsetup to pass TRIM commands to the physical disk
73 (adding discard to /etc/crypttab)</li>
74
75 <li>Set up LVM to pass on TRIM commands to the underlying device (in
76 this case a cryptsetup partition) by changing issue_discards from
77 0 to 1 in /etc/lvm/lvm.conf.</li>
78
79 <li>Set relatime as a file system option for ext3 and ext4 file
80 systems.</li>
81
82 <li>Tell swap to use TRIM commands by adding 'discard' to
83 /etc/fstab.</li>
84
85 <li>Change I/O scheduler from cfq to deadline using a udev rule.</li>
86
87 <li>Run fstrim on every ext3 and ext4 file system every night (from
88 cron.daily).</li>
89
90 <li>Adjust sysctl values vm.swappiness to 1 and vm.vfs_cache_pressure
91 to 50 to reduce the kernel eagerness to swap out processes.</li>
92
93 </ul>
94
95 <p>During installation, I cancelled the part where the installer fill
96 the disk with random data, as this would kill the SSD performance for
97 little gain. My goal with the encrypted file system is to ensure
98 those stealing my laptop end up with a brick and not a working
99 computer. I have no hope in keeping the really resourceful people
100 from getting the data on the disk (see
101 <a href="http://xkcd.com/538/">XKCD #538</a> for an explanation why).
102 Thus I concluded that adding the discard option to crypttab is the
103 right thing to do.</p>
104
105 <p>I considered using the noop I/O scheduler, as several recommended
106 it for SSD, but others recommended deadline and a benchmark I found
107 indicated that deadline might be better for interactive use.</p>
108
109 <p>I also considered using the 'discard' file system option for ext3
110 and ext4, but read that it would give a performance hit ever time a
111 file is removed, and thought it best to that that slowdown once a day
112 instead of during my work.</p>
113
114 <p>My package do not set up tmpfs on /var/run, /var/lock and /tmp, as
115 this is already done by Debian Edu.</p>
116
117 <p>I have not yet started on the user space tuning. I expect
118 iceweasel need some tuning, and perhaps other applications too, but
119 have not yet had time to investigate those parts.</p>
120
121 <p>The package should work on Ubuntu too, but I have not yet tested it
122 there.</p>
123
124 <p>As for the answer to the question in the title of this blog post,
125 as far as I know, the only solution is to replace the disk. It might
126 be possible to flash it with Intel firmware instead of the Lenovo
127 firmware. But I have not tried and did not want to do so without
128 approval from Lenovo as I wanted to keep the warranty on the disk
129 until a solution was found and they wanted the broken disks back.</p>
130
131 </div>
132 <div class="tags">
133
134
135 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>.
136
137
138 </div>
139 </div>
140 <div class="padding"></div>
141
142 <div class="entry">
143 <div class="title">
144 <a href="http://people.skolelinux.org/pere/blog/Intel_SSD_520_Series_180_GB_with_Lenovo_firmware_still_lock_up_from_sustained_writes.html">Intel SSD 520 Series 180 GB with Lenovo firmware still lock up from sustained writes</a>
145 </div>
146 <div class="date">
147 10th July 2013
148 </div>
149 <div class="body">
150 <p>A few days ago, I wrote about
151 <a href="http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html">the
152 problems I experienced with my new X230 and its SSD disk</a>, which
153 was dying during installation because it is unable to cope with
154 sustained write. My supplier is in contact with
155 <a href="http://www.lenovo.com/">Lenovo</a>, and they wanted to send a
156 replacement disk to try to fix the problem. They decided to send an
157 identical model, so my hopes for a permanent fix was slim.</p>
158
159 <p>Anyway, today I got the replacement disk and tried to install
160 Debian Edu Wheezy with encrypted disk on it. The new disk have the
161 same firmware version as the original. This time my hope raised
162 slightly as the installation progressed, as the original disk used to
163 die after 4-7% of the disk was written to, while this time it kept
164 going past 10%, 20%, 40% and even past 50%. But around 60%, the disk
165 died again and I was back on square one. I still do not have a new
166 laptop with a disk I can trust. I can not live with a disk that might
167 lock up when I download a new
168 <a href="http://www.skolelinux.org/">Debian Edu / Skolelinux</a> ISO or
169 other large files. I look forward to hearing from my supplier with
170 the next proposal from Lenovo.</p>
171
172 <p>The original disk is marked Intel SSD 520 Series 180 GB,
173 11S0C38722Z1ZNME35X1TR, ISN: CVCV321407HB180EGN, SA: G57560302, FW:
174 LF1i, 29MAY2013, PBA: G39779-300, LBA 351,651,888, LI P/N: 0C38722,
175 Pb-free 2LI, LC P/N: 16-200366, WWN: 55CD2E40002756C4, Model:
176 SSDSC2BW180A3L 2.5" 6Gb/s SATA SSD 180G 5V 1A, ASM P/N 0C38732, FRU
177 P/N 45N8295, P0C38732.</p>
178
179 <p>The replacement disk is marked Intel SSD 520 Series 180 GB,
180 11S0C38722Z1ZNDE34N0L0, ISN: CVCV315306RK180EGN, SA: G57560-302, FW:
181 LF1i, 22APR2013, PBA: G39779-300, LBA 351,651,888, LI P/N: 0C38722,
182 Pb-free 2LI, LC P/N: 16-200366, WWN: 55CD2E40000AB69E, Model:
183 SSDSC2BW180A3L 2.5" 6Gb/s SATA SSD 180G 5V 1A, ASM P/N 0C38732, FRU
184 P/N 45N8295, P0C38732.</p>
185
186 <p>The only difference is in the first number (serial number?), ISN,
187 SA, date and WNPP values. Mentioning all the details here in case
188 someone is able to use the information to find a way to identify the
189 failing disk among working ones (if any such working disk actually
190 exist).</p>
191
192 </div>
193 <div class="tags">
194
195
196 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>.
197
198
199 </div>
200 </div>
201 <div class="padding"></div>
202
203 <div class="entry">
204 <div class="title">
205 <a href="http://people.skolelinux.org/pere/blog/July_13th__Debian_Ubuntu_BSP_and_Skolelinux_Debian_Edu_developer_gathering_in_Oslo.html">July 13th: Debian/Ubuntu BSP and Skolelinux/Debian Edu developer gathering in Oslo</a>
206 </div>
207 <div class="date">
208 9th July 2013
209 </div>
210 <div class="body">
211 <p>The upcoming Saturday, 2013-07-13, we are organising a combined
212 Debian Edu developer gathering and Debian and Ubuntu bug squashing
213 party in Oslo. It is organised by <a href="http://www.nuug.no/">the
214 member assosiation NUUG</a> and
215 <a href="http://www.skolelinux.org/">the Debian Edu / Skolelinux
216 project</a> together with <a href="http://bitraf.no/">the hack space
217 Bitraf</a>.</p>
218
219 <p>It starts 10:00 and continue until late evening. Everyone is
220 welcome, and there is no fee to participate. There is on the other
221 hand limited space, and only room for 30 people. Please put your name
222 on <a href="http://wiki.debian.org/BSP/2013/07/13/no/Oslo">the event
223 wiki page</a> if you plan to join us.</p>
224
225 </div>
226 <div class="tags">
227
228
229 Tags: <a href="http://people.skolelinux.org/pere/blog/tags/debian">debian</a>, <a href="http://people.skolelinux.org/pere/blog/tags/debian edu">debian edu</a>, <a href="http://people.skolelinux.org/pere/blog/tags/english">english</a>, <a href="http://people.skolelinux.org/pere/blog/tags/nuug">nuug</a>.
230
231
232 </div>
233 </div>
234 <div class="padding"></div>
235
236 <div class="entry">
237 <div class="title">
238 <a href="http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230_.html">The Thinkpad is dead, long live the Thinkpad X230?</a>
239 </div>
240 <div class="date">
241 5th July 2013
242 </div>
243 <div class="body">
244 <p>Half a year ago, I reported that I had to find a
245 <a href="http://people.skolelinux.org/pere/blog/Thank_you_Thinkpad_X41__for_your_long_and_trustworthy_service.html">replacement
246 for my trusty old Thinkpad X41</a>. Unfortunately I did not have much
247 time to spend on it, and it took a while to find a model I believe
248 will do the job, but two days ago the replacement finally arrived. I
249 ended up picking a
250 <a href="http://www.linlap.com/lenovo_thinkpad_x230">Thinkpad X230</a>
251 with SSD disk (NZDAJMN). I first test installed Debian Edu Wheezy as
252 a roaming workstation, and it seemed to work flawlessly. But my
253 second installation with encrypted disk was not as successful. More
254 on that below.</p>
255
256 <p>I had a hard time trying to track down a good laptop, as my most
257 important requirements (robust and with a good keyboard) are never
258 listed in the feature list. But I did get good help from the search
259 feature at <a href="http://www.prisjakt.no/">Prisjakt</a>, which
260 allowed me to limit the list of interesting laptops based on my other
261 requirements. A bit surprising that SSD disk are not disks according
262 to that search interface, so I had to drop specifying the number of
263 disks from my search parameters. I also asked around among friends to
264 get their impression on keyboards and robustness.</p>
265
266 <p>So the new laptop arrived, and it is quite a lot wider than the
267 X41. I am not quite convinced about the keyboard, as it is
268 significantly wider than my old keyboard, and I have to stretch my
269 hand a lot more to reach the edges. But the key response is fairly
270 good and the individual key shape is fairly easy to handle, so I hope
271 I will get used to it. My old X40 was starting to fail, and I really
272 needed a new laptop now. :)</p>
273
274 <p>Turning off the touch pad was simple. All it took was a quick
275 visit to the BIOS during boot it disable it.</p>
276
277 <p>But there is a fatal problem with the laptop. The 180 GB SSD disk
278 lock up during load. And this happen when installing Debian Wheezy
279 with encrypted disk, while the disk is being filled with random data.
280 I also tested to install Ubuntu Raring, and it happen there too if I
281 reenable the code to fill the disk with random data (it is disabled by
282 default in Ubuntu). And the bug with is already known. It was
283 reported to Debian as <a href="http://bugs.debian.org/691427">BTS
284 report #691427 2012-10-25</a> (journal commit I/O error on brand-new
285 Thinkpad T430s ext4 on lvm on SSD). It is also reported to the Linux
286 kernel developers as
287 <a href="https://bugzilla.kernel.org/show_bug.cgi?id=51861">Kernel bugzilla
288 report #51861 2012-12-20</a> (Intel SSD 520 stops working under load
289 (SSDSC2BW180A3L in Lenovo ThinkPad T430s)). It is also reported on the
290 Lenovo forums, both for
291 <a href="http://forums.lenovo.com/t5/T400-T500-and-newer-T-series/T430s-Intel-SSD-520-180GB-issue/m-p/1070549">T430
292 2012-11-10</a> and for
293 <a href="http://forums.lenovo.com/t5/X-Series-ThinkPad-Laptops/x230-SATA-errors-with-180GB-Intel-520-SSD-under-heavy-write-load/m-p/1068147">X230
294 03-20-2013</a>. The problem do not only affect installation. The
295 reports state that the disk lock up during use if many writes are done
296 on the disk, so it is much no use to work around the installation
297 problem and end up with a computer that can lock up at any moment.
298 There is even a
299 <a href="https://git.efficios.com/?p=test-ssd.git">small C program
300 available</a> that will lock up the hard drive after running a few
301 minutes by writing to a file.</p>
302
303 <p>I've contacted my supplier and asked how to handle this, and after
304 contacting PCHELP Norway (request 01D1FDP) which handle support
305 requests for Lenovo, his first suggestion was to upgrade the disk
306 firmware. Unfortunately there is no newer firmware available from
307 Lenovo, as my disk already have the most recent one (version LF1i). I
308 hope to hear more from him today and hope the problem can be
309 fixed. :)</p>
310
311 </div>
312 <div class="tags">
313
314
315 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>.
316
317
318 </div>
319 </div>
320 <div class="padding"></div>
321
322 <div class="entry">
323 <div class="title">
324 <a href="http://people.skolelinux.org/pere/blog/The_Thinkpad_is_dead__long_live_the_Thinkpad_X230.html">The Thinkpad is dead, long live the Thinkpad X230</a>
325 </div>
326 <div class="date">
327 4th July 2013
328 </div>
329 <div class="body">
330 <p>Half a year ago, I reported that I had to find a replacement for my
331 trusty old Thinkpad X41. Unfortunately I did not have much time to
332 spend on it, but today the replacement finally arrived. I ended up
333 picking a <a href="http://www.linlap.com/lenovo_thinkpad_x230">Thinkpad
334 X230</a> with SSD disk (NZDAJMN). I first test installed Debian Edu
335 Wheezy as a roaming workstation, and it worked flawlessly. As I write
336 this, it is installing what I hope will be a more final installation,
337 with a encrypted hard drive to ensure any dope head stealing it end up
338 with an expencive door stop.</p>
339
340 <p>I had a hard time trying to track down a good laptop, as my most
341 important requirements (robust and with a good keyboard) are never
342 listed in the feature list. But I did get good help from the search
343 feature at <ahref="http://www.prisjakt.no/">Prisjakt</a>, which
344 allowed me to limit the list of interesting laptops based on my other
345 requirements. A bit surprising that SSD disk are not disks, so I had
346 to drop number of disks from my search parameters.</p>
347
348 <p>I am not quite convinced about the keyboard, as it is significantly
349 wider than my old keyboard, and I have to stretch my hand a lot more
350 to reach the edges. But the key response is fairly good and the
351 individual key shape is fairly easy to handle, so I hope I will get
352 used to it. My old X40 was starting to fail, and I really needed a
353 new laptop now. :)</p>
354
355 <p>I look forward to figuring out how to turn off the touch pad.</p>
356
357 </div>
358 <div class="tags">
359
360
361 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>.
362
363
364 </div>
365 </div>
366 <div class="padding"></div>
367
368 <div class="entry">
369 <div class="title">
370 <a href="http://people.skolelinux.org/pere/blog/Fourth_alpha_release_of_Debian_Edu_Skolelinux_based_on_Debian_Wheezy.html">Fourth alpha release of Debian Edu/Skolelinux based on Debian Wheezy</a>
371 </div>
372 <div class="date">
373 3rd July 2013
374 </div>
375 <div class="body">
376 <p>The fourth wheezy based alpha release of Debian Edu was wrapped up
377 today. This is the release announcement:</p>
378
379 <p><strong>New features for Debian Edu 7.1+edu0~alpha3 released
380 2013-07-03</strong></p>
381
382 <p>These are the release notes for for Debian Edu / Skolelinux
383 7.1+edu0~alpha3, based on Debian with codename "Wheezy".</p>
384
385 <p><strong>About Debian Edu and Skolelinux</strong></p>
386
387 <p><a href="http://www.skolelinux.org/">Debian Edu, also known as
388 Skolelinux</a>, is a Linux distribution based on Debian providing an
389 out-of-the box environment of a completely configured school
390 network. Immediately after installation a school server running all
391 services needed for a school network is set up just waiting for users
392 and machines being added via GOsa², a comfortable Web-UI. A netbooting
393 environment is prepared using PXE, so after initial installation of
394 the main server from CD, DVD or USB stick all other machines can be
395 installed via the network. The provided school server provides LDAP
396 database and Kerberos authentication service, centralized home
397 directories, DHCP server, web proxy and many other services. The
398 desktop contains
399 <a href="http://people.skolelinux.org/pere/blog/Educational_applications_included_in_Debian_Edu___Skolelinux__the_screenshot_collection____.html">more
400 than 60 educational software packages</a> and more are available from
401 the Debian archive, and schools can choose between KDE, Gnome, LXDE
402 and Xfce desktop environment.</p>
403
404 <p>This is the fourth test release based on Debian Wheezy. Basically
405 this is an updated and slightly improved version compared to the
406 Squeeze release.</p>
407
408 <p><strong>Software updates</strong></p>
409 <ul>
410 <li>Dropped ispell dictionaries from our default installation.</li>
411 <li>Dropped menu-xdg from the KDE desktop option, to drop the Debian
412 submenu. It was not included with Gnome, LXDE or Xfce, so this
413 brings KDE in line with the others.</li>
414 <li>Dropped xdrawchem, xjig and xsok from our default installation as
415 they don't have a desktop menu entry and thus won't show up in the
416 menu now that menu-xdg was removed.</li>
417 <li>Removed the killer system to kill left behind processes on
418 multi-user machines, as it was no longer able to understand when a
419 X display was in use and killed the processes of the active users
420 too.</li>
421 <li>Dropped the golearn (from goplay) package as the debtags in wheezy
422 are too few to make the package useful.</li>
423 </ul>
424 <p><strong>Other changes</strong></p>
425 <ul>
426 <li>Updated artwork matching http://wiki.debian.org/DebianArt/Themes/Joy
427 <li>Multi-arch i386/amd64 USB stick ISO available.</li>
428 <li>Got rid of ispell/wordlist related debconf questions that showed
429 up for some language options.</li>
430 <li>Switched to using http.debian.net as APT source by default.</li>
431 <li>Fixed proxy configuration on Main Server installations.</li>
432 <li>Changed LTSP setup to ask dpkg to use force-unsafe-io the same way
433 d-i is doing it.</li>
434 <li>Made sure root and user passwords were not left behind in the
435 debconf database after installation on Main Server installations.</li>
436 <li>Made Roaming Workstation dynamic setup more robust and added draft
437 script setup-ad-client to hook a Roaming Workstation up to a
438 Active Directory server instead of a Debian Edu Main Server.</li>
439 <li>Update system to install needed firmware packages during
440 installation, to work properly in Wheezy.</li>
441 <li>Update system to handle hardware quirks (debian-edu-hwsetup).</li>
442 <li>Corrected PXE installation setup to properly pass selected desktop
443 and keymap settings to PXE installation clients.</li>
444 <li>LTSP diskless workstations use sshfs by default, allowing them to
445 work without adding them to DNS and NIS netgroups for NFS access.</li>
446 </ul>
447 <p><strong>Known issues</strong></p>
448 <ul>
449 <li>No mass import of user account data in GOsa (ldif or csv)
450 available yet (698840).</li>
451 <li>Artwork not enabled for all desktops.</li>
452 </ul>
453 <p><strong>Where to get it</strong></p>
454
455 <p>To download the multiarch netinstall CD release you can use</p>
456 <ul>
457 <li><a href="ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso">ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso</a></li>
458 <li><a href="http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso">http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso</a></li>
459 <li>rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-CD.iso .</li>
460 </ul>
461
462 <p>The MD5SUM of this image is: 2b161a99d2a848c376d8d04e3854e30c
463 <br>The SHA1SUM of this image is: 498922e9c508c0a7ee9dbe1dfe5bf830d779c3c8</p>
464
465 <p>To download the multiarch USB stick ISO release you can use</p>
466 <ul>
467 <li><a href="ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso">ftp://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso</a></li>
468 <li><a href="http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso">http://ftp.skolelinux.org/skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso</a></li>
469 <li>rsync -avzP ftp.skolelinux.org::skolelinux-cd/wheezy/debian-edu-7.1+edu0~a3-USB.iso .</li>
470 </ul>
471
472 <p>The MD5SUM of this image is: 25e808e403a4c15dbef1d13c37d572ac
473 <br>The SHA1SUM of this image is: 15ecfc93eb6b4f453b7eb0bc04b6a279262d9721</p>
474
475 <p><strong>How to report bugs</strong></p>
476
477 <p><a href="http://wiki.debian.org/DebianEdu/HowTo/ReportBugs">http://wiki.debian.org/DebianEdu/HowTo/ReportBugs</a></p>
478
479 </div>
480 <div class="tags">
481
482
483 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>.
484
485
486 </div>
487 </div>
488 <div class="padding"></div>
489
490 <p style="text-align: right;"><a href="07.rss"><img src="http://people.skolelinux.org/pere/blog/xml.gif" alt="RSS Feed" width="36" height="14" /></a></p>
491 <div id="sidebar">
492
493
494
495 <h2>Archive</h2>
496 <ul>
497
498 <li>2013
499 <ul>
500
501 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/01/">January (11)</a></li>
502
503 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/02/">February (9)</a></li>
504
505 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/03/">March (9)</a></li>
506
507 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/04/">April (6)</a></li>
508
509 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/05/">May (9)</a></li>
510
511 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/06/">June (10)</a></li>
512
513 <li><a href="http://people.skolelinux.org/pere/blog/archive/2013/07/">July (6)</a></li>
514
515 </ul></li>
516
517 <li>2012
518 <ul>
519
520 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/01/">January (7)</a></li>
521
522 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/02/">February (10)</a></li>
523
524 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/03/">March (17)</a></li>
525
526 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/04/">April (12)</a></li>
527
528 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/05/">May (12)</a></li>
529
530 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/06/">June (20)</a></li>
531
532 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/07/">July (17)</a></li>
533
534 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/08/">August (6)</a></li>
535
536 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/09/">September (9)</a></li>
537
538 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/10/">October (17)</a></li>
539
540 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/11/">November (10)</a></li>
541
542 <li><a href="http://people.skolelinux.org/pere/blog/archive/2012/12/">December (7)</a></li>
543
544 </ul></li>
545
546 <li>2011
547 <ul>
548
549 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/01/">January (16)</a></li>
550
551 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/02/">February (6)</a></li>
552
553 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/03/">March (6)</a></li>
554
555 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/04/">April (7)</a></li>
556
557 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/05/">May (3)</a></li>
558
559 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/06/">June (2)</a></li>
560
561 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/07/">July (7)</a></li>
562
563 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/08/">August (6)</a></li>
564
565 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/09/">September (4)</a></li>
566
567 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/10/">October (2)</a></li>
568
569 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/11/">November (3)</a></li>
570
571 <li><a href="http://people.skolelinux.org/pere/blog/archive/2011/12/">December (1)</a></li>
572
573 </ul></li>
574
575 <li>2010
576 <ul>
577
578 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/01/">January (2)</a></li>
579
580 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/02/">February (1)</a></li>
581
582 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/03/">March (3)</a></li>
583
584 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/04/">April (3)</a></li>
585
586 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/05/">May (9)</a></li>
587
588 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/06/">June (14)</a></li>
589
590 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/07/">July (12)</a></li>
591
592 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/08/">August (13)</a></li>
593
594 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/09/">September (7)</a></li>
595
596 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/10/">October (9)</a></li>
597
598 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/11/">November (13)</a></li>
599
600 <li><a href="http://people.skolelinux.org/pere/blog/archive/2010/12/">December (12)</a></li>
601
602 </ul></li>
603
604 <li>2009
605 <ul>
606
607 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/01/">January (8)</a></li>
608
609 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/02/">February (8)</a></li>
610
611 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/03/">March (12)</a></li>
612
613 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/04/">April (10)</a></li>
614
615 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/05/">May (9)</a></li>
616
617 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/06/">June (3)</a></li>
618
619 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/07/">July (4)</a></li>
620
621 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/08/">August (3)</a></li>
622
623 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/09/">September (1)</a></li>
624
625 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/10/">October (2)</a></li>
626
627 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/11/">November (3)</a></li>
628
629 <li><a href="http://people.skolelinux.org/pere/blog/archive/2009/12/">December (3)</a></li>
630
631 </ul></li>
632
633 <li>2008
634 <ul>
635
636 <li><a href="http://people.skolelinux.org/pere/blog/archive/2008/11/">November (5)</a></li>
637
638 <li><a href="http://people.skolelinux.org/pere/blog/archive/2008/12/">December (7)</a></li>
639
640 </ul></li>
641
642 </ul>
643
644
645
646 <h2>Tags</h2>
647 <ul>
648
649 <li><a href="http://people.skolelinux.org/pere/blog/tags/3d-printer">3d-printer (13)</a></li>
650
651 <li><a href="http://people.skolelinux.org/pere/blog/tags/amiga">amiga (1)</a></li>
652
653 <li><a href="http://people.skolelinux.org/pere/blog/tags/aros">aros (1)</a></li>
654
655 <li><a href="http://people.skolelinux.org/pere/blog/tags/bankid">bankid (4)</a></li>
656
657 <li><a href="http://people.skolelinux.org/pere/blog/tags/bitcoin">bitcoin (7)</a></li>
658
659 <li><a href="http://people.skolelinux.org/pere/blog/tags/bootsystem">bootsystem (12)</a></li>
660
661 <li><a href="http://people.skolelinux.org/pere/blog/tags/bsa">bsa (2)</a></li>
662
663 <li><a href="http://people.skolelinux.org/pere/blog/tags/debian">debian (83)</a></li>
664
665 <li><a href="http://people.skolelinux.org/pere/blog/tags/debian edu">debian edu (137)</a></li>
666
667 <li><a href="http://people.skolelinux.org/pere/blog/tags/digistan">digistan (10)</a></li>
668
669 <li><a href="http://people.skolelinux.org/pere/blog/tags/docbook">docbook (9)</a></li>
670
671 <li><a href="http://people.skolelinux.org/pere/blog/tags/drivstoffpriser">drivstoffpriser (4)</a></li>
672
673 <li><a href="http://people.skolelinux.org/pere/blog/tags/english">english (209)</a></li>
674
675 <li><a href="http://people.skolelinux.org/pere/blog/tags/fiksgatami">fiksgatami (21)</a></li>
676
677 <li><a href="http://people.skolelinux.org/pere/blog/tags/fildeling">fildeling (12)</a></li>
678
679 <li><a href="http://people.skolelinux.org/pere/blog/tags/freeculture">freeculture (11)</a></li>
680
681 <li><a href="http://people.skolelinux.org/pere/blog/tags/frikanalen">frikanalen (11)</a></li>
682
683 <li><a href="http://people.skolelinux.org/pere/blog/tags/intervju">intervju (37)</a></li>
684
685 <li><a href="http://people.skolelinux.org/pere/blog/tags/isenkram">isenkram (7)</a></li>
686
687 <li><a href="http://people.skolelinux.org/pere/blog/tags/kart">kart (18)</a></li>
688
689 <li><a href="http://people.skolelinux.org/pere/blog/tags/ldap">ldap (8)</a></li>
690
691 <li><a href="http://people.skolelinux.org/pere/blog/tags/lenker">lenker (6)</a></li>
692
693 <li><a href="http://people.skolelinux.org/pere/blog/tags/ltsp">ltsp (1)</a></li>
694
695 <li><a href="http://people.skolelinux.org/pere/blog/tags/multimedia">multimedia (25)</a></li>
696
697 <li><a href="http://people.skolelinux.org/pere/blog/tags/norsk">norsk (234)</a></li>
698
699 <li><a href="http://people.skolelinux.org/pere/blog/tags/nuug">nuug (153)</a></li>
700
701 <li><a href="http://people.skolelinux.org/pere/blog/tags/offentlig innsyn">offentlig innsyn (8)</a></li>
702
703 <li><a href="http://people.skolelinux.org/pere/blog/tags/open311">open311 (2)</a></li>
704
705 <li><a href="http://people.skolelinux.org/pere/blog/tags/opphavsrett">opphavsrett (44)</a></li>
706
707 <li><a href="http://people.skolelinux.org/pere/blog/tags/personvern">personvern (65)</a></li>
708
709 <li><a href="http://people.skolelinux.org/pere/blog/tags/raid">raid (1)</a></li>
710
711 <li><a href="http://people.skolelinux.org/pere/blog/tags/reprap">reprap (11)</a></li>
712
713 <li><a href="http://people.skolelinux.org/pere/blog/tags/rfid">rfid (2)</a></li>
714
715 <li><a href="http://people.skolelinux.org/pere/blog/tags/robot">robot (7)</a></li>
716
717 <li><a href="http://people.skolelinux.org/pere/blog/tags/rss">rss (1)</a></li>
718
719 <li><a href="http://people.skolelinux.org/pere/blog/tags/ruter">ruter (4)</a></li>
720
721 <li><a href="http://people.skolelinux.org/pere/blog/tags/scraperwiki">scraperwiki (2)</a></li>
722
723 <li><a href="http://people.skolelinux.org/pere/blog/tags/sikkerhet">sikkerhet (29)</a></li>
724
725 <li><a href="http://people.skolelinux.org/pere/blog/tags/sitesummary">sitesummary (4)</a></li>
726
727 <li><a href="http://people.skolelinux.org/pere/blog/tags/skepsis">skepsis (4)</a></li>
728
729 <li><a href="http://people.skolelinux.org/pere/blog/tags/standard">standard (43)</a></li>
730
731 <li><a href="http://people.skolelinux.org/pere/blog/tags/stavekontroll">stavekontroll (3)</a></li>
732
733 <li><a href="http://people.skolelinux.org/pere/blog/tags/stortinget">stortinget (7)</a></li>
734
735 <li><a href="http://people.skolelinux.org/pere/blog/tags/surveillance">surveillance (15)</a></li>
736
737 <li><a href="http://people.skolelinux.org/pere/blog/tags/sysadmin">sysadmin (1)</a></li>
738
739 <li><a href="http://people.skolelinux.org/pere/blog/tags/valg">valg (7)</a></li>
740
741 <li><a href="http://people.skolelinux.org/pere/blog/tags/video">video (38)</a></li>
742
743 <li><a href="http://people.skolelinux.org/pere/blog/tags/vitenskap">vitenskap (4)</a></li>
744
745 <li><a href="http://people.skolelinux.org/pere/blog/tags/web">web (26)</a></li>
746
747 </ul>
748
749
750 </div>
751 <p style="text-align: right">
752 Created by <a href="http://steve.org.uk/Software/chronicle">Chronicle v4.6</a>
753 </p>
754
755 </body>
756 </html>